diff options
author | James Almer <jamrial@gmail.com> | 2024-10-23 13:42:48 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-10-26 00:04:55 -0300 |
commit | 707e2184cadaf9cce85492658ff55f7901a47d64 (patch) | |
tree | 697b8bd3d260b2a18fe39052a830fd8647867c13 /libavcodec/raw.c | |
parent | a67ba3c13276cc082e650ad6df49b56268454668 (diff) | |
download | ffmpeg-707e2184cadaf9cce85492658ff55f7901a47d64.tar.gz |
avformat/riff: map Y416 fourcc to RAWVIDEO decoder
As defined in https://learn.microsoft.com/en-us/windows/win32/medfound/10-bit-and-16-bit-yuv-video-formats#422-formats
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 f3c1dcd059..578794cb7a 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -74,6 +74,7 @@ static const PixelFormatTag raw_pix_fmt_tags[] = { { 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') }, + { AV_PIX_FMT_XV48LE, MKTAG('Y', '4', '1', '6') }, { AV_PIX_FMT_Y210LE, MKTAG('Y', '2', '1', '0') }, { AV_PIX_FMT_Y216LE, MKTAG('Y', '2', '1', '6') }, |