Commit a002da79 authored by Diego Biurrun's avatar Diego Biurrun

Fix compilation: XVMC_ --> ff_xvmc prefix for xvmc functions.

Originally committed as revision 17256 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4742762f
...@@ -941,7 +941,7 @@ alloc: ...@@ -941,7 +941,7 @@ alloc:
#if CONFIG_MPEG_XVMC_DECODER #if CONFIG_MPEG_XVMC_DECODER
if(s->avctx->xvmc_acceleration) if(s->avctx->xvmc_acceleration)
return XVMC_field_start(s, avctx); return ff_xvmc_field_start(s, avctx);
#endif #endif
return 0; return 0;
} }
...@@ -954,7 +954,7 @@ void MPV_frame_end(MpegEncContext *s) ...@@ -954,7 +954,7 @@ void MPV_frame_end(MpegEncContext *s)
#if CONFIG_MPEG_XVMC_DECODER #if CONFIG_MPEG_XVMC_DECODER
//just to make sure that all data is rendered. //just to make sure that all data is rendered.
if(s->avctx->xvmc_acceleration){ if(s->avctx->xvmc_acceleration){
XVMC_field_end(s); ff_xvmc_field_end(s);
}else }else
#endif #endif
if(!(s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU) if(!(s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment