Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5d51b9be
Commit
5d51b9be
authored
Apr 29, 2001
by
Stéphane Borel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-Fixed the title-change-with-no-input-restart in dvd.
-I haven't forgotten the chagelog this time :)
parent
2cc08ef1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
ChangeLog
ChangeLog
+1
-0
plugins/dvd/input_dvd.c
plugins/dvd/input_dvd.c
+6
-3
No files found.
ChangeLog
View file @
5d51b9be
...
...
@@ -4,6 +4,7 @@
HEAD
*
DVD
title
change
no
longer
restart
the
input
.
*
BeOS
crash
fix
by
Wade
Majors
<
guru
@
startrek
.
com
>.
*
Slight
modification
in
ClockManageRef
:
after
a
synchro
reinit
,
we
still
do
the
mwait
and
re
-
init
last
-
cr
.
...
...
plugins/dvd/input_dvd.c
View file @
5d51b9be
...
...
@@ -10,7 +10,7 @@
* -dvd_udf to find files
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: input_dvd.c,v 1.5
3 2001/04/29 14:52:42
stef Exp $
* $Id: input_dvd.c,v 1.5
4 2001/04/29 17:57:50
stef Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
*
...
...
@@ -581,7 +581,7 @@ static int DVDSetArea( input_thread_t * p_input, input_area_t * p_area )
/* uodate title environnement variable so that we don't
* loop on the same title forever */
//
main_PutIntVariable( INPUT_TITLE_VAR, p_dvd->i_title + 1 );
main_PutIntVariable
(
INPUT_TITLE_VAR
,
p_dvd
->
i_title
+
1
);
/* ifo vts */
if
(
IfoTitleSet
(
p_dvd
->
p_ifo
)
<
0
)
...
...
@@ -947,6 +947,9 @@ static int DVDSetArea( input_thread_t * p_input, input_area_t * p_area )
intf_WarnMsg
(
2
,
"dvd info: angle %d selected"
,
p_area
->
i_angle
);
}
/* warn interface that something has changed */
p_input
->
stream
.
b_changed
=
1
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
return
0
;
...
...
@@ -1139,7 +1142,7 @@ static int DVDRead( input_thread_t * p_input,
p_input
->
stream
.
p_selected_area
->
i_tell
+=
i_read_bytes
;
b_eot
=
!
(
p_input
->
stream
.
p_selected_area
->
i_tell
<
p_dvd
->
i_size
);
b_eof
=
b_eot
&&
(
(
p_dvd
->
i_title
+
1
)
<
p_input
->
stream
.
i_area_nb
);
b_eof
=
b_eot
&&
(
(
p_dvd
->
i_title
+
1
)
>=
p_input
->
stream
.
i_area_nb
);
p_area
=
p_input
->
stream
.
pp_areas
[
p_dvd
->
i_title
+
1
];
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
...
...
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