mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-01 13:36:26 +08:00
init to 0, fix warning: h263.c:4730: warning: 'dc_pred_dir' may be used uninitialized in this function
Originally committed as revision 11677 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user