summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-01-31 01:38:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-01-31 01:38:00 +0000
commitb34130ae61c7cd070d6014adecff716e494d90fa (patch)
tree833e4de66e0148524b331f7fbca130ae19189a94 /libavcodec/h263.c
parent961c25b588c2ff1d6fd06fbda28cf05f5a9a3695 (diff)
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/h263.c')
-rw-r--r--libavcodec/h263.c2
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;