Re: [FFmpeg-devel] [PATCH 2/3] avformat/options: disable flush_packets as default

2017-06-17 Thread Michael Niedermayer
On Sat, Jun 17, 2017 at 12:18:27AM +0200, Marton Balint wrote: > > On Sun, 4 Jun 2017, Marton Balint wrote: > > >It is a huge performance improvement for encoding files with small packets > >(e.g. wav) over SMB/CIFS. > > > > Ping? Maybe enabling this unconditionally is also problematic for > pro

Re: [FFmpeg-devel] [PATCH 2/3] avformat/options: disable flush_packets as default

2017-06-16 Thread Marton Balint
On Sun, 4 Jun 2017, Marton Balint wrote: It is a huge performance improvement for encoding files with small packets (e.g. wav) over SMB/CIFS. Ping? Maybe enabling this unconditionally is also problematic for protocols other than file? If that so, then how about making flush_packet a tri st

[FFmpeg-devel] [PATCH 2/3] avformat/options: disable flush_packets as default

2017-06-04 Thread Marton Balint
It is a huge performance improvement for encoding files with small packets (e.g. wav) over SMB/CIFS. Signed-off-by: Marton Balint --- libavformat/mux.c | 4 ++-- libavformat/options_table.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/mux.c b/lib