[vlc-commits] dash: added isoffmain profile
Christopher Mueller
git at videolan.org
Thu Feb 2 12:33:25 CET 2012
vlc | branch: master | Christopher Mueller <christopher.mueller at itec.aau.at> | Mon Jan 30 14:48:28 2012 +0100| [24abb52316e1d7e6f1fbe68d592b6a6528941ca1] | committer: Hugo Beauzée-Luyssen
dash: added isoffmain profile
Signed-off-by: Hugo Beauzée-Luyssen <beauze.h at gmail.com>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=24abb52316e1d7e6f1fbe68d592b6a6528941ca1
---
modules/stream_filter/dash/mpd/IMPDManager.h | 3 ++-
modules/stream_filter/dash/mpd/MPD.cpp | 2 ++
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/modules/stream_filter/dash/mpd/IMPDManager.h b/modules/stream_filter/dash/mpd/IMPDManager.h
index aa5417b..8a9d4e0 100644
--- a/modules/stream_filter/dash/mpd/IMPDManager.h
+++ b/modules/stream_filter/dash/mpd/IMPDManager.h
@@ -22,7 +22,8 @@ namespace dash
UnknownProfile,
Full2011,
Basic,
- BasicCM
+ BasicCM,
+ IsoffMain
};
class IMPDManager
{
diff --git a/modules/stream_filter/dash/mpd/MPD.cpp b/modules/stream_filter/dash/mpd/MPD.cpp
index 337809c..c28b0aa 100644
--- a/modules/stream_filter/dash/mpd/MPD.cpp
+++ b/modules/stream_filter/dash/mpd/MPD.cpp
@@ -174,6 +174,8 @@ void MPD::setProfile( const std::string &strProfile )
this->profile = dash::mpd::BasicCM;
else if ( strProfile == "urn:mpeg:mpegB:profile:dash:full:2011" )
this->profile = dash::mpd::Full2011;
+ else if ( strProfile == "urn:mpeg:dash:profile:isoff-main:2011" )
+ this->profile = dash::mpd::IsoffMain;
else
this->profile = dash::mpd::UnknownProfile;
}
More information about the vlc-commits
mailing list