diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-08 05:27:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-08 05:34:17 +0200 |
commit | 0962ad0e2f86369cfac60f2300ced1702a95630a (patch) | |
tree | 4891067271f9f00504e680de08c5d6d8aadc9fa2 | |
parent | bd358e128f47c14c7bc9dfceb8dedb3e5697f017 (diff) | |
download | ffmpeg-0962ad0e2f86369cfac60f2300ced1702a95630a.tar.gz |
avopt: Fix searching for constants
Fixes Ticket350
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavutil/opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 2d4f873847..d749259c08 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -575,7 +575,7 @@ const AVOption *av_opt_find(void *obj, const char *name, const char *unit, while (o = av_next_option(obj, o)) { if (!strcmp(o->name, name) && (o->flags & opt_flags) == opt_flags && ((!unit && o->type != FF_OPT_TYPE_CONST) || - (unit && o->unit && !strcmp(o->unit, unit)))) + (unit && o->type == FF_OPT_TYPE_CONST && o->unit && !strcmp(o->unit, unit)))) return o; } return NULL; |