[FFmpeg-devel] [PATCH] ffmpeg/qsv: fix QSV-accelerated transcode performance drop issue

2016-08-11 Thread Jun Zhao
From cafa70e97ce48b65e2a4a99782f6ce3557fef755 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Thu, 11 Aug 2016 15:34:01 +0800 Subject: [PATCH] ffmpeg/qsv: fix QSV-accelerated transcode performance drop issue. the merge commit 1b04ea1 "avconv: create simple filtergraphs earlier" will init the filte

[FFmpeg-devel] [PATCH] libavformat/http: add support for headers option in listen mode

2016-08-11 Thread Moritz Barsnick
Instead of silently ignoring the headers option in listen mode, use the provided headers. Signed-off-by: Moritz Barsnick --- libavformat/http.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index cbeaebf..adb3d92 100644 --- a/lib

[FFmpeg-devel] [PATCH] libavformat/http: add support for headers option in listen mode

2016-08-11 Thread Moritz Barsnick
Sorry, I shouldn't have refactored and remerged without testing. Big mistake. Fixed (and tested) patch attached. Moritz ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 04/11] avformat/muxers: Add non-blocking mode support for av_write_trailer

2016-08-11 Thread Jan Sebechlebsky
On 08/10/2016 07:04 PM, Michael Niedermayer wrote: On Tue, Aug 02, 2016 at 03:24:15PM +0200, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky This makes av_write_trailer not to free the resources if write_trailer call returns AVERROR(EAGAIN) allowing repeated calls of write_trailer of

Re: [FFmpeg-devel] [PATCH v2 03/11] avformat/fifo: Add fate test

2016-08-11 Thread Jan Sebechlebsky
On 08/09/2016 07:42 PM, Michael Niedermayer wrote: On Tue, Aug 09, 2016 at 01:26:04PM +0200, sebechlebsky...@gmail.com wrote: From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- Changes since the last version: - Removed empty lines at the end of fifo_muxer.c file [...] diff --

Re: [FFmpeg-devel] [PATCH 1/2] avisynth: simplify the pix_fmt check for the newer AviSynth API

2016-08-11 Thread Michael Niedermayer
On Wed, Aug 10, 2016 at 11:14:35PM -0400, Stephen Hutchinson wrote: > The values don't need to be hardcoded since the correct values are > returned by avs_bits_per_pixel. > --- > libavformat/avisynth.c | 27 +-- > 1 file changed, 5 insertions(+), 22 deletions(-) does this

Re: [FFmpeg-devel] [PATCH] avfilter: add acrusher filter

2016-08-11 Thread Michael Niedermayer
On Wed, Aug 10, 2016 at 06:23:32PM +0200, Paul B Mahol wrote: > Hi, > > patch attached. > doc/filters.texi | 49 +++ > libavfilter/Makefile |1 > libavfilter/af_acrusher.c | 291 > ++ > libavfilter/allfilters.c |1 > 4

[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

[FFmpeg-devel] [PATCH v3 03/11] avformat/fifo: Add fate test

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- Changes since the last version of the patch: - Fixed whitespace and missing $(EXESUF) in fifo-muxer.mak - Fixed "overflow with packet dropping" test which skipped write_trailer call in case of failure. libavformat/Makefile

[FFmpeg-devel] [PATCH v2 04/11] avformat/muxers: Add non-blocking mode support for av_write_trailer

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky This makes av_write_trailer not to free the resources if write_trailer call returns AVERROR(EAGAIN) allowing repeated calls of write_trailer of non-blocking muxer. Signed-off-by: Jan Sebechlebsky --- Changes since the last version of the patch: - Added assert to the par

[FFmpeg-devel] [PATCH v2 05/11] avformat/mux: Refactor muxer deinit from av_write_trailer

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky Move muxer deinitialization and private resources freeing in a separate static function free_muxer(AVFormatContext*). Signed-off-by: Jan Sebechlebsky --- No changes since the last version, just rebased because of changes in previous patch. libavformat/mux.c | 31 +

[FFmpeg-devel] [PATCH v3 06/11] avformat: add avformat_write_abort() function

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- No changes since the last version of the patch, just rebased because of the changes in previous patches. libavformat/avformat.h | 15 +++ libavformat/mux.c | 13 + 2 files changed, 28 insertions(+) diff

[FFmpeg-devel] [PATCH v3 07/11] avformat/mux: Comment and assert AVFMT_FLAG_NONBLOCK

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky Add comments regarding AVFMG_FLAG_NONBLOCK usage with muxers. Add assert forbiding use of nonblocking muxer with av_interleaved_write_frame. Signed-off-by: Jan Sebechlebsky --- Changes since the last version of the patch: - added assert to the beginning of av_interleave

[FFmpeg-devel] [PATCH v4 10/11] avformat/fifo: Add AVFMT_FLAG_NONBLOCK support

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky Add support for nonblocking calls. Signed-off-by: Jan Sebechlebsky --- Changes since the last version: - fixed wrong flag passed to av_thread_message_queue_recv() - fixed memleak when queue is full in nonblocking mode libavformat/fifo.c | 61 +

[FFmpeg-devel] [PATCH v3 11/11] avformat/fifo: Add test for nonblocking mode

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- No changes since the last version of the patch, just rebased because of changes in previous fate test patch. libavformat/tests/fifo_muxer.c | 139 + tests/ref/fate/fifo-muxer-tst | 5 ++ 2

Re: [FFmpeg-devel] [PATCH] avfilter: add acrusher filter

2016-08-11 Thread Paul B Mahol
On 8/11/16, Michael Niedermayer wrote: > On Wed, Aug 10, 2016 at 06:23:32PM +0200, Paul B Mahol wrote: >> Hi, >> >> patch attached. > >> doc/filters.texi | 49 +++ >> libavfilter/Makefile |1 >> libavfilter/af_acrusher.c | 291 >> ++

Re: [FFmpeg-devel] [PATCH 1/2] avisynth: simplify the pix_fmt check for the newer AviSynth API

2016-08-11 Thread Stephen Hutchinson
On 8/11/2016 6:31 AM, Michael Niedermayer wrote: does this work with all supported AviSynth versions ? Yes, it works with both 2.6 and Plus. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH v2 03/11] avformat/fifo: Add fate test

2016-08-11 Thread Michael Niedermayer
On Thu, Aug 11, 2016 at 11:19:33AM +0200, Jan Sebechlebsky wrote: > > > On 08/09/2016 07:42 PM, Michael Niedermayer wrote: > >On Tue, Aug 09, 2016 at 01:26:04PM +0200, sebechlebsky...@gmail.com wrote: > >>From: Jan Sebechlebsky > >> > >>Signed-off-by: Jan Sebechlebsky > >>--- > >> Changes sinc

[FFmpeg-devel] [PATCH] add append_list flag into hlsenc

2016-08-11 Thread Steven Liu
When ffmpeg exit by exception, start a new ffmpeg will cover the old segment list, add this flag can continue append the new segments into old hls segment list Signed-off-by: LiuQi --- doc/muxers.texi | 4 libavformat/hlsenc.c | 63

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-11 Thread Paul B Mahol
On 8/10/16, Davinder Singh wrote: > On Mon, Jul 25, 2016 at 9:35 AM Davinder Singh wrote: > >> https://github.com/dsmudhar/FFmpeg/commits/dev >> >> The Paper 2 algorithm is complete. It seems good. If I compare Paper 2 >> (which uses bilateral motion estimation) v/s motion vectors exported by >>

Re: [FFmpeg-devel] [PATCH] avfilter/vf_signalstats: add >8 bit depth support

2016-08-11 Thread Paul B Mahol
On 8/9/16, Paul B Mahol wrote: > Hi, > > patch attached. > Updated patches attached. 0001-avfilter-vf_signalstats-add-8-bit-depth-support.patch Description: Binary data 0002-avfilter-vf_signalstats-measure-video-bitdepth.patch Description: Binary data _

Re: [FFmpeg-devel] [PATCH v2]Support QT b64a ARGB64 rawvideo

2016-08-11 Thread Paul B Mahol
On 8/9/16, Carl Eugen Hoyos wrote: > Hi! > > >> Am 09.08.2016 um 18:26 schrieb Paul B Mahol : >> >>> On 8/9/16, Carl Eugen Hoyos wrote: >>> Hi! >>> >>> New patch attached that fixes ticket #5657. >>> >>> Please comment, Carl Eugen >> >> Micro should be 101. > > Definitely, thank you. > > Will fix

[FFmpeg-devel] [PATCH] Add max value output option to psnr stats log.

2016-08-11 Thread Lucas Cooper
This allows retroactive calculation/aggregation of PSNR from the stats log. --- libavfilter/vf_psnr.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/libavfilter/vf_psnr.c b/libavfilter/vf_psnr.c index 3bec747..de5cc8f 100644 --- a/libavfilter/vf_psnr.c +++ b/libavfilter/vf_ps

Re: [FFmpeg-devel] [PATCH 1/2] avisynth: simplify the pix_fmt check for the newer AviSynth API

2016-08-11 Thread Michael Niedermayer
On Thu, Aug 11, 2016 at 10:55:22AM -0400, Stephen Hutchinson wrote: > On 8/11/2016 6:31 AM, Michael Niedermayer wrote: > >does this work with all supported AviSynth versions ? > > > > Yes, it works with both 2.6 and Plus. ok ill apply it in a moment thx [...] -- Michael GnuPG fingerprint:

Re: [FFmpeg-devel] [GSoC] Motion Interpolation

2016-08-11 Thread Davinder Singh
On Thu, Aug 11, 2016 at 9:09 PM Paul B Mahol wrote: > On 8/10/16, Davinder Singh wrote: > > On Mon, Jul 25, 2016 at 9:35 AM Davinder Singh > wrote: > > > >> https://github.com/dsmudhar/FFmpeg/commits/dev > >> > >> The Paper 2 algorithm is complete. It seems good. If I compare Paper 2 > >> (whic

Re: [FFmpeg-devel] [PATCH v2 03/11] avformat/fifo: Add fate test

2016-08-11 Thread Jan Sebechlebsky
On 08/11/2016 05:00 PM, Michael Niedermayer wrote: make: *** No rule to make target `libavformat/tests/fifo_muxer.exe', needed by `fate-fifo-muxer-tst'. make: Target `fate-fifo-muxer-tst' not remade because of errors. I was not able to reproduce the exactly same error you got, however I've fi

[FFmpeg-devel] [PATCH v4 03/11] avformat/fifo: Add fate test

2016-08-11 Thread sebechlebskyjan
From: Jan Sebechlebsky Signed-off-by: Jan Sebechlebsky --- Changes since the last version of patch: - Fixed make dependencies so the tests are not executed when required components are disabled libavformat/Makefile | 1 + libavformat/tests/fifo_muxer.c | 443 +

Re: [FFmpeg-devel] [PATCH v4 03/11] avformat/fifo: Add fate test

2016-08-11 Thread Michael Niedermayer
On Thu, Aug 11, 2016 at 10:02:07PM +0200, sebechlebsky...@gmail.com wrote: > From: Jan Sebechlebsky > > Signed-off-by: Jan Sebechlebsky > --- > Changes since the last version of patch: > - Fixed make dependencies so the tests are not executed when >required components are disabled > > l

Re: [FFmpeg-devel] [PATCH] libavformat/http: add support for headers option in listen mode

2016-08-11 Thread Michael Niedermayer
On Thu, Aug 11, 2016 at 11:29:07AM +0200, Moritz Barsnick wrote: > Instead of silently ignoring the headers option in listen mode, use > the provided headers. > > Signed-off-by: Moritz Barsnick > --- > libavformat/http.c | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) applied than