Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-10-27 Thread Xiang, Haihao
On Wed, 2019-10-23 at 08:26 +0200, Carl Eugen Hoyos wrote: > > Am 23.10.2019 um 06:48 schrieb Xiang, Haihao : > > > > > On 11/09/2019 06:39, Zachary Zhou wrote: > > > > It supports ICL platform. > > > > H2H (HDR to HDR): P010 -> A2R10G10B10 > > > > H2S (HDR to SDR): P010 -> ARGB > > > > > > The

Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-10-23 Thread Carl Eugen Hoyos
Am 23.10.2019 um 06:48 schrieb Xiang, Haihao : >>> On 11/09/2019 06:39, Zachary Zhou wrote: >>> It supports ICL platform. >>> H2H (HDR to HDR): P010 -> A2R10G10B10 >>> H2S (HDR to SDR): P010 -> ARGB >> >> The input format doesn't have any alpha so the output shouldn't either. Not >> sure what

Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-10-22 Thread Xiang, Haihao
> On 11/09/2019 06:39, Zachary Zhou wrote: > > It supports ICL platform. > > H2H (HDR to HDR): P010 -> A2R10G10B10 > > H2S (HDR to SDR): P010 -> ARGB > > The input format doesn't have any alpha so the output shouldn't either. Not > sure what the first case wants, but the second should be

Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-09-29 Thread Mark Thompson
On 11/09/2019 06:39, Zachary Zhou wrote: > It supports ICL platform. > H2H (HDR to HDR): P010 -> A2R10G10B10 > H2S (HDR to SDR): P010 -> ARGB The input format doesn't have any alpha so the output shouldn't either. Not sure what the first case wants, but the second should be AV_PIX_FMT_0RGB (or

Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-09-24 Thread Zachary Zhou
On 9/16/19 7:36 PM, Carl Eugen Hoyos wrote: Am Mi., 11. Sept. 2019 um 23:02 Uhr schrieb Carl Eugen Hoyos : Am Mi., 11. Sept. 2019 um 07:41 Uhr schrieb Zachary Zhou : It supports ICL platform. H2H (HDR to HDR): P010 -> A2R10G10B10 H2S (HDR to SDR): P010 -> ARGB +if (ctx->hdr_type ==

Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-09-16 Thread Carl Eugen Hoyos
Am Mi., 11. Sept. 2019 um 23:02 Uhr schrieb Carl Eugen Hoyos : > > Am Mi., 11. Sept. 2019 um 07:41 Uhr schrieb Zachary Zhou > : > > > > It supports ICL platform. > > H2H (HDR to HDR): P010 -> A2R10G10B10 > > H2S (HDR to SDR): P010 -> ARGB > > > +if (ctx->hdr_type == HDR_VAAPI_H2H) { > > +

Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-09-15 Thread Zhou, Zachary
> -Original Message- > From: ffmpeg-devel On Behalf Of Moritz > Barsnick > Sent: Wednesday, September 11, 2019 3:56 PM > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter > > On Wed,

Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-09-11 Thread Carl Eugen Hoyos
Am Mi., 11. Sept. 2019 um 07:41 Uhr schrieb Zachary Zhou : > > It supports ICL platform. > H2H (HDR to HDR): P010 -> A2R10G10B10 > H2S (HDR to SDR): P010 -> ARGB > +if (ctx->hdr_type == HDR_VAAPI_H2H) { > +vpp_ctx->output_format = AV_PIX_FMT_A2R10G10B10; I believe that even if you

Re: [FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-09-11 Thread Moritz Barsnick
On Wed, Sep 11, 2019 at 13:39:56 +0800, Zachary Zhou wrote: > +@section tonemap_vappi ^ Typo - the filter has a different name. Moritz ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To

[FFmpeg-devel] [PATCH v4 2/2] avfilter: Add tonemap vaapi filter

2019-09-10 Thread Zachary Zhou
It supports ICL platform. H2H (HDR to HDR): P010 -> A2R10G10B10 H2S (HDR to SDR): P010 -> ARGB --- configure | 2 + doc/filters.texi | 72 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vaapi_vpp.c|