[vlc-commits] DASH: better debug messages

Jean-Baptiste Kempf git at videolan.org
Thu Nov 17 17:04:53 CET 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Nov 17 17:01:13 2011 +0100| [fecd538c61c781eb5439cb5f5e420891f4b6f8e2] | committer: Jean-Baptiste Kempf

DASH: better debug messages

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fecd538c61c781eb5439cb5f5e420891f4b6f8e2
---

 modules/stream_filter/dash/dash.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/stream_filter/dash/dash.cpp b/modules/stream_filter/dash/dash.cpp
index 6699f4d..9794d40 100644
--- a/modules/stream_filter/dash/dash.cpp
+++ b/modules/stream_filter/dash/dash.cpp
@@ -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;
 }



More information about the vlc-commits mailing list