Re: [FFmpeg-devel] [PATCH 4/4] avformat/wavdec: dynamically set max_size by default

2024-03-01 Thread Marton Balint
On Thu, 29 Feb 2024, Marton Balint wrote: On Thu, 29 Feb 2024, Andreas Rheinhardt wrote: Marton Balint: The wav demuxer by default tried to demux 4096-byte packets which caused packets with very few number of samples for files with high channel count. This caused a significant

Re: [FFmpeg-devel] [PATCH 4/4] avformat/wavdec: dynamically set max_size by default

2024-02-28 Thread Marton Balint
On Thu, 29 Feb 2024, Andreas Rheinhardt wrote: Marton Balint: The wav demuxer by default tried to demux 4096-byte packets which caused packets with very few number of samples for files with high channel count. This caused a significant overhead especially since the latest ffmpeg.c threading

Re: [FFmpeg-devel] [PATCH 4/4] avformat/wavdec: dynamically set max_size by default

2024-02-28 Thread Andreas Rheinhardt
Marton Balint: > The wav demuxer by default tried to demux 4096-byte packets which caused > packets with very few number of samples for files with high channel count. > This caused a significant overhead especially since the latest ffmpeg.c > threading changes. > > So let's use a similar approach