From b34130ae61c7cd070d6014adecff716e494d90fa Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 31 Jan 2008 01:38:00 +0000 Subject: [PATCH] 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. Originally committed as revision 11689 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h263.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h263.c b/libavcodec/h263.c index 6262c94da0..a285901a6c 100644 --- a/libavcodec/h263.c +++ b/libavcodec/h263.c @@ -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= dc_pred_dir; RLTable * rl; RL_VLC_ELEM * rl_vlc; const uint8_t * scan_table;