parent
c7b2e9994c
commit
ebb00172b7
@ -0,0 +1,18 @@
|
||||
|
||||
%macro PROC 1
|
||||
align 16
|
||||
global %1
|
||||
%1:
|
||||
%endmacro
|
||||
|
||||
;int
|
||||
;i420_to_rgb32_amd64_sse2(unsigned char *yuvs, int width, int height, int *rgbs)
|
||||
|
||||
PROC i420_to_rgb32_amd64_sse2
|
||||
push ebx
|
||||
|
||||
mov eax, 0
|
||||
pop ebx
|
||||
ret
|
||||
align 16
|
||||
|
@ -0,0 +1,18 @@
|
||||
|
||||
%macro PROC 1
|
||||
align 16
|
||||
global %1
|
||||
%1:
|
||||
%endmacro
|
||||
|
||||
;int
|
||||
;uyvy_to_rgb32_amd64_sse2(unsigned char *yuvs, int width, int height, int *rgbs)
|
||||
|
||||
PROC uyvy_to_rgb32_amd64_sse2
|
||||
push ebx
|
||||
|
||||
mov eax, 0
|
||||
pop ebx
|
||||
ret
|
||||
align 16
|
||||
|
@ -0,0 +1,18 @@
|
||||
|
||||
%macro PROC 1
|
||||
align 16
|
||||
global %1
|
||||
%1:
|
||||
%endmacro
|
||||
|
||||
;int
|
||||
;yuy2_to_rgb32_amd64_sse2(unsigned char *yuvs, int width, int height, int *rgbs)
|
||||
|
||||
PROC yuy2_to_rgb32_amd64_sse2
|
||||
push ebx
|
||||
|
||||
mov eax, 0
|
||||
pop ebx
|
||||
ret
|
||||
align 16
|
||||
|
@ -0,0 +1,18 @@
|
||||
|
||||
%macro PROC 1
|
||||
align 16
|
||||
global %1
|
||||
%1:
|
||||
%endmacro
|
||||
|
||||
;int
|
||||
;yv12_to_rgb32_amd64_sse2(unsigned char *yuvs, int width, int height, int *rgbs)
|
||||
|
||||
PROC yv12_to_rgb32_amd64_sse2
|
||||
push ebx
|
||||
|
||||
mov eax, 0
|
||||
pop ebx
|
||||
ret
|
||||
align 16
|
||||
|
Loading…
Reference in new issue