1mlib_VideoIDCT8x8_U8_S16_Q1m(e3dMiLaILBi)b Library Fumnlcitbi_oVnisdeoIDCT8x8_U8_S16_Q1(3MLIB)
2
3
4
6 mlib_VideoIDCT8x8_U8_S16_Q1 - inverse Discrete Cosine Transform
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_VideoIDCT8x8_U8_S16_Q1(mlib_u8 *block,
13 const mlib_s16 coeffs[64], mlib_s32 stride);
14
15
17 The mlib_VideoIDCT8x8_U8_S16_Q1() function can be used only when F(u,v)
18 are nonzero and only when 0 ≤ u < 4 and 0 ≤ v < 4. The stride applies
19 to the block that is part of the frame currently being reconstructed.
20
22 The function takes the following arguments:
23
24 block Pointer to the current block. block must be 8-byte aligned
25
26
27 coeffs Pointer to the source DCT coefficients. coeffs must be 8-byte
28 aligned.
29
30
31 stride Stride, in bytes, between adjacent rows in a block. stride
32 must be a multiple of eight.
33
34
36 The function returns MLIB_SUCCESS if successful. Otherwise it returns
37 MLIB_FAILURE.
38
40 See attributes(5) for descriptions of the following attributes:
41
42
43
44
45 ┌─────────────────────────────┬─────────────────────────────┐
46 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
47 ├─────────────────────────────┼─────────────────────────────┤
48 │Interface Stability │Committed │
49 ├─────────────────────────────┼─────────────────────────────┤
50 │MT-Level │MT-Safe │
51 └─────────────────────────────┴─────────────────────────────┘
52
54 mlib_VideoIDCT_IEEE_S16_S16(3MLIB), mlib_VideoIDCT8x8_S16_S16(3MLIB),
55 mlib_VideoIDCT8x8_S16_S16_DC(3MLIB),
56 mlib_VideoIDCT8x8_S16_S16_NA(3MLIB),
57 mlib_VideoIDCT8x8_S16_S16_Q1(3MLIB), mlib_VideoIDCT8x8_U8_S16(3MLIB),
58 mlib_VideoIDCT8x8_U8_S16_DC(3MLIB), mlib_VideoIDCT8x8_U8_S16_NA(3MLIB),
59 attributes(5)
60
61
62
63SunOS 5.11 2 Mar 2007mlib_VideoIDCT8x8_U8_S16_Q1(3MLIB)