From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 0DC06403DD for ; Mon, 20 Dec 2021 19:19:24 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 8ADF668AFE2; Mon, 20 Dec 2021 21:19:22 +0200 (EET) Received: from w4.tutanota.de (w4.tutanota.de [81.3.6.165]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 54BB668AFBD for ; Mon, 20 Dec 2021 21:19:16 +0200 (EET) Received: from w3.tutanota.de (unknown [192.168.1.164]) by w4.tutanota.de (Postfix) with ESMTP id DB3E7106027A for ; Mon, 20 Dec 2021 19:19:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1640027955; s=s1; d=lynne.ee; h=From:From:To:To:Subject:Subject:Content-Description:Content-ID:Content-Type:Content-Type:Content-Transfer-Encoding:Content-Transfer-Encoding:Cc:Date:Date:In-Reply-To:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:References:Sender; bh=Cnjj5iWkztNNDZ8fT6rfkbkTq7GEdxaCILGNpWL8g7g=; b=Qg1d+3ZKKCbTL0ig69sqORXXjAs2vgixbnAIEK84zDFrnMTQI+o5EIVXbadeQ7H3 yX0RKT5ARGAhPAYW1lGCVCOq4THW9xAsIEmvKn1eR86g2uHtu0SluNx7V28xCiikA0x pAdE8nOZ0jKX4ID/A+LeBu4Y50aXL/uBdCVXsUhhkqncrNvzVfcxRpWKSj7LKL7380/ bLNlZvmej0m5BQsEoXhMa5DtNptc2mcWKA3JSIrxzjFLqVspDGxKksQZA2OHn28hezB obMmD0E/WZIs5BHZKIoTZLYcbs+sWgJ7Gnnqer2cI6yMh8To0no3r0DpC/KUilBjLGN R/VQbKNVfQ== Date: Mon, 20 Dec 2021 20:19:15 +0100 (CET) From: Lynne To: FFmpeg development discussions and patches Message-ID: In-Reply-To: <20211220185725.19519-1-pal@sandflow.com> References: <20211220185725.19519-1-pal@sandflow.com> MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH v13 1/2] avformat/imf: Demuxer X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 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 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: 20 Dec 2021, 19:57 by pal@sandflow.com: > From: Pierre-Anthony Lemieux > > Signed-off-by: Pierre-Anthony Lemieux > --- > > Notes: > The IMF demuxer accepts as input an IMF CPL. The assets referenced by the CPL can be > contained in multiple deliveries, each defined by an ASSETMAP file: > > ffmpeg -assetmaps ,,... -i > > If -assetmaps is not specified, FFMPEG looks for a file called ASSETMAP.xml in the same directory as the CPL. > > EXAMPLE: > ffmpeg -i http://ffmpeg-imf-samples-public.s3-website-us-west-1.amazonaws.com/countdown/CPL_f5095caa-f204-4e1c-8a84-7af48c7ae16b.xml out.mp4 > > The Interoperable Master Format (IMF) is a file-based media format for the > delivery and storage of professional audio-visual masters. > An IMF Composition consists of an XML playlist (the Composition Playlist) > and a collection of MXF files (the Track Files). The Composition Playlist (CPL) > assembles the Track Files onto a timeline, which consists of multiple tracks. > The location of the Track Files referenced by the Composition Playlist is stored > in one or more XML documents called Asset Maps. More details at https://www.imfug.com/explainer. > The IMF standard was first introduced in 2013 and is managed by the SMPTE. > > CHANGE NOTES: > > - added libavformat/tests/imf to FATE > > MAINTAINERS | 1 + > configure | 3 +- > doc/demuxers.texi | 6 + > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/imf.h | 207 +++++++++ > libavformat/imf_cpl.c | 800 +++++++++++++++++++++++++++++++++++ > libavformat/imfdec.c | 891 +++++++++++++++++++++++++++++++++++++++ > 8 files changed, 1909 insertions(+), 1 deletion(-) > create mode 100644 libavformat/imf.h > create mode 100644 libavformat/imf_cpl.c > create mode 100644 libavformat/imfdec.c > You've once again gone back and completely ignored all coding style issues I pointed out. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".