mirror of https://git.ffmpeg.org/ffmpeg.git
libavcodec/bsfs: Fix bsf option setting
AV_OPT_SEARCH_CHILDREN flag must be passed to av_opt_set_dict() to set options for private context. Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
ec220a8c1c
commit
bcd1153162
|
@ -432,7 +432,7 @@ int av_bsf_list_append2(AVBSFList *lst, const char *bsf_name, AVDictionary ** op
|
|||
return ret;
|
||||
|
||||
if (options) {
|
||||
ret = av_opt_set_dict(bsf, options);
|
||||
ret = av_opt_set_dict2(bsf, options, AV_OPT_SEARCH_CHILDREN);
|
||||
if (ret < 0)
|
||||
goto end;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue