From patchwork Thu Mar 5 00:40:25 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: 18032 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 59C7244AB6D for ; Thu, 5 Mar 2020 02:40:42 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 468D168B3F8; Thu, 5 Mar 2020 02:40:42 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-40134.protonmail.ch (mail-40134.protonmail.ch [185.70.40.134]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 2A7B968B375 for ; Thu, 5 Mar 2020 02:40:36 +0200 (EET) Date: Thu, 05 Mar 2020 00:40:25 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zanevaniperen.com; s=protonmail; t=1583368835; bh=/ONw9r5sxPePrEryJEhEDXkipI5AZkHZpxuQgNyE2+k=; h=Date:To:From:Cc:Reply-To:Subject:Feedback-ID:From; b=K9NWwSrwi3hq/5OYkiq7Q1jkip6d1JUsqTq15Dk4CCdaBE6tkakbKyNWC1tG1uUOy HxQaJE/9riQjJccW+hhx1iB95OSA1iLOl/HT1Otx5thFrbCWlJLHlFOhjuKnrh304T wDd0WH0SpdXKMgAVLAdZ2qLX4UwQ+Py8tfzORBWA= To: ffmpeg-devel@ffmpeg.org From: Zane van Iperen Message-ID: <20200305004013.29385-1-zane@zanevaniperen.com> Feedback-ID: xylLYHwBzJW7F28tHN-oL9EBm6h5yqtCqG6YwPpJ2oMwBYJT6-HxTnFTF6p18axLiSywX61iUfj4CElBGg8-GA==:Ext:ProtonMail MIME-Version: 1.0 X-Spam-Status: No, score=-1.2 required=7.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 mail.protonmail.ch Subject: [FFmpeg-devel] [PATCH 0/4] High Voltage Software ALP demuxer + decoder. 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 the .TUN and .PCM files used by some High Voltage Software games. Zane van Iperen (4): avcodec: add decoder for High Voltage Software's ALP ADPCM avformat: add demuxer for LEGO Racers' ALP format changelog: add adpcm_ima_alp decoder and alp demuxer doc: add adpcm_ima_alp Changelog | 3 +- doc/general.texi | 1 + libavcodec/Makefile | 1 + libavcodec/adpcm.c | 36 +++++++++++ libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h | 1 + libavcodec/codec_desc.c | 7 ++ libavcodec/version.h | 4 +- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/alp.c | 135 +++++++++++++++++++++++++++++++++++++++ libavformat/version.h | 4 +- 12 files changed, 190 insertions(+), 5 deletions(-) create mode 100644 libavformat/alp.c