Commit 580caf11 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

dash: Implementing the basics for SegmentTimeline.

This will be usefull when implementing UrlTemplate.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 139175ef
...@@ -45,6 +45,8 @@ SOURCES_stream_filter_dash = \ ...@@ -45,6 +45,8 @@ SOURCES_stream_filter_dash = \
mpd/Segment.h \ mpd/Segment.h \
mpd/SegmentInfo.cpp \ mpd/SegmentInfo.cpp \
mpd/SegmentInfo.h \ mpd/SegmentInfo.h \
mpd/SegmentTimeline.cpp \
mpd/SegmentTimeline.h \
mpd/TrickModeType.cpp \ mpd/TrickModeType.cpp \
mpd/TrickModeType.h \ mpd/TrickModeType.h \
xml/DOMHelper.cpp \ xml/DOMHelper.cpp \
......
/*****************************************************************************
* SegmentTimeline.cpp: Implement the SegmentTimeline tag.
*****************************************************************************
* Copyright (C) 1998-2007 VLC authors and VideoLAN
* $Id$
*
* Authors: Hugo Beauzée-Luyssen <beauze.h@gmail.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "SegmentTimeline.h"
#include <vlc_common.h>
#include <vlc_arrays.h>
using namespace dash::mpd;
SegmentTimeline::SegmentTimeline() :
timescale( -1 )
{
}
SegmentTimeline::~SegmentTimeline()
{
vlc_delete_all( this->elements );
}
int dash::mpd::SegmentTimeline::getTimescale() const
{
return this->timescale;
}
void dash::mpd::SegmentTimeline::setTimescale(int timescale)
{
this->timescale = timescale;
}
void dash::mpd::SegmentTimeline::addElement(dash::mpd::SegmentTimeline::Element *e)
{
this->elements.push_back( e );
}
dash::mpd::SegmentTimeline::Element::Element() :
r( 0 )
{
}
/*****************************************************************************
* SegmentTimeline.cpp: Implement the SegmentTimeline tag.
*****************************************************************************
* Copyright (C) 1998-2007 VLC authors and VideoLAN
* $Id$
*
* Authors: Hugo Beauzée-Luyssen <beauze.h@gmail.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef SEGMENTTIMELINE_H
#define SEGMENTTIMELINE_H
#include <sys/types.h>
#include <list>
namespace dash
{
namespace mpd
{
class SegmentTimeline
{
public:
struct Element
{
Element();
int64_t t;
int64_t d;
int r;
};
SegmentTimeline();
~SegmentTimeline();
int getTimescale() const;
void setTimescale( int timescale );
void addElement( Element* e );
private:
int timescale;
std::list<Element*> elements;
};
}
}
#endif // SEGMENTTIMELINE_H
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment