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

michael subversion
Thu Jan 31 15:01:33 CET 2008


Author: michael
Date: Thu Jan 31 15:01:33 2008
New Revision: 11694

Log:
Revert r11689 and r11690 (uninitalized warning fix) as its theoretically
undefined in C.


Modified:
   trunk/libavcodec/h263.c

Modified: trunk/libavcodec/h263.c
==============================================================================
--- trunk/libavcodec/h263.c	(original)
+++ trunk/libavcodec/h263.c	Thu Jan 31 15:01:33 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= dc_pred_dir; //weird init to prevent uninitalized warning
+    int dc_pred_dir;
     RLTable * rl;
     RL_VLC_ELEM * rl_vlc;
     const uint8_t * scan_table;




More information about the ffmpeg-cvslog mailing list