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
42eca57f
Commit
42eca57f
authored
May 17, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixed race condition with b_seekable.
parent
5232e588
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
16 deletions
+15
-16
modules/gui/wxwindows/timer.cpp
modules/gui/wxwindows/timer.cpp
+14
-16
modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/wxwindows.h
+1
-0
No files found.
modules/gui/wxwindows/timer.cpp
View file @
42eca57f
...
...
@@ -90,8 +90,6 @@ Timer::~Timer()
*****************************************************************************/
void
Timer
::
Notify
()
{
vlc_bool_t
b_pace_control
;
vlc_mutex_lock
(
&
p_intf
->
change_lock
);
/* Update the input */
...
...
@@ -101,27 +99,17 @@ void Timer::Notify()
(
input_thread_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_INPUT
,
FIND_ANYWHERE
);
/*
Show slider
*/
/*
Refresh interface
*/
if
(
p_intf
->
p_sys
->
p_input
)
{
if
(
p_intf
->
p_sys
->
p_input
->
stream
.
b_seekable
)
{
p_main_interface
->
slider
->
SetValue
(
0
);
p_main_interface
->
slider_frame
->
Show
();
p_main_interface
->
frame_sizer
->
Show
(
p_main_interface
->
slider_frame
);
p_main_interface
->
frame_sizer
->
Layout
();
p_main_interface
->
frame_sizer
->
Fit
(
p_main_interface
);
}
p_main_interface
->
slider
->
SetValue
(
0
);
b_old_seekable
=
VLC_FALSE
;
p_main_interface
->
statusbar
->
SetStatusText
(
wxU
(
p_intf
->
p_sys
->
p_input
->
psz_source
),
2
);
p_main_interface
->
TogglePlayButton
(
PLAYING_S
);
i_old_playing_status
=
PLAYING_S
;
/* control buttons for free pace streams */
b_pace_control
=
p_intf
->
p_sys
->
p_input
->
stream
.
b_pace_control
;
}
}
else
if
(
p_intf
->
p_sys
->
p_input
->
b_dead
)
...
...
@@ -144,7 +132,6 @@ void Timer::Notify()
}
if
(
p_intf
->
p_sys
->
p_input
)
{
input_thread_t
*
p_input
=
p_intf
->
p_sys
->
p_input
;
...
...
@@ -157,6 +144,17 @@ void Timer::Notify()
p_intf
->
p_sys
->
b_playing
=
1
;
/* Manage the slider */
if
(
p_intf
->
p_sys
->
p_input
->
stream
.
b_seekable
&&
!
b_old_seekable
)
{
/* Done like this because b_seekable is set slightly after
* the new input object is available. */
b_old_seekable
=
VLC_TRUE
;
p_main_interface
->
slider_frame
->
Show
();
p_main_interface
->
frame_sizer
->
Show
(
p_main_interface
->
slider_frame
);
p_main_interface
->
frame_sizer
->
Layout
();
p_main_interface
->
frame_sizer
->
Fit
(
p_main_interface
);
}
if
(
p_input
->
stream
.
b_seekable
&&
p_intf
->
p_sys
->
b_playing
)
{
/* Update the slider if the user isn't dragging it. */
...
...
modules/gui/wxwindows/wxwindows.h
View file @
42eca57f
...
...
@@ -180,6 +180,7 @@ private:
Interface
*
p_main_interface
;
int
i_old_playing_status
;
int
i_old_rate
;
vlc_bool_t
b_old_seekable
;
};
/* Main Interface */
...
...
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