From patchwork Mon Sep 7 13:13:54 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zane van Iperen X-Patchwork-Id: 22150 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 BD71744A117 for ; Mon, 7 Sep 2020 16:14:06 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 96F76689734; Mon, 7 Sep 2020 16:14:06 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-40136.protonmail.ch (mail-40136.protonmail.ch [185.70.40.136]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 47F7E680613 for ; Mon, 7 Sep 2020 16:14:00 +0300 (EEST) Date: Mon, 07 Sep 2020 13:13:54 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zanevaniperen.com; s=protonmail2; t=1599484438; bh=gxG8iFuPGs5eh8UfmvzZjLLGO6l45Oftxq1ybSyjFzs=; h=Date:To:From:Cc:Reply-To:Subject:From; b=MTqK6Ky1YiDdBWep6yeN/Nq+9kbJ7Em5sBJkv/EtGmdNMQD4HQ2xVvfjvmJFDMXPU 1K6lgWw23ezZm8xyS6Dd5XaARTmaONDcr3CT/WTY17cxGgaqyqPui72tBjqoLrQme+ 8yldLqCXX1WBTMe7FuSGgp5pddwbDvukR8vntj6/IJYKQ2tJXvAFpZR0nJmeHcNxKd T/ammUlU33UaVLpOMhGgqrTKq4eKZpOeq9ubsaA/Rj4GOm++uMznp5SIItSsQBp2GC 2up7G6KbiFeEv/sm32gQs20rTFzkoXPPQHRLGNL6TTdCM2Y8vRIXQknWXWmC8jWf4h 8cX7M6u4PDemw== To: ffmpeg-devel@ffmpeg.org From: Zane van Iperen Message-ID: <20200907131326.32737-1-zane@zanevaniperen.com> MIME-Version: 1.0 X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Subject: [FFmpeg-devel] [PATCH 0/5] Add demuxer for Argonaut Games BRP files 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: Zane van Iperen Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Adds support for demuxing BRP files from Argonaut Games' games. Used to store the FMVs. Zane van Iperen (5): avformat/argo_asf: bail if invalid tag avformat/argo_asf: split functionality into a header avformat/argo_asf: add ASF_MIN_BUFFER_SIZE #define avcodec: add "Argonaut Games Video" descriptor avformat: add Argonaut Games BRP demuxer Changelog | 1 + libavcodec/codec_desc.c | 7 + libavcodec/codec_id.h | 1 + libavcodec/version.h | 2 +- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/argo_asf.c | 203 ++++++++---------- libavformat/argo_asf.h | 69 ++++++ libavformat/argo_brp.c | 447 +++++++++++++++++++++++++++++++++++++++ libavformat/version.h | 2 +- 10 files changed, 622 insertions(+), 112 deletions(-) create mode 100644 libavformat/argo_asf.h create mode 100644 libavformat/argo_brp.c