Commit 6c59d934 authored by michael's avatar michael

Remove useless IS_8x8DCT check i forgot, spotted by dark shikari.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16215 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d7894235
......@@ -2434,7 +2434,7 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){
if(transform_bypass){
idct_dc_add =
idct_add = s->dsp.add_pixels8;
}else if(IS_8x8DCT(mb_type)){
}else{
idct_dc_add = s->dsp.h264_idct8_dc_add;
idct_add = s->dsp.h264_idct8_add;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment