Paul B Mahol:
> Signed-off-by: Paul B Mahol
> ---
> libavformat/Makefile | 1 +
> libavformat/aaxdec.c | 324 +++
> libavformat/allformats.c | 1 +
> 3 files changed, 326 insertions(+)
> create mode 100644 libavformat/aaxdec.c
>
> diff --git a/lib
On 9/12/2020 7:33 PM, Paul B Mahol wrote:
> +static int aax_read_packet(AVFormatContext *s, AVPacket *pkt)
> +{
> +AAXContext *a = s->priv_data;
> +AVCodecParameters *par = s->streams[0]->codecpar;
> +AVIOContext *pb = s->pb;
> +const int size = 18 * par->channels;
> +int ret, e
Signed-off-by: Paul B Mahol
---
libavformat/Makefile | 1 +
libavformat/aaxdec.c | 324 +++
libavformat/allformats.c | 1 +
3 files changed, 326 insertions(+)
create mode 100644 libavformat/aaxdec.c
diff --git a/libavformat/Makefile b/libavformat/