1mlib_VideoUpSample420_S16(3mMeLdIiBa)Lib Library Funcmtliiobn_sVideoUpSample420_S16(3MLIB)
2
3
4
6 mlib_VideoUpSample420_S16 - up sampling rate conversion in JFIF
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_VideoUpSample420_S16(mlib_s16 *dst0,
13 mlib_s16 *dst1, const mlib_s16 *src0, const mlib_s16 *src1,
14 const mlib_s16 *src2, mlib_s32 n);
15
16
18 The mlib_VideoUpSample420_S16() function performs up sampling rate con‐
19 version used in JPEG File Interchange Format (JFIF).
20
22 The function takes the following arguments:
23
24 dst0 Pointer to upper destination row. dst0 must be 8-byte aligned.
25
26
27 dst1 Pointer to lower destination row. dst1 must be 8-byte aligned.
28
29
30 src0 Pointer to upper source row. src0 must be 8-byte aligned.
31
32
33 src1 Pointer to middle source row. src1 must be 8-byte aligned.
34
35
36 src2 Pointer to lower source row. src2 must be 8-byte aligned.
37
38
39 n Length of source rows. n must be greater than 1.
40
41
43 The function returns MLIB_SUCCESS if successful. Otherwise it returns
44 MLIB_FAILURE.
45
47 See attributes(5) for descriptions of the following attributes:
48
49
50
51
52 ┌─────────────────────────────┬─────────────────────────────┐
53 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
54 ├─────────────────────────────┼─────────────────────────────┤
55 │Interface Stability │Committed │
56 ├─────────────────────────────┼─────────────────────────────┤
57 │MT-Level │MT-Safe │
58 └─────────────────────────────┴─────────────────────────────┘
59
61 mlib_VideoDownSample420(3MLIB), mlib_VideoDownSample420_S16(3MLIB),
62 mlib_VideoDownSample422(3MLIB), mlib_VideoDownSample422_S16(3MLIB),
63 mlib_VideoUpSample420(3MLIB), mlib_VideoUpSample420_Nearest(3MLIB),
64 mlib_VideoUpSample420_Nearest_S16(3MLIB), mlib_VideoUpSample422(3MLIB),
65 mlib_VideoUpSample422_S16(3MLIB), mlib_VideoUpSample422_Nearest(3MLIB),
66 mlib_VideoUpSample422_Nearest_S16(3MLIB), attributes(5)
67
68
69
70SunOS 5.11 2 Mar 2007 mlib_VideoUpSample420_S16(3MLIB)