[FFmpeg-cvslog] r10601 - trunk/libavcodec/h264.c
takis
subversion
Thu Sep 27 12:45:17 CEST 2007
Author: takis
Date: Thu Sep 27 12:45:16 2007
New Revision: 10601
Log:
Remove redundant test.
Modified:
trunk/libavcodec/h264.c
Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c (original)
+++ trunk/libavcodec/h264.c Thu Sep 27 12:45:16 2007
@@ -2613,7 +2613,7 @@ static av_always_inline void hl_decode_m
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);
}
More information about the ffmpeg-cvslog
mailing list