[FFmpeg-cvslog] sws: add AVOption flag for error diffusion dither

Michael Niedermayer git at videolan.org
Sat Jan 19 02:39:55 CET 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Jan 19 01:38:54 2013 +0100| [d7a46ca179e4d72c925345cfe208de3572f89d6e] | committer: Michael Niedermayer

sws: add AVOption flag for error diffusion dither

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libswscale/options.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libswscale/options.c b/libswscale/options.c
index f7d261c..fc571ac 100644
--- a/libswscale/options.c
+++ b/libswscale/options.c
@@ -51,6 +51,7 @@ static const AVOption options[] = {
     { "full_chroma_int", "full chroma interpolation",     0,                 AV_OPT_TYPE_CONST,  { .i64  = SWS_FULL_CHR_H_INT }, INT_MIN, INT_MAX,        VE, "sws_flags" },
     { "full_chroma_inp", "full chroma input",             0,                 AV_OPT_TYPE_CONST,  { .i64  = SWS_FULL_CHR_H_INP }, INT_MIN, INT_MAX,        VE, "sws_flags" },
     { "bitexact",        "",                              0,                 AV_OPT_TYPE_CONST,  { .i64  = SWS_BITEXACT       }, INT_MIN, INT_MAX,        VE, "sws_flags" },
+    { "error_diffusion", "error diffusion dither",        0,                 AV_OPT_TYPE_CONST,  { .i64  = SWS_ERROR_DIFFUSION}, INT_MIN, INT_MAX,        VE, "sws_flags" },
 
     { "srcw",            "source width",                  OFFSET(srcW),      AV_OPT_TYPE_INT,    { .i64 = 16                 }, 1,       INT_MAX,        VE },
     { "srch",            "source height",                 OFFSET(srcH),      AV_OPT_TYPE_INT,    { .i64 = 16                 }, 1,       INT_MAX,        VE },



More information about the ffmpeg-cvslog mailing list