mbox

[FFmpeg-devel,0/2] Pro Pinball Series Soundbank demuxer + decoder.

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

Message

Zane van Iperen March 16, 2020, 3:31 a.m. UTC
Adds support for the soundbank files used by the Pro Pinball series of games.

Please ping for review.

Zane van Iperen (2):
  avcodec: add support for Cunning Developments' ADPCM
  avformat: add demuxer for Pro Pinball Series' Soundbanks

 Changelog                |   2 +
 doc/general.texi         |   1 +
 libavcodec/Makefile      |   1 +
 libavcodec/adpcm.c       |  33 ++++++
 libavcodec/adpcm_data.c  |  13 +++
 libavcodec/adpcm_data.h  |   2 +
 libavcodec/allcodecs.c   |   1 +
 libavcodec/avcodec.h     |   1 +
 libavcodec/codec_desc.c  |   7 ++
 libavcodec/version.h     |   2 +-
 libavformat/Makefile     |   1 +
 libavformat/allformats.c |   1 +
 libavformat/pp_bnk.c     | 213 +++++++++++++++++++++++++++++++++++++++
 libavformat/version.h    |   2 +-
 14 files changed, 278 insertions(+), 2 deletions(-)
 create mode 100644 libavformat/pp_bnk.c