From: Jean-Baptiste Kempf Date: Thu, 17 Nov 2011 16:01:13 +0000 (+0100) Subject: DASH: better debug messages X-Git-Tag: 1.3.0-git~275 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=fecd538c61c781eb5439cb5f5e420891f4b6f8e2;p=vlc DASH: better debug messages --- diff --git a/modules/stream_filter/dash/dash.cpp b/modules/stream_filter/dash/dash.cpp index 6699f4d908..9794d40c9d 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; }