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

2016-04-20 Thread Jan Sebechlebsky
On 04/21/2016 12:14 AM, Nicolas George wrote: Le duodi 2 floréal, an CCXXIV, sebechlebsky...@gmail.com a écrit : +if (av_strerror(err_n, errbuf, sizeof(errbuf)) < 0) +errbuf_ptr = strerror(AVUNERROR(err_n)); strerror() should not be used, even though a few places still us

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

2016-04-20 Thread Nicolas George
Le duodi 2 floréal, an CCXXIV, sebechlebsky...@gmail.com a écrit : > +if (av_strerror(err_n, errbuf, sizeof(errbuf)) < 0) > +errbuf_ptr = strerror(AVUNERROR(err_n)); strerror() should not be used, even though a few places still use it. Furthermore, there is no reasonable reaso

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

2016-04-20 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 --- doc/muxers.texi | 14 libavformat/tee.c | 95 --- 2 files ch