diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-04-13 20:57:29 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-04-14 22:16:47 +0200 |
commit | c0038328830d7b341c28d7c99b0236a33617fd21 (patch) | |
tree | 776c71edc059c1ec371a4cef38730466fd4d64eb /libswscale/rgb2rgb.h | |
parent | a3a0af4fb1237bed0af75868073f9a63db8b1864 (diff) | |
download | ffmpeg-c0038328830d7b341c28d7c99b0236a33617fd21.tar.gz |
swscale: move away x86 specific code from rgb2rgb
Keep only the plain C code in the main rgb2rgb.c and move the x86
specific optimizations to x86/rgb2rgb.c
Change the initialization pattern a little so some of it can be
factorized to behave more like dsputils.
Diffstat (limited to 'libswscale/rgb2rgb.h')
-rw-r--r-- | libswscale/rgb2rgb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/rgb2rgb.h b/libswscale/rgb2rgb.h index 1ef4feeb0b..bde1134541 100644 --- a/libswscale/rgb2rgb.h +++ b/libswscale/rgb2rgb.h @@ -168,4 +168,6 @@ extern void (*yuyvtoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const u void sws_rgb2rgb_init(int flags); +void rgb2rgb_init_x86(int flags); + #endif /* SWSCALE_RGB2RGB_H */ |