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/img2.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/img2.c')
-rw-r--r-- | libavformat/img2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index 2e570dd87f..d3b7200ae9 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -72,7 +72,7 @@ static const IdStrMap img_tags[] = { { CODEC_ID_NONE , NULL} }; -static int sizes[][2] = { +static const int sizes[][2] = { { 640, 480 }, { 720, 480 }, { 720, 576 }, |