changeset 6200:b97c7a98b8eb libavcodec

init to 0, fix warning: h263.c:4730: warning: 'dc_pred_dir' may be used uninitialized in this function
author bcoudurier
date Thu, 31 Jan 2008 00:05:44 +0000
parents 879b1015a20f
children 600f7baa119b
files h263.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/h263.c	Thu Jan 31 00:01:16 2008 +0000
+++ b/h263.c	Thu Jan 31 00:05:44 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 = 0;
     RLTable * rl;
     RL_VLC_ELEM * rl_vlc;
     const uint8_t * scan_table;