Update contrib.
2 * Copyright (c) 2002-2003 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
18 #ifndef __MMF_TMMFIMA_ADPCM_CODEC_STATE_H__
19 #define __MMF_TMMFIMA_ADPCM_CODEC_STATE_H__
24 * class TMMFImaAdpcmCodecState
27 class TMMFImaAdpcmCodecState
30 inline TMMFImaAdpcmCodecState();
31 inline TMMFImaAdpcmCodecState(TInt16 aPredicted, TUint8 aIndex);
33 TInt16 iPredicted; // Previous output value
34 TUint8 iIndex; // Index into stepsize table
37 inline TMMFImaAdpcmCodecState::TMMFImaAdpcmCodecState()
38 : iPredicted(0), iIndex(0)
41 inline TMMFImaAdpcmCodecState::TMMFImaAdpcmCodecState(TInt16 aPredicted, TUint8 aIndex)
42 : iPredicted(aPredicted), iIndex(aIndex)
46 #endif //__MMF_TMMFIMA_ADPCM_CODEC_STATE_H__