Skip to content
Snippets Groups Projects
Commit 8b8ff086 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

demux: adaptive: show codecs on debug

parent 51ca7168
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,14 @@ void BaseRepresentation::debug(vlc_object_t *obj, int indent) const
std::string text(indent, ' ');
text.append("Representation ");
text.append(id.str());
if(!codecs.empty())
{
std::list<std::string>::const_iterator c = codecs.begin();
text.append(" [" + *c++);
while(c != codecs.end())
text.append("," + *c++);
text.append("]");
}
msg_Dbg(obj, "%s", text.c_str());
std::vector<ISegment *> list;
getAllSegments(list);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment