Skip to content
Snippets Groups Projects
Commit 98c86d87 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.

(cherry picked from commit 2396e15b)
parent c4ab31d5
No related branches found
No related tags found
2 merge requests!3533Backport MR 3236 to 3.0.x,!1563[3.0] demux: hls: fix AAC regression with "es" demuxer
Pipeline #198876 passed with stages
in 17 minutes and 39 seconds
......@@ -129,9 +129,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