Browse Source

avfilter/setparams: add FF_FILTER_FLAG_HWFRAME_AWARE

Allow setparams to be used with hw backed frames and
avoid an assertion failure in avfilter_config_links.
tags/n4.4
Pavel Koshevoy 5 years ago
parent
commit
5bbf58ab87
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavfilter/vf_setparams.c

+ 3
- 0
libavfilter/vf_setparams.c View File

@@ -169,6 +169,7 @@ AVFilter ff_vf_setparams = {
.priv_class = &setparams_class,
.inputs = inputs,
.outputs = outputs,
.flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
};

#if CONFIG_SETRANGE_FILTER
@@ -208,6 +209,7 @@ AVFilter ff_vf_setrange = {
.priv_class = &setrange_class,
.inputs = inputs,
.outputs = outputs,
.flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
};
#endif /* CONFIG_SETRANGE_FILTER */

@@ -242,5 +244,6 @@ AVFilter ff_vf_setfield = {
.priv_class = &setfield_class,
.inputs = inputs,
.outputs = outputs,
.flags_internal = FF_FILTER_FLAG_HWFRAME_AWARE,
};
#endif /* CONFIG_SETFIELD_FILTER */

Loading…
Cancel
Save