mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-07 11:13:41 +02:00
avcodec/libjxlenc: accept rgbf32 and rgbaf32 frames
These pixel formats have always been supported by libjxl, but at the time this plugin was written, they were not in FFmpeg yet. Now that they are in FFmpeg, we should support them. Signed-off-by: Leo Izen <leo.izen@gmail.com>
This commit is contained in:
parent
f6ef6a853c
commit
42f78925d7
@ -492,6 +492,7 @@ const FFCodec ff_libjxl_encoder = {
|
||||
.p.pix_fmts = (const enum AVPixelFormat[]) {
|
||||
AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA,
|
||||
AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64,
|
||||
AV_PIX_FMT_RGBF32, AV_PIX_FMT_RGBAF32,
|
||||
AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8,
|
||||
AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA16,
|
||||
AV_PIX_FMT_GRAYF32,
|
||||
|
Loading…
Reference in New Issue
Block a user