summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-03-10 18:40:41 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-03-10 18:40:41 +0000
commitcb666260a05bfbd7a3ceb1be21dd97848d3ede7c (patch)
tree870eeaf8ee581bcae3aede925ffc22c5a875ba18 /libavcodec/h263.c
parent9e801ee2fafee12438911b2ace14bd4d2bffa816 (diff)
fixing uninitalized dc_pred_dir
this needs testing (no files with intra_dc_threshold and vissible ac_pred errors here) Originally committed as revision 5137 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index 4af0b90442..74e3b9eb0d 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -4756,6 +4756,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
i = 0;
}else{
i = -1;
+ ff_mpeg4_pred_dc(s, n, 0, &dc_pred_dir, 0);
}
if (!coded)
goto not_coded;