From patchwork Thu Mar 5 21:56:25 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marton Balint X-Patchwork-Id: 18059 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 2BEAB44AB1F for ; Thu, 5 Mar 2020 23:56:49 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1040A68AC4C; Thu, 5 Mar 2020 23:56:49 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from iq.passwd.hu (iq.passwd.hu [217.27.212.140]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id ABC8C68809B for ; Thu, 5 Mar 2020 23:56:42 +0200 (EET) Received: from localhost (localhost [127.0.0.1]) by iq.passwd.hu (Postfix) with ESMTP id 934CEE3947; Thu, 5 Mar 2020 22:56:42 +0100 (CET) X-Virus-Scanned: amavisd-new at passwd.hu Received: from iq.passwd.hu ([127.0.0.1]) by localhost (iq.passwd.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WC9k6sgkI3Jm; Thu, 5 Mar 2020 22:56:41 +0100 (CET) Received: from bluegene.passwd.hu (localhost [127.0.0.1]) by iq.passwd.hu (Postfix) with ESMTP id B059AE3953; Thu, 5 Mar 2020 22:56:39 +0100 (CET) From: Marton Balint To: ffmpeg-devel@ffmpeg.org Date: Thu, 5 Mar 2020 22:56:25 +0100 Message-Id: <20200305215628.19514-4-cus@passwd.hu> X-Mailer: git-send-email 2.16.4 In-Reply-To: <20200305215628.19514-1-cus@passwd.hu> References: <20200305215628.19514-1-cus@passwd.hu> Subject: [FFmpeg-devel] [PATCH v2 4/7] avformat/mxfenc: add some missing content package rates 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: Marton Balint MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Fixes ticket #8523. Signed-off-by: Marton Balint --- libavformat/mxf.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/libavformat/mxf.c b/libavformat/mxf.c index 80626e2a16..7d154ca9d3 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -139,10 +139,23 @@ static const MXFContentPackageRate mxf_content_package_rates[] = { { 2, { 1, 24 } }, { 3, { 1001, 24000 } }, { 4, { 1, 25 } }, + { 6, { 1, 30 } }, { 7, { 1001, 30000 } }, + { 8, { 1 , 48 } }, + { 9, { 1001, 48000 } }, { 10, { 1, 50 } }, { 12, { 1, 60 } }, { 13, { 1001, 60000 } }, + { 14, { 1, 72 } }, + { 15, { 1001, 72000 } }, + { 16, { 1, 75 } }, + { 18, { 1, 90 } }, + { 19, { 1001, 90000 } }, + { 20, { 1, 96 } }, + { 21, { 1001, 96000 } }, + { 22, { 1, 100 } }, + { 24, { 1, 120 } }, + { 25, { 1001, 120000} }, {0} };