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
d579d01b
Commit
d579d01b
authored
Jul 16, 2005
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove gcc 4 uninitialize variable warning.
parent
61a89bc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/access/vcdx/vcdplayer.c
modules/access/vcdx/vcdplayer.c
+3
-3
No files found.
modules/access/vcdx/vcdplayer.c
View file @
d579d01b
...
...
@@ -755,7 +755,7 @@ vcdplayer_play_next( access_t * p_access )
p_vcdinfo
=
p_vcdplayer
->
vcd
;
itemid
.
type
=
p_vcdplayer
->
play_item
.
type
;
itemid
=
p_vcdplayer
->
play_item
;
if
(
vcdplayer_pbc_is_on
(
p_vcdplayer
))
{
...
...
@@ -849,7 +849,7 @@ vcdplayer_play_prev( access_t * p_access )
dbg_print
(
(
INPUT_DBG_CALL
|
INPUT_DBG_PBC
),
"current: %d"
,
p_vcdplayer
->
play_item
.
num
);
itemid
.
type
=
p_vcdplayer
->
play_item
.
type
;
itemid
=
p_vcdplayer
->
play_item
;
if
(
vcdplayer_pbc_is_on
(
p_vcdplayer
))
{
...
...
@@ -915,7 +915,7 @@ vcdplayer_play_return( access_t * p_access )
dbg_print
(
(
INPUT_DBG_CALL
|
INPUT_DBG_PBC
),
"current: %d"
,
p_vcdplayer
->
play_item
.
num
);
itemid
.
type
=
p_vcdplayer
->
play_item
.
type
;
itemid
=
p_vcdplayer
->
play_item
;
if
(
vcdplayer_pbc_is_on
(
p_vcdplayer
))
{
...
...
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