Mercurial > mplayer.hg
diff libmpcodecs/img_format.c @ 6576:b8ed96e21f2c
{RGB,BGR}{1,4}
| author | michael |
|---|---|
| date | Thu, 27 Jun 2002 17:35:37 +0000 |
| parents | 920796b6c7b1 |
| children | 713182435a76 |
line wrap: on
line diff
--- a/libmpcodecs/img_format.c Thu Jun 27 16:43:05 2002 +0000 +++ b/libmpcodecs/img_format.c Thu Jun 27 17:35:37 2002 +0000 @@ -4,11 +4,15 @@ { switch(format) { + case IMGFMT_RGB1: return("RGB 1-bit"); + case IMGFMT_RGB4: return("RGB 4-bit"); case IMGFMT_RGB8: return("RGB 8-bit"); case IMGFMT_RGB15: return("RGB 15-bit"); case IMGFMT_RGB16: return("RGB 16-bit"); case IMGFMT_RGB24: return("RGB 24-bit"); case IMGFMT_RGB32: return("RGB 32-bit"); + case IMGFMT_BGR1: return("BGR 1-bit"); + case IMGFMT_BGR4: return("BGR 4-bit"); case IMGFMT_BGR8: return("BGR 8-bit"); case IMGFMT_BGR15: return("BGR 15-bit"); case IMGFMT_BGR16: return("BGR 16-bit");
