summaryrefslogtreecommitdiff
path: root/libavfilter/af_volumedetect.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-12-21 22:38:59 +0000
committerPaul B Mahol <onemda@gmail.com>2012-12-21 22:38:59 +0000
commit185d1f3bfcace747aed74e695447104e977b4455 (patch)
tree490fbd157e063fa5a39eb57614b9c40643c8e704 /libavfilter/af_volumedetect.c
parent165be91c2bd5cc748ebda8932a5e2ca9f4d52f6d (diff)
lavfi: declare arrays that never change as static const
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/af_volumedetect.c')
-rw-r--r--libavfilter/af_volumedetect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c
index 01f30a6431..39265c0674 100644
--- a/libavfilter/af_volumedetect.c
+++ b/libavfilter/af_volumedetect.c
@@ -35,7 +35,7 @@ typedef struct {
static int query_formats(AVFilterContext *ctx)
{
- enum AVSampleFormat sample_fmts[] = {
+ static const enum AVSampleFormat sample_fmts[] = {
AV_SAMPLE_FMT_S16,
AV_SAMPLE_FMT_S16P,
AV_SAMPLE_FMT_NONE