Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
44534710
Commit
44534710
authored
Jul 09, 2005
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vcdplayer.c: fix gcc 4-caught uninitialized variable.
vcd.c: more logical order of macros (I think)
parent
3f0b1c5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
modules/access/vcdx/vcd.c
modules/access/vcdx/vcd.c
+4
-4
modules/access/vcdx/vcdplayer.c
modules/access/vcdx/vcdplayer.c
+2
-1
No files found.
modules/access/vcdx/vcd.c
View file @
44534710
...
@@ -92,14 +92,14 @@ int E_(BlocksPerReadCallback) ( vlc_object_t *p_this, const char *psz_name,
...
@@ -92,14 +92,14 @@ int E_(BlocksPerReadCallback) ( vlc_object_t *p_this, const char *psz_name,
*****************************************************************************/
*****************************************************************************/
vlc_module_begin
();
vlc_module_begin
();
add_usage_hint
(
N_
(
"vcdx://[device-or-file][@{P,S,T}num]"
)
);
set_description
(
_
(
"Video CD (VCD 1.0, 1.1, 2.0, SVCD, HQVCD) input"
)
);
set_capability
(
"access2"
,
55
/* slightly lower than vcd */
);
set_shortname
(
N_
(
"(Super) Video CD"
));
set_shortname
(
N_
(
"(Super) Video CD"
));
set_callbacks
(
VCDOpen
,
VCDClose
);
set_description
(
_
(
"Video CD (VCD 1.0, 1.1, 2.0, SVCD, HQVCD) input"
)
);
add_usage_hint
(
N_
(
"vcdx://[device-or-file][@{P,S,T}num]"
)
);
add_shortcut
(
"vcdx"
);
add_shortcut
(
"vcdx"
);
set_category
(
CAT_INPUT
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
set_capability
(
"access2"
,
55
/* slightly lower than vcd */
);
set_callbacks
(
VCDOpen
,
VCDClose
);
/* Configuration options */
/* Configuration options */
add_integer
(
MODULE_STRING
"-debug"
,
0
,
NULL
,
add_integer
(
MODULE_STRING
"-debug"
,
0
,
NULL
,
...
...
modules/access/vcdx/vcdplayer.c
View file @
44534710
...
@@ -695,6 +695,7 @@ vcdplayer_play_default( access_t * p_access )
...
@@ -695,6 +695,7 @@ vcdplayer_play_default( access_t * p_access )
dbg_print
(
INPUT_DBG_PBC
,
"DEFAULT to %d"
,
itemid
.
num
);
dbg_print
(
INPUT_DBG_PBC
,
"DEFAULT to %d"
,
itemid
.
num
);
}
else
{
}
else
{
dbg_print
(
INPUT_DBG_PBC
,
"no DEFAULT for LID %d"
,
p_vcdplayer
->
i_lid
);
dbg_print
(
INPUT_DBG_PBC
,
"no DEFAULT for LID %d"
,
p_vcdplayer
->
i_lid
);
return
VLC_EGENERIC
;
}
}
#else
#else
...
@@ -724,7 +725,7 @@ vcdplayer_play_default( access_t * p_access )
...
@@ -724,7 +725,7 @@ vcdplayer_play_default( access_t * p_access )
/* PBC is not on. "default" selection beginning of current
/* PBC is not on. "default" selection beginning of current
selection . */
selection . */
p_vcdplayer
->
play_item
.
num
=
p_vcdplayer
->
play_item
.
num
;
itemid
.
num
=
p_vcdplayer
->
play_item
.
num
;
}
}
...
...
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