1mlib_VideoInterpAveXY_U8_U8m_e1d6ixa1L6i(b3MLLiIbBrm)alriyb_FVuindcetoiIonntserpAveXY_U8_U8_16x16(3MLIB)
2
3
4
6 mlib_VideoInterpAveXY_U8_U8_16x16, mlib_VideoInterpAveXY_U8_U8_16x8,
7 mlib_VideoInterpAveXY_U8_U8_8x16, mlib_VideoInterpAveXY_U8_U8_8x8,
8 mlib_VideoInterpAveXY_U8_U8_8x4 - half-pixel interpolation in the X and
9 Y directions and averaging for reference block
10
12 cc [ flag... ] file... -lmlib [ library... ]
13 #include <mlib.h>
14
15 mlib_status mlib_VideoInterpAveXY_U8_U8_16x16(mlib_u8 *curr_block,
16 const mlib_u8 *ref_block, mlib_s32 frm_stride, mlib_s32 fld_stride);
17
18
19 mlib_status mlib_VideoInterpAveXY_U8_U8_16x8(mlib_u8 *curr_block,
20 const mlib_u8 *ref_block, mlib_s32 frm_stride, mlib_s32 fld_stride);
21
22
23 mlib_status mlib_VideoInterpAveXY_U8_U8_8x16(mlib_u8 *curr_block,
24 const mlib_u8 *ref_block, mlib_s32 frm_stride, mlib_s32 fld_stride);
25
26
27 mlib_status mlib_VideoInterpAveXY_U8_U8_8x8(mlib_u8 *curr_block,
28 const mlib_u8 *ref_block, mlib_s32 frm_stride, mlib_s32 fld_stride);
29
30
31 mlib_status mlib_VideoInterpAveXY_U8_U8_8x4(mlib_u8 *curr_block,
32 const mlib_u8 *ref_block, mlib_s32 frm_stride, mlib_s32 fld_stride);
33
34
36 Each of these functions performs half-pixel interpolation in the X and
37 Y directions and averaging for a reference block of data. In this mode,
38 the motion-compensated reference block becomes the current block. Thus,
39 the stride applies to both the input reference block and the current
40 block.
41
43 Each of the functions takes the following arguments:
44
45 curr_block Pointer to the current block. curr_block must be 8-byte
46 aligned.
47
48
49 ref_block Pointer to the reference block.
50
51
52 frm_stride Stride, in bytes, between adjacent rows in a frame in
53 both the current block and the reference block.
54 frm_stride must be a multiple of eight.
55
56
57 fld_stride Stride, in bytes, between adjacent rows in a field in
58 both the current block and reference block. fld_stride
59 must be a multiple of eight.
60
61
63 Each of the functions returns MLIB_SUCCESS if successful. Otherwise it
64 returns MLIB_FAILURE.
65
67 See attributes(5) for descriptions of the following attributes:
68
69
70
71
72 ┌─────────────────────────────┬─────────────────────────────┐
73 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
74 ├─────────────────────────────┼─────────────────────────────┤
75 │Interface Stability │Committed │
76 ├─────────────────────────────┼─────────────────────────────┤
77 │MT-Level │MT-Safe │
78 └─────────────────────────────┴─────────────────────────────┘
79
81 mlib_VideoAddBlock_U8_S16(3MLIB), mlib_VideoCopyRef_S16_U8(3MLIB),
82 mlib_VideoCopyRef_S16_U8_16x16(3MLIB), mlib_VideoCopyRef_U8_U8(3MLIB),
83 mlib_VideoCopyRef_U8_U8_16x16(3MLIB), mlib_VideoCopyRe‐
84 fAve_U8_U8(3MLIB), mlib_VideoCopyRefAve_U8_U8_16x16(3MLIB),
85 mlib_VideoH263OverlappedMC_S16_U8(3MLIB), mlib_VideoH263Over‐
86 lappedMC_U8_U8(3MLIB), mlib_VideoInterpAveX_U8_U8(3MLIB), mlib_VideoIn‐
87 terpAveX_U8_U8_16x16(3MLIB), mlib_VideoInterpAveXY_U8_U8(3MLIB),
88 mlib_VideoInterpAveY_U8_U8(3MLIB), mlib_VideoInter‐
89 pAveY_U8_U8_16x16(3MLIB), mlib_VideoInterpX_S16_U8(3MLIB),
90 mlib_VideoInterpX_S16_U8_16x16(3MLIB), mlib_VideoInterpX_U8_U8(3MLIB),
91 mlib_VideoInterpXY_S16_U8(3MLIB), mlib_VideoInter‐
92 pXY_S16_U8_16x16(3MLIB), mlib_VideoInterpXY_U8_U8(3MLIB), mlib_VideoIn‐
93 terpXY_U8_U8_16x16(3MLIB), mlib_VideoInterpY_S16_U8(3MLIB),
94 mlib_VideoInterpY_S16_U8_16x16(3MLIB), mlib_VideoInterpY_U8_U8(3MLIB),
95 mlib_VideoInterpY_U8_U8_16x16(3MLIB), mlib_VideoP64Deci‐
96 mate_U8_U8(3MLIB), mlib_VideoP64Loop_S16_U8(3MLIB),
97 mlib_VideoP64Loop_U8_U8(3MLIB), attributes(5)
98
99
100
101SunOS 5.11 2 Marml2i0b0_7VideoInterpAveXY_U8_U8_16x16(3MLIB)