[FFmpeg-cvslog] r18642 - trunk/libavcodec/rv34.c

kostya subversion
Tue Apr 21 19:35:31 CEST 2009


Author: kostya
Date: Tue Apr 21 19:35:30 2009
New Revision: 18642

Log:
100l: VLC table array should not be const

Modified:
   trunk/libavcodec/rv34.c

Modified: trunk/libavcodec/rv34.c
==============================================================================
--- trunk/libavcodec/rv34.c	Tue Apr 21 14:29:36 2009	(r18641)
+++ trunk/libavcodec/rv34.c	Tue Apr 21 19:35:30 2009	(r18642)
@@ -82,7 +82,7 @@ static const int table_offs[] = {
  111430, 111462, 111494, 112878, 114320, 114988, 115660, 116310, 116950, 117592
 };
 
-static const VLC_TYPE table_data[117592][2];
+static VLC_TYPE table_data[117592][2];
 
 /**
  * Generate VLC from codeword lengths.



More information about the ffmpeg-cvslog mailing list