From 0962ad0e2f86369cfac60f2300ced1702a95630a Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 8 Sep 2011 05:27:01 +0200 Subject: [PATCH] avopt: Fix searching for constants Fixes Ticket350 Signed-off-by: Michael Niedermayer --- libavutil/opt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;