[FFmpeg-devel] [PATCH] avfilter/vf_nnedi: Fix memleak

2016-02-09 Thread Michael Niedermayer
Fixes CID1351359 Signed-off-by: Michael Niedermayer --- libavfilter/vf_nnedi.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_nnedi.c b/libavfilter/vf_nnedi.c index a1f2952..9a98ec2 100644 --- a/libavfilter/vf_nnedi.c +++ b/libavfilter/vf_nnedi.c @@ -1154,7

Re: [FFmpeg-devel] [PATCH] avfilter/vf_nnedi: Fix memleak

2016-02-09 Thread Paul B Mahol
On 2/9/16, Michael Niedermayer wrote: > Fixes CID1351359 > > Signed-off-by: Michael Niedermayer > --- > libavfilter/vf_nnedi.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavfilter/vf_nnedi.c b/libavfilter/vf_nnedi.c > index a1f2952..9a98ec2 100644 > --- a/libav

Re: [FFmpeg-devel] [PATCH] rtpdec: support for VC-2 HQ RTP payload format (draft v1)

2016-02-09 Thread Michael Niedermayer
On Wed, Feb 03, 2016 at 10:21:19AM +0100, si...@gmx.net wrote: > From: Thomas Volkert > > --- > Changelog| 1 + > libavformat/Makefile | 1 + > libavformat/rtpdec.c | 1 + > libavformat/rtpdec_formats.h | 1 + > libavformat/rtpdec_vc2hq.c | 225 > ++

Re: [FFmpeg-devel] [PATCH] avfilter: add metadata filters

2016-02-09 Thread Paul B Mahol
On 2/6/16, Paul B Mahol wrote: > On 2/6/16, Paul B Mahol wrote: >> Hi, >> >> patch attached. >> > > Improved version attached. > Gonna push this soon. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

[FFmpeg-devel] [PATCH] avfilter/dualinput: use pts provided from framesync

2016-02-09 Thread Paul B Mahol
Hi, patch attached. From b62b85d03ab21c8c6103b8c6038070c60bb87878 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 9 Feb 2016 18:32:54 +0100 Subject: [PATCH] avfilter/dualinput: use pts provided by framesync This fixes stalled output pts when main stream ends. Signed-off-by: Paul B Mahol

[FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavcodec/raw.c|1 + libavformat/nut.c |2 ++ tests/ref/fate/filter-pixfmts-copy |2 +- tests/ref/fate/filter-pixfmts-crop |2 +- tests/ref/fate/filter-pixfmts-field |2 +- tests/ref/fate/filter-pi

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Mats Peterson
On 02/09/2016 07:27 PM, Michael Niedermayer wrote: Signed-off-by: Michael Niedermayer --- libavcodec/raw.c|1 + libavformat/nut.c |2 ++ tests/ref/fate/filter-pixfmts-copy |2 +- tests/ref/fate/filter-pixfmts-crop |2 +- tests/ref/fat

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Mats Peterson
On 02/09/2016 08:23 PM, Mats Peterson wrote: Wonderful, Michael. Mats But there is no provision for storing the proper palette yet, as far as I can see. Correct me if I'm wrong. Mats ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://f

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Mats Peterson
On 02/09/2016 08:35 PM, Mats Peterson wrote: On 02/09/2016 08:23 PM, Mats Peterson wrote: Wonderful, Michael. Mats But there is no provision for storing the proper palette yet, as far as I can see. Correct me if I'm wrong. And as far as I know, neither writing AVI or QuickTime will includ

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Michael Niedermayer
On Tue, Feb 09, 2016 at 08:35:07PM +0100, Mats Peterson wrote: > On 02/09/2016 08:23 PM, Mats Peterson wrote: > > >Wonderful, Michael. > > > >Mats > > But there is no provision for storing the proper palette yet, as far > as I can see. Correct me if I'm wrong. ive tried both converting to pal8 n

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Mats Peterson
On 02/09/2016 09:01 PM, Michael Niedermayer wrote: On Tue, Feb 09, 2016 at 08:35:07PM +0100, Mats Peterson wrote: On 02/09/2016 08:23 PM, Mats Peterson wrote: Wonderful, Michael. Mats But there is no provision for storing the proper palette yet, as far as I can see. Correct me if I'm wrong.

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Mats Peterson
On 02/09/2016 09:03 PM, Mats Peterson wrote: I'm currently compiling here, so I can't tell yet... Anyway, AVI stores the palette in the output file, but only when using "-vcodec copy". QuickTime doesn't store any palette whatsoever. Just a parenthesis. Yes, Michael, nut works just fine, and it

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Mats Peterson
On 02/09/2016 09:06 PM, Mats Peterson wrote: On 02/09/2016 09:03 PM, Mats Peterson wrote: I'm currently compiling here, so I can't tell yet... Anyway, AVI stores the palette in the output file, but only when using "-vcodec copy". QuickTime doesn't store any palette whatsoever. Just a parenthesis

Re: [FFmpeg-devel] [PATCH] vf_overlay: Add `timebase` option to set the time base source for the output video.

2016-02-09 Thread Paul B Mahol
On 1/20/16, Vittorio Gambaletta (VittGam) wrote: > With this commit it is possible to use vf_overlay to center a video over > a black background, without having to know the video framerate in advance > and set it as parameter to lavfi. > > Signed-off-by: Vittorio Gambaletta > --- > doc/filters.t

Re: [FFmpeg-devel] FFmpeg in Outreachy Round 12

2016-02-09 Thread Michael Niedermayer
Hi Outreachy admins just wanted to make sure this isnt missed (as it was sent to outreachy-list and not outreachy-admins as described at https://mail.gnome.org/mailman/private/opw-announce-list/2016-January/msg0.html ) Kieran, Lou and myself volunteer as coordinators/admins or what it was cal

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Michael Niedermayer
On Tue, Feb 09, 2016 at 09:09:18PM +0100, Mats Peterson wrote: > On 02/09/2016 09:06 PM, Mats Peterson wrote: > >On 02/09/2016 09:03 PM, Mats Peterson wrote: > >>I'm currently compiling here, so I can't tell yet... Anyway, AVI stores > >>the palette in the output file, but only when using "-vcodec

Re: [FFmpeg-devel] [SPI] Outreachy funding

2016-02-09 Thread compn
On Wed, 3 Feb 2016 10:08:43 +0100 Stefano Sabatini wrote: > > I'd also suggest to pay the mentor with the fund, for a total of 500 > USD, to incentivate him/her. sounds good to me. -compn ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://f

[FFmpeg-devel] [PATCH 1/2] x86/vf_blend: Move multiplying to a macro

2016-02-09 Thread Timothy Gu
--- libavfilter/x86/vf_blend.asm | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/libavfilter/x86/vf_blend.asm b/libavfilter/x86/vf_blend.asm index 9388a74..50b5f8a 100644 --- a/libavfilter/x86/vf_blend.asm +++ b/libavfilter/x86/vf_blend.asm @@ -102,6 +102,15 @

[FFmpeg-devel] [PATCH 2/2] x86/vf_blend: Add SSE2 optimization for screen

2016-02-09 Thread Timothy Gu
--- libavfilter/x86/vf_blend.asm| 29 + libavfilter/x86/vf_blend_init.c | 2 ++ 2 files changed, 31 insertions(+) diff --git a/libavfilter/x86/vf_blend.asm b/libavfilter/x86/vf_blend.asm index 50b5f8a..a5ea74c 100644 --- a/libavfilter/x86/vf_blend.asm +++ b/libavf

[FFmpeg-devel] [PATCH] fix seek_timestamp flag

2016-02-09 Thread Umair Khan
Signed-off-by: Umair Khan --- ffmpeg_opt.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index 669976b..011a10b 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -164,6 +164,7 @@ static void init_options(OptionsContext *o) o->mux_max_delay

Re: [FFmpeg-devel] [PATCH] fix seek_timestamp flag

2016-02-09 Thread Umair Khan
I didn't test the original code if it was actually creating issue or not, but this looks better to me. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] fix seek_timestamp flag

2016-02-09 Thread Hendrik Leppkes
On Tue, Feb 9, 2016 at 11:56 PM, Umair Khan wrote: > Signed-off-by: Umair Khan > --- > ffmpeg_opt.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c > index 669976b..011a10b 100644 > --- a/ffmpeg_opt.c > +++ b/ffmpeg_opt.c > @@ -164,6 +164

Re: [FFmpeg-devel] [PATCH] fix seek_timestamp flag

2016-02-09 Thread Umair Khan
> This seems wrong, the original codes intent was not to handle the > seek_timestamp but the start time, which you just replace? I'm sorry I got the problem. But, why aren't we handling o->seek_timestamp anywhere in the code ? ___ ffmpeg-devel mailing lis

Re: [FFmpeg-devel] [PATCH] avfilter/vf_nnedi: Fix memleak

2016-02-09 Thread Michael Niedermayer
On Tue, Feb 09, 2016 at 01:53:22PM +0100, Paul B Mahol wrote: > On 2/9/16, Michael Niedermayer wrote: > > Fixes CID1351359 > > > > Signed-off-by: Michael Niedermayer > > --- > > libavfilter/vf_nnedi.c |2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/libavfilter/v

Re: [FFmpeg-devel] [PATCH] nut: Add PAL8 support

2016-02-09 Thread Mats Peterson
On 02/09/2016 09:01 PM, Michael Niedermayer wrote: ive tried both converting to pal8 nut from yuv420p as well as storing rawvideo nut pal8 from a actual pal8 source, both worked Yes, it works fine. My bad. It seems nut is storing the palette at the end of the packet data rather than using a si

[FFmpeg-devel] [PATCH v3] lavc/rawdec: Remove monowhite switching code for 1 bpp AVI without a palette

2016-02-09 Thread Mats Peterson
OK Michael, here is a new version of the patch that should be applied after your recent PAL8 changes for nut. Please try it out. Description follows: This patch removes the monowhite switching code for 1 bpp raw AVI without a palette. I don't see any reason to keep it, since it's semantically

[FFmpeg-devel] [PATCH v4] lavc/rawdec: Remove monowhite switching code for 1 bpp AVI without a palette

2016-02-09 Thread Mats Peterson
Fixed the stride for odd widths. This patch should be applied after your recent PAL8 changes for nut, Michael. Description follows: This patch removes the monowhite switching code for 1 bpp raw AVI without a palette. I don't see any reason to keep it, since it's semantically incorrect to use m

[FFmpeg-devel] [PATCH v5] lavc/rawdec: Remove monowhite switching code for 1 bpp AVI without a palette

2016-02-09 Thread Mats Peterson
Fixed trailing whitespace. This patch should be applied after your recent PAL8 changes for nut, Michael. Description follows: This patch removes the monowhite switching code for 1 bpp raw AVI without a palette. I don't see any reason to keep it, since it's semantically incorrect to use monowhi

Re: [FFmpeg-devel] FFmpeg in Outreachy Round 12

2016-02-09 Thread Marina Zhurakhinskaya
Hi, Glad FFmpeg will participate in this round! Thank you for making a decision to allocate the funds for Outreachy! We can credit all three of you as coordinators. Please be sure to coordinate among yourselves on making decisions and/or having each one of you empowered to make decisions. Wha

Re: [FFmpeg-devel] FFmpeg in Outreachy Round 12

2016-02-09 Thread Sarah A Sharp
Great! I will add you as an org to the wiki asap. We do need one coordinator as the main contact, and then additional mentors who work one on one with a student during the three month internship. Who will be the main coordinator and who will be mentors? Sarah Sharp On Feb 9, 2016 12:34 PM, "Michae