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
a410f1a0
Commit
a410f1a0
authored
Aug 07, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Vobsub: allow empty id language
Close #5525
parent
3f17ad71
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
26 deletions
+29
-26
modules/demux/vobsub.c
modules/demux/vobsub.c
+29
-26
No files found.
modules/demux/vobsub.c
View file @
a410f1a0
...
...
@@ -522,8 +522,16 @@ static int ParseVobSubIDX( demux_t *p_demux )
/* Lets start a new track */
if
(
sscanf
(
line
,
"id: %32[^ ,], index: %d"
,
language
,
&
i_track_id
)
=
=
2
)
language
,
&
i_track_id
)
!
=
2
)
{
if
(
sscanf
(
line
,
"id: , index: %d"
,
&
i_track_id
)
!=
1
)
{
msg_Warn
(
p_demux
,
"reading new track failed"
);
continue
;
}
language
[
0
]
=
'\0'
;
}
p_sys
->
i_tracks
++
;
p_sys
->
track
=
xrealloc
(
p_sys
->
track
,
sizeof
(
vobsub_track_t
)
*
(
p_sys
->
i_tracks
+
1
)
);
...
...
@@ -550,11 +558,6 @@ static int ParseVobSubIDX( demux_t *p_demux )
current_tk
->
p_es
=
es_out_Add
(
p_demux
->
out
,
&
fmt
);
msg_Dbg
(
p_demux
,
"new vobsub track detected"
);
}
else
{
msg_Warn
(
p_demux
,
"reading new track failed"
);
}
}
else
if
(
!
strncmp
(
line
,
"timestamp:"
,
10
)
)
{
/*
...
...
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