[FFmpeg-cvslog] swscale: Factorize FAST_BGR2YV12 definition.

Luca Barbato git at videolan.org
Thu Apr 14 03:24:38 CEST 2011


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Mon Apr 11 19:48:13 2011 +0200| [0e1a5434e2d30d0f57770110c1e358c8eccf9f82] | committer: Diego Biurrun

swscale: Factorize FAST_BGR2YV12 definition.

It is used only for x86 so it will eventually be moved with that code
into the x86 arch subdirectory.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0e1a5434e2d30d0f57770110c1e358c8eccf9f82
---

 libswscale/rgb2rgb.c          |    2 --
 libswscale/swscale.c          |    2 --
 libswscale/swscale_internal.h |    2 ++
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/libswscale/rgb2rgb.c b/libswscale/rgb2rgb.c
index bc0ed63..d3763cc 100644
--- a/libswscale/rgb2rgb.c
+++ b/libswscale/rgb2rgb.c
@@ -30,8 +30,6 @@
 #include "swscale.h"
 #include "swscale_internal.h"
 
-#define FAST_BGR2YV12 // use 7-bit instead of 15-bit coefficients
-
 void (*rgb24tobgr32)(const uint8_t *src, uint8_t *dst, long src_size);
 void (*rgb24tobgr16)(const uint8_t *src, uint8_t *dst, long src_size);
 void (*rgb24tobgr15)(const uint8_t *src, uint8_t *dst, long src_size);
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index ed6db72..565743a 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -76,8 +76,6 @@ untested special converters
 //#undef ARCH_X86
 #define DITHER1XBPP
 
-#define FAST_BGR2YV12 // use 7 bit coefficients instead of 15 bit
-
 #define isPacked(x)         (       \
            (x)==PIX_FMT_PAL8        \
         || (x)==PIX_FMT_YUYV422     \
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h
index 631f1e0..4c6ad2a 100644
--- a/libswscale/swscale_internal.h
+++ b/libswscale/swscale_internal.h
@@ -31,6 +31,8 @@
 
 #define STR(s)         AV_TOSTRING(s) //AV_STRINGIFY is too long
 
+#define FAST_BGR2YV12 //use 7-bit instead of 15-bit coefficients
+
 #define MAX_FILTER_SIZE 256
 
 #if ARCH_X86



More information about the ffmpeg-cvslog mailing list