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

François Cartegnie (@fcartegnie) gitlab at videolan.org
Tue Jul 27 09:38:27 UTC 2021



François Cartegnie pushed to branch master at VideoLAN / VLC


Commits:
2396e15b by Francois Cartegnie at 2021-07-27T09:07:45+00: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.

- - - - -


1 changed file:

- modules/demux/hls/HLSStreams.cpp


Changes:

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



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/2396e15bd5b261b2c716ff653b5b8e6374be8bba

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




More information about the vlc-commits mailing list