[FFmpeg-devel] [PATCH] hwcontext_vaapi: use the special UC copy for downloading, frames.

2017-04-11 Thread Jun Zhao
From 9bab458006369f427fa2f4c6248ee89329e81067 Mon Sep 17 00:00:00 2001 From: Jun Zhao Date: Tue, 11 Apr 2017 14:37:07 +0800 Subject: [PATCH] hwcontext_vaapi: use the special UC copy for downloading frames. used SSE4 UC function for copying image data from GPU mapped memory, see https://software

Re: [FFmpeg-devel] [PATCH] doc/APIChages: Add av_strireplace()

2017-04-11 Thread Nicolas George
Le duodi 22 germinal, an CCXXV, Steven Liu a écrit : > Applied Thanks for your efforts. Regards, -- Nicolas George ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] libavformat: add "capture:" protocol using AVIO

2017-04-11 Thread Nicolas George
Le duodi 22 germinal, an CCXXV, Timothy Lee a écrit : > Capture is an input stream capture protocol that dumps the input stream to a > file. The default name of the output file is "capture.dat", but it can be > changed using the "capture_file" option. > --- > Changelog | 1 + > do

Re: [FFmpeg-devel] [PATCH 2/2] lavf/tcp.c: Free allocated client URLContext in case of error.

2017-04-11 Thread Nicolas George
Le primidi 21 germinal, an CCXXV, Stephan Holljes a écrit : > --- > libavformat/tcp.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) Both patches LGTL. But I do not maintain these files. Regards, -- Nicolas George ___ ffmpeg-devel maili

Re: [FFmpeg-devel] [PATCH] hwcontext_vaapi: use the special UC copy for downloading, frames.

2017-04-11 Thread Mark Thompson
On 11/04/17 08:30, Jun Zhao wrote: > From 9bab458006369f427fa2f4c6248ee89329e81067 Mon Sep 17 00:00:00 2001 > From: Jun Zhao > Date: Tue, 11 Apr 2017 14:37:07 +0800 > Subject: [PATCH] hwcontext_vaapi: use the special UC copy for downloading > frames. > > used SSE4 UC function for copying image d

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-11 Thread Andy Furniss
Steven Liu wrote: ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch TODO: 1. support multi bitrate dash v14 fixed: 1. fix bug: TLS connection was non-properly term

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-11 Thread Steven Liu
2017-04-11 22:27 GMT+08:00 Andy Furniss : > Steven Liu wrote: > >> ffmpeg need a dash demuxer for demux the dash formats base on >> https://github.com/samsamsam-iptvplayer/exteplayer3/blob/mas >> ter/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch >> >> TODO: 1. support multi bitrate dash >>

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-11 Thread Andy Furniss
Steven Liu wrote: 2017-04-11 22:27 GMT+08:00 Andy Furniss : Steven Liu wrote: ffmpeg need a dash demuxer for demux the dash formats base on https://github.com/samsamsam-iptvplayer/exteplayer3/blob/mas ter/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch TODO: 1. support multi bitrate das

Re: [FFmpeg-devel] [PATCH v2 2/2] avfilter/interlace: add complex vertical low-pass filter

2017-04-11 Thread Thomas Mundt
>>>Thomas Mundt schrieb am Mi, 5.4.2017: Thomas Mundt schrieb am Do, 30.3.2017: Lou Logan schrieb am Do, 30.3.2017: >>> On Mon, 13 Mar 2017 16:23:46 + (UTC) >>> Thomas Mundt wrote: >>> >>> [...] index 09ca4d3..0b5b858 100644 --- a/libavfilter/vf_tinterlace.c +++ b/li

[FFmpeg-devel] [PATCH 2/2] lavf/tcp.c: Free allocated client URLContext in case of error.

2017-04-11 Thread Stephan Holljes
--- libavformat/tcp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 07b4ed9..f1a597d 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -203,8 +203,10 @@ static int tcp_accept(URLContext *s, URLContext **c) return

Re: [FFmpeg-devel] [PATCH 2/2] lavf/tcp.c: Free allocated client URLContext in case of error.

2017-04-11 Thread Stephan Holljes
In fact the http patch introduces a bug where it closes the URLContext regardless of ret. New patches shortly. (Also rebased on Simon's patches fixing tcp return codes.) Regards On Tue, Apr 11, 2017 at 11:35 AM, Nicolas George wrote: > Le primidi 21 germinal, an CCXXV, Stephan Holljes a écrit :

[FFmpeg-devel] [PATCH 1/2] lavf/http.c: Free allocated client URLContext in case of error.

2017-04-11 Thread Stephan Holljes
--- libavformat/http.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/http.c b/libavformat/http.c index 293a8a7..f364f1b 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -536,6 +536,9 @@ static int http_accept(URLContext *s, URLContext **c) cc->hd = cl; cc-

Re: [FFmpeg-devel] [PATCH 2/2] lavf/tcp.c: Free allocated client URLContext in case of error.

2017-04-11 Thread Nicolas George
Le duodi 22 germinal, an CCXXV, Stephan Holljes a écrit : > In fact the http patch introduces a bug where it closes the URLContext > regardless of ret. New patches shortly. (Also rebased on Simon's > patches fixing tcp return codes.) You are right, I missed that too. I suggest to add "return 0;"

[FFmpeg-devel] [PATCH 2/2] lavf/tcp.c: Free allocated client URLContext in case of error.

2017-04-11 Thread Stephan Holljes
--- This version is rebased on Simon's tcp return fix. libavformat/tcp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 07b4ed9..f1a597d 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -203,8 +203,10 @@ static int tcp_

[FFmpeg-devel] [PATCH 1/2] lavf/http.c: Free allocated client URLContext in case of error.

2017-04-11 Thread Stephan Holljes
--- This version returns 0 in case of success and does not fallthrough to fail:. libavformat/http.c | 4 1 file changed, 4 insertions(+) diff --git a/libavformat/http.c b/libavformat/http.c index 293a8a7..2917b6e 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -535,7 +535,11 @@

Re: [FFmpeg-devel] [PATCH 2/2] lavf/tcp.c: Free allocated client URLContext in case of error.

2017-04-11 Thread Stephan Holljes
On Tue, Apr 11, 2017 at 7:24 PM, Nicolas George wrote: > Le duodi 22 germinal, an CCXXV, Stephan Holljes a écrit : >> In fact the http patch introduces a bug where it closes the URLContext >> regardless of ret. New patches shortly. (Also rebased on Simon's >> patches fixing tcp return codes.) > >

Re: [FFmpeg-devel] [PATCH 1/2] Add experimental support for Opus in ISO BMFF (MP4)

2017-04-11 Thread Michael Niedermayer
On Fri, Mar 31, 2017 at 04:21:18PM +1300, Matthew Gregan wrote: > At 2017-03-16T14:19:45+1300, Matthew Gregan wrote: > > The attached patch adds experimental muxing support for Opus audio codec in > > ISOBMFF/MP4. This is based on v0.6.8 of the draft spec at > > https://vfrmaniac.fushizen.eu/conte

Re: [FFmpeg-devel] [PATCH 2/2] Add experimental support for Opus in ISO BMFF (MP4)

2017-04-11 Thread Michael Niedermayer
On Fri, Apr 07, 2017 at 04:29:36PM +1200, Matthew Gregan wrote: > At 2017-04-05T20:43:21-0300, James Almer wrote: > > > +/* OpusSpecificBox size plus magic for Ogg OpusHead header. */ > > > +size = atom.size + 16; > > > > This should be 8. "OpusHead" is not 16 bytes. > > > > > +avio_r

Re: [FFmpeg-devel] [PATCH] added expr evaluation to drawtext - fontsize

2017-04-11 Thread Brett Harrison
Pinging for comments / review... On Tue, Apr 4, 2017 at 3:45 PM, Brett Harrison wrote: > Resurrecting this patch. > > On Thu, Sep 15, 2016 at 3:20 AM, Michael Niedermayer < > mich...@niedermayer.cc> wrote: > >> On Fri, Sep 09, 2016 at 05:26:03PM -0700, Brett Harrison wrote: >> > Here are the cha

Re: [FFmpeg-devel] [PATCH] hwcontext_vaapi: use the special UC copy for downloading, frames.

2017-04-11 Thread Mark Thompson
On 11/04/17 12:26, Mark Thompson wrote: > On 11/04/17 08:30, Jun Zhao wrote: >> From 9bab458006369f427fa2f4c6248ee89329e81067 Mon Sep 17 00:00:00 2001 >> From: Jun Zhao >> Date: Tue, 11 Apr 2017 14:37:07 +0800 >> Subject: [PATCH] hwcontext_vaapi: use the special UC copy for downloading >> frames.

Re: [FFmpeg-devel] [PATCH] checkasm: add fixed_dsp tests

2017-04-11 Thread James Almer
On 1/19/2016 7:33 PM, Michael Niedermayer wrote: > On Tue, Jan 19, 2016 at 01:43:45PM -0300, James Almer wrote: >> Signed-off-by: James Almer >> --- >> tests/checkasm/Makefile| 3 + >> tests/checkasm/checkasm.c | 3 + >> tests/checkasm/checkasm.h | 1 + >> tests/checkasm/fixed_dsp.c |

[FFmpeg-devel] [PATCH] checkasm: add float_dsp tests

2017-04-11 Thread James Almer
This is a port of libavutil/tests/float_dsp.c Signed-off-by: James Almer --- tests/checkasm/Makefile| 1 + tests/checkasm/checkasm.c | 20 +++ tests/checkasm/checkasm.h | 4 + tests/checkasm/float_dsp.c | 302 + tests/fate/checkasm.mak|

Re: [FFmpeg-devel] [PATCH] libavformat: add "capture:" protocol using AVIO

2017-04-11 Thread Moritz Barsnick
On Tue, Apr 11, 2017 at 14:12:08 +1000, Timothy Lee wrote: > Capture is an input stream capture protocol that dumps the input stream to a > file. The default name of the output file is "capture.dat", but it can be > changed using the "capture_file" option. Nice! > +Input stream capturing protoco

[FFmpeg-devel] [PATCH] avformat/movenc: Fix potential leak of sgpd_entries array.

2017-04-11 Thread Matthew Gregan
Signed-off-by: Matthew Gregan --- libavformat/movenc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index e6a70bffc0..e6e2313c53 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -2286,8 +2286,10 @@ static int m

[FFmpeg-devel] [PATCH] avcodec/aacenc_ltp: fix use of uninitialized values

2017-04-11 Thread James Almer
Fixes some valgrind warnings. Signed-off-by: James Almer --- libavcodec/aacenc_ltp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/aacenc_ltp.c b/libavcodec/aacenc_ltp.c index 1bec85b9e3..674a2a0680 100644 --- a/libavcodec/aacenc_ltp.c +++ b/libavcodec/aacenc

Re: [FFmpeg-devel] [PATCH] hwcontext_vaapi: use the special UC copy for downloading, frames.

2017-04-11 Thread Jun Zhao
On 2017/4/12 5:00, Mark Thompson wrote: > On 11/04/17 12:26, Mark Thompson wrote: >> On 11/04/17 08:30, Jun Zhao wrote: >>> From 9bab458006369f427fa2f4c6248ee89329e81067 Mon Sep 17 00:00:00 2001 >>> From: Jun Zhao >>> Date: Tue, 11 Apr 2017 14:37:07 +0800 >>> Subject: [PATCH] hwcontext_vaapi: us

[FFmpeg-devel] [PATCH] webm_dash_manifest: Add option to specify bandwidth

2017-04-11 Thread Vignesh Venkatasubramanian
Add an option to webm_dash_manifest demuxer to specify a value for "bandwidth" field in the DASH manifest. The value is then used by the muxer. Fixes an existing FIXME in the code. Signed-off-by: Vignesh Venkatasubramanian --- libavformat/matroskadec.c| 19 +++

Re: [FFmpeg-devel] [PATCH v14] avformat/dashdec: add dash demuxer base version

2017-04-11 Thread Rodger Combs
> On Apr 9, 2017, at 09:08, Steven Liu wrote: > > ffmpeg need a dash demuxer for demux the dash formats > base on > https://github.com/samsamsam-iptvplayer/exteplayer3/blob/master/tmp/ffmpeg/patches/3.2.2/01_add_dash_demux.patch > > TODO: > 1. support multi bitrate dash > > v2 fixed: > 1.