summaryrefslogtreecommitdiff
path: root/libavfilter/af_anull.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2012-07-21 09:45:52 -0700
committerRonald S. Bultje <rsbultje@gmail.com>2012-07-21 16:31:15 -0700
commit3db407038e9b7e0da2537fc2e19c370c45dba355 (patch)
tree4609a4af4bb1783422918de1b70a507c028b50ac /libavfilter/af_anull.c
parent98041afb5f50536fa3edde9bed1a586d6e2e56e8 (diff)
lavfi: use const for AVFilterPad declarations in all filters.
Diffstat (limited to 'libavfilter/af_anull.c')
-rw-r--r--libavfilter/af_anull.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavfilter/af_anull.c b/libavfilter/af_anull.c
index 231fc8c411..462ad68269 100644
--- a/libavfilter/af_anull.c
+++ b/libavfilter/af_anull.c
@@ -31,12 +31,12 @@ AVFilter avfilter_af_anull = {
.priv_size = 0,
- .inputs = (AVFilterPad[]) {{ .name = "default",
- .type = AVMEDIA_TYPE_AUDIO,
- .get_audio_buffer = ff_null_get_audio_buffer, },
- { .name = NULL}},
+ .inputs = (const AVFilterPad[]) {{ .name = "default",
+ .type = AVMEDIA_TYPE_AUDIO,
+ .get_audio_buffer = ff_null_get_audio_buffer, },
+ { .name = NULL}},
- .outputs = (AVFilterPad[]) {{ .name = "default",
- .type = AVMEDIA_TYPE_AUDIO, },
- { .name = NULL}},
+ .outputs = (const AVFilterPad[]) {{ .name = "default",
+ .type = AVMEDIA_TYPE_AUDIO, },
+ { .name = NULL}},
};