[FFmpeg-devel] [PATCH] flvdec: option for dropping negative CTS frames Initial frames with negative pts can produce video/audio desynchronization when a decoder is not prepared to handle negative pts.

2017-04-05 Thread felipe
From: Felipe Astroza Signed-off-by: Felipe Astroza --- libavformat/flvdec.c | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 3959a36..1556fe0 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c

Re: [FFmpeg-devel] [PATCH] flvdec: option for dropping negative CTS frames Initial frames with negative pts can produce video/audio desynchronization when a decoder is not prepared to handle negative

2017-04-05 Thread Felipe Astroza
2017-04-05 15:35 GMT-03:00 wm4 : > On Wed, 5 Apr 2017 14:29:30 -0300 > fel...@astroza.cl wrote: > > > From: Felipe Astroza > > > > Signed-off-by: Felipe Astroza > > --- > > libavformat/flvdec.c | 14 +++--- > > 1 file changed, 11 inser

Re: [FFmpeg-devel] [PATCH] flvdec: option for dropping negative CTS frames Initial frames with negative pts can produce video/audio desynchronization when a decoder is not prepared to handle negative

2017-04-06 Thread Felipe Astroza
2017-04-06 2:00 GMT-03:00 wm4 : > On Wed, 5 Apr 2017 17:15:26 -0300 > Felipe Astroza wrote: > > > 2017-04-05 15:35 GMT-03:00 wm4 : > > > > > On Wed, 5 Apr 2017 14:29:30 -0300 > > > fel...@astroza.cl wrote: > > > > > > > From: F

[FFmpeg-devel] libavdevice/decklink: advanced options for selecting an input connection

2016-05-09 Thread Felipe Astroza
This patch add additional input options: video input connection (vinput), audio input connection (ainput). Usage: ffmpeg -f decklink -i 'Card name'@fmt :vinput:ainput Where fmt, vinput and ainput are optional Also it adds list_vinputs and list_ainputs

[FFmpeg-devel] [PATCH] libavformat/tee: tee was passing a wrong option name for fifo's format_options

2017-01-23 Thread Felipe Astroza Araya
From: Felipe Astroza If fifo is enabled on tee muxer, ffmpeg exits because of an unknown option passed to fifo muxer. Option name "format_options" was replaced by "format_opts" on tee muxer. Signed-off-by: Felipe Astroza --- libavformat/tee.c | 2 +- 1 file change