Hi! Attached patch fixes ticket #6657.
Please comment, Carl Eugen
From d806a243e97de8c245958dc6f8d2646217cc5105 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos <ceffm...@gmail.com> Date: Wed, 13 Sep 2017 19:05:10 +0200 Subject: [PATCH] lavf/mpegts: Consider stream_type 0x0f just a hint toward AAC. It is also used in the wild to signal latm. Fixes ticket #6657. --- libavformat/mpegts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 4d2f5c6..53cbcfb 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")) && -- 1.7.10.4
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel