mediaLib Library Functions
mlibVideoReversibleColorYUV2RGBU8U8(3MLIB)
NAME
mlibVideoReversibleColorYUV2RGBU8U8,
mlibVideoReversibleColorYUV2RGBU8S16,
mlibVideoReversibleColorYUV2RGBS16S16,
mlibVideoReversibleColorYUV2RGBS16S32 - reversible color
space conversion for wavelet transformation
SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ]
#include
mlibstatus mlibVideoReversibleColorYUV2RGBU8U8(mlibu8 *r,
mlibu8 *g, mlibu8 *b, const mlibu8 *y, const mlibu8 *u,
const mlibu8 *v, mlibs32 n, mlibs32 depth);
mlibstatus mlibVideoReversibleColorYUV2RGBU8S16(mlibu8 *r,
mlibu8 *g, mlibu8 *b, const mlibs16 *y, const mlibs16 *u,
const mlibs16 *v, mlibs32 n, mlibs32 depth);
mlibstatus mlibVideoReversibleColorYUV2RGBS16S16(mlibs16 *r,
mlibs16 *g, mlibs16 *b, const mlibs16 *y, const mlibs16 *u,
const mlibs16 *v, mlibs32 n, mlibs32 depth);
mlibstatus mlibVideoReversibleColorYUV2RGBS16S32(mlibs16 *r,
mlibs16 *g, mlibs16 *b, const mlibs32 *y, const mlibs32 *u,
const mlibs32 *v, mlibs32 n, mlibs32 depth);
DESCRIPTION
Each of the functions provides support to reversible wavelet
transformation. It is for reversible color space conversion.
PARAMETERS
Each of the functions takes the following arguments:
r Pointer to destination R component.
g Pointer to destination G component.
b Pointer to destination B component.
y Pointer to source Y component.
SunOS 5.11 Last change: 2 Mar 2007 1
mediaLib Library Functions
mlibVideoReversibleColorYUV2RGBU8U8(3MLIB)
u Pointer to source U component.
v Pointer to source V component.
n Length of data.
depth Number of bit planes required to store the original
R, G, and B components.
RETURN VALUES
Each of the functions returns MLIBSUCES if successful.
Otherwise it returns MLIBFAILURE.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
ATRIBUTE TYPE ATRIBUTE VALUE
Interface Stability Committed
MT-Level MT-Safe
SEE ALSO
mlibVideoReversibleColorRGB2YUVU8U8(3MLIB), attributes(5)
SunOS 5.11 Last change: 2 Mar 2007 2
mediaLib Library Functions
mlibVideoReversibleColorYUV2RGBU8U8(3MLIB)
SunOS 5.11 Last change: 2 Mar 2007 3
|