diff options
author | Haihao Xiang <haihao.xiang@intel.com> | 2023-06-30 19:51:32 +0800 |
---|---|---|
committer | Haihao Xiang <haihao.xiang@intel.com> | 2023-07-05 09:34:19 +0800 |
commit | ca939ebb4faf6aac343c22702e2f28e3eeed1ba1 (patch) | |
tree | ed1e7342cf409525777ed062def75198fa0df1d9 | |
parent | 8622dcb39b6554dfcb54c2c95c8dcca96b46d60b (diff) | |
download | ffmpeg-ca939ebb4faf6aac343c22702e2f28e3eeed1ba1.tar.gz |
lavfi/tonemap_vaapi: remove HDR metadata
The HDR metadata should be removed after HDR to SDR conversion,
otherwise the output frame still has HDR side data.
Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
-rw-r--r-- | libavfilter/vf_tonemap_vaapi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/vf_tonemap_vaapi.c b/libavfilter/vf_tonemap_vaapi.c index cd2f4c2195..52303a8b86 100644 --- a/libavfilter/vf_tonemap_vaapi.c +++ b/libavfilter/vf_tonemap_vaapi.c @@ -309,6 +309,9 @@ static int tonemap_vaapi_filter_frame(AVFilterLink *inlink, AVFrame *input_frame av_get_pix_fmt_name(output_frame->format), output_frame->width, output_frame->height, output_frame->pts); + av_frame_remove_side_data(output_frame, AV_FRAME_DATA_CONTENT_LIGHT_LEVEL); + av_frame_remove_side_data(output_frame, AV_FRAME_DATA_MASTERING_DISPLAY_METADATA); + return ff_filter_frame(outlink, output_frame); fail: |