[FFmpeg-cvslog] r11677 - trunk/libavcodec/h263.c

bcoudurier subversion
Thu Jan 31 01:05:44 CET 2008


Author: bcoudurier
Date: Thu Jan 31 01:05:44 2008
New Revision: 11677

Log:
init to 0, fix warning: h263.c:4730: warning: 'dc_pred_dir' may be used uninitialized in this function

Modified:
   trunk/libavcodec/h263.c

Modified: trunk/libavcodec/h263.c
==============================================================================
--- trunk/libavcodec/h263.c	(original)
+++ trunk/libavcodec/h263.c	Thu Jan 31 01:05:44 2008
@@ -4727,7 +4727,7 @@ static inline int mpeg4_decode_block(Mpe
                               int n, int coded, int intra, int rvlc)
 {
     int level, i, last, run;
-    int dc_pred_dir;
+    int dc_pred_dir = 0;
     RLTable * rl;
     RL_VLC_ELEM * rl_vlc;
     const uint8_t * scan_table;




More information about the ffmpeg-cvslog mailing list