diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-05-13 01:08:01 +0200 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2011-06-23 08:50:37 +0200 |
commit | 26f48752fbaa49161eb3454eda68dc043d733567 (patch) | |
tree | 53fb3b38c6eca8d12715caf0d6ca090de829a3a2 /libavcodec | |
parent | 1aef8de6d730df7f0a0841939954d12cd604b2d7 (diff) | |
download | ffmpeg-26f48752fbaa49161eb3454eda68dc043d733567.tar.gz |
mov: Support Digital Voodoo SD 8 Bit and DTS codec identifiers.
(cherry picked from commit 53d5cd2c8225e251826c77f8f69a30250038fbd0)
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
Diffstat (limited to 'libavcodec')
-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 bc7c1561e7..4bc07b869a 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -122,6 +122,7 @@ const PixelFormatTag ff_raw_pix_fmt_tags[] = { { PIX_FMT_UYVY422, MKTAG('A', 'V', 'U', 'I') }, /* FIXME merge both fields */ { 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') }, |