Re: [FFmpeg-devel] [PATCH] lavf/flvenc: fail in case the muxed packet is too big

2014-11-03 Thread wm4
On Mon, 3 Nov 2014 10:05:40 +0100 Stefano Sabatini wrote: > On date Monday 2014-11-03 01:18:05 +0100, wm4 encoded: > > On Mon, 3 Nov 2014 00:35:58 +0100 > > Stefano Sabatini wrote: > > > > > On date Monday 2014-11-03 00:32:04 +0100, Stefano Sabatini encoded: > > > > Avoid the creation of files

Re: [FFmpeg-devel] [PATCH] lavf/flvenc: fail in case the muxed packet is too big

2014-11-03 Thread Stefano Sabatini
On date Monday 2014-11-03 01:18:05 +0100, wm4 encoded: > On Mon, 3 Nov 2014 00:35:58 +0100 > Stefano Sabatini wrote: > > > On date Monday 2014-11-03 00:32:04 +0100, Stefano Sabatini encoded: > > > Avoid the creation of files which cannot be successfully decoded by > > > ffmpeg, for example genera

Re: [FFmpeg-devel] [PATCH] lavf/flvenc: fail in case the muxed packet is too big

2014-11-03 Thread Stefano Sabatini
On date Monday 2014-11-03 01:56:39 +0100, Michael Niedermayer encoded: > On Mon, Nov 03, 2014 at 12:32:04AM +0100, Stefano Sabatini wrote: > > Avoid the creation of files which cannot be successfully decoded by > > ffmpeg, for example generated with: > > ffmpeg -f lavfi -i sine -af > > "aselect='n

Re: [FFmpeg-devel] [PATCH] lavf/flvenc: fail in case the muxed packet is too big

2014-11-02 Thread Michael Niedermayer
On Mon, Nov 03, 2014 at 12:32:04AM +0100, Stefano Sabatini wrote: > Avoid the creation of files which cannot be successfully decoded by > ffmpeg, for example generated with: > ffmpeg -f lavfi -i sine -af > "aselect='not(between(t,100,500))',aresample=min_comp=0.001:min_hard_comp=0.10" > -acod

Re: [FFmpeg-devel] [PATCH] lavf/flvenc: fail in case the muxed packet is too big

2014-11-02 Thread wm4
On Mon, 3 Nov 2014 00:35:58 +0100 Stefano Sabatini wrote: > On date Monday 2014-11-03 00:32:04 +0100, Stefano Sabatini encoded: > > Avoid the creation of files which cannot be successfully decoded by > > ffmpeg, for example generated with: > > > ffmpeg -f lavfi -i sine -af > > "aselect='not(bet

Re: [FFmpeg-devel] [PATCH] lavf/flvenc: fail in case the muxed packet is too big

2014-11-02 Thread Stefano Sabatini
On date Monday 2014-11-03 00:32:04 +0100, Stefano Sabatini encoded: > Avoid the creation of files which cannot be successfully decoded by > ffmpeg, for example generated with: > ffmpeg -f lavfi -i sine -af > "aselect='not(between(t,100,500))',aresample=min_comp=0.001:min_hard_comp=0.10" > -a

[FFmpeg-devel] [PATCH] lavf/flvenc: fail in case the muxed packet is too big

2014-11-02 Thread Stefano Sabatini
Avoid the creation of files which cannot be successfully decoded by ffmpeg, for example generated with: ffmpeg -f lavfi -i sine -af "aselect='not(between(t,100,500))',aresample=min_comp=0.001:min_hard_comp=0.10" -acodec pcm_s16le -t 1000 -y out_audio.flv --- libavformat/flvenc.c | 6 ++