Re: [FFmpeg-devel] [PATCH v9 3/3][GSOC] avformat/tee: Handling slave failure in tee muxer

2016-04-20 Thread sebechlebskyjan
Understood :) I've modified the patch so the error is printed in that case. I'm sending both yet unapplied patches (So you don't have to search in mailing list for the most recent version of second one). Can you apply them, if it's OK now? I guess I can then create patch to replace calls to depr

Re: [FFmpeg-devel] [PATCH v9 3/3][GSOC] avformat/tee: Handling slave failure in tee muxer

2016-04-20 Thread Nicolas George
Le duodi 2 floréal, an CCXXIV, Jan Sebechlebsky a écrit : > I am not sure, I've understood this. If you meant the error of slave muxer, > it should be already printed (since it is handled by slave muxer itself). Normally, components of FFmpeg print error messages only if the error code is enough t

Re: [FFmpeg-devel] [PATCH v9 3/3][GSOC] avformat/tee: Handling slave failure in tee muxer

2016-04-20 Thread Jan Sebechlebsky
Hi Nicolas, On 04/20/2016 04:31 PM, Nicolas George wrote: +static int tee_process_slave_failure(AVFormatContext *avf, unsigned slave_idx, int err_n) +{ +TeeContext *tee = avf->priv_data; +TeeSlave *tee_slave = &tee->slaves[slave_idx]; + +tee->nb_alive--; + +close_slave(tee_s

Re: [FFmpeg-devel] [PATCH v9 3/3][GSOC] avformat/tee: Handling slave failure in tee muxer

2016-04-20 Thread Nicolas George
Le decadi 30 germinal, an CCXXIV, sebechlebsky...@gmail.com a écrit : > From: Jan Sebechlebsky > > Adds per slave option 'onfail' to the tee muxer allowing an output to > fail,so other slave outputs can continue. > > Signed-off-by: Jan Sebechlebsky > --- > This is embarassing, sorry for that!

[FFmpeg-devel] [PATCH v9 3/3][GSOC] avformat/tee: Handling slave failure in tee muxer

2016-04-17 Thread sebechlebskyjan
From: Jan Sebechlebsky Adds per slave option 'onfail' to the tee muxer allowing an output to fail,so other slave outputs can continue. Signed-off-by: Jan Sebechlebsky --- This is embarassing, sorry for that! You're right in both, I've tried to merge my old file with the changes in previous p