mbox series

[FFmpeg-devel,v2,0/7] Support variable frame sizes in adpcm_argo

Message ID 20200918120416.7319-1-zane@zanevaniperen.com
Headers show
Series Support variable frame sizes in adpcm_argo | expand

Message

Zane van Iperen Sept. 18, 2020, 12:04 p.m. UTC
v2:
 - handle variable sizes in muxer (argo_asf)
 - fix incorrect pts tracking (argo_brp)
 - add test for decoding argo_asf via argo_brp

Test sample is https://0x0.st/iIhK.BRP, needs to go in
fate-suite/argo-brp/CROCLOGO_CUT.BRP.

Original email to samples-request@ffmpeg.org was bounced.

Zane van Iperen (7):
  avcodec/adpcm_argo: support decoding multiple frames
  avcodec/adpcm_{psx,argo}: add missing indent
  avformat/argo_asf: read/write multiple blocks at once
  avformat/argo_asf: add ff_argo_asf_read()
  avformat/argo_brp: support reading multiple ASF blocks at once
  avformat/argo_brp: remove usage of floats
  fate: add argo_adpcm via argo_brp demux test

 libavcodec/adpcm.c            | 96 +++++++++++++++++------------------
 libavformat/argo_asf.c        | 63 ++++++++++++++++-------
 libavformat/argo_asf.h        |  2 +
 libavformat/argo_brp.c        | 34 +++++++------
 tests/fate/adpcm.mak          |  3 ++
 tests/ref/fate/adpcm-argo-brp |  1 +
 6 files changed, 117 insertions(+), 82 deletions(-)
 create mode 100644 tests/ref/fate/adpcm-argo-brp

Comments

Zane van Iperen Sept. 19, 2020, 4:11 a.m. UTC | #1
On Fri, 18 Sep 2020 12:04:41 +0000
"Zane van Iperen" <zane@zanevaniperen.com> wrote:

> 
> v2:
>  - handle variable sizes in muxer (argo_asf)
>  - fix incorrect pts tracking (argo_brp)
>  - add test for decoding argo_asf via argo_brp

Will apply the first three parts of this soon. The rest has been
superceded.