diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-01-31 01:38:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-01-31 01:38:00 +0000 |
commit | b34130ae61c7cd070d6014adecff716e494d90fa (patch) | |
tree | 833e4de66e0148524b331f7fbca130ae19189a94 /libavcodec | |
parent | 961c25b588c2ff1d6fd06fbda28cf05f5a9a3695 (diff) | |
download | ffmpeg-b34130ae61c7cd070d6014adecff716e494d90fa.tar.gz |
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
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h263.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |