Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
9eb0513a
Commit
9eb0513a
authored
Sep 14, 2010
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Qt4: don't reset rate when input changes"
This reverts commit
21ad24ea
. I'll try to do it properly in core
parent
73ae1440
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+3
-4
No files found.
modules/gui/qt4/input_manager.cpp
View file @
9eb0513a
...
...
@@ -81,7 +81,7 @@ InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
artUrl
=
""
;
p_input
=
NULL
;
p_input_vbi
=
NULL
;
f_rate
=
1
.
;
f_rate
=
0
.
;
p_item
=
NULL
;
b_video
=
false
;
timeA
=
0
;
...
...
@@ -114,9 +114,7 @@ void InputManager::setInput( input_thread_t *_p_input )
UpdateVout
();
p_item
=
input_GetItem
(
p_input
);
var_SetFloat
(
p_input
,
"rate"
,
f_rate
);
emit
rateChanged
(
f_rate
);
emit
rateChanged
(
var_GetFloat
(
p_input
,
"rate"
)
);
}
else
{
...
...
@@ -143,6 +141,7 @@ void InputManager::delInput()
b_video
=
false
;
timeA
=
0
;
timeB
=
0
;
f_rate
=
0.
;
if
(
p_input_vbi
)
{
...
...
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