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
bfda68b6
Commit
bfda68b6
authored
Sep 21, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Thou shalt compile before thou commits
parent
b49fde0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/demux/vobsub.c
modules/demux/vobsub.c
+4
-4
No files found.
modules/demux/vobsub.c
View file @
bfda68b6
...
...
@@ -162,12 +162,12 @@ static int Open ( vlc_object_t *p_this )
if
(
p_sys
->
i_tracks
>
0
)
{
int
i
;
for
(
i
=
0
;
i
<
p_sys
->
i_tracks
)
for
(
i
=
0
;
i
<
p_sys
->
i_tracks
;
i
++
)
{
if
(
p_sys
->
track
[
i
]
->
i_subtitles
>
1
)
if
(
p_sys
->
track
[
i
]
.
i_subtitles
>
1
)
{
if
(
p_sys
->
track
[
i
]
->
p_subtitles
[
p_sys
->
track
[
i
]
->
i_subtitles
-
1
]
->
i_start
>
p_sys
->
i_length
)
p_sys
->
i_length
=
(
mtime_t
)
p_sys
->
track
[
i
]
->
p_subtitles
[
p_sys
->
track
[
i
]
->
i_subtitles
-
1
]
->
i_start
+
1
*
1000
*
1000
;
if
(
p_sys
->
track
[
i
]
.
p_subtitles
[
p_sys
->
track
[
i
].
i_subtitles
-
1
].
i_start
>
p_sys
->
i_length
)
p_sys
->
i_length
=
(
mtime_t
)
p_sys
->
track
[
i
]
.
p_subtitles
[
p_sys
->
track
[
i
].
i_subtitles
-
1
].
i_start
+
1
*
1000
*
1000
;
}
}
}
...
...
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