changeset 6211:ed359f380aa7 libavcodec

Revert r11689 and r11690 (uninitalized warning fix) as its theoretically undefined in C.
author michael
date Thu, 31 Jan 2008 14:01:33 +0000
parents d912f75d3b5d
children 0b967440e270
files h263.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/h263.c	Thu Jan 31 12:25:52 2008 +0000
+++ b/h263.c	Thu Jan 31 14:01:33 2008 +0000
@@ -4727,7 +4727,7 @@
                               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;