Re: [FFmpeg-devel] [PATCH] ffmpeg: always init output stream before reaping filters

2017-10-18 Thread Marton Balint
On Thu, 12 Oct 2017, Marton Balint wrote: On Sun, 8 Oct 2017, Marton Balint wrote: On Sat, 7 Oct 2017, Hendrik Leppkes wrote: On Wed, Oct 4, 2017 at 12:48 AM, Marton Balint wrote: Otherwise the frame size of the codec is not set in the buffersink. Fixes ticket #6603

Re: [FFmpeg-devel] [PATCH] ffmpeg: always init output stream before reaping filters

2017-10-08 Thread Marton Balint
On Sat, 7 Oct 2017, Hendrik Leppkes wrote: On Wed, Oct 4, 2017 at 12:48 AM, Marton Balint wrote: Otherwise the frame size of the codec is not set in the buffersink. Fixes ticket #6603 and the following simpler case: ffmpeg -c aac -filter_complex

Re: [FFmpeg-devel] [PATCH] ffmpeg: always init output stream before reaping filters

2017-10-07 Thread Hendrik Leppkes
On Wed, Oct 4, 2017 at 12:48 AM, Marton Balint wrote: > Otherwise the frame size of the codec is not set in the buffersink. > > Fixes ticket #6603 and the following simpler case: > > ffmpeg -c aac -filter_complex "sine=d=0.1,asetnsamples=1025" out.aac > > Signed-off-by: Marton

Re: [FFmpeg-devel] [PATCH] ffmpeg: always init output stream before reaping filters

2017-10-07 Thread Paul B Mahol
On 10/6/17, Marton Balint wrote: > > > On Wed, 4 Oct 2017, Marton Balint wrote: > >> Otherwise the frame size of the codec is not set in the buffersink. >> >> Fixes ticket #6603 and the following simpler case: >> >> ffmpeg -c aac -filter_complex "sine=d=0.1,asetnsamples=1025"

Re: [FFmpeg-devel] [PATCH] ffmpeg: always init output stream before reaping filters

2017-10-06 Thread Marton Balint
On Wed, 4 Oct 2017, Marton Balint wrote: Otherwise the frame size of the codec is not set in the buffersink. Fixes ticket #6603 and the following simpler case: ffmpeg -c aac -filter_complex "sine=d=0.1,asetnsamples=1025" out.aac Signed-off-by: Marton Balint As this patch

[FFmpeg-devel] [PATCH] ffmpeg: always init output stream before reaping filters

2017-10-03 Thread Marton Balint
Otherwise the frame size of the codec is not set in the buffersink. Fixes ticket #6603 and the following simpler case: ffmpeg -c aac -filter_complex "sine=d=0.1,asetnsamples=1025" out.aac Signed-off-by: Marton Balint --- fftools/ffmpeg.c | 9 + 1 file changed, 9