mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-25 22:19:17 +00:00
rawdec: Fix decoding of QT WRAW files.
From some tests it results that: 1. All of the AVI/MOV WRAW files need to be flipped. 2. MOV WRAW files need to use AVI color modes. 3. Assigning PAL8 mode by default to WRAW codec is not correct.
This commit is contained in:
parent
f082a0fb42
commit
67e7dc5404
2 changed files with 3 additions and 2 deletions
|
@ -123,7 +123,6 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = {
|
|||
{ PIX_FMT_YUYV422, MKTAG('y', 'u', 'v', '2') },
|
||||
{ PIX_FMT_YUYV422, MKTAG('y', 'u', 'v', 's') },
|
||||
{ PIX_FMT_YUYV422, MKTAG('D', 'V', 'O', 'O') }, /* Digital Voodoo SD 8 Bit */
|
||||
{ PIX_FMT_PAL8, MKTAG('W', 'R', 'A', 'W') },
|
||||
{ PIX_FMT_RGB555LE,MKTAG('L', '5', '5', '5') },
|
||||
{ PIX_FMT_RGB565LE,MKTAG('L', '5', '6', '5') },
|
||||
{ PIX_FMT_RGB565BE,MKTAG('B', '5', '6', '5') },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue