diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-10 00:53:02 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-10 00:53:02 +0000 |
commit | 7574dc4c37b213cebc3ab8bebdeeafa44d8df841 (patch) | |
tree | b9bd4d1b2a0eec1cdb240fcbcde3c86cb073352d | |
parent | 7a79e51cd6e33f34f09bf63771f62d54edb9848a (diff) | |
download | ffmpeg-7574dc4c37b213cebc3ab8bebdeeafa44d8df841.tar.gz |
update comment for rgb 16 bit in .mov
Originally committed as revision 18777 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/rawdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 25f5c91aa7..ebd9ded3e4 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -46,10 +46,10 @@ static const PixelFormatTag pixelFormatBpsAVI[] = { }; static const PixelFormatTag pixelFormatBpsMOV[] = { - /* FIXME fix swscaler to support those */ - /* http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html */ { PIX_FMT_PAL8, 4 }, { PIX_FMT_PAL8, 8 }, + // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov + // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html { PIX_FMT_BGR555, 16 }, { PIX_FMT_RGB24, 24 }, { PIX_FMT_BGR32_1, 32 }, |