ituh263dec: use macro instead of #if

This commit is contained in:
Vittorio Giovara 2015-01-28 15:42:50 +00:00
parent 08fa34bf75
commit c01ccccbb1
1 changed files with 1 additions and 3 deletions

View File

@ -456,8 +456,7 @@ static int h263_decode_block(MpegEncContext * s, int16_t * block,
}
} else if (s->mb_intra) {
/* DC coef */
if(s->codec_id == AV_CODEC_ID_RV10){
#if CONFIG_RV10_DECODER
if (CONFIG_RV10_DECODER && s->codec_id == AV_CODEC_ID_RV10) {
if (s->rv10_version == 3 && s->pict_type == AV_PICTURE_TYPE_I) {
int component, diff;
component = (n <= 3 ? 0 : n - 4 + 1);
@ -477,7 +476,6 @@ static int h263_decode_block(MpegEncContext * s, int16_t * block,
if (level == 255)
level = 128;
}
#endif
}else{
level = get_bits(&s->gb, 8);
if((level&0x7F) == 0){