diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-01-31 02:13:53 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-01-31 02:13:53 +0000 |
commit | b2aba2e6e7facbd710a86c1184256df3ff91436d (patch) | |
tree | 92c0c9c45040000a49544ab533b245ecfc430740 /libavcodec/h263.c | |
parent | b34130ae61c7cd070d6014adecff716e494d90fa (diff) | |
download | ffmpeg-b2aba2e6e7facbd710a86c1184256df3ff91436d.tar.gz |
Comment about weird warning prevention.
Originally committed as revision 11690 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-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 a285901a6c..d3510559e2 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= dc_pred_dir; + int dc_pred_dir= dc_pred_dir; //weird init to prevent uninitalized warning RLTable * rl; RL_VLC_ELEM * rl_vlc; const uint8_t * scan_table; |