changeset 8780:56c41adae7d8 libavcodec

Fix: libavcodec/msmpeg4.c:1612: warning: ¡Ædc_pred_dir¡Ç may be used uninitialized in this function
author michael
date Mon, 09 Feb 2009 22:04:34 +0000
parents 062adf954a56
children 0960d775e97b
files msmpeg4.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/msmpeg4.c	Mon Feb 09 15:49:06 2009 +0000
+++ b/msmpeg4.c	Mon Feb 09 22:04:34 2009 +0000
@@ -1609,7 +1609,7 @@
                               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;