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
f565072b
Commit
f565072b
authored
Dec 30, 2011
by
Hugo Beauzée-Luyssen
Committed by
Jean-Baptiste Kempf
Dec 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dash: Adding an implementation for SegmentInfoDefault element.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
752a29f3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
106 additions
and
0 deletions
+106
-0
modules/stream_filter/dash/Modules.am
modules/stream_filter/dash/Modules.am
+2
-0
modules/stream_filter/dash/mpd/SegmentInfoDefault.cpp
modules/stream_filter/dash/mpd/SegmentInfoDefault.cpp
+52
-0
modules/stream_filter/dash/mpd/SegmentInfoDefault.h
modules/stream_filter/dash/mpd/SegmentInfoDefault.h
+52
-0
No files found.
modules/stream_filter/dash/Modules.am
View file @
f565072b
...
@@ -47,6 +47,8 @@ SOURCES_stream_filter_dash = \
...
@@ -47,6 +47,8 @@ SOURCES_stream_filter_dash = \
mpd/SegmentInfo.h \
mpd/SegmentInfo.h \
mpd/SegmentInfoCommon.cpp \
mpd/SegmentInfoCommon.cpp \
mpd/SegmentInfoCommon.h \
mpd/SegmentInfoCommon.h \
mpd/SegmentInfoDefault.cpp \
mpd/SegmentInfoDefault.h \
mpd/SegmentTimeline.cpp \
mpd/SegmentTimeline.cpp \
mpd/SegmentTimeline.h \
mpd/SegmentTimeline.h \
mpd/TrickModeType.cpp \
mpd/TrickModeType.cpp \
...
...
modules/stream_filter/dash/mpd/SegmentInfoDefault.cpp
0 → 100644
View file @
f565072b
/*****************************************************************************
* SegmentInfoDefault.cpp: Implement the SegmentInfoDefault element.
*****************************************************************************
* 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 "SegmentInfoDefault.h"
using
namespace
dash
::
mpd
;
SegmentInfoDefault
::
SegmentInfoDefault
()
{
}
const
std
::
string
&
SegmentInfoDefault
::
getSourceURLTemplatePeriod
()
const
{
return
this
->
sourceURLTemplatePeriod
;
}
void
SegmentInfoDefault
::
setSourceURLTemplatePediod
(
const
std
::
string
&
url
)
{
if
(
url
.
empty
()
==
false
)
this
->
sourceURLTemplatePeriod
=
url
;
}
int
SegmentInfoDefault
::
getIndexTemplate
()
const
{
return
this
->
indexTemplate
;
}
void
SegmentInfoDefault
::
setIndexTemplate
(
int
indexTpl
)
{
if
(
indexTpl
>=
0
)
this
->
indexTemplate
=
indexTpl
;
}
modules/stream_filter/dash/mpd/SegmentInfoDefault.h
0 → 100644
View file @
f565072b
/*****************************************************************************
* SegmentInfoDefault.cpp: Implement the SegmentInfoDefault element.
*****************************************************************************
* 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 SEGMENTINFODEFAULT_H
#define SEGMENTINFODEFAULT_H
#include "mpd/SegmentInfoCommon.h"
#include <string>
namespace
dash
{
namespace
mpd
{
class
SegmentInfoDefault
:
public
SegmentInfoCommon
{
public:
SegmentInfoDefault
();
const
std
::
string
&
getSourceURLTemplatePeriod
()
const
;
void
setSourceURLTemplatePediod
(
const
std
::
string
&
url
);
int
getIndexTemplate
()
const
;
void
setIndexTemplate
(
int
indexTpl
);
private:
std
::
string
sourceURLTemplatePeriod
;
int
indexTemplate
;
};
}
}
#endif // SEGMENTINFODEFAULT_H
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