From patchwork Sat Oct 10 08:44:33 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: hanbingjie X-Patchwork-Id: 22831 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id 3D29644B089 for ; Sat, 10 Oct 2020 11:45:05 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1054868B79A; Sat, 10 Oct 2020 11:45:05 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail3-167.sinamail.sina.com.cn (mail3-167.sinamail.sina.com.cn [202.108.3.167]) by ffbox0-bg.mplayerhq.hu (Postfix) with SMTP id 3C7FD68B4A9 for ; Sat, 10 Oct 2020 11:44:57 +0300 (EEST) Received: from unknown (HELO localhost.localdomain)([223.73.111.101]) by sina.com with ESMTP id 5F8174740001442E; Sat, 10 Oct 2020 16:44:54 +0800 (CST) X-Sender: hbj515@sina.com X-Auth-ID: hbj515@sina.com X-SMAIL-MID: 674992628792 From: hanbingjie To: ffmpeg-devel@ffmpeg.org Date: Sat, 10 Oct 2020 16:44:33 +0800 Message-Id: <20201010084433.53873-1-hbj515@sina.com> X-Mailer: git-send-email 2.17.1 Subject: [FFmpeg-devel] [PATCH] avformat/mpegts: support demuxing AVS3 X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: hanbingjie MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" From: hanbingjie Signed-off-by: hanbingjie --- libavformat/mpegts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 432b1c3ea2..fe891aa100 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -806,6 +806,7 @@ static const StreamType ISO_types[] = { { 0x42, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_CAVS }, { 0xd1, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC }, { 0xd2, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_AVS2 }, + { 0xd4, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_AVS3 }, { 0xea, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_VC1 }, { 0 }, };