mbox series

[FFmpeg-devel,0/7] adpcm_ima_apm encoder + apm muxer

Message ID 20200609001730.961175-1-zane@zanevaniperen.com
Headers show
Series adpcm_ima_apm encoder + apm muxer | expand

Message

Zane van Iperen June 9, 2020, 12:19 a.m. UTC
Add support for encoding adpcm_ima_apm and muxing to apm.

I was hoping to get this into the 4.3 release.

Zane van Iperen (7):
  avformat/apm: prepare extradata handling for muxer
  avcodec/adpcm_ima_apm: prepare extradata handling for encoder
  avcodec: add adpcm_ima_apm encoder
  avformat: add apm muxer
  fate: add adpcm_ima_apm encoding test
  avformat/apm: name and probe fix
  avcodec/adpcmenc: cleanup trellis checks

 Changelog                      |   1 +
 doc/general.texi               |   2 +-
 libavcodec/Makefile            |   1 +
 libavcodec/adpcm.c             |  10 +-
 libavcodec/adpcmenc.c          |  57 ++++++--
 libavcodec/allcodecs.c         |   1 +
 libavcodec/utils.c             |   1 +
 libavformat/Makefile           |   3 +-
 libavformat/allformats.c       |   1 +
 libavformat/apm.c              | 246 ++++++++++++++++++++++++---------
 tests/fate/acodec.mak          |   2 +
 tests/ref/acodec/adpcm-ima_apm |   4 +
 12 files changed, 245 insertions(+), 84 deletions(-)
 create mode 100644 tests/ref/acodec/adpcm-ima_apm

Comments

Zane van Iperen June 10, 2020, 1:29 p.m. UTC | #1
On Tue, 09 Jun 2020 00:19:24 +0000
"Zane van Iperen" <zane@zanevaniperen.com> wrote:

> Add support for encoding adpcm_ima_apm and muxing to apm.
> 

Ping. If possible, I would like to get this functionality into the 4.3
release.

Zane