[vlc-commits] [Git][videolan/vlc][3.0.x] demux: hls: fix AAC regression with "es" demuxer

François Cartegnie (@fcartegnie) gitlab at videolan.org
Thu Mar 10 22:17:06 UTC 2022



François Cartegnie pushed to branch 3.0.x at VideoLAN / VLC


Commits:
98c86d87 by Francois Cartegnie at 2022-03-09T21:32:52+01:00
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 2396e15bd5b261b2c716ff653b5b8e6374be8bba)

- - - - -


1 changed file:

- modules/demux/hls/HLSStreams.cpp


Changes:

=====================================
modules/demux/hls/HLSStreams.cpp
=====================================
@@ -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:



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/98c86d8787acf6686410ebbfe87629a1337aebca

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/98c86d8787acf6686410ebbfe87629a1337aebca
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list