summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-09-27 10:45:16 +0000
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-09-27 10:45:16 +0000
commit93f0c0a4ca2447b2bc1c05e032ee1ad1bdf9dcc5 (patch)
treec986be534645970f9b4b53ddbd878745ee2aac1c /libavcodec/h264.c
parent721d5e3b9511c0e0f5e1c29050c4976297c0ef24 (diff)
Remove redundant test.
Originally committed as revision 10601 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 4eff3d1224..6ab38e7da8 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2613,7 +2613,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
h->hpc.pred16x16[ h->intra16x16_pred_mode ](dest_y , linesize);
if(is_h264){
if(!transform_bypass)
- h264_luma_dc_dequant_idct_c(h->mb, s->qscale, h->dequant4_coeff[IS_INTRA(mb_type) ? 0:3][s->qscale][0]);
+ h264_luma_dc_dequant_idct_c(h->mb, s->qscale, h->dequant4_coeff[0][s->qscale][0]);
}else
svq3_luma_dc_dequant_idct_c(h->mb, s->qscale);
}