lavfi: fix compilation with FF_API_OLD_FILTER_OPTS=0.

This commit is contained in:
Ronald S. Bultje 2015-08-16 22:26:16 -04:00
parent c1507db617
commit 6495c4c687
3 changed files with 4 additions and 3 deletions

View file

@ -976,8 +976,9 @@ int avfilter_init_str(AVFilterContext *filter, const char *args)
if (ret < 0)
goto fail;
} else
#endif
} else {
{
ret = process_options(filter, &options, args);
if (ret < 0)
goto fail;