aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2024-10-06 20:46:57 -0300
committerJames Almer <jamrial@gmail.com>2024-10-12 11:21:14 -0300
commite2427a42231d0c9330fff197a44f53e6014f871c (patch)
tree2d4fe7fdfd5deef97d7f57c5be694a41c2dc4caf /libavformat/riff.c
parentc5cf98d77eede9bc759c1ded6a927fe1e89bc2f5 (diff)
downloadffmpeg-e2427a42231d0c9330fff197a44f53e6014f871c.tar.gz
avcodec: deprecate v408 de/encoder
The uyva 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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index 7f3291a392..c1e48810b6 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -306,7 +306,9 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ 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_V408, MKTAG('v', '4', '0', '8') },
+#endif
{ AV_CODEC_ID_V410, MKTAG('v', '4', '1', '0') },
{ AV_CODEC_ID_YUV4, MKTAG('y', 'u', 'v', '4') },
{ AV_CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') },