Re: [FFmpeg-devel] [PATCH] avfilter/vf_lut3d: add planar rgb support

2018-05-04 Thread Clément Bœsch
On Thu, May 03, 2018 at 08:08:03PM +0200, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavfilter/vf_lut3d.c | 114 > +++-- > 1 file changed, 111 insertions(+), 3 deletions(-) > > diff --git a/libavfilter/vf_lut3d.c b/libavfilter/vf_lut3

Re: [FFmpeg-devel] [PATCH] avfilter/vf_lut3d: add planar rgb support

2018-05-03 Thread Paul B Mahol
On 5/3/18, James Almer wrote: > On 5/3/2018 3:08 PM, Paul B Mahol wrote: >> +#define DEFINE_INTERP_FUNC_PLANAR(name, nbits, depth) >> \ >> +static int interp_##nbits##_##name##_p##depth(AVFilterContext *ctx, void >> *arg, int jobnr, int nb_jobs) \ >> +{ >>

Re: [FFmpeg-devel] [PATCH] avfilter/vf_lut3d: add planar rgb support

2018-05-03 Thread James Almer
On 5/3/2018 3:08 PM, Paul B Mahol wrote: > +#define DEFINE_INTERP_FUNC_PLANAR(name, nbits, depth) >\ > +static int interp_##nbits##_##name##_p##depth(AVFilterContext *ctx, void > *arg, int jobnr, int nb_jobs) \ > +{

[FFmpeg-devel] [PATCH] avfilter/vf_lut3d: add planar rgb support

2018-05-03 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/vf_lut3d.c | 114 +++-- 1 file changed, 111 insertions(+), 3 deletions(-) diff --git a/libavfilter/vf_lut3d.c b/libavfilter/vf_lut3d.c index c9b72249aa..2f8fc723b7 100644 --- a/libavfilter/vf_lut3d.c +++ b/li