1mlib_VideoInterpAveY_U8_U8_m1e6dxi1a6L(i3bMLLIiBb)ramrlyibF_uVnicdteiooInnsterpAveY_U8_U8_16x16(3MLIB)
2
3
4
6 mlib_VideoInterpAveY_U8_U8_16x16, mlib_VideoInterpAveY_U8_U8_16x8,
7 mlib_VideoInterpAveY_U8_U8_8x16, mlib_VideoInterpAveY_U8_U8_8x8,
8 mlib_VideoInterpAveY_U8_U8_8x4 - half-pixel interpolation in the Y
9 direction and averaging for reference block
10
12 cc [ flag... ] file... -lmlib [ library... ]
13 #include <mlib.h>
14
15 mlib_status mlib_VideoInterpAveY_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_VideoInterpAveY_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_VideoInterpAveY_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_VideoInterpAveY_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_VideoInterpAveY_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 Y
37 direction and averaging for a reference block of data type mlib_u8 and
38 a current block of data type mlib_u8. In this mode, the motion-compen‐
39 sated reference block becomes the current block. Thus, the stride
40 applies to both the input reference block and the current 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_VideoInterpAveXY_U8_U8_16x16(3MLIB), mlib_VideoInter‐
89 pAveY_U8_U8(3MLIB), mlib_VideoInterpX_S16_U8(3MLIB), mlib_VideoInt‐
90 erpX_S16_U8_16x16(3MLIB), mlib_VideoInterpX_U8_U8(3MLIB), mlib_VideoIn‐
91 terpXY_S16_U8(3MLIB), mlib_VideoInterpXY_S16_U8_16x16(3MLIB),
92 mlib_VideoInterpXY_U8_U8(3MLIB), mlib_VideoInterpXY_U8_U8_16x16(3MLIB),
93 mlib_VideoInterpY_S16_U8(3MLIB), mlib_VideoInterpY_S16_U8_16x16(3MLIB),
94 mlib_VideoInterpY_U8_U8(3MLIB), mlib_VideoInterpY_U8_U8_16x16(3MLIB),
95 mlib_VideoP64Decimate_U8_U8(3MLIB), mlib_VideoP64Loop_S16_U8(3MLIB),
96 mlib_VideoP64Loop_U8_U8(3MLIB), attributes(5)
97
98
99
100SunOS 5.11 2 Marm2l0i0b7_VideoInterpAveY_U8_U8_16x16(3MLIB)