Re: [FFmpeg-devel] [PATCH] A-pac demuxer and decoder

2022-09-23 Thread James Almer
On 9/21/2022 4:23 AM, Paul B Mahol wrote: Patches attached. [...] +static av_cold int apac_close(AVCodecContext *avctx) +{ +APACContext *s = avctx->priv_data; + +av_freep(&s->bitstream); +s->bitstream_size = 0; + +for (int ch = 0; ch < avctx->ch_layout.nb_channels; ch++) { f

Re: [FFmpeg-devel] [PATCH] A-pac demuxer and decoder

2022-09-23 Thread Paul B Mahol
On 9/21/22, Paul B Mahol wrote: > Patches attached. > WIll apply soon. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org wit

[FFmpeg-devel] [PATCH] A-pac demuxer and decoder

2022-09-21 Thread Paul B Mahol
Patches attached. From 751526c456d09bd22a6316196219d79876ae74f1 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 19 Sep 2022 22:14:05 +0200 Subject: [PATCH 1/2] avcodec: add APAC decoder Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + liba