Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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
vlc-2-2
Commits
ec8fdba2
Commit
ec8fdba2
authored
May 06, 2014
by
Felix Abecassis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vdpau: fix redundant const qualifier
Was meant as constant pointer and constant pointed data.
parent
490324fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/hw/vdpau/vlc_vdpau.c
modules/hw/vdpau/vlc_vdpau.c
+2
-2
modules/hw/vdpau/vlc_vdpau.h
modules/hw/vdpau/vlc_vdpau.h
+2
-2
No files found.
modules/hw/vdpau/vlc_vdpau.c
View file @
ec8fdba2
...
...
@@ -321,7 +321,7 @@ VdpStatus vdp_output_surface_render_output_surface(const vdp_t *vdp,
VdpOutputSurface
dst_surface
,
const
VdpRect
*
dst_rect
,
VdpOutputSurface
src_surface
,
const
VdpRect
*
src_rect
,
const
VdpColor
*
colors
,
const
VdpOutputSurfaceRenderBlendState
const
*
state
,
uint32_t
flags
)
const
VdpOutputSurfaceRenderBlendState
*
const
state
,
uint32_t
flags
)
{
return
vdp
->
vt
.
output_surface_render_output_surface
(
dst_surface
,
dst_rect
,
src_surface
,
src_rect
,
colors
,
state
,
flags
);
...
...
@@ -422,7 +422,7 @@ VdpStatus vdp_video_mixer_set_feature_enables(const vdp_t *vdp,
VdpStatus
vdp_video_mixer_set_attribute_values
(
const
vdp_t
*
vdp
,
VdpVideoMixer
mixer
,
uint32_t
count
,
const
VdpVideoMixerAttribute
const
*
ids
,
const
void
*
const
*
values
)
const
VdpVideoMixerAttribute
*
const
ids
,
const
void
*
const
*
values
)
{
return
vdp
->
vt
.
video_mixer_set_attribute_values
(
mixer
,
count
,
ids
,
values
);
}
...
...
modules/hw/vdpau/vlc_vdpau.h
View file @
ec8fdba2
...
...
@@ -79,7 +79,7 @@ VdpStatus vdp_bitmap_surface_put_bits_native(const vdp_t *, VdpBitmapSurface,
const
void
*
const
*
,
const
uint32_t
*
,
const
VdpRect
*
);
VdpStatus
vdp_output_surface_render_output_surface
(
const
vdp_t
*
,
VdpOutputSurface
,
const
VdpRect
*
,
VdpOutputSurface
,
const
VdpRect
*
,
const
VdpColor
*
,
const
VdpOutputSurfaceRenderBlendState
const
*
,
const
VdpColor
*
,
const
VdpOutputSurfaceRenderBlendState
*
const
,
uint32_t
);
VdpStatus
vdp_output_surface_render_bitmap_surface
(
const
vdp_t
*
,
VdpOutputSurface
,
const
VdpRect
*
,
VdpBitmapSurface
,
const
VdpRect
*
,
...
...
@@ -110,7 +110,7 @@ VdpStatus vdp_video_mixer_create(const vdp_t *, VdpDevice, uint32_t,
VdpStatus
vdp_video_mixer_set_feature_enables
(
const
vdp_t
*
,
VdpVideoMixer
,
uint32_t
,
const
VdpVideoMixerFeature
*
,
const
VdpBool
*
);
VdpStatus
vdp_video_mixer_set_attribute_values
(
const
vdp_t
*
,
VdpVideoMixer
,
uint32_t
,
const
VdpVideoMixerAttribute
const
*
,
const
void
*
const
*
);
uint32_t
,
const
VdpVideoMixerAttribute
*
const
,
const
void
*
const
*
);
VdpStatus
vdp_video_mixer_get_feature_support
(
const
vdp_t
*
,
VdpVideoMixer
,
uint32_t
,
const
VdpVideoMixerFeature
*
,
VdpBool
*
);
VdpStatus
vdp_video_mixer_get_feature_enables
(
const
vdp_t
*
,
VdpVideoMixer
,
...
...
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