diff h263.c @ 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 f78a5c3cbb7c
children 493dc59d469a
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;