]> git.sesse.net Git - vlc/commitdiff
DASH: better debug messages
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 17 Nov 2011 16:01:13 +0000 (17:01 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 17 Nov 2011 16:04:13 +0000 (17:04 +0100)
modules/stream_filter/dash/dash.cpp

index 6699f4d908c7f2e02fb19bf9a7672bb98105adf5..9794d40c9db36fd3b1fc3feae75d6cb3c328aaab 100644 (file)
@@ -85,7 +85,7 @@ static int Open(vlc_object_t *p_obj)
     dash::xml::DOMParser parser(p_stream->p_source);
     if(!parser.parse())
     {
-        msg_Dbg(p_stream, "could not parse file");
+        msg_Dbg(p_stream, "could not parse mpd file");
         return VLC_EGENERIC;
     }
 
@@ -112,7 +112,7 @@ static int Open(vlc_object_t *p_obj)
     p_stream->pf_peek       = Peek;
     p_stream->pf_control    = Control;
 
-    msg_Dbg(p_obj,"DASH filter: open (%s)", p_stream->psz_path);
+    msg_Dbg(p_obj,"opening mpd file (%s)", p_stream->psz_path);
 
     return VLC_SUCCESS;
 }