mbox

[FFmpeg-devel,0/5] Add demuxer for Argonaut Games BRP files

Message ID 20200907131326.32737-1-zane@zanevaniperen.com
Headers show

Message

Zane van Iperen Sept. 7, 2020, 1:13 p.m. UTC
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