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

demux: hls: fix AAC regression with "es" demuxer

For some reason AAC is not part of the probing sequence,
it then can't activate without shortcut/forced naming.
parent ac74ad3b
No related branches found
No related tags found
1 merge request!458demux: hls: fix AAC regression with "es" demuxer
Pipeline #121676 passed with stages
in 25 minutes and 43 seconds
......@@ -131,9 +131,13 @@ AbstractDemuxer *HLSStream::newDemux(vlc_object_t *p_obj, const StreamFormat &fo
switch(format)
{
case StreamFormat::Type::PackedAAC:
ret = new Demuxer(p_obj, "aac", out, source);
break;
case StreamFormat::Type::PackedMP3:
ret = new Demuxer(p_obj, "mp3", out, source);
break;
case StreamFormat::Type::PackedAC3:
ret = new Demuxer(p_obj, "es", out, source);
ret = new Demuxer(p_obj, "ac3", out, source);
break;
case StreamFormat::Type::MPEG2TS:
......
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