Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
6711 Discussions

How to decompose ippiReconstructCoeffsInter_MPEG4_1u16s ?

kamildobk1
Beginner
413 Views
I need to access DCT coefficients before inverse quantization. I tried the following:

my_ReconstructCoeffsInter_MPEG4_1u16s(
ipp8u** ppBitStream,
int* pBitOffset,
Ipp16s* pCoeffs,
int* pIndxLastNonZero,
int rvlcFlag,
int scan,
const IppiQuantInvInterSpec_MPEG4 *pQuantInvInterSpec,
int QP )
{
ippiDecodeCoeffsInter_MPEG4_1u16s(
ppBitStream,
pBitOffset,
pCoeffs,
pIndxLastNonZero,
rvlcFlag,
scan );

ippiQuantInvInter_MPEG4_16sC1I(
pCoeffs,
*pIndxLastNonZero,
pQuantInvInterSpec,
QP );
}

But apparently it is not the same - the picture is disstorted ( I replaced default call in mp4_DecodeInterMB() in mpeg4 decoder ). Am I missing something ? I use IPP ver5.1 on WinXP.

Thanks in advance,
Kamil
0 Kudos
2 Replies
kamildobk1
Beginner
413 Views
Now works ok,

Thank you very much,
Kamil
0 Kudos
Vladimir_Dudnik
Employee
413 Views
you are welcome, Kamil
0 Kudos
Reply