annotate libmpcodecs/img_format.c @ 30098:834af9d1e3e9

Add support for 440p colorspace.
author reimar
date Wed, 30 Dec 2009 12:03:17 +0000
parents 76c25bfa181b
children 19414a605695
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
1632d6824a68 New ones
nick
parents: 2599
diff changeset
2 #include "img_format.h"
23750
a9bf0730f6b2 Print the number of the Unknow color format,
iive
parents: 19108
diff changeset
3 #include "stdio.h"
2599
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
4
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
5 const char *vo_format_name(int format)
2599
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
6 {
26701
85dc7d81935c cosmetics: Fix unknow vs. unknowN typo.
diego
parents: 23750
diff changeset
7 static char unknown_format[20];
2599
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
8 switch(format)
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
9 {
26754
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
10 case IMGFMT_RGB1: return "RGB 1-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
11 case IMGFMT_RGB4: return "RGB 4-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
12 case IMGFMT_RG4B: return "RGB 4-bit per byte";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
13 case IMGFMT_RGB8: return "RGB 8-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
14 case IMGFMT_RGB15: return "RGB 15-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
15 case IMGFMT_RGB16: return "RGB 16-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
16 case IMGFMT_RGB24: return "RGB 24-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
17 // case IMGFMT_RGB32: return "RGB 32-bit";
29444
298ee5238e8c Add IMGFMT_RGB48LE and IMGFMT_RGB48BE.
cehoyos
parents: 28516
diff changeset
18 case IMGFMT_RGB48LE: return "RGB 48-bit LE";
298ee5238e8c Add IMGFMT_RGB48LE and IMGFMT_RGB48BE.
cehoyos
parents: 28516
diff changeset
19 case IMGFMT_RGB48BE: return "RGB 48-bit BE";
26754
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
20 case IMGFMT_BGR1: return "BGR 1-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
21 case IMGFMT_BGR4: return "BGR 4-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
22 case IMGFMT_BG4B: return "BGR 4-bit per byte";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
23 case IMGFMT_BGR8: return "BGR 8-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
24 case IMGFMT_BGR15: return "BGR 15-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
25 case IMGFMT_BGR16: return "BGR 16-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
26 case IMGFMT_BGR24: return "BGR 24-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
27 // case IMGFMT_BGR32: return "BGR 32-bit";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
28 case IMGFMT_ABGR: return "ABGR";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
29 case IMGFMT_BGRA: return "BGRA";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
30 case IMGFMT_ARGB: return "ARGB";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
31 case IMGFMT_RGBA: return "RGBA";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
32 case IMGFMT_YVU9: return "Planar YVU9";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
33 case IMGFMT_IF09: return "Planar IF09";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
34 case IMGFMT_YV12: return "Planar YV12";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
35 case IMGFMT_I420: return "Planar I420";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
36 case IMGFMT_IYUV: return "Planar IYUV";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
37 case IMGFMT_CLPL: return "Planar CLPL";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
38 case IMGFMT_Y800: return "Planar Y800";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
39 case IMGFMT_Y8: return "Planar Y8";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
40 case IMGFMT_444P: return "Planar 444P";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
41 case IMGFMT_422P: return "Planar 422P";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
42 case IMGFMT_411P: return "Planar 411P";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
43 case IMGFMT_NV12: return "Planar NV12";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
44 case IMGFMT_NV21: return "Planar NV21";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
45 case IMGFMT_HM12: return "Planar NV12 Macroblock";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
46 case IMGFMT_IUYV: return "Packed IUYV";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
47 case IMGFMT_IY41: return "Packed IY41";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
48 case IMGFMT_IYU1: return "Packed IYU1";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
49 case IMGFMT_IYU2: return "Packed IYU2";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
50 case IMGFMT_UYVY: return "Packed UYVY";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
51 case IMGFMT_UYNV: return "Packed UYNV";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
52 case IMGFMT_cyuv: return "Packed CYUV";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
53 case IMGFMT_Y422: return "Packed Y422";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
54 case IMGFMT_YUY2: return "Packed YUY2";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
55 case IMGFMT_YUNV: return "Packed YUNV";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
56 case IMGFMT_YVYU: return "Packed YVYU";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
57 case IMGFMT_Y41P: return "Packed Y41P";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
58 case IMGFMT_Y211: return "Packed Y211";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
59 case IMGFMT_Y41T: return "Packed Y41T";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
60 case IMGFMT_Y42T: return "Packed Y42T";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
61 case IMGFMT_V422: return "Packed V422";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
62 case IMGFMT_V655: return "Packed V655";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
63 case IMGFMT_CLJR: return "Packed CLJR";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
64 case IMGFMT_YUVP: return "Packed YUVP";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
65 case IMGFMT_UYVP: return "Packed UYVP";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
66 case IMGFMT_MPEGPES: return "Mpeg PES";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
67 case IMGFMT_ZRMJPEGNI: return "Zoran MJPEG non-interlaced";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
68 case IMGFMT_ZRMJPEGIT: return "Zoran MJPEG top field first";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
69 case IMGFMT_ZRMJPEGIB: return "Zoran MJPEG bottom field first";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
70 case IMGFMT_XVMC_MOCO_MPEG2: return "MPEG1/2 Motion Compensation";
63630c09e237 cosmetics: Remove pointless parentheses from return calls.
diego
parents: 26701
diff changeset
71 case IMGFMT_XVMC_IDCT_MPEG2: return "MPEG1/2 Motion Compensation and IDCT";
28516
79b0bd20433e Add support for image formats and codecs used by VDPAU
reimar
parents: 26754
diff changeset
72 case IMGFMT_VDPAU_MPEG1: return "MPEG1 VDPAU acceleration";
79b0bd20433e Add support for image formats and codecs used by VDPAU
reimar
parents: 26754
diff changeset
73 case IMGFMT_VDPAU_MPEG2: return "MPEG2 VDPAU acceleration";
79b0bd20433e Add support for image formats and codecs used by VDPAU
reimar
parents: 26754
diff changeset
74 case IMGFMT_VDPAU_H264: return "H.264 VDPAU acceleration";
29843
f6d56a15f1d8 Support VDPAU hardware accelerated decoding of MPEG-4 ASP on capable
cehoyos
parents: 29444
diff changeset
75 case IMGFMT_VDPAU_MPEG4: return "MPEG-4 Part 2 VDPAU acceleration";
28516
79b0bd20433e Add support for image formats and codecs used by VDPAU
reimar
parents: 26754
diff changeset
76 case IMGFMT_VDPAU_WMV3: return "WMV3 VDPAU acceleration";
79b0bd20433e Add support for image formats and codecs used by VDPAU
reimar
parents: 26754
diff changeset
77 case IMGFMT_VDPAU_VC1: return "VC1 VDPAU acceleration";
2599
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
78 }
26701
85dc7d81935c cosmetics: Fix unknow vs. unknowN typo.
diego
parents: 23750
diff changeset
79 snprintf(unknown_format,20,"Unknown 0x%04x",format);
85dc7d81935c cosmetics: Fix unknow vs. unknowN typo.
diego
parents: 23750
diff changeset
80 return unknown_format;
2599
8286ce06dfa1 vo_format_name moved from video_out.c to img_format.c
alex
parents:
diff changeset
81 }
30096
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
82
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
83 int mp_get_chroma_shift(int format, int *x_shift, int *y_shift)
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
84 {
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
85 int xs = 0, ys = 0;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
86 int err = 0;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
87 switch (format) {
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
88 case IMGFMT_I420:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
89 case IMGFMT_IYUV:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
90 case IMGFMT_YV12:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
91 xs = 1;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
92 ys = 1;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
93 break;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
94 case IMGFMT_IF09:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
95 case IMGFMT_YVU9:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
96 xs = 2;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
97 ys = 2;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
98 break;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
99 case IMGFMT_444P:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
100 xs = 0;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
101 ys = 0;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
102 break;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
103 case IMGFMT_422P:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
104 xs = 1;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
105 ys = 0;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
106 break;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
107 case IMGFMT_411P:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
108 xs = 2;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
109 ys = 0;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
110 break;
30098
834af9d1e3e9 Add support for 440p colorspace.
reimar
parents: 30096
diff changeset
111 case IMGFMT_440P:
834af9d1e3e9 Add support for 440p colorspace.
reimar
parents: 30096
diff changeset
112 xs = 0;
834af9d1e3e9 Add support for 440p colorspace.
reimar
parents: 30096
diff changeset
113 ys = 1;
834af9d1e3e9 Add support for 440p colorspace.
reimar
parents: 30096
diff changeset
114 break;
30096
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
115 default:
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
116 err = 1;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
117 break;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
118 }
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
119 if (x_shift) *x_shift = xs;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
120 if (y_shift) *y_shift = ys;
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
121 return err ? 0 : 8 + (16 >> (xs + ys));
76c25bfa181b Add a helper function to get the chroma scale shift and use to simplify mpi setup.
reimar
parents: 29843
diff changeset
122 }