diff options
author | James Almer <jamrial@gmail.com> | 2024-10-12 20:04:32 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-13 20:44:09 -0300 |
commit | e347b4ff313107de9012e755e14f829ccdc6fbcb (patch) | |
tree | 23d55a7bdb46ebe612a31a20dde6cdaa99a37dfd /libavcodec/raw.c | |
parent | b0ea76c9d1e76fb62a685a00ba153ed7a1eb309b (diff) | |
download | ffmpeg-e347b4ff313107de9012e755e14f829ccdc6fbcb.tar.gz |
avformat/riff: map Y410 fourcc to RAWVIDEO decoder
md5 values change because the nut container now reports rawvideo as encoder
and Y410 as codec type instead of the bogus RGB[15].
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r-- | libavcodec/raw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c index adc189b26a..b6c1dea8c1 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -73,6 +73,7 @@ static const PixelFormatTag raw_pix_fmt_tags[] = { { AV_PIX_FMT_NV12, MKTAG('N', 'V', '1', '2') }, { AV_PIX_FMT_NV21, MKTAG('N', 'V', '2', '1') }, { AV_PIX_FMT_VUYA, MKTAG('A', 'Y', 'U', 'V') }, /* MS 4:4:4:4 */ + { AV_PIX_FMT_XV30LE, MKTAG('Y', '4', '1', '0') }, /* nut */ { AV_PIX_FMT_RGB555LE, MKTAG('R', 'G', 'B', 15) }, |