# HG changeset patch # User diego # Date 1234637192 0 # Node ID 9cd28fb527455fade779b0dac3df27aa5e49b10b # Parent e5cf062870322b4971ffd050c7e5e80d4dfe1041 Fix compilation: XVMC_ --> ff_xvmc prefix for xvmc functions. diff -r e5cf06287032 -r 9cd28fb52745 mpegvideo.c --- a/mpegvideo.c Sat Feb 14 18:45:44 2009 +0000 +++ b/mpegvideo.c Sat Feb 14 18:46:32 2009 +0000 @@ -941,7 +941,7 @@ #if CONFIG_MPEG_XVMC_DECODER if(s->avctx->xvmc_acceleration) - return XVMC_field_start(s, avctx); + return ff_xvmc_field_start(s, avctx); #endif return 0; } @@ -954,7 +954,7 @@ #if CONFIG_MPEG_XVMC_DECODER //just to make sure that all data is rendered. if(s->avctx->xvmc_acceleration){ - XVMC_field_end(s); + ff_xvmc_field_end(s); }else #endif if(!(s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)