Re: [FFmpeg-devel] [PATCH] avformat/pcm: decrease delay when reading PCM streams.

2018-02-13 Thread Marton Balint
On Tue, 13 Feb 2018, Philipp M. Scholl wrote: The blocksize of the PCM decoder is hard-coded. This creates unnecessary delay when reading low-rate (<100Hz) streams. This creates issues when multiplexing multiple streams, since other inputs are only opened/read after a low-rate input block was

Re: [FFmpeg-devel] [PATCH] avformat/pcm: decrease delay when reading PCM streams.

2018-02-13 Thread Tomas Härdin
tis 2018-02-13 klockan 15:11 +0100 skrev Philipp M. Scholl: >  The blocksize of the PCM decoder is hard-coded. This creates >  unnecessary delay when reading low-rate (<100Hz) streams. This creates > issues when multiplexing multiple streams, since other inputs are only > opened/read after a

Re: [FFmpeg-devel] [PATCH] avformat/pcm: decrease delay when reading PCM streams.

2018-02-13 Thread Hendrik Leppkes
On Tue, Feb 13, 2018 at 3:11 PM, Philipp M. Scholl wrote: > The blocksize of the PCM decoder is hard-coded. This creates > unnecessary delay when reading low-rate (<100Hz) streams. This creates > issues when multiplexing multiple streams, since other inputs are only >

[FFmpeg-devel] [PATCH] avformat/pcm: decrease delay when reading PCM streams.

2018-02-13 Thread Philipp M. Scholl
The blocksize of the PCM decoder is hard-coded. This creates unnecessary delay when reading low-rate (<100Hz) streams. This creates issues when multiplexing multiple streams, since other inputs are only opened/read after a low-rate input block was completely read. This patch decreases the