mediaLib Library Functions mlibSignalLPCovarianceS16(3MLIB)
NAME
mlibSignalLPCovarianceS16,
mlibSignalLPCovarianceS16Adp - perform linear predictive
coding with covariance method
SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ]
#include
mlibstatus mlibSignalLPCovarianceS16(mlibs16 *coeff,
mlibs32 cscale, const mlibs16 *signal, void *state);
mlibstatus mlibSignalLPCovarianceS16Adp(mlibs16 *coeff,
mlibs32 *cscale, const mlibs16 *signal, void *state);
DESCRIPTION
Each function performs linear predictive coding with covari-
ance method.
In linear predictive coding (LPC) model, each speech sample
is represented as a linear combination of the past M sam-
ples.
M
s(n) = SUM a(i) * s(n-i) ] G * u(n)
i=1
where s(*) is the speech signal, u(*) is the excitation sig-
nal, and G is the gain constants, M is the order of the
linear prediction filter. Given s(*), the goal is to find a
set of coefficient a(*) that minimizes the prediction error
e(*).
M
e(n) = s(n) - SUM a(i) * s(n-i)
i=1
In covariance method, the coefficients can be obtained by
solving following set of linear equations.
M
SUM a(i) * c(i,k) = c(0,k), k=1,...,M
i=1
SunOS 5.11 Last change: 2 Mar 2007 1
mediaLib Library Functions mlibSignalLPCovarianceS16(3MLIB)
where
N-k-1
c(i,k) = SUM s(j) * s(j]k-i)
j=0
are the covariance coefficients of s(*), N is the length of
the input speech vector.
Note that the covariance matrix R is a symmetric matrix, and
the equations can be solved efficiently with Cholesky decom-
position method.
See Fundamentals of Speech Recognition by Lawrence Rabiner
and Biing-Hwang Juang, Prentice Hall, 1993.
Note for functions with adaptive scaling (with Adp post-
fix), the scaling factor of the output data will be calcu-
lated based on the actual data; for functions with non-
adaptive scaling (without Adp postfix), the user supplied
scaling factor will be used and the output will be saturated
if necessary.
PARAMETERS
Each function takes the following arguments:
coeff The linear prediction coefficients.
cscale The scaling factor of the linear prediction coef-
ficients, where actualdata = outputdata * 2**(-
scalingfactor).
signal The input signal vector with samples in Q15 for-
mat.
state Pointer to the internal state structure.
RETURN VALUES
Each function returns MLIBSUCES if successful. Otherwise
it returns MLIBFAILURE.
ATRIBUTES
SunOS 5.11 Last change: 2 Mar 2007 2
mediaLib Library Functions mlibSignalLPCovarianceS16(3MLIB)
See attributes(5) for descriptions of the following attri-
butes:
ATRIBUTE TYPE ATRIBUTE VALUE
Interface Stability Committed
MT-Level MT-Safe
SEE ALSO
mlibSignalLPCovarianceInitS16(3MLIB),
mlibSignalLPCovarianceFreeS16(3MLIB), attributes(5)
SunOS 5.11 Last change: 2 Mar 2007 3
|