Mercurial > mplayer.hg
annotate libmpcodecs/img_format.c @ 22809:09f97d0161ba
Handle X-QT extradata in a slightly more correct way
| author | cehoyos |
|---|---|
| date | Mon, 26 Mar 2007 09:35:03 +0000 |
| parents | 5e767cabf4cd |
| children | a9bf0730f6b2 |
| rev | line source |
|---|---|
|
17565
dc65faaadb04
include config.h as img_format.h needs endian definitions, noticed by Alan Curry <pacman at theworld com>
iive
parents:
12996
diff
changeset
|
1 #include "config.h" |
| 3199 | 2 #include "img_format.h" |
| 2599 | 3 |
|
19108
5e767cabf4cd
marks several read-only string parameters and function return-values which can only be used read-only as const. Patch by Stefan Huehner, stefan _AT huener-org
reynaldo
parents:
17565
diff
changeset
|
4 const char *vo_format_name(int format) |
| 2599 | 5 { |
| 6 switch(format) | |
| 7 { | |
| 6576 | 8 case IMGFMT_RGB1: return("RGB 1-bit"); |
| 9 case IMGFMT_RGB4: return("RGB 4-bit"); | |
| 9171 | 10 case IMGFMT_RG4B: return("RGB 4-bit per byte"); |
| 2599 | 11 case IMGFMT_RGB8: return("RGB 8-bit"); |
| 12 case IMGFMT_RGB15: return("RGB 15-bit"); | |
| 13 case IMGFMT_RGB16: return("RGB 16-bit"); | |
| 14 case IMGFMT_RGB24: return("RGB 24-bit"); | |
| 12996 | 15 // case IMGFMT_RGB32: return("RGB 32-bit"); |
| 6576 | 16 case IMGFMT_BGR1: return("BGR 1-bit"); |
| 17 case IMGFMT_BGR4: return("BGR 4-bit"); | |
| 9171 | 18 case IMGFMT_BG4B: return("BGR 4-bit per byte"); |
| 2599 | 19 case IMGFMT_BGR8: return("BGR 8-bit"); |
| 20 case IMGFMT_BGR15: return("BGR 15-bit"); | |
| 21 case IMGFMT_BGR16: return("BGR 16-bit"); | |
| 22 case IMGFMT_BGR24: return("BGR 24-bit"); | |
| 12996 | 23 // case IMGFMT_BGR32: return("BGR 32-bit"); |
| 24 case IMGFMT_ABGR: return("ABGR"); | |
| 25 case IMGFMT_BGRA: return("BGRA"); | |
| 26 case IMGFMT_ARGB: return("ARGB"); | |
| 27 case IMGFMT_RGBA: return("RGBA"); | |
| 2599 | 28 case IMGFMT_YVU9: return("Planar YVU9"); |
| 29 case IMGFMT_IF09: return("Planar IF09"); | |
| 30 case IMGFMT_YV12: return("Planar YV12"); | |
| 31 case IMGFMT_I420: return("Planar I420"); | |
| 32 case IMGFMT_IYUV: return("Planar IYUV"); | |
| 33 case IMGFMT_CLPL: return("Planar CLPL"); | |
| 3199 | 34 case IMGFMT_Y800: return("Planar Y800"); |
| 35 case IMGFMT_Y8: return("Planar Y8"); | |
| 6863 | 36 case IMGFMT_444P: return("Planar 444P"); |
| 37 case IMGFMT_422P: return("Planar 422P"); | |
| 38 case IMGFMT_411P: return("Planar 411P"); | |
| 6491 | 39 case IMGFMT_NV12: return("Planar NV12"); |
|
10742
794b55a44528
basic nv12 and nv21 support by Angelo Cano <angelo_cano@fastmail.fm>
alex
parents:
10316
diff
changeset
|
40 case IMGFMT_NV21: return("Planar NV21"); |
|
10305
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
9171
diff
changeset
|
41 case IMGFMT_HM12: return("Planar NV12 Macroblock"); |
| 3199 | 42 case IMGFMT_IUYV: return("Packed IUYV"); |
| 43 case IMGFMT_IY41: return("Packed IY41"); | |
| 2599 | 44 case IMGFMT_IYU1: return("Packed IYU1"); |
| 45 case IMGFMT_IYU2: return("Packed IYU2"); | |
| 46 case IMGFMT_UYVY: return("Packed UYVY"); | |
| 47 case IMGFMT_UYNV: return("Packed UYNV"); | |
| 48 case IMGFMT_cyuv: return("Packed CYUV"); | |
| 3199 | 49 case IMGFMT_Y422: return("Packed Y422"); |
| 2599 | 50 case IMGFMT_YUY2: return("Packed YUY2"); |
| 51 case IMGFMT_YUNV: return("Packed YUNV"); | |
| 52 case IMGFMT_YVYU: return("Packed YVYU"); | |
| 53 case IMGFMT_Y41P: return("Packed Y41P"); | |
| 54 case IMGFMT_Y211: return("Packed Y211"); | |
| 55 case IMGFMT_Y41T: return("Packed Y41T"); | |
| 56 case IMGFMT_Y42T: return("Packed Y42T"); | |
| 57 case IMGFMT_V422: return("Packed V422"); | |
| 58 case IMGFMT_V655: return("Packed V655"); | |
| 59 case IMGFMT_CLJR: return("Packed CLJR"); | |
| 60 case IMGFMT_YUVP: return("Packed YUVP"); | |
| 61 case IMGFMT_UYVP: return("Packed UYVP"); | |
| 62 case IMGFMT_MPEGPES: return("Mpeg PES"); | |
|
11386
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
63 case IMGFMT_ZRMJPEGNI: return("Zoran MJPEG non-interlaced"); |
|
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
64 case IMGFMT_ZRMJPEGIT: return("Zoran MJPEG top field first"); |
|
229079491864
addition of special image formats for Zoran MJPEG, and vd_zrmjpeg.c
rik
parents:
10742
diff
changeset
|
65 case IMGFMT_ZRMJPEGIB: return("Zoran MJPEG bottom field first"); |
| 10316 | 66 case IMGFMT_XVMC_MOCO_MPEG2: return("MPEG1/2 Motion Compensation"); |
| 67 case IMGFMT_XVMC_IDCT_MPEG2: return("MPEG1/2 Motion Compensation and IDCT"); | |
| 2599 | 68 } |
| 69 return("Unknown"); | |
| 70 } |
