Skip to content
Snippets Groups Projects
Commit f27fd362 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos
Browse files

Fix colourspace for 16 bit raw video in mov, fixes issue 1527 on big-endian.

Originally committed as revision 20985 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e1bd945b
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ static const PixelFormatTag pixelFormatBpsMOV[] = {
{ 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_RGB555BE, 16 },
{ PIX_FMT_RGB24, 24 },
{ PIX_FMT_ARGB, 32 },
{ PIX_FMT_NONE, 0 },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment