1mlib_VideoColorABGR2JFIFYCCm4e4d4i(a3LMiLbIBL)ibrarymlFiubn_cVtiidoenosColorABGR2JFIFYCC444(3MLIB)
2
3
4
6 mlib_VideoColorABGR2JFIFYCC444 - ABGR to JFIF YCbCr color conversion
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_VideoColorABGR2JFIFYCC444(mlib_u8 *y, mlib_u8 *cb,
13 mlib_u8 *cr, const mlib_u8 *abgr, mlib_s32 n);
14
15
17 The mlib_VideoColorABGR2JFIFYCC444() function performs color space con‐
18 version from and ABGR to YCbCr when used in the JPEG File Interchange
19 Format (JFIF).
20
21
22 The following equation is used:
23
24 Y = 0.29900 * R + 0.58700 * G + 0.11400 * B
25 Cb = -0.16874 * R - 0.33126 * G + 0.50000 * B + 128
26 Cr = 0.50000 * R - 0.41869 * G - 0.08131 * B + 128
27
28
30 The function takes the following arguments:
31
32 y Pointer to destination Y component row. y must be 8-byte
33 aligned.
34
35
36 cb Pointer to destination Cb component row. cb must be 8-byte
37 aligned.
38
39
40 cr Pointer to destination Cr component row. cr must be 8-byte
41 aligned.
42
43
44 abgr Pointer to source ABGR multi-component row. abgr must be 8-byte
45 aligned.
46
47
48 n Length of Y component row. The length of Cb and Cr component
49 rows must be n. The length of the ABGR multi-component row must
50 be 4*n.
51
52
54 The function returns MLIB_SUCCESS if successful. Otherwise it returns
55 MLIB_FAILURE.
56
58 See attributes(5) for descriptions of the following attributes:
59
60
61
62
63 ┌─────────────────────────────┬─────────────────────────────┐
64 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
65 ├─────────────────────────────┼─────────────────────────────┤
66 │Interface Stability │Committed │
67 ├─────────────────────────────┼─────────────────────────────┤
68 │MT-Level │MT-Safe │
69 └─────────────────────────────┴─────────────────────────────┘
70
72 mlib_VideoColorARGB2JFIFYCC444(3MLIB), mlib_VideoColorRGB2JFI‐
73 FYCC444(3MLIB), mlib_VideoColorRGB2JFIFYCC444_S16(3MLIB), attributes(5)
74
75
76
77SunOS 5.11 23 May 2m0l0i7b_VideoColorABGR2JFIFYCC444(3MLIB)