[Ffmpeg-cvslog] r6807 - trunk/libavcodec/raw.c
reynaldo
subversion
Fri Oct 27 21:53:41 CEST 2006
Author: reynaldo
Date: Fri Oct 27 21:53:41 2006
New Revision: 6807
Modified:
trunk/libavcodec/raw.c
Log:
adds missing rgb/bgr 565 codec->fmt mappings, ok'ed by Michael
Modified: trunk/libavcodec/raw.c
==============================================================================
--- trunk/libavcodec/raw.c (original)
+++ trunk/libavcodec/raw.c Fri Oct 27 21:53:41 2006
@@ -54,6 +54,8 @@
{ PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') },
{ PIX_FMT_RGB555, MKTAG('R', 'G', 'B', 15) },
{ PIX_FMT_BGR555, MKTAG('B', 'G', 'R', 15) },
+ { PIX_FMT_RGB565, MKTAG('R', 'G', 'B', 16) },
+ { PIX_FMT_BGR565, MKTAG('B', 'G', 'R', 16) },
/* quicktime */
{ PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },
More information about the ffmpeg-cvslog
mailing list