Commit 7b81160e authored by bcoudurier's avatar bcoudurier

init to 0, fix warning: h263.c:4730: warning: 'dc_pred_dir' may be used...

init to 0, fix warning: h263.c:4730: warning: 'dc_pred_dir' may be used uninitialized in this function

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11677 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e95fb4f0
......@@ -4727,7 +4727,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment