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