]> git.sesse.net Git - vlc/blob - modules/stream_filter/dash/mpd/SegmentTimeline.h
dash: removed couts from managers
[vlc] / modules / stream_filter / dash / mpd / SegmentTimeline.h
1 /*****************************************************************************
2  * SegmentTimeline.cpp: Implement the SegmentTimeline tag.
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
24 #ifndef SEGMENTTIMELINE_H
25 #define SEGMENTTIMELINE_H
26
27 #include <sys/types.h>
28 #include <list>
29 #include <stdint.h>
30
31 namespace dash
32 {
33     namespace mpd
34     {
35         class SegmentTimeline
36         {
37             public:
38                 struct  Element
39                 {
40                     Element();
41                     Element( const Element& e );
42                     int64_t     t;
43                     int64_t     d;
44                     int         r;
45                 };
46                 SegmentTimeline();
47                 ~SegmentTimeline();
48                 int                     getTimescale() const;
49                 void                    setTimescale( int timescale );
50                 void                    addElement( Element* e );
51                 const Element*          getElement( unsigned int index ) const;
52
53             private:
54                 int                     timescale;
55                 std::list<Element*>     elements;
56         };
57     }
58 }
59
60 #endif // SEGMENTTIMELINE_H