Re: [FFmpeg-devel] [PATCH v7 01/11] avformat: Add fifo pseudo-muxer

2016-08-14 Thread Jan Sebechlebsky
On 08/14/2016 08:12 PM, Marton Balint wrote: [...] +@item max_recovery_attempts +Sets maximum number of successive unsucessful recovery attempts after which +the output fails permanently. Unlimited if set to zero. Default value is 16. Maybe it's just me, but I'd set this to unlimited by

Re: [FFmpeg-devel] [PATCH v7 01/11] avformat: Add fifo pseudo-muxer

2016-08-14 Thread Jan Sebechlebsky
On 08/14/2016 08:19 PM, Timothy Gu wrote: On Sun, Aug 14, 2016 at 11:12 AM Marton Balint wrote: On Thu, 11 Aug 2016, sebechlebsky...@gmail.com wrote: +@anchor tee I still get error when building the docs: doc/muxers.texi:1531: @anchor expected braces doc/muxers.texi:1443: @ref reference to

Re: [FFmpeg-devel] [PATCH v7 01/11] avformat: Add fifo pseudo-muxer

2016-08-14 Thread Timothy Gu
On Sun, Aug 14, 2016 at 11:12 AM Marton Balint wrote: > On Thu, 11 Aug 2016, sebechlebsky...@gmail.com wrote: > > +@anchor tee > > I still get error when building the docs: > > doc/muxers.texi:1531: @anchor expected braces > doc/muxers.texi:1443: @ref reference to nonexistent node `tee' > make: *

Re: [FFmpeg-devel] [PATCH v7 01/11] avformat: Add fifo pseudo-muxer

2016-08-14 Thread Marton Balint
On Thu, 11 Aug 2016, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- Changes since the last version of the patch: - Fixed thread include (old patch included pthread.h directly) [...] --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -1436,6 +1436,

[FFmpeg-devel] [PATCH v7 01/11] avformat: Add fifo pseudo-muxer

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- Changes since the last version of the patch: - Fixed thread include (old patch included pthread.h directly) Changelog| 1 + configure| 1 + doc/muxers.texi | 93 +++ libavformat/Makef