Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
5cc4255a
Commit
5cc4255a
authored
Jun 04, 2008
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few compilation warnings.
parent
e259db6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
src/misc/objects.c
src/misc/objects.c
+1
-0
src/video_output/vout_pictures.c
src/video_output/vout_pictures.c
+3
-2
No files found.
src/misc/objects.c
View file @
5cc4255a
...
...
@@ -1600,6 +1600,7 @@ void vlc_refcheck (vlc_object_t *obj)
static
void
held_objects_destroy
(
void
*
data
)
{
VLC_UNUSED
(
data
);
held_list_t
*
hl
=
vlc_threadvar_get
(
&
held_objects
);
vlc_object_t
*
caller
=
vlc_threadobj
();
...
...
src/video_output/vout_pictures.c
View file @
5cc4255a
...
...
@@ -378,7 +378,7 @@ picture_t * vout_RenderPicture( vout_thread_t *p_vout, picture_t *p_pic,
}
/* Convert image to the first direct buffer */
p_vout
->
p_chroma
->
p_owner
=
(
picture
_t
*
)
p_tmp_pic
;
p_vout
->
p_chroma
->
p_owner
=
(
filter_owner_sys
_t
*
)
p_tmp_pic
;
p_vout
->
p_chroma
->
pf_video_filter
(
p_vout
->
p_chroma
,
p_pic
);
/* Render subpictures on the first direct buffer */
...
...
@@ -399,7 +399,7 @@ picture_t * vout_RenderPicture( vout_thread_t *p_vout, picture_t *p_pic,
return
NULL
;
/* Convert image to the first direct buffer */
p_vout
->
p_chroma
->
p_owner
=
(
picture
_t
*
)
&
p_vout
->
p_picture
[
0
];
p_vout
->
p_chroma
->
p_owner
=
(
filter_owner_sys
_t
*
)
&
p_vout
->
p_picture
[
0
];
p_vout
->
p_chroma
->
pf_video_filter
(
p_vout
->
p_chroma
,
p_pic
);
/* Render subpictures on the first direct buffer */
...
...
@@ -926,6 +926,7 @@ int vout_ChromaCmp( vlc_fourcc_t i_chroma, vlc_fourcc_t i_amorhc )
void
__vout_CopyPicture
(
vlc_object_t
*
p_this
,
picture_t
*
p_dest
,
picture_t
*
p_src
)
{
VLC_UNUSED
(
p_this
);
int
i
;
for
(
i
=
0
;
i
<
p_src
->
i_planes
;
i
++
)
...
...
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