From 75cf8cfbf7553250ed73b0dacf7ab58b02c15fae Mon Sep 17 00:00:00 2001 From: michael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b> Date: Mon, 9 Feb 2009 22:04:34 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20libavcodec/msmpeg4.c:1612:=20warning:=20?= =?UTF-8?q?=E2=80=98dc=5Fpred=5Fdir=E2=80=99=20may=20be=20used=20uninitial?= =?UTF-8?q?ized=20in=20this=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17106 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/msmpeg4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index b08a8ead2..87866a26d 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -1609,7 +1609,7 @@ int ff_msmpeg4_decode_block(MpegEncContext * s, DCTELEM * block, 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; -- 2.25.4