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
738ebc3c
Commit
738ebc3c
authored
Dec 17, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: dash: drop broken BasicCMParser
parent
e186a15e
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
687 deletions
+0
-687
modules/stream_filter/Makefile.am
modules/stream_filter/Makefile.am
+0
-2
modules/stream_filter/dash/mpd/BasicCMParser.cpp
modules/stream_filter/dash/mpd/BasicCMParser.cpp
+0
-603
modules/stream_filter/dash/mpd/BasicCMParser.h
modules/stream_filter/dash/mpd/BasicCMParser.h
+0
-78
modules/stream_filter/dash/mpd/MPDFactory.cpp
modules/stream_filter/dash/mpd/MPDFactory.cpp
+0
-3
modules/stream_filter/dash/mpd/MPDFactory.h
modules/stream_filter/dash/mpd/MPDFactory.h
+0
-1
No files found.
modules/stream_filter/Makefile.am
View file @
738ebc3c
...
...
@@ -39,8 +39,6 @@ libdash_plugin_la_SOURCES = \
stream_filter/dash/mpd/AdaptationSet.cpp
\
stream_filter/dash/mpd/AdaptationSet.h
\
stream_filter/dash/mpd/BaseUrl.h
\
stream_filter/dash/mpd/BasicCMParser.cpp
\
stream_filter/dash/mpd/BasicCMParser.h
\
stream_filter/dash/mpd/CommonAttributesElements.cpp
\
stream_filter/dash/mpd/CommonAttributesElements.h
\
stream_filter/dash/mpd/ContentDescription.cpp
\
...
...
modules/stream_filter/dash/mpd/BasicCMParser.cpp
deleted
100644 → 0
View file @
e186a15e
This diff is collapsed.
Click to expand it.
modules/stream_filter/dash/mpd/BasicCMParser.h
deleted
100644 → 0
View file @
e186a15e
/*
* BasicCMParser.h
*****************************************************************************
* Copyright (C) 2010 - 2011 Klagenfurt University
*
* Created on: Aug 10, 2010
* Authors: Christopher Mueller <christopher.mueller@itec.uni-klu.ac.at>
* Christian Timmerer <christian.timmerer@itec.uni-klu.ac.at>
*
* 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 BASICCMPARSER_H_
#define BASICCMPARSER_H_
#include "xml/Node.h"
#include "mpd/IMPDParser.h"
#include "mpd/AdaptationSet.h"
#include "mpd/BaseUrl.h"
#include "mpd/SegmentInfo.h"
#include "mpd/Segment.h"
struct
stream_t
;
namespace
dash
{
namespace
mpd
{
class
BasicCMParser
:
public
IMPDParser
{
public:
BasicCMParser
(
dash
::
xml
::
Node
*
root
,
stream_t
*
p_stream
);
virtual
~
BasicCMParser
();
bool
parse
(
Profile
profile
);
private:
void
handleDependencyId
(
Representation
*
rep
,
const
AdaptationSet
*
adaptationSet
,
const
std
::
string
&
dependencyId
);
private:
void
parseSegmentTimeline
(
xml
::
Node
*
node
,
SegmentInfoCommon
*
segmentInfo
);
void
parseSegmentInfoCommon
(
xml
::
Node
*
node
,
SegmentInfoCommon
*
segmentInfo
);
void
parseSegmentInfoDefault
(
xml
::
Node
*
node
,
AdaptationSet
*
group
);
void
setAdaptationSets
(
dash
::
xml
::
Node
*
root
,
Period
*
period
);
void
parseTrickMode
(
dash
::
xml
::
Node
*
node
,
Representation
*
repr
);
void
setRepresentations
(
dash
::
xml
::
Node
*
root
,
AdaptationSet
*
group
);
bool
setSegmentInfo
(
dash
::
xml
::
Node
*
root
,
Representation
*
rep
);
void
setInitSegment
(
dash
::
xml
::
Node
*
root
,
SegmentInfoCommon
*
info
);
bool
setSegments
(
dash
::
xml
::
Node
*
root
,
SegmentInfo
*
info
);
bool
resolveUrlTemplates
(
std
::
string
&
url
,
bool
&
containRuntimeToken
);
void
parseContentDescriptor
(
xml
::
Node
*
node
,
const
std
::
string
&
name
,
void
(
CommonAttributesElements
::*
addPtr
)(
ContentDescription
*
),
CommonAttributesElements
*
self
)
const
;
bool
parseCommonAttributesElements
(
dash
::
xml
::
Node
*
node
,
CommonAttributesElements
*
common
,
CommonAttributesElements
*
parent
)
const
;
Segment
*
parseSegment
(
xml
::
Node
*
node
,
bool
init
=
false
);
ProgramInformation
*
parseProgramInformation
();
private:
std
::
string
url
;
};
}
}
#endif
/* BASICCMPARSER_H_ */
modules/stream_filter/dash/mpd/MPDFactory.cpp
View file @
738ebc3c
...
...
@@ -37,9 +37,6 @@ MPD* MPDFactory::create (dash::xml::Node *root, stream_t *p_stream,
switch
(
profile
)
{
case
Profile
:
:
Full
:
parser
=
new
BasicCMParser
(
root
,
p_stream
);
break
;
case
Profile
:
:
ISOOnDemand
:
case
Profile
:
:
ISOMain
:
case
Profile
:
:
ISOLive
:
...
...
modules/stream_filter/dash/mpd/MPDFactory.h
View file @
738ebc3c
...
...
@@ -26,7 +26,6 @@
#define MPDFACTORY_H_
#include "mpd/MPD.h"
#include "mpd/BasicCMParser.h"
#include "mpd/IsoffMainParser.h"
namespace
dash
...
...
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