diff options
author | James Almer <jamrial@gmail.com> | 2024-10-07 00:26:05 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-12 11:21:14 -0300 |
commit | 3c64d614c765a0c541fc99b67813be0b2c60406c (patch) | |
tree | 64bb8e2945a0f9949fcf2fbee6a679f125a3f311 /libavformat/riff.c | |
parent | e2427a42231d0c9330fff197a44f53e6014f871c (diff) | |
download | ffmpeg-3c64d614c765a0c541fc99b67813be0b2c60406c.tar.gz |
avcodec: deprecate v308 de/encoder
The vyu444 pixel format was recently added, so this lavc workaround is no longer
needed.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index c1e48810b6..0f5682313e 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -305,8 +305,8 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, { AV_CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, { AV_CODEC_ID_V210, MKTAG('C', '2', '1', '0') }, - { AV_CODEC_ID_V308, MKTAG('v', '3', '0', '8') }, #if FF_API_V408_CODECID + { AV_CODEC_ID_V308, MKTAG('v', '3', '0', '8') }, { AV_CODEC_ID_V408, MKTAG('v', '4', '0', '8') }, #endif { AV_CODEC_ID_V410, MKTAG('v', '4', '1', '0') }, |