diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-14 17:12:25 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-14 17:12:25 +0000 |
commit | ea375af8c9480583d3e0fe444f6ce048f34b46f3 (patch) | |
tree | 27835da0c3d409719233553d88662399a539ae52 /libavcodec/xvmc.h | |
parent | 3ae01928391b9297316d69eaa89c4a3141d5b04f (diff) | |
download | ffmpeg-ea375af8c9480583d3e0fe444f6ce048f34b46f3.tar.gz |
Give public #defines that are used by MPlayer an AV_ prefix.
Originally committed as revision 17244 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/xvmc.h')
-rw-r--r-- | libavcodec/xvmc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/xvmc.h b/libavcodec/xvmc.h index 78e865a6da..9c37e67d53 100644 --- a/libavcodec/xvmc.h +++ b/libavcodec/xvmc.h @@ -30,13 +30,13 @@ //the surface should be shown, the video driver manipulates this -#define MP_XVMC_STATE_DISPLAY_PENDING 1 +#define AV_XVMC_STATE_DISPLAY_PENDING 1 //the surface is needed for prediction, the codec manipulates this -#define MP_XVMC_STATE_PREDICTION 2 +#define AV_XVMC_STATE_PREDICTION 2 //this surface is needed for subpicture rendering -#define MP_XVMC_STATE_OSD_SOURCE 4 +#define AV_XVMC_STATE_OSD_SOURCE 4 // 1337 IDCT MCo -#define MP_XVMC_RENDER_MAGIC 0x1DC711C0 +#define AV_XVMC_RENDER_MAGIC 0x1DC711C0 struct xvmc_render_state { //these are not changed by the decoder! |