Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
7901743b
Commit
7901743b
authored
Jul 06, 2015
by
Felix Paul Kühne
Browse files
fullscreen view: fix playback state restoration issue (closes #15002)
parent
ff827de4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Sources/VLCMovieViewController.m
View file @
7901743b
...
...
@@ -833,7 +833,7 @@ typedef NS_ENUM(NSInteger, VLCPanType) {
self
.
brightnessSlider
.
value
=
[
UIScreen
mainScreen
].
brightness
*
2
.;
[
_equalizerView
reloadData
];
float
playbackRate
=
controller
.
playbackRate
;
double
playbackRate
=
controller
.
playbackRate
;
self
.
playbackSpeedSlider
.
value
=
log2
(
playbackRate
);
self
.
playbackSpeedIndicator
.
text
=
[
NSString
stringWithFormat
:
@"%.2fx"
,
playbackRate
];
...
...
Sources/VLCPlaybackController.m
View file @
7901743b
...
...
@@ -901,6 +901,8 @@ setstuff:
currentMediaHasTrackToChooseFrom:
self
.
currentMediaHasTrackToChooseFrom
currentMediaHasChapters:
self
.
currentMediaHasChapters
forPlaybackController:
self
];
if
([
self
.
delegate
respondsToSelector
:
@selector
(
prepareForMediaPlayback
:)])
[
self
.
delegate
prepareForMediaPlayback
:
self
];
}
-
(
void
)
scheduleSleepTimerWithInterval
:(
NSTimeInterval
)
timeInterval
...
...
Felix Paul Kühne
@fkuehne
mentioned in commit
dfc5643c
·
Jul 06, 2015
mentioned in commit
dfc5643c
mentioned in commit dfc5643c8e716065e4666d85e0b3bb2342532d32
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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