3199
|
1 #include "img_format.h"
|
2599
|
2
|
|
3 char *vo_format_name(int format)
|
|
4 {
|
|
5 switch(format)
|
|
6 {
|
|
7 case IMGFMT_RGB8: return("RGB 8-bit");
|
|
8 case IMGFMT_RGB15: return("RGB 15-bit");
|
|
9 case IMGFMT_RGB16: return("RGB 16-bit");
|
|
10 case IMGFMT_RGB24: return("RGB 24-bit");
|
|
11 case IMGFMT_RGB32: return("RGB 32-bit");
|
|
12 case IMGFMT_BGR8: return("BGR 8-bit");
|
|
13 case IMGFMT_BGR15: return("BGR 15-bit");
|
|
14 case IMGFMT_BGR16: return("BGR 16-bit");
|
|
15 case IMGFMT_BGR24: return("BGR 24-bit");
|
|
16 case IMGFMT_BGR32: return("BGR 32-bit");
|
|
17 case IMGFMT_YVU9: return("Planar YVU9");
|
|
18 case IMGFMT_IF09: return("Planar IF09");
|
|
19 case IMGFMT_YV12: return("Planar YV12");
|
|
20 case IMGFMT_I420: return("Planar I420");
|
|
21 case IMGFMT_IYUV: return("Planar IYUV");
|
|
22 case IMGFMT_CLPL: return("Planar CLPL");
|
3199
|
23 case IMGFMT_Y800: return("Planar Y800");
|
|
24 case IMGFMT_Y8: return("Planar Y8");
|
|
25 case IMGFMT_IUYV: return("Packed IUYV");
|
|
26 case IMGFMT_IY41: return("Packed IY41");
|
2599
|
27 case IMGFMT_IYU1: return("Packed IYU1");
|
|
28 case IMGFMT_IYU2: return("Packed IYU2");
|
|
29 case IMGFMT_UYVY: return("Packed UYVY");
|
|
30 case IMGFMT_UYNV: return("Packed UYNV");
|
|
31 case IMGFMT_cyuv: return("Packed CYUV");
|
3199
|
32 case IMGFMT_Y422: return("Packed Y422");
|
2599
|
33 case IMGFMT_YUY2: return("Packed YUY2");
|
|
34 case IMGFMT_YUNV: return("Packed YUNV");
|
|
35 case IMGFMT_YVYU: return("Packed YVYU");
|
|
36 case IMGFMT_Y41P: return("Packed Y41P");
|
|
37 case IMGFMT_Y211: return("Packed Y211");
|
|
38 case IMGFMT_Y41T: return("Packed Y41T");
|
|
39 case IMGFMT_Y42T: return("Packed Y42T");
|
|
40 case IMGFMT_V422: return("Packed V422");
|
|
41 case IMGFMT_V655: return("Packed V655");
|
|
42 case IMGFMT_CLJR: return("Packed CLJR");
|
|
43 case IMGFMT_YUVP: return("Packed YUVP");
|
|
44 case IMGFMT_UYVP: return("Packed UYVP");
|
|
45 case IMGFMT_MPEGPES: return("Mpeg PES");
|
|
46 }
|
|
47 return("Unknown");
|
|
48 }
|