[SCM] libav/experimental: add 'all' and 'none' options for partitions config Patch by Limin Wang % lance P lmwang A gmail P com % Original thread: date: Mar 24, 2007 3:53 PM subject: [Ffmpeg-devel] [PATCH] add all and none options for partitions config

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:58:19 UTC 2013


The following commit has been merged in the experimental branch:
commit 226d6947bc6e6592eabbcb7b401bf164be5bfe6e
Author: Limin Wang <lance.lmwang at gmail.com>
Date:   Fri Mar 30 09:05:52 2007 +0000

    add 'all' and 'none' options for partitions config
    Patch by Limin Wang % lance P lmwang A gmail P com %
    Original thread:
    date: Mar 24, 2007 3:53 PM
    subject: [Ffmpeg-devel] [PATCH] add all and none options for partitions config
    
    Originally committed as revision 8552 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/opt.c b/libavcodec/opt.c
index ed7aaa0..cfff0c1 100644
--- a/libavcodec/opt.c
+++ b/libavcodec/opt.c
@@ -139,6 +139,8 @@ const AVOption *av_set_string(void *obj, const char *name, const char *val){
                 else if(!strcmp(buf, "default")) d= o->default_val;
                 else if(!strcmp(buf, "max"    )) d= o->max;
                 else if(!strcmp(buf, "min"    )) d= o->min;
+                else if(!strcmp(buf, "none"   )) d= 0;
+                else if(!strcmp(buf, "all"    )) d= ~0;
                 else {
                     if (!error)
                         av_log(NULL, AV_LOG_ERROR, "Unable to parse option value \"%s\": %s\n", val, error);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list