mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avformat/riff: map AYUV fourcc to RAWVIDEO decoder
There's no need to keep using a custom decoder for this pixel format. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
85c59bd6de
commit
f8c62e32b2
14 changed files with 14 additions and 13 deletions
|
|
@ -72,6 +72,7 @@ static const PixelFormatTag raw_pix_fmt_tags[] = {
|
|||
{ AV_PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') },
|
||||
{ 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 */
|
||||
|
||||
/* nut */
|
||||
{ AV_PIX_FMT_RGB555LE, MKTAG('R', 'G', 'B', 15) },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue