Mercurial > libavcodec.hg
changeset 8857:9cd28fb52745 libavcodec
Fix compilation: XVMC_ --> ff_xvmc prefix for xvmc functions.
author | diego |
---|---|
date | Sat, 14 Feb 2009 18:46:32 +0000 |
parents | e5cf06287032 |
children | 0ec48cdc3348 |
files | mpegvideo.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)