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
b6be61a2
Commit
b6be61a2
authored
Sep 20, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* some fixes to vobsub
TODO: create the index position control
parent
6d94b90c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
9 deletions
+4
-9
modules/demux/vobsub.c
modules/demux/vobsub.c
+4
-9
No files found.
modules/demux/vobsub.c
View file @
b6be61a2
...
...
@@ -46,11 +46,12 @@ static void Close( vlc_object_t *p_this );
vlc_module_begin
();
set_description
(
_
(
"Vobsub subtitles demux"
)
);
set_capability
(
"demux2"
,
0
);
set_capability
(
"demux2"
,
1
);
set_callbacks
(
Open
,
Close
);
add_shortcut
(
"vobsub"
);
add_shortcut
(
"subtitle"
);
vlc_module_end
();
/*****************************************************************************
...
...
@@ -114,12 +115,6 @@ static int Open ( vlc_object_t *p_this )
demux_sys_t
*
p_sys
;
int
i_max
;
if
(
strcmp
(
p_demux
->
psz_demux
,
"vobsub"
)
)
{
msg_Dbg
(
p_demux
,
"vobsub demux discarded"
);
return
VLC_EGENERIC
;
}
p_demux
->
pf_demux
=
Demux
;
p_demux
->
pf_control
=
Control
;
p_demux
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
demux_sys_t
)
);
...
...
@@ -427,6 +422,7 @@ static int ParseVobSubIDX( demux_t *p_demux )
return
(
VLC_EGENERIC
);
}
msg_Dbg
(
p_demux
,
"%s"
,
line
);
if
(
*
line
==
0
||
*
line
==
'\r'
||
*
line
==
'\n'
||
*
line
==
'#'
)
continue
;
else
if
(
!
strncmp
(
"size:"
,
line
,
5
)
)
...
...
@@ -449,7 +445,7 @@ static int ParseVobSubIDX( demux_t *p_demux )
es_format_t
fmt
;
/* Lets start a new track */
if
(
sscanf
(
line
,
"id: %s, index: %d"
,
if
(
sscanf
(
line
,
"id: %
2
s, index: %d"
,
language
,
&
i_track_id
)
==
2
)
{
p_sys
->
i_tracks
++
;
...
...
@@ -494,7 +490,6 @@ static int ParseVobSubIDX( demux_t *p_demux )
(
mtime_t
)
s
*
1000
+
(
mtime_t
)
ms
)
*
1000
;
i_location
=
loc
;
break
;
}
}
}
...
...
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