diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:24:34 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-08-24 17:24:34 +0000 |
commit | aecf157ed0c193b2f871102ccbe2bc39877dfc93 (patch) | |
tree | fa040353446aba13568d3d4d398c4fdbc65f269b /libavformat/mmf.c | |
parent | 7b571fd7a42ebc7fd083665105807193bd54ecc2 (diff) | |
download | ffmpeg-aecf157ed0c193b2f871102ccbe2bc39877dfc93.tar.gz |
Mark several libavformat arrays const
Originally committed as revision 14950 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mmf.c')
-rw-r--r-- | libavformat/mmf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mmf.c b/libavformat/mmf.c index a0185c3ad4..04bf871fa5 100644 --- a/libavformat/mmf.c +++ b/libavformat/mmf.c @@ -27,7 +27,7 @@ typedef struct { offset_t data_size; } MMFContext; -static int mmf_rates[] = { 4000, 8000, 11025, 22050, 44100 }; +static const int mmf_rates[] = { 4000, 8000, 11025, 22050, 44100 }; static int mmf_rate(int code) { |