[FFmpeg-cvslog] r17106 - trunk/libavcodec/msmpeg4.c
michael
subversion
Mon Feb 9 23:04:35 CET 2009
Author: michael
Date: Mon Feb 9 23:04:34 2009
New Revision: 17106
Log:
Fix: libavcodec/msmpeg4.c:1612: warning: ?dc_pred_dir? may be used uninitialized in this function
Modified:
trunk/libavcodec/msmpeg4.c
Modified: trunk/libavcodec/msmpeg4.c
==============================================================================
--- trunk/libavcodec/msmpeg4.c Mon Feb 9 22:47:57 2009 (r17105)
+++ trunk/libavcodec/msmpeg4.c Mon Feb 9 23:04:34 2009 (r17106)
@@ -1609,7 +1609,7 @@ int ff_msmpeg4_decode_block(MpegEncConte
int n, int coded, const uint8_t *scan_table)
{
int level, i, last, run, run_diff;
- int dc_pred_dir;
+ int av_uninit(dc_pred_dir);
RLTable *rl;
RL_VLC_ELEM *rl_vlc;
int qmul, qadd;
More information about the ffmpeg-cvslog
mailing list