aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/mpd/SegmentURL.cpp
blob: 765cc9696c0d886eb3ac569d43cc18fa420816b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * SegmentURL.cpp
 *****************************************************************************
 * Copyright (C) 2012, bitmovin Softwareentwicklung OG, All Rights Reserved
 *
 * Email: libdash-dev@vicky.bitmovin.net
 *
 * This source code and its use and distribution, is subject to the terms
 * and conditions of the applicable license agreement.
 *****************************************************************************/

#include "SegmentURL.h"

using namespace dash::mpd;
using namespace dash::helpers;

SegmentURL::SegmentURL    () :
            mediaURI(""),
            mediaRange(""),
            indexURI(""),
            indexRange(""),
	    bitrate(0)
{
}
SegmentURL::~SegmentURL   ()
{
}

const std::string&  SegmentURL::GetMediaURI     ()  const
{
    return this->mediaURI;
}
void                SegmentURL::SetMediaURI     (const std::string& mediaURI)
{
    this->mediaURI = mediaURI;
}
const std::string&  SegmentURL::GetMediaRange   ()  const
{
    return this->mediaRange;
}
void                SegmentURL::SetMediaRange   (const std::string& mediaRange)
{
    this->mediaRange = mediaRange;
}
const std::string&  SegmentURL::GetIndexURI     ()  const
{
    return this->indexURI;
}
uint64_t			SegmentURL::GetActualRate		()
{
	return this->bitrate;
}
void                SegmentURL::SetIndexURI     (const std::string& indexURI)
{
    this->indexURI = indexURI;
}
const std::string&  SegmentURL::GetIndexRange   ()  const
{
    return this->indexRange;
}
void                SegmentURL::SetIndexRange   (const std::string& indexRange)
{
    this->indexRange = indexRange;
}
void				SegmentURL::SetBitrate		(const std::string& bitrate)
{
	this->bitrate = atoi(bitrate.c_str());
}
ISegment*           SegmentURL::ToMediaSegment  (const std::vector<IBaseUrl *>& baseurls) const
{
    Segment *seg = new Segment();
    
    if(seg->Init(baseurls, this->mediaURI, this->mediaRange, dash::metrics::MediaSegment))
        return seg;

    delete(seg);

    return NULL;
}
ISegment*           SegmentURL::ToIndexSegment  (const std::vector<IBaseUrl *>& baseurls) const
{
    Segment *seg = new Segment();
    
    if(seg->Init(baseurls, this->indexURI, this->indexRange, dash::metrics::IndexSegment))
        return seg;

    delete(seg);

    return NULL;
}