]> git.sesse.net Git - vlc/blob - modules/demux/dash/mpd/SegmentTemplate.cpp
demux: ts: adjust PTS based on PCR's (fix #13803)
[vlc] / modules / demux / dash / mpd / SegmentTemplate.cpp
1 /*****************************************************************************
2  * SegmentTemplate.cpp: Implement the UrlTemplate element.
3  *****************************************************************************
4  * Copyright (C) 1998-2007 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Hugo BeauzĂ©e-Luyssen <beauze.h@gmail.com>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include "SegmentTemplate.h"
28 #include "SegmentTimeline.h"
29 #include "Representation.h"
30 #include "AdaptationSet.h"
31
32 using namespace dash::mpd;
33
34 BaseSegmentTemplate::BaseSegmentTemplate( ICanonicalUrl *parent ) :
35     Segment( parent )
36 {
37 }
38
39 Url BaseSegmentTemplate::getUrlSegment() const
40 {
41     Url ret = getParentUrlSegment();
42     if (!sourceUrl.empty())
43     {
44         ret.append(Url::Component(
45                      sourceUrl,
46                      dynamic_cast<const MediaSegmentTemplate *>(this)) /* casts to NULL if != */
47         );
48     }
49     return ret;
50 }
51
52 MediaSegmentTemplate::MediaSegmentTemplate( SegmentInformation *parent ) :
53     BaseSegmentTemplate( parent ), Timelineable(), TimescaleAble( parent )
54 {
55     debugName = "SegmentTemplate";
56     classId = Segment::CLASSID_SEGMENT;
57     startNumber.Set( 0 );
58     initialisationSegment.Set( NULL );
59 }
60
61 InitSegmentTemplate::InitSegmentTemplate( ICanonicalUrl *parent ) :
62     BaseSegmentTemplate(parent)
63 {
64     debugName = "InitSegmentTemplate";
65     classId = InitSegment::CLASSID_INITSEGMENT;
66 }