summaryrefslogtreecommitdiff
path: root/libavfilter/f_streamselect.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/f_streamselect.c')
-rw-r--r--libavfilter/f_streamselect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/f_streamselect.c b/libavfilter/f_streamselect.c
index 80a133fec3..3708d2b256 100644
--- a/libavfilter/f_streamselect.c
+++ b/libavfilter/f_streamselect.c
@@ -318,7 +318,7 @@ const AVFilter ff_vf_streamselect = {
.name = "streamselect",
.description = NULL_IF_CONFIG_SMALL("Select video streams"),
.init = init,
- .query_formats = query_formats,
+ FILTER_QUERY_FUNC(query_formats),
.process_command = process_command,
.uninit = uninit,
.activate = activate,
@@ -332,7 +332,7 @@ const AVFilter ff_af_astreamselect = {
.description = NULL_IF_CONFIG_SMALL("Select audio streams"),
.priv_class = &streamselect_class,
.init = init,
- .query_formats = query_formats,
+ FILTER_QUERY_FUNC(query_formats),
.process_command = process_command,
.uninit = uninit,
.activate = activate,