hardware/intel/libva
修订版 | 6882f7bc3bcdb36c2f14fd1908de87069745657c (tree) |
---|---|
时间 | 2007-08-07 08:27:32 |
作者 | Waldo Bastian <waldo.bastian@inte...> |
Commiter | Waldo Bastian |
libva 0.19 -> remove VAPictureBitPlaneBufferType
@@ -16,7 +16,7 @@ | ||
16 | 16 | |
17 | 17 | #define DEFAULT_DRIVER_DIR "/usr/X11R6/lib/modules/dri" |
18 | 18 | #define DRIVER_EXTENSION "_drv_video.so" |
19 | -#define DRIVER_INIT_FUNC "__vaDriverInit_0_18" | |
19 | +#define DRIVER_INIT_FUNC "__vaDriverInit_0_19" | |
20 | 20 | |
21 | 21 | #define CTX(dpy) ((VADriverContextP) dpy ); |
22 | 22 | #define ASSERT_CONTEXT(dpy) assert( vaDbgContextIsValid(dpy) ) |
@@ -1,7 +1,7 @@ | ||
1 | 1 | /* |
2 | 2 | * Video Decode Acceleration API Specification |
3 | 3 | * |
4 | - * Rev. 0.18 | |
4 | + * Rev. 0.19 | |
5 | 5 | * <jonathan.bian@intel.com> |
6 | 6 | * |
7 | 7 | * Revision History: |
@@ -15,6 +15,7 @@ | ||
15 | 15 | * rev 0.17 (05/07/07 Jonathan Bian) - Added H.264/AVC data structures for slice level decode. |
16 | 16 | * rev 0.18 (05/14/07 Jonathan Bian) - Added data structures for MPEG-4 slice level decode |
17 | 17 | * and MPEG-2 motion compensation. |
18 | + * rev 0.19 (08/06/07 Jonathan Bian) - Removed extra type for bitplane data (VAPictureBitPlaneBufferType) | |
18 | 19 | * |
19 | 20 | * Acknowledgements: |
20 | 21 | * Thanks to Waldo Bastian for many valuable feedbacks. |
@@ -359,15 +360,14 @@ typedef int VABufferID; | ||
359 | 360 | typedef enum |
360 | 361 | { |
361 | 362 | VAPictureParameterBufferType = 0, |
362 | - VAPictureBitPlaneBufferType = 1, | |
363 | - VAIQMatrixBufferType = 2, | |
364 | - VABitPlaneBufferType = 3, | |
365 | - VASliceGroupMapBufferType = 4, | |
366 | - VASliceParameterBufferType = 5, | |
367 | - VASliceDataBufferType = 6, | |
368 | - VAMacroblockParameterBufferType = 7, | |
369 | - VAResidualDataBufferType = 8, | |
370 | - VADeblockingParameterBufferType = 9, | |
363 | + VAIQMatrixBufferType = 1, | |
364 | + VABitPlaneBufferType = 2, | |
365 | + VASliceGroupMapBufferType = 3, | |
366 | + VASliceParameterBufferType = 4, | |
367 | + VASliceDataBufferType = 5, | |
368 | + VAMacroblockParameterBufferType = 6, | |
369 | + VAResidualDataBufferType = 7, | |
370 | + VADeblockingParameterBufferType = 8 | |
371 | 371 | } VABufferType; |
372 | 372 | |
373 | 373 | /**************************** |