Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
ae99d8cd
Commit
ae99d8cd
authored
5 years ago
by
François Cartegnie
Browse files
Options
Downloads
Patches
Plain Diff
demux: adaptive: merge controls value updates
parent
167b3d14
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/demux/adaptive/PlaylistManager.cpp
+13
-21
13 additions, 21 deletions
modules/demux/adaptive/PlaylistManager.cpp
modules/demux/adaptive/PlaylistManager.h
+0
-1
0 additions, 1 deletion
modules/demux/adaptive/PlaylistManager.h
with
13 additions
and
22 deletions
modules/demux/adaptive/PlaylistManager.cpp
+
13
−
21
View file @
ae99d8cd
...
...
@@ -157,7 +157,6 @@ bool PlaylistManager::init()
playlist
->
playbackStart
.
Set
(
time
(
NULL
));
nextPlaylistupdate
=
playlist
->
playbackStart
.
Get
();
updateControlsContentType
();
updateControlsPosition
();
return
true
;
...
...
@@ -385,7 +384,6 @@ bool PlaylistManager::updatePlaylist()
for
(
it
=
streams
.
begin
();
it
!=
streams
.
end
();
++
it
)
(
*
it
)
->
runUpdates
();
updateControlsContentType
();
updateControlsPosition
();
return
true
;
}
...
...
@@ -449,7 +447,6 @@ int PlaylistManager::doDemux(vlc_tick_t increment)
AbstractStream
::
status
status
=
dequeue
(
demux
.
i_nzpcr
,
&
i_nzbarrier
);
updateControlsContentType
();
updateControlsPosition
();
switch
(
status
)
...
...
@@ -694,15 +691,25 @@ void * PlaylistManager::managerThread(void *opaque)
void
PlaylistManager
::
updateControlsPosition
()
{
vlc_mutex_locker
locker
(
&
cached
.
lock
);
const
vlc_tick_t
i_duration
=
cached
.
i_length
;
if
(
i_duration
==
0
)
if
(
playlist
->
isLive
())
{
cached
.
b_live
=
true
;
cached
.
i_length
=
0
;
}
else
{
cached
.
b_live
=
false
;
cached
.
i_length
=
playlist
->
duration
.
Get
();
}
if
(
cached
.
i_length
==
0
)
{
cached
.
f_position
=
0.0
;
}
else
{
const
vlc_tick_t
i_length
=
getCurrentPlaybackTime
()
-
getFirstPlaybackTime
();
cached
.
f_position
=
(
double
)
i_length
/
i_duration
;
cached
.
f_position
=
(
double
)
i_length
/
cached
.
i_length
;
}
vlc_tick_t
i_time
=
getCurrentPlaybackTime
();
...
...
@@ -711,21 +718,6 @@ void PlaylistManager::updateControlsPosition()
cached
.
i_time
=
i_time
;
}
void
PlaylistManager
::
updateControlsContentType
()
{
vlc_mutex_locker
locker
(
&
cached
.
lock
);
if
(
playlist
->
isLive
())
{
cached
.
b_live
=
true
;
cached
.
i_length
=
0
;
}
else
{
cached
.
b_live
=
false
;
cached
.
i_length
=
playlist
->
duration
.
Get
();
}
}
AbstractAdaptationLogic
*
PlaylistManager
::
createLogic
(
AbstractAdaptationLogic
::
LogicType
type
,
AbstractConnectionManager
*
conn
)
{
vlc_object_t
*
obj
=
VLC_OBJECT
(
p_demux
);
...
...
This diff is collapsed.
Click to expand it.
modules/demux/adaptive/PlaylistManager.h
+
0
−
1
View file @
ae99d8cd
...
...
@@ -87,7 +87,6 @@ namespace adaptive
void
unsetPeriod
();
void
updateControlsPosition
();
void
updateControlsContentType
();
/* local factories */
virtual
AbstractAdaptationLogic
*
createLogic
(
AbstractAdaptationLogic
::
LogicType
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment