mirror of https://git.ffmpeg.org/ffmpeg.git
Remove useless IS_8x8DCT check i forgot, spotted by dark shikari.
Originally committed as revision 16215 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
2a5a9c2815
commit
dae006d7d7
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue