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
7819bc53
Commit
7819bc53
authored
Jun 13, 2009
by
Austin Yuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove vaSetSubpicturePalette
Signed-off-by:
Austin Yuan
<
shengquan.yuan@intel.com
>
parent
36bfd6d5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
31 deletions
+0
-31
src/va.c
src/va.c
+0
-20
src/va_backend.h
src/va_backend.h
+0
-11
No files found.
src/va.c
View file @
7819bc53
...
...
@@ -215,7 +215,6 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name)
CHECK_VTABLE
(
vaStatus
,
ctx
,
CreateSubpicture
);
CHECK_VTABLE
(
vaStatus
,
ctx
,
DestroySubpicture
);
CHECK_VTABLE
(
vaStatus
,
ctx
,
SetSubpictureImage
);
CHECK_VTABLE
(
vaStatus
,
ctx
,
SetSubpicturePalette
);
CHECK_VTABLE
(
vaStatus
,
ctx
,
SetSubpictureChromakey
);
CHECK_VTABLE
(
vaStatus
,
ctx
,
SetSubpictureGlobalAlpha
);
CHECK_VTABLE
(
vaStatus
,
ctx
,
AssociateSubpicture
);
...
...
@@ -1046,25 +1045,6 @@ VAStatus vaSetSubpictureImage (
return
ctx
->
vtable
.
vaSetSubpictureImage
(
ctx
,
subpicture
,
image
);
}
#warning TODO: Remove vaSetSubpicturePalette in rev 0.29
VAStatus
vaSetSubpicturePalette
(
VADisplay
dpy
,
VASubpictureID
subpicture
,
/*
* pointer to an array holding the palette data. The size of the array is
* num_palette_entries * entry_bytes in size. The order of the components
* in the palette is described by the component_order in VASubpicture struct
*/
unsigned
char
*
palette
)
{
VADriverContextP
ctx
;
CHECK_DISPLAY
(
dpy
);
ctx
=
CTX
(
dpy
);
TRACE
(
vaSetSubpicturePalette
);
return
ctx
->
vtable
.
vaSetSubpicturePalette
(
ctx
,
subpicture
,
palette
);
}
/*
* If chromakey is enabled, then the area where the source value falls within
...
...
src/va_backend.h
View file @
7819bc53
...
...
@@ -303,17 +303,6 @@ struct VADriverVTable
VAImageID
image
);
VAStatus
(
*
vaSetSubpicturePalette
)
(
VADriverContextP
ctx
,
VASubpictureID
subpicture
,
/*
* pointer to an array holding the palette data. The size of the array is
* num_palette_entries * entry_bytes in size. The order of the components
* in the palette is described by the component_order in VASubpicture struct
*/
unsigned
char
*
palette
);
VAStatus
(
*
vaSetSubpictureChromakey
)
(
VADriverContextP
ctx
,
VASubpictureID
subpicture
,
...
...
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