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
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
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
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
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 --
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
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
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
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
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
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 +
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
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
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 +
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
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
>> ++
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
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
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
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
>>
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
_
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
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
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:
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
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
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 +
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
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
29 matches
Mail list logo