comparison rawdec.c @ 9620:3ac52a187883 libavcodec

update comment for rgb 16 bit in .mov
author bcoudurier
date Sun, 10 May 2009 00:53:02 +0000
parents 54bc8a2727b0
children 1cc354a5242c
comparison
equal deleted inserted replaced
9619:35514159910f 9620:3ac52a187883
44 { PIX_FMT_RGB32, 32 }, 44 { PIX_FMT_RGB32, 32 },
45 { PIX_FMT_NONE, 0 }, 45 { PIX_FMT_NONE, 0 },
46 }; 46 };
47 47
48 static const PixelFormatTag pixelFormatBpsMOV[] = { 48 static const PixelFormatTag pixelFormatBpsMOV[] = {
49 /* FIXME fix swscaler to support those */
50 /* http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/chapter_4_section_2.html */
51 { PIX_FMT_PAL8, 4 }, 49 { PIX_FMT_PAL8, 4 },
52 { PIX_FMT_PAL8, 8 }, 50 { PIX_FMT_PAL8, 8 },
51 // FIXME swscale does not support 16 bit in .mov, sample 16bit.mov
52 // http://developer.apple.com/documentation/QuickTime/QTFF/QTFFChap3/qtff3.html
53 { PIX_FMT_BGR555, 16 }, 53 { PIX_FMT_BGR555, 16 },
54 { PIX_FMT_RGB24, 24 }, 54 { PIX_FMT_RGB24, 24 },
55 { PIX_FMT_BGR32_1, 32 }, 55 { PIX_FMT_BGR32_1, 32 },
56 { PIX_FMT_NONE, 0 }, 56 { PIX_FMT_NONE, 0 },
57 }; 57 };