# HG changeset patch # User diego # Date 1234784948 0 # Node ID 886ef38c7b36ca33bacd5cbf94d51362768174fa # Parent 8d3722a5973a33b5b90d47831a3cb8a229599eb5 Get rid of some '#if CONFIG_MPEG_XVMC_DECODER' preprocessor checks around if statements by merging the CONFIG_MPEG_XVMC_DECODER check into the if condition. diff -r 8d3722a5973a -r 886ef38c7b36 error_resilience.c --- a/error_resilience.c Mon Feb 16 11:35:38 2009 +0000 +++ b/error_resilience.c Mon Feb 16 11:49:08 2009 +0000 @@ -563,10 +563,9 @@ if(undamaged_count < 5) return 0; //almost all MBs damaged -> use temporal prediction -#if CONFIG_MPEG_XVMC_DECODER //prevent dsp.sad() check, that requires access to the image - if(s->avctx->xvmc_acceleration && s->pict_type==FF_I_TYPE) return 1; -#endif + if(CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration && s->pict_type == FF_I_TYPE) + return 1; skip_amount= FFMAX(undamaged_count/50, 1); //check only upto 50 MBs is_intra_likely=0; @@ -935,10 +934,9 @@ }else guess_mv(s); -#if CONFIG_MPEG_XVMC_DECODER /* the filters below are not XvMC compatible, skip them */ - if(s->avctx->xvmc_acceleration) goto ec_clean; -#endif + if(CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration) + goto ec_clean; /* fill DC for inter blocks */ for(mb_y=0; mb_ymb_height; mb_y++){ for(mb_x=0; mb_xmb_width; mb_x++){ @@ -1024,9 +1022,7 @@ v_block_filter(s, s->current_picture.data[2], s->mb_width , s->mb_height , s->uvlinesize, 0); } -#if CONFIG_MPEG_XVMC_DECODER ec_clean: -#endif /* clean a few tables */ for(i=0; imb_num; i++){ const int mb_xy= s->mb_index2xy[i]; diff -r 8d3722a5973a -r 886ef38c7b36 mpegvideo.c --- a/mpegvideo.c Mon Feb 16 11:35:38 2009 +0000 +++ b/mpegvideo.c Mon Feb 16 11:49:08 2009 +0000 @@ -936,10 +936,9 @@ update_noise_reduction(s); } -#if CONFIG_MPEG_XVMC_DECODER - if(s->avctx->xvmc_acceleration) + if(CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration) return ff_xvmc_field_start(s, avctx); -#endif + return 0; } @@ -948,12 +947,10 @@ { int i; /* draw edge for correct motion prediction if outside */ -#if CONFIG_MPEG_XVMC_DECODER //just to make sure that all data is rendered. - if(s->avctx->xvmc_acceleration){ + if(CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration){ ff_xvmc_field_end(s); }else -#endif if(!(s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU) && s->unrestricted_mv && s->current_picture.reference @@ -1733,12 +1730,10 @@ { int mb_x, mb_y; const int mb_xy = s->mb_y * s->mb_stride + s->mb_x; -#if CONFIG_MPEG_XVMC_DECODER - if(s->avctx->xvmc_acceleration){ + if(CONFIG_MPEG_XVMC_DECODER && s->avctx->xvmc_acceleration){ ff_xvmc_decode_mb(s);//xvmc uses pblocks return; } -#endif mb_x = s->mb_x; mb_y = s->mb_y;