[FFmpeg-devel] [PATCH v3 3/3] doc/filters.texi: Don't need to be yuv420 format for cover image

2019-06-10 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- doc/filters.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/filters.texi b/doc/filters.texi index ec1c7c7591..948d7e8423 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -10180,7 +10180,7 @@ It accepts the

[FFmpeg-devel] [PATCH v3 2/3] libavfilter/vf_cover_rect: support for cover image with more pixel format and different width and height

2019-06-10 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/vf_cover_rect.c | 49 +++-- 1 file changed, 36 insertions(+), 13 deletions(-) diff --git a/libavfilter/vf_cover_rect.c b/libavfilter/vf_cover_rect.c index 898debf09d..22389b79d2 100644 ---

[FFmpeg-devel] [PATCH v3 1/3] libavfilter/vf_cover_rect.c: free the allocated frame

2019-06-10 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/vf_cover_rect.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/vf_cover_rect.c b/libavfilter/vf_cover_rect.c index 41cd1a12b9..898debf09d 100644 --- a/libavfilter/vf_cover_rect.c +++ b/libavfilter/vf_cover_rect.c @@

Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the multi-thread HWAccel decode error

2019-06-10 Thread Xiang, Haihao
On Thu, 2019-06-06 at 15:21 +0800, Wang, Shaofei wrote: > > -Original Message- > > From: Xiang, Haihao > > Sent: Thursday, June 6, 2019 11:57 AM > > To: ffmpeg-devel@ffmpeg.org; Wang, Shaofei > > Subject: Re: [FFmpeg-devel] [PATCH v2] libavcodec/vp8dec: fix the > > multi-thread HWAccel

[FFmpeg-devel] [PATCH] kinect for windows v2 indev

2019-06-10 Thread Michael Zucchi
Morning, Here's a patch to add a "Kinect for Windows v2" camera indev via libfreenect2[1].  It exports up to 3x streams from the device: raw jpeg from the camera, the libfreenect2 decoded infra-red as 16-bit greyscale, and the libfreenect2 decoded depth as 16-bit greyscale in 0.1mm units

Re: [FFmpeg-devel] [PATCH v1] avfilter/vaapi: add overlay_vaapi filter

2019-06-10 Thread Zhou, Zachary
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf Of > Michael Niedermayer > Sent: Tuesday, June 11, 2019 4:50 AM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v1] avfilter/vaapi: add overlay_vaapi >

[FFmpeg-devel] [PATCH v2] avfilter/vaapi: add overlay_vaapi filter

2019-06-10 Thread Zachary Zhou
--- configure | 1 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vaapi_vpp.c| 95 + libavfilter/vaapi_vpp.h| 5 + libavfilter/vf_overlay_vaapi.c | 357 + 6 files

Re: [FFmpeg-devel] [PATCH 2/2] libavfilter/vf_blend.c: remove duplicate code with macro-defined function

2019-06-10 Thread Lance Wang
On Mon, May 27, 2019 at 2:22 PM wrote: > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavfilter/vf_blend.c | 188 +++-- > 1 file changed, 48 insertions(+), 140 deletions(-) > > diff --git a/libavfilter/vf_blend.c b/libavfilter/vf_blend.c > index

[FFmpeg-devel] [PATCH v3] libavfilter/vf_cover_rect.c: free the allocated frame

2019-06-10 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavfilter/vf_cover_rect.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/vf_cover_rect.c b/libavfilter/vf_cover_rect.c index 41cd1a12b9..898debf09d 100644 --- a/libavfilter/vf_cover_rect.c +++ b/libavfilter/vf_cover_rect.c @@

Re: [FFmpeg-devel] yuv420_bgr24_mmxext conversion taking significant time

2019-06-10 Thread Adrian Tong
On Sat, 8 Jun 2019 at 09:42, Adrian Tong wrote: > > > On Sat, 8 Jun 2019 at 09:38, Lauri Kasanen wrote: > >> On Sat, 8 Jun 2019 06:51:51 -0700 >> Adrian Tong wrote: >> >> > Hi Lauri. >> > >> > Thanks for the reply, any reason why this has not been implemented >> before ? >> > it seems to me

[FFmpeg-devel] [PATCH] avformat/matroska: webvtt codec ID according to specification

2019-06-10 Thread Max E. Aubrey
This preserves the old behaviour so as not to break reading "invalid" files. Signed-off-by: Max E. Aubrey --- libavformat/matroska.c| 2 ++ libavformat/matroskaenc.c | 8 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/libavformat/matroska.c b/libavformat/matroska.c

Re: [FFmpeg-devel] [PATCH] vf_drawtext: Add pkt_pos, pkt_duration, pkt_size as variables

2019-06-10 Thread greg Luce
On Mon, 10 Jun 2019 at 19:05, greg Luce wrote: > +If you're trying to read data from teh frames in a stream or file, run Sorry, this should read "the" not "teh" ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] [PATCH] vf_drawtext: Add pkt_pos, pkt_duration, pkt_size as variables

2019-06-10 Thread greg Luce
I created this issue on the bugtracker but I'm trying to format it properly for this channel https://trac.ffmpeg.org/ticket/7947 The actual filter change was written by Calvin Walton --- diff --git a/doc/filters.texi b/doc/filters.texi index ec1c7c7591..332f4ddc80 100644 --- a/doc/filters.texi

Re: [FFmpeg-devel] [PATCH v1] avfilter/vaapi: add overlay_vaapi filter

2019-06-10 Thread Michael Niedermayer
On Mon, Jun 10, 2019 at 01:24:29PM +0800, Zachary Zhou wrote: > --- > configure | 1 + > libavfilter/Makefile | 1 + > libavfilter/allfilters.c | 1 + > libavfilter/vaapi_vpp.c| 95 + > libavfilter/vaapi_vpp.h| 5 + >

Re: [FFmpeg-devel] [PATCH 1/2] avformat/nut: add cpia codec

2019-06-10 Thread Michael Niedermayer
On Thu, Jun 06, 2019 at 10:31:44PM +0200, Stephan Hilb wrote: > --- > libavformat/nut.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavformat/nut.c b/libavformat/nut.c > index 4fbbcb1d26..937f452878 100644 > --- a/libavformat/nut.c > +++ b/libavformat/nut.c > @@ -43,6 +43,7 @@

Re: [FFmpeg-devel] [PATCH] drawtext: ignore last newline

2019-06-10 Thread Jonathan Baecker
Am 10.06.2019 um 19:14 schrieb Gyan: On 10-06-2019 09:24 PM, Jonathan Baecker wrote: I created this issue on the bugtracker: https://trac.ffmpeg.org/ticket/7948 Here is now a patch for it. drawtext should ignore the very last newline character in text files, because many editor add

[FFmpeg-devel] [PATCH] libavformat/mpegtsenc: new interlaced mux mode

2019-06-10 Thread Andreas Håkon
Hi, Here is a list of comments on this patch: (Note: I use for all the tests the file https://samples.ffmpeg.org/HDTV/bshi01.tp) - By default the current behavior is selected. You can verify that this patch doesn’t alter the original behavior with this simple test: $ ffmpeg-original -i

Re: [FFmpeg-devel] [PATCH] drawtext: ignore last newline

2019-06-10 Thread Gyan
On 10-06-2019 09:24 PM, Jonathan Baecker wrote: I created this issue on the bugtracker: https://trac.ffmpeg.org/ticket/7948 Here is now a patch for it. drawtext should ignore the very last newline character in text files, because many editor add automatically a newline at the end. Some

[FFmpeg-devel] [PATCH] drawtext: ignore last newline

2019-06-10 Thread Jonathan Baecker
I created this issue on the bugtracker: https://trac.ffmpeg.org/ticket/7948 Here is now a patch for it. drawtext should ignore the very last newline character in text files, because many editor add automatically a newline at the end. But when the filter draws a box behind the text, the box

[FFmpeg-devel] [PATCH v2] Add RTMFP support with librtmfp library

2019-06-10 Thread Thomas Jammet
Hi all, In attachment is a new attempt to add RTMFP to ffmpeg, let me know what you think. Regards Thomas 0001-Add-RTMFP-support-with-librtmfp.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 1/3] lavf/qsv_vpp: add frame format option

2019-06-10 Thread Li, Zhong
> From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of Li, Zhong > Sent: Monday, June 3, 2019 10:59 AM > To: FFmpeg development discussions and patches > > Subject: Re: [FFmpeg-devel] [PATCH 1/3] lavf/qsv_vpp: add frame format > option > > > From: ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter Changelog

2019-06-10 Thread Hendrik Leppkes
On Mon, Jun 10, 2019 at 12:46 PM Xuewei Meng wrote: > > Signed-off-by: Xuewei Meng > --- > Changelog | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Changelog b/Changelog > index 1facc1fc46..b60aa5dd0b 100644 > --- a/Changelog > +++ b/Changelog > @@ -31,7 +31,7 @@

[FFmpeg-devel] [PATCH] libavfilter: Add derain filter Changelog

2019-06-10 Thread Xuewei Meng
Signed-off-by: Xuewei Meng --- Changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 1facc1fc46..b60aa5dd0b 100644 --- a/Changelog +++ b/Changelog @@ -31,7 +31,7 @@ version : - xmedian filter - asr filter - showspatial multimedia filter - +-

Re: [FFmpeg-devel] [PATCH v2] libavfilter/vf_cover_rect.c: free the allocated frame

2019-06-10 Thread myp...@gmail.com
On Sat, Jun 8, 2019 at 6:58 AM wrote: > > From: Limin Wang > > Signed-off-by: Limin Wang > --- > libavfilter/vf_cover_rect.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavfilter/vf_cover_rect.c b/libavfilter/vf_cover_rect.c > index 41cd1a1..ac0f684 100644 > ---