• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/libva


Commit MetaInfo

修订版6882f7bc3bcdb36c2f14fd1908de87069745657c (tree)
时间2007-08-07 08:27:32
作者Waldo Bastian <waldo.bastian@inte...>
CommiterWaldo Bastian

Log Message

libva 0.19 -> remove VAPictureBitPlaneBufferType

更改概述

差异

--- a/src/va.c
+++ b/src/va.c
@@ -16,7 +16,7 @@
1616
1717 #define DEFAULT_DRIVER_DIR "/usr/X11R6/lib/modules/dri"
1818 #define DRIVER_EXTENSION "_drv_video.so"
19-#define DRIVER_INIT_FUNC "__vaDriverInit_0_18"
19+#define DRIVER_INIT_FUNC "__vaDriverInit_0_19"
2020
2121 #define CTX(dpy) ((VADriverContextP) dpy );
2222 #define ASSERT_CONTEXT(dpy) assert( vaDbgContextIsValid(dpy) )
--- a/src/va.h
+++ b/src/va.h
@@ -1,7 +1,7 @@
11 /*
22 * Video Decode Acceleration API Specification
33 *
4- * Rev. 0.18
4+ * Rev. 0.19
55 * <jonathan.bian@intel.com>
66 *
77 * Revision History:
@@ -15,6 +15,7 @@
1515 * rev 0.17 (05/07/07 Jonathan Bian) - Added H.264/AVC data structures for slice level decode.
1616 * rev 0.18 (05/14/07 Jonathan Bian) - Added data structures for MPEG-4 slice level decode
1717 * and MPEG-2 motion compensation.
18+ * rev 0.19 (08/06/07 Jonathan Bian) - Removed extra type for bitplane data (VAPictureBitPlaneBufferType)
1819 *
1920 * Acknowledgements:
2021 * Thanks to Waldo Bastian for many valuable feedbacks.
@@ -359,15 +360,14 @@ typedef int VABufferID;
359360 typedef enum
360361 {
361362 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
371371 } VABufferType;
372372
373373 /****************************