[FFmpeg-cvslog] lavf/mpegts: Consider stream_type 0x0f just a hint towards AAC.

Carl Eugen Hoyos git at videolan.org
Wed Sep 20 03:21:21 EEST 2017


ffmpeg | branch: master | Carl Eugen Hoyos <ceffmpeg at gmail.com> | Wed Sep 13 19:05:10 2017 +0200| [ca72cd137d3ba57b03018dbeb83ca99d7ef96dca] | committer: Carl Eugen Hoyos

lavf/mpegts: Consider stream_type 0x0f just a hint towards AAC.

It is also used in the wild to signal latm.

Fixes ticket #6657.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ca72cd137d3ba57b03018dbeb83ca99d7ef96dca
---

 libavformat/mpegts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 4d2f5c6802..53cbcfb543 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -814,7 +814,7 @@ static int mpegts_set_stream_info(AVStream *st, PESContext *pes,
     st->codecpar->codec_tag = pes->stream_type;
 
     mpegts_find_stream_type(st, pes->stream_type, ISO_types);
-    if (pes->stream_type == 4)
+    if (pes->stream_type == 4 || pes->stream_type == 0x0f)
         st->request_probe = 50;
     if ((prog_reg_desc == AV_RL32("HDMV") ||
          prog_reg_desc == AV_RL32("HDPR")) &&



More information about the ffmpeg-cvslog mailing list