Re: [FFmpeg-devel] [PATCH] tta decoder improvements

2023-08-16 Thread Michael Niedermayer
On Wed, Aug 16, 2023 at 12:47:36PM +0200, Paul B Mahol wrote: > Patch attached. > tta.c | 167 > +++--- > 1 file changed, 109 insertions(+), 58 deletions(-) > a289f05b1ebb50604675a11894e254108e276714 > 0001-avcodec-tta-switch-to-plan

Re: [FFmpeg-devel] [PATCH] tta decoder improvements

2023-08-16 Thread Michael Niedermayer
On Wed, Aug 16, 2023 at 12:47:36PM +0200, Paul B Mahol wrote: > Patch attached. > tta.c | 167 > +++--- > 1 file changed, 109 insertions(+), 58 deletions(-) > a289f05b1ebb50604675a11894e254108e276714 > 0001-avcodec-tta-switch-to-plan

[FFmpeg-devel] [PATCH] tta decoder improvements

2023-08-16 Thread Paul B Mahol
Patch attached. From 2b6ac4f7093157533b7f279a78a73bfabeb98cf0 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 15 Aug 2023 21:13:59 +0200 Subject: [PATCH] avcodec/tta: switch to planar sample formats Makes decoding few percent faster. Also fix code style while here. Signed-off-by: Paul B M