Add bitexact flag.
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 12 Sep 2008 21:46:53 +0000 (21:46 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 12 Sep 2008 21:46:53 +0000 (21:46 +0000)
Originally committed as revision 27592 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale.h
libswscale/swscale_avoption.c

index 98e9b2e..95ff4f1 100644 (file)
@@ -75,6 +75,7 @@ unsigned swscale_version(void);
 #define SWS_FULL_CHR_H_INP    0x4000
 #define SWS_DIRECT_BGR        0x8000
 #define SWS_ACCURATE_RND      0x40000
+#define SWS_BITEXACT          0x80000
 
 #define SWS_CPU_CAPS_MMX      0x80000000
 #define SWS_CPU_CAPS_MMX2     0x20000000
index 1878b4e..996843d 100644 (file)
@@ -53,6 +53,7 @@ static const AVOption options[] = {
     { "bfin", "Blackfin SIMD acceleration", 0, FF_OPT_TYPE_CONST, SWS_CPU_CAPS_BFIN, INT_MIN, INT_MAX, VE, "sws_flags" },
     { "full_chroma_int", "full chroma interpolation", 0 , FF_OPT_TYPE_CONST, SWS_FULL_CHR_H_INT, INT_MIN, INT_MAX, VE, "sws_flags" },
     { "full_chroma_inp", "full chroma input", 0 , FF_OPT_TYPE_CONST, SWS_FULL_CHR_H_INP, INT_MIN, INT_MAX, VE, "sws_flags" },
+    { "bitexact", "", 0 , FF_OPT_TYPE_CONST, SWS_BITEXACT, INT_MIN, INT_MAX, VE, "sws_flags" },
     { NULL }
 };