[FFmpeg-devel] [PATCH] avfilter: add chromascope filter

2016-02-21 Thread Paul B Mahol
Hi, patch attached. There is bug in format negotiation, xyz12 format is preferred over others when using yuv inputs. The hacky xyz12 swscale output sucks. From d2712eec65842b3423cb4eff012d718d8c5c714f Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 1 Feb 2016 21:05:16 +0100 Subject: [PAT

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

2016-02-21 Thread Michael Niedermayer
On Sun, Feb 21, 2016 at 10:56:47PM +0100, Paul B Mahol wrote: > Hi, [..] > +static float spectral_chromaticity[81][3] = { static const [...] > +static struct ColorSystem CustomSystem = { > +"Custom", > +0.64, 0.33, 0.30, 0.60, 0.15, 0.06, > +D65, GAMMA_REC709 > +}; unused [.

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

2016-02-28 Thread Paul B Mahol
Hi, 2nd version attached. From 6d7f3221b8b7db32c35a64a98d6cb52bad247b88 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 1 Feb 2016 21:05:16 +0100 Subject: [PATCH] avfilter: add chromascope filter Signed-off-by: Paul B Mahol --- doc/filters.texi | 55 ++ libavfilter/Makefil