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
df1fe67b
Commit
df1fe67b
authored
Aug 13, 2008
by
Jean-Paul Saman
Committed by
Jean-Paul Saman
Aug 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compiler warnings in modules/video_output/fb.c
parent
5e7051c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/video_output/fb.c
modules/video_output/fb.c
+3
-1
No files found.
modules/video_output/fb.c
View file @
df1fe67b
...
...
@@ -466,6 +466,7 @@ static int NewPicture( vout_thread_t *p_vout, picture_t *p_pic )
*****************************************************************************/
static
void
FreePicture
(
vout_thread_t
*
p_vout
,
picture_t
*
p_pic
)
{
VLC_UNUSED
(
p_vout
);
free
(
p_pic
->
p_sys
->
p_data
);
free
(
p_pic
->
p_sys
);
p_pic
->
p_sys
=
NULL
;
...
...
@@ -557,7 +558,7 @@ static int Init( vout_thread_t *p_vout )
/* Find an empty picture slot */
for
(
i_index
=
0
;
i_index
<
VOUT_MAX_PICTURES
;
i_index
++
)
{
if
(
p_vout
->
p_picture
[
i_index
].
i_status
==
FREE_PICTURE
)
if
(
p_vout
->
p_picture
[
i_index
].
i_status
==
FREE_PICTURE
)
{
p_pic
=
p_vout
->
p_picture
+
i_index
;
break
;
...
...
@@ -978,6 +979,7 @@ static void CloseDisplay( vout_thread_t *p_vout )
*****************************************************************************/
static
void
SwitchDisplay
(
int
i_signal
)
{
VLC_UNUSED
(
i_signal
);
#if 0
vout_thread_t *p_vout;
...
...
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