Commit 6882f7bc authored by Waldo Bastian's avatar Waldo Bastian

libva 0.19 -> remove VAPictureBitPlaneBufferType

parent ef066a0a
......@@ -16,7 +16,7 @@
#define DEFAULT_DRIVER_DIR "/usr/X11R6/lib/modules/dri"
#define DRIVER_EXTENSION "_drv_video.so"
#define DRIVER_INIT_FUNC "__vaDriverInit_0_18"
#define DRIVER_INIT_FUNC "__vaDriverInit_0_19"
#define CTX(dpy) ((VADriverContextP) dpy );
#define ASSERT_CONTEXT(dpy) assert( vaDbgContextIsValid(dpy) )
......
/*
* Video Decode Acceleration API Specification
*
* Rev. 0.18
* Rev. 0.19
* <jonathan.bian@intel.com>
*
* Revision History:
......@@ -15,6 +15,7 @@
* rev 0.17 (05/07/07 Jonathan Bian) - Added H.264/AVC data structures for slice level decode.
* rev 0.18 (05/14/07 Jonathan Bian) - Added data structures for MPEG-4 slice level decode
* and MPEG-2 motion compensation.
* rev 0.19 (08/06/07 Jonathan Bian) - Removed extra type for bitplane data (VAPictureBitPlaneBufferType)
*
* Acknowledgements:
* Thanks to Waldo Bastian for many valuable feedbacks.
......@@ -359,15 +360,14 @@ typedef int VABufferID;
typedef enum
{
VAPictureParameterBufferType = 0,
VAPictureBitPlaneBufferType = 1,
VAIQMatrixBufferType = 2,
VABitPlaneBufferType = 3,
VASliceGroupMapBufferType = 4,
VASliceParameterBufferType = 5,
VASliceDataBufferType = 6,
VAMacroblockParameterBufferType = 7,
VAResidualDataBufferType = 8,
VADeblockingParameterBufferType = 9,
VAIQMatrixBufferType = 1,
VABitPlaneBufferType = 2,
VASliceGroupMapBufferType = 3,
VASliceParameterBufferType = 4,
VASliceDataBufferType = 5,
VAMacroblockParameterBufferType = 6,
VAResidualDataBufferType = 7,
VADeblockingParameterBufferType = 8
} VABufferType;
/****************************
......
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