Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
9ef9462d
Commit
9ef9462d
authored
Jun 23, 2004
by
gbazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/access/vcd/vcd.c, modules/demux/ps.c: fixed vcd.
parent
103019a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/access/vcd/vcd.c
modules/access/vcd/vcd.c
+1
-1
modules/demux/ps.c
modules/demux/ps.c
+1
-1
No files found.
modules/access/vcd/vcd.c
View file @
9ef9462d
...
...
@@ -197,7 +197,7 @@ static int Open( vlc_object_t *p_this )
p_access
->
info
.
i_size
=
p_sys
->
title
[
i_title
]
->
i_size
;
p_access
->
info
.
i_pos
=
(
p_sys
->
i_sector
-
p_sys
->
p_sectors
[
1
+
i_title
]
)
*
VCD_DATA_SIZE
;
p_access
->
psz_demux
=
strdup
(
"ps
2
"
);
p_access
->
psz_demux
=
strdup
(
"ps"
);
return
VLC_SUCCESS
;
...
...
modules/demux/ps.c
View file @
9ef9462d
...
...
@@ -44,7 +44,7 @@ static void Close ( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"PS demuxer"
)
);
set_capability
(
"demux2"
,
0
);
set_capability
(
"demux2"
,
1
);
set_callbacks
(
Open
,
Close
);
add_shortcut
(
"ps"
);
vlc_module_end
();
...
...
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