summaryrefslogtreecommitdiff
path: root/libavcodec/svq1.c
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2008-01-07 12:48:42 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2008-01-07 12:48:42 +0000
commit81fe0cfc0ba7eac51eaa0fc470d851a659c87cd7 (patch)
treec7706a13089ba0c83555b1ccf958c53f174cda61 /libavcodec/svq1.c
parenta1f89639a84ceacb922192019bf6519b98c18aa0 (diff)
Mark the ff_svq1_frame_size_table as constant.
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11447 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq1.c')
-rw-r--r--libavcodec/svq1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq1.c b/libavcodec/svq1.c
index 8dd43ae1b8..a4991837db 100644
--- a/libavcodec/svq1.c
+++ b/libavcodec/svq1.c
@@ -37,7 +37,7 @@
#include "svq1_vlc.h"
/* standard video sizes */
-svq1_frame_size_t ff_svq1_frame_size_table[8] = {
+const svq1_frame_size_t ff_svq1_frame_size_table[8] = {
{ 160, 120 }, { 128, 96 }, { 176, 144 }, { 352, 288 },
{ 704, 576 }, { 240, 180 }, { 320, 240 }, { -1, -1 }
};