mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/pngenc: remove monowhite from apng formats
Monowhite pixel format is not supported, and it does not make sense to add support for it. Fixes #7989
This commit is contained in:
parent
6f80953554
commit
5d9f44da46
|
@ -1174,7 +1174,7 @@ AVCodec ff_apng_encoder = {
|
|||
AV_PIX_FMT_PAL8,
|
||||
AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY8A,
|
||||
AV_PIX_FMT_GRAY16BE, AV_PIX_FMT_YA16BE,
|
||||
AV_PIX_FMT_MONOBLACK, AV_PIX_FMT_NONE
|
||||
AV_PIX_FMT_NONE
|
||||
},
|
||||
.priv_class = &apngenc_class,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue