diff options
author | ami_stuff <ami_stuff@o2.pl> | 2010-01-16 13:13:49 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-01-16 13:13:49 +0000 |
commit | 8be7ac98ca7e57c53e78371cdf13c981b552682f (patch) | |
tree | d565fef7ebf004af39b57444928399b3f9132ae6 /libavcodec/raw.c | |
parent | 4c568cbcac8cead0b5d2f533012dc3eb9df7bfee (diff) | |
download | ffmpeg-8be7ac98ca7e57c53e78371cdf13c981b552682f.tar.gz |
Support decoding of SoftLab-NSK VideoTizer.
Patch by ami_stuff, ami_stuff o2 pl
Originally committed as revision 21245 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 f1eaffb5b1..91aba49421 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -54,6 +54,7 @@ const PixelFormatTag ff_raw_pixelFormatTags[] = { { PIX_FMT_UYVY422, MKTAG('A', 'V', 'R', 'n') }, /* Avid AVI Codec 1:1 */ { PIX_FMT_UYVY422, MKTAG('A', 'V', '1', 'x') }, /* Avid 1:1x */ { PIX_FMT_UYVY422, MKTAG('A', 'V', 'u', 'p') }, + { PIX_FMT_UYVY422, MKTAG('V', 'D', 'T', 'Z') }, /* SoftLab-NSK VideoTizer */ { PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') }, { PIX_FMT_RGB555, MKTAG('R', 'G', 'B', 15) }, { PIX_FMT_BGR555, MKTAG('B', 'G', 'R', 15) }, |