Mercurial > libavcodec.hg
changeset 4082:f72cc635cce9 libavcodec
adds missing rgb/bgr 555 codec->fmt mappings, ok'ed by Michael
author | reynaldo |
---|---|
date | Fri, 27 Oct 2006 19:50:31 +0000 |
parents | cedb63307f3d |
children | 065ee7dd69ca |
files | raw.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/raw.c Fri Oct 27 16:42:16 2006 +0000 +++ b/raw.c Fri Oct 27 19:50:31 2006 +0000 @@ -52,6 +52,8 @@ { PIX_FMT_YUV422, MKTAG('Y', '4', '2', '2') }, { PIX_FMT_UYVY422, MKTAG('U', 'Y', 'V', 'Y') }, { PIX_FMT_GRAY8, MKTAG('G', 'R', 'E', 'Y') }, + { PIX_FMT_RGB555, MKTAG('R', 'G', 'B', 15) }, + { PIX_FMT_BGR555, MKTAG('B', 'G', 'R', 15) }, /* quicktime */ { PIX_FMT_UYVY422, MKTAG('2', 'v', 'u', 'y') },