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
f7bc314e
Commit
f7bc314e
authored
Jun 05, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/access/dvdread.c: fixed bug that made some DVDs unplayable.
parent
5ca93b37
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/access/dvdread.c
modules/access/dvdread.c
+6
-2
No files found.
modules/access/dvdread.c
View file @
f7bc314e
...
...
@@ -491,7 +491,7 @@ static int Demux( demux_t *p_demux )
DvdReadHandleDSI
(
p_demux
,
p_buffer
);
/* End of title */
if
(
p_sys
->
i_
next_vobu
>
p_sys
->
i_title_end_block
)
if
(
p_sys
->
i_
cur_cell
>=
p_sys
->
p_cur_pgc
->
nr_of_cells
)
{
if
(
p_sys
->
i_title
+
1
>=
p_sys
->
i_titles
)
{
...
...
@@ -516,7 +516,7 @@ static int Demux( demux_t *p_demux )
DemuxBlock
(
p_demux
,
p_buffer
,
DVD_VIDEO_LB_LEN
);
}
if
(
p_sys
->
i_cur_
block
>
p_sys
->
i_title_end_block
)
if
(
p_sys
->
i_cur_
cell
>=
p_sys
->
p_cur_pgc
->
nr_of_cells
)
{
if
(
p_sys
->
i_title
+
1
>=
p_sys
->
i_titles
)
{
...
...
@@ -1178,6 +1178,10 @@ static void DvdReadHandleDSI( demux_t *p_demux, uint8_t *p_data )
else
if
(
p_sys
->
dsi_pack
.
vobu_sri
.
next_vobu
==
SRI_END_OF_CELL
)
{
p_sys
->
i_cur_cell
=
p_sys
->
i_next_cell
;
/* End of title */
if
(
p_sys
->
i_cur_cell
>=
p_sys
->
p_cur_pgc
->
nr_of_cells
)
return
;
DvdReadFindCell
(
p_demux
);
p_sys
->
i_next_vobu
=
...
...
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