]> git.sesse.net Git - vlc/blobdiff - modules/stream_filter/dash/mpd/IsoffMainParser.cpp
stream_filter: dash: update profiles
[vlc] / modules / stream_filter / dash / mpd / IsoffMainParser.cpp
index 94c09eb8edf027787a7dfb2918eaa1f9e957c752..8329990f567b18dd9e12215567ccb2006ec79fd1 100644 (file)
@@ -175,9 +175,10 @@ void    IsoffMainParser::print              ()
 {
     if(mpd)
     {
-        msg_Dbg(p_stream, "MPD profile=%d mediaPresentationDuration=%ld minBufferTime=%ld", mpd->getProfile(),
-                                                                                                  mpd->getDuration(),
-                                                                                                  mpd->getMinBufferTime());
+        msg_Dbg(p_stream, "MPD profile=%s mediaPresentationDuration=%ld minBufferTime=%ld",
+                static_cast<std::string>(mpd->getProfile()).c_str(),
+                mpd->getDuration(),
+                mpd->getMinBufferTime());
         std::vector<BaseUrl *>::const_iterator h;
         for(h = mpd->getBaseUrls().begin(); h != mpd->getBaseUrls().end(); h++)
             msg_Dbg(p_stream, "BaseUrl=%s", (*h)->getUrl().c_str());