diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 15:27:13 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 15:37:02 +0100 |
commit | b052601b9590b1020619bdccae6739808d0fe2b2 (patch) | |
tree | 2ba7c4ef59821e9ef4e9f160a58ef92a7feec4e4 | |
parent | db076a2c48d680dfe828bbe7235082cc3eee0b67 (diff) | |
download | ffmpeg-b052601b9590b1020619bdccae6739808d0fe2b2.tar.gz |
Make another static array const.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-rw-r--r-- | libavfilter/formats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/formats.c b/libavfilter/formats.c index 46698ef990..b77ca8a069 100644 --- a/libavfilter/formats.c +++ b/libavfilter/formats.c @@ -172,7 +172,7 @@ AVFilterFormats *avfilter_make_all_channel_layouts(void) AVFilterFormats *avfilter_make_all_packing_formats(void) { - static int packing[] = { + static const int packing[] = { AVFILTER_PACKED, AVFILTER_PLANAR, -1, |