changeset 6208:68ed6cb7066d libavcodec

fix "uninitalized" warning, the alternative way. I hope this is valid C, flame me if not. md5sum of h263.o doesnt change, so this doesnt cause a slowdown.
author michael
date Thu, 31 Jan 2008 01:38:00 +0000
parents 7346bcbb3d53
children f78a5c3cbb7c
files h263.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/h263.c	Thu Jan 31 01:25:29 2008 +0000
+++ b/h263.c	Thu Jan 31 01:38:00 2008 +0000
@@ -4727,7 +4727,7 @@
                               int n, int coded, int intra, int rvlc)
 {
     int level, i, last, run;
-    int dc_pred_dir;
+    int dc_pred_dir= dc_pred_dir;
     RLTable * rl;
     RL_VLC_ELEM * rl_vlc;
     const uint8_t * scan_table;