Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libva
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libva
Commits
6882f7bc
Commit
6882f7bc
authored
Aug 06, 2007
by
Waldo Bastian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libva 0.19 -> remove VAPictureBitPlaneBufferType
parent
ef066a0a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
src/va.c
src/va.c
+1
-1
src/va.h
src/va.h
+10
-10
No files found.
src/va.c
View file @
6882f7bc
...
...
@@ -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_1
8
"
#define DRIVER_INIT_FUNC "__vaDriverInit_0_1
9
"
#define CTX(dpy) ((VADriverContextP) dpy );
#define ASSERT_CONTEXT(dpy) assert( vaDbgContextIsValid(dpy) )
...
...
src/va.h
View file @
6882f7bc
/*
* Video Decode Acceleration API Specification
*
* Rev. 0.1
8
* Rev. 0.1
9
* <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
;
/****************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment