Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
eb141b28
Commit
eb141b28
authored
Jan 01, 2015
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: dash: add basic seeking using next segment
Still doesn't control streamDemux
parent
ecfe1e53
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
161 additions
and
21 deletions
+161
-21
modules/demux/dash/DASHManager.cpp
modules/demux/dash/DASHManager.cpp
+30
-0
modules/demux/dash/DASHManager.h
modules/demux/dash/DASHManager.h
+2
-0
modules/demux/dash/SegmentTracker.cpp
modules/demux/dash/SegmentTracker.cpp
+13
-0
modules/demux/dash/SegmentTracker.hpp
modules/demux/dash/SegmentTracker.hpp
+1
-0
modules/demux/dash/Streams.cpp
modules/demux/dash/Streams.cpp
+25
-0
modules/demux/dash/Streams.hpp
modules/demux/dash/Streams.hpp
+5
-0
modules/demux/dash/dash.cpp
modules/demux/dash/dash.cpp
+12
-1
modules/demux/dash/mpd/IsoffMainParser.cpp
modules/demux/dash/mpd/IsoffMainParser.cpp
+3
-0
modules/demux/dash/mpd/SegmentInformation.cpp
modules/demux/dash/mpd/SegmentInformation.cpp
+55
-18
modules/demux/dash/mpd/SegmentInformation.hpp
modules/demux/dash/mpd/SegmentInformation.hpp
+5
-1
modules/demux/dash/mpd/SegmentList.cpp
modules/demux/dash/mpd/SegmentList.cpp
+1
-1
modules/demux/dash/mpd/SegmentList.h
modules/demux/dash/mpd/SegmentList.h
+9
-0
No files found.
modules/demux/dash/DASHManager.cpp
View file @
eb141b28
...
...
@@ -156,3 +156,33 @@ mtime_t DASHManager::getDuration() const
else
return
CLOCK_FREQ
*
mpd
->
getDuration
();
}
bool
DASHManager
::
setPosition
(
mtime_t
time
)
{
bool
ret
=
true
;
for
(
int
real
=
0
;
real
<
2
;
real
++
)
{
/* Always probe if we can seek first */
for
(
int
type
=
0
;
type
<
Streams
::
count
;
type
++
)
{
if
(
!
streams
[
type
])
continue
;
ret
&=
streams
[
type
]
->
setPosition
(
time
,
!
real
);
}
if
(
!
ret
)
break
;
}
return
ret
;
}
bool
DASHManager
::
seekAble
()
const
{
for
(
int
type
=
0
;
type
<
Streams
::
count
;
type
++
)
{
if
(
!
streams
[
type
])
continue
;
if
(
!
streams
[
type
]
->
seekAble
())
return
false
;
}
return
true
;
}
modules/demux/dash/DASHManager.h
View file @
eb141b28
...
...
@@ -44,6 +44,8 @@ namespace dash
mtime_t
getPCR
()
const
;
int
getGroup
()
const
;
int
esCount
()
const
;
bool
setPosition
(
mtime_t
);
bool
seekAble
()
const
;
private:
http
::
HTTPConnectionManager
*
conManager
;
...
...
modules/demux/dash/SegmentTracker.cpp
View file @
eb141b28
...
...
@@ -95,3 +95,16 @@ Chunk * SegmentTracker::getNextChunk(Streams::Type type)
return
chunk
;
}
bool
SegmentTracker
::
setPosition
(
mtime_t
time
,
bool
tryonly
)
{
uint64_t
segcount
;
if
(
prevRepresentation
&&
prevRepresentation
->
getSegmentNumberByTime
(
time
,
&
segcount
))
{
if
(
!
tryonly
)
count
=
segcount
;
return
true
;
}
return
false
;
}
modules/demux/dash/SegmentTracker.hpp
View file @
eb141b28
...
...
@@ -56,6 +56,7 @@ namespace dash
void
setAdaptationLogic
(
logic
::
AbstractAdaptationLogic
*
);
void
resetCounter
();
http
::
Chunk
*
getNextChunk
(
Streams
::
Type
);
bool
setPosition
(
mtime_t
,
bool
);
private:
bool
initializing
;
...
...
modules/demux/dash/Streams.cpp
View file @
eb141b28
...
...
@@ -141,6 +141,11 @@ Chunk * Stream::getChunk()
return
currentChunk
;
}
bool
Stream
::
seekAble
()
const
{
return
(
output
&&
output
->
seekAble
());
}
size_t
Stream
::
read
(
HTTPConnectionManager
*
connManager
)
{
Chunk
*
chunk
=
getChunk
();
...
...
@@ -210,6 +215,14 @@ size_t Stream::read(HTTPConnectionManager *connManager)
return
readsize
;
}
bool
Stream
::
setPosition
(
mtime_t
time
,
bool
tryonly
)
{
bool
ret
=
segmentTracker
->
setPosition
(
time
,
tryonly
);
if
(
!
tryonly
&&
ret
)
output
->
setPosition
(
time
);
return
ret
;
}
AbstractStreamOutput
::
AbstractStreamOutput
(
demux_t
*
demux
)
{
realdemux
=
demux
;
...
...
@@ -217,6 +230,7 @@ AbstractStreamOutput::AbstractStreamOutput(demux_t *demux)
pcr
=
VLC_TS_0
;
group
=
-
1
;
escount
=
0
;
seekable
=
true
;
fakeesout
=
new
es_out_t
;
if
(
!
fakeesout
)
...
...
@@ -257,6 +271,17 @@ void AbstractStreamOutput::pushBlock(block_t *block)
stream_DemuxSend
(
demuxstream
,
block
);
}
bool
AbstractStreamOutput
::
seekAble
()
const
{
return
(
demuxstream
&&
seekable
);
}
void
AbstractStreamOutput
::
setPosition
(
mtime_t
nztime
)
{
es_out_Control
(
realdemux
->
out
,
ES_OUT_SET_NEXT_DISPLAY_TIME
,
VLC_TS_0
+
nztime
);
}
/* Static callbacks */
es_out_id_t
*
AbstractStreamOutput
::
esOutAdd
(
es_out_t
*
fakees
,
const
es_format_t
*
p_fmt
)
{
...
...
modules/demux/dash/Streams.hpp
View file @
eb141b28
...
...
@@ -53,7 +53,9 @@ namespace dash
mtime_t
getPCR
()
const
;
int
getGroup
()
const
;
int
esCount
()
const
;
bool
seekAble
()
const
;
size_t
read
(
http
::
HTTPConnectionManager
*
);
bool
setPosition
(
mtime_t
,
bool
);
private:
http
::
Chunk
*
getChunk
();
...
...
@@ -77,6 +79,8 @@ namespace dash
mtime_t
getPCR
()
const
;
int
getGroup
()
const
;
int
esCount
()
const
;
bool
seekAble
()
const
;
void
setPosition
(
mtime_t
);
protected:
mtime_t
pcr
;
...
...
@@ -84,6 +88,7 @@ namespace dash
int
escount
;
es_out_t
*
fakeesout
;
/* to intercept/proxy what is sent from demuxstream */
stream_t
*
demuxstream
;
bool
seekable
;
private:
demux_t
*
realdemux
;
...
...
modules/demux/dash/dash.cpp
View file @
eb141b28
...
...
@@ -195,7 +195,7 @@ static int Control (demux_t *p_demux, int i_query, va_list args)
switch
(
i_query
)
{
case
DEMUX_CAN_SEEK
:
*
(
va_arg
(
args
,
bool
*
))
=
false
;
*
(
va_arg
(
args
,
bool
*
))
=
p_sys
->
p_dashManager
->
seekAble
()
;
break
;
case
DEMUX_CAN_CONTROL_PACE
:
...
...
@@ -222,6 +222,17 @@ static int Control (demux_t *p_demux, int i_query, va_list args)
/
p_sys
->
p_dashManager
->
getDuration
();
break
;
case
DEMUX_SET_POSITION
:
if
(
!
p_sys
->
p_dashManager
->
getDuration
()
||
!
p_sys
->
p_dashManager
->
setPosition
(
p_sys
->
p_dashManager
->
getDuration
()
*
va_arg
(
args
,
double
)))
return
VLC_EGENERIC
;
break
;
case
DEMUX_SET_TIME
:
if
(
!
p_sys
->
p_dashManager
->
setPosition
(
va_arg
(
args
,
int64_t
)))
return
VLC_EGENERIC
;
break
;
case
DEMUX_GET_PTS_DELAY
:
*
va_arg
(
args
,
int64_t
*
)
=
INT64_C
(
1000
)
*
var_InheritInteger
(
p_demux
,
"network-caching"
);
...
...
modules/demux/dash/mpd/IsoffMainParser.cpp
View file @
eb141b28
...
...
@@ -280,6 +280,9 @@ size_t IsoffMainParser::parseSegmentList(Node * segListNode, SegmentInformation
if
(
segListNode
->
hasAttribute
(
"duration"
))
list
->
setDuration
(
Integer
<
mtime_t
>
(
segListNode
->
getAttributeValue
(
"duration"
)));
if
(
segListNode
->
hasAttribute
(
"timescale"
))
list
->
timescale
.
Set
(
Integer
<
uint64_t
>
(
segListNode
->
getAttributeValue
(
"timescale"
)));
std
::
vector
<
Node
*>::
const_iterator
it
;
for
(
it
=
segments
.
begin
();
it
!=
segments
.
end
();
it
++
)
{
...
...
modules/demux/dash/mpd/SegmentInformation.cpp
View file @
eb141b28
...
...
@@ -59,35 +59,58 @@ SegmentInformation::~SegmentInformation()
delete
segmentTemplate
[
i
];
}
vector
<
ISegment
*>
SegmentInformation
::
getSegments
()
const
vector
<
ISegment
*>
SegmentInformation
::
getSegments
(
SegmentInfoType
type
)
const
{
vector
<
ISegment
*>
retSegments
;
SegmentList
*
segList
=
inheritSegmentList
();
/* init segments are always single segment */
ISegment
*
segment
=
getSegment
(
INFOTYPE_INIT
);
if
(
segment
)
retSegments
.
push_back
(
segment
);
if
(
inheritSegmentTemplate
(
INFOTYPE_MEDIA
)
)
switch
(
type
)
{
retSegments
.
push_back
(
inheritSegmentTemplate
(
INFOTYPE_MEDIA
)
);
}
else
if
(
segList
&&
!
segList
->
getSegments
().
empty
()
)
{
std
::
vector
<
Segment
*>::
const_iterator
it
;
for
(
it
=
segList
->
getSegments
().
begin
();
it
!=
segList
->
getSegments
().
end
();
it
++
)
case
INFOTYPE_INIT
:
{
std
::
vector
<
ISegment
*>
list
=
(
*
it
)
->
subSegments
();
retSegments
.
insert
(
retSegments
.
end
(),
list
.
begin
(),
list
.
end
()
);
/* init segments are always single segment */
ISegment
*
segment
=
getSegment
(
INFOTYPE_INIT
);
if
(
segment
)
retSegments
.
push_back
(
segment
);
}
break
;
case
INFOTYPE_MEDIA
:
{
SegmentList
*
segList
=
inheritSegmentList
();
if
(
inheritSegmentTemplate
(
INFOTYPE_MEDIA
)
)
{
retSegments
.
push_back
(
inheritSegmentTemplate
(
INFOTYPE_MEDIA
)
);
}
else
if
(
segList
&&
!
segList
->
getSegments
().
empty
()
)
{
std
::
vector
<
Segment
*>::
const_iterator
it
;
for
(
it
=
segList
->
getSegments
().
begin
();
it
!=
segList
->
getSegments
().
end
();
it
++
)
{
std
::
vector
<
ISegment
*>
list
=
(
*
it
)
->
subSegments
();
retSegments
.
insert
(
retSegments
.
end
(),
list
.
begin
(),
list
.
end
()
);
}
}
}
default:
break
;
}
return
retSegments
;
}
vector
<
ISegment
*>
SegmentInformation
::
getSegments
()
const
{
vector
<
ISegment
*>
retSegments
;
for
(
int
i
=
0
;
i
<
InfoTypeCount
;
i
++
)
{
vector
<
ISegment
*>
segs
=
getSegments
(
static_cast
<
SegmentInfoType
>
(
i
));
retSegments
.
insert
(
retSegments
.
end
(),
segs
.
begin
(),
segs
.
end
()
);
}
return
retSegments
;
}
ISegment
*
SegmentInformation
::
getSegment
(
SegmentInfoType
type
,
uint64_t
pos
)
const
{
SegmentBase
*
segBase
=
inheritSegmentBase
();
...
...
@@ -134,6 +157,20 @@ ISegment * SegmentInformation::getSegment(SegmentInfoType type, uint64_t pos) co
return
segment
;
}
bool
SegmentInformation
::
getSegmentNumberByTime
(
mtime_t
time
,
uint64_t
*
ret
)
const
{
SegmentList
*
segList
=
inheritSegmentList
();
if
(
segList
->
getDuration
()
)
{
uint64_t
timescale
=
segList
->
timescale
.
Get
();
if
(
!
timescale
)
timescale
=
getTimescale
();
*
ret
=
time
/
(
CLOCK_FREQ
*
segList
->
getDuration
()
/
timescale
);
return
true
;
}
return
false
;
}
bool
SegmentInformation
::
canBitswitch
()
const
{
if
(
bitswitch_policy
==
BITSWITCH_INHERIT
)
...
...
modules/demux/dash/mpd/SegmentInformation.hpp
View file @
eb141b28
...
...
@@ -48,7 +48,6 @@ namespace dash
SegmentInformation
(
SegmentInformation
*
=
0
);
explicit
SegmentInformation
(
ICanonicalUrl
*
);
virtual
~
SegmentInformation
();
std
::
vector
<
ISegment
*>
getSegments
()
const
;
bool
canBitswitch
()
const
;
uint64_t
getTimescale
()
const
;
virtual
mtime_t
getPeriodStart
()
const
;
...
...
@@ -70,6 +69,11 @@ namespace dash
static
const
int
InfoTypeCount
=
INFOTYPE_INDEX
+
1
;
ISegment
*
getSegment
(
SegmentInfoType
,
uint64_t
=
0
)
const
;
bool
getSegmentNumberByTime
(
mtime_t
,
uint64_t
*
)
const
;
protected:
std
::
vector
<
ISegment
*>
getSegments
()
const
;
std
::
vector
<
ISegment
*>
getSegments
(
SegmentInfoType
)
const
;
private:
void
setSegmentList
(
SegmentList
*
);
...
...
modules/demux/dash/mpd/SegmentList.cpp
View file @
eb141b28
...
...
@@ -34,7 +34,7 @@ using namespace dash::mpd;
SegmentList
::
SegmentList
(
ICanonicalUrl
*
parent
)
:
SegmentInfoCommon
(
parent
)
{
timescale
.
Set
(
0
);
}
SegmentList
::~
SegmentList
()
{
...
...
modules/demux/dash/mpd/SegmentList.h
View file @
eb141b28
...
...
@@ -25,8 +25,15 @@
#ifndef SEGMENTLIST_H_
#define SEGMENTLIST_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "mpd/SegmentInfoCommon.h"
#include "mpd/ICanonicalUrl.hpp"
#include "Properties.hpp"
#include <vlc_common.h>
namespace
dash
{
...
...
@@ -41,6 +48,8 @@ namespace dash
const
std
::
vector
<
Segment
*>&
getSegments
()
const
;
void
addSegment
(
Segment
*
seg
);
Property
<
uint64_t
>
timescale
;
private:
std
::
vector
<
Segment
*>
segments
;
};
...
...
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