Commit 24abb523 authored by Christopher Mueller's avatar Christopher Mueller Committed by Hugo Beauzée-Luyssen

dash: added isoffmain profile

Signed-off-by: default avatarHugo Beauzée-Luyssen <beauze.h@gmail.com>
parent f56638f3
...@@ -22,7 +22,8 @@ namespace dash ...@@ -22,7 +22,8 @@ namespace dash
UnknownProfile, UnknownProfile,
Full2011, Full2011,
Basic, Basic,
BasicCM BasicCM,
IsoffMain
}; };
class IMPDManager class IMPDManager
{ {
......
...@@ -174,6 +174,8 @@ void MPD::setProfile( const std::string &strProfile ) ...@@ -174,6 +174,8 @@ void MPD::setProfile( const std::string &strProfile )
this->profile = dash::mpd::BasicCM; this->profile = dash::mpd::BasicCM;
else if ( strProfile == "urn:mpeg:mpegB:profile:dash:full:2011" ) else if ( strProfile == "urn:mpeg:mpegB:profile:dash:full:2011" )
this->profile = dash::mpd::Full2011; this->profile = dash::mpd::Full2011;
else if ( strProfile == "urn:mpeg:dash:profile:isoff-main:2011" )
this->profile = dash::mpd::IsoffMain;
else else
this->profile = dash::mpd::UnknownProfile; this->profile = dash::mpd::UnknownProfile;
} }
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