Update contrib.
2 * Copyright (c) 2006 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.
14 * Description: Class definition for the frame table functions.
25 // FORWARD DECLARATIONS
26 class MFrameTableEventObserver;
31 * This class provides AAC utility functions.
33 * @lib AACAudioControllerUtility.lib
36 class CFrameTable : public CBase
39 // Constructors and destructor
45 EPlayWindowEndPosReached
49 * Two-phased constructor.
51 IMPORT_C static CFrameTable* NewL();
56 IMPORT_C virtual ~CFrameTable();
61 IMPORT_C TInt InitFrameTable(TInt aSampleRate, TInt aSamplesPerFrame);
62 IMPORT_C TInt SubmitTableEntry(TUint aPos);
64 IMPORT_C TInt FindFramePosFromTime(TUint& aTimeMs, TUint& aPos);
65 IMPORT_C TInt FindFrameTimeFromPos(TUint& aTimeMs, TUint& aPos);
66 IMPORT_C TInt LastFramePos(TUint& aPos);
67 IMPORT_C TInt LastFrameTime(TUint& aTimeMs);
69 IMPORT_C void ShrinkTable();
70 IMPORT_C void ResetTable();
72 IMPORT_C TInt SetSourceReference(TUint aTimeMs, TUint aPos);
74 IMPORT_C TInt RegisterForEvent(TFrameTableEvent aEvent,
75 MFrameTableEventObserver* aObserver, TUint aParam);
76 IMPORT_C TInt UnRegisterForEvent(TFrameTableEvent aEvent,
77 MFrameTableEventObserver* aObserver);
78 IMPORT_C TInt Bitrate();
79 IMPORT_C TInt IsSeeking(TBool& aIsSeeking);
80 IMPORT_C TInt GetLastPosEvent(TUint& aPos);
92 * C++ default constructor.
97 * By default Symbian 2nd phase constructor is private.
101 TUint CalcFrameFromTimeMs(TUint aTimeMs);
102 TInt SubmitLowResTableEntry(TBufRefPosEntry& aEntry);
107 RArray<TBufRefPosEntry> iFrameTable;
108 RArray<TBufRefPosEntry> iLowResFrameTable;
110 TUint iSamplesPerFrame;
118 TUint iPlayWindowEndPosEventMs;
120 TUint iIntervalEvent;
121 MFrameTableEventObserver* iObserver;
123 TUint iCurrentFrameCount;
124 TUint iFramesPerLowResInterval;
125 TUint iLowResIntervalMs;
130 class MFrameTableEventObserver
134 HandleFrameTableEvent(CFrameTable::TFrameTableEvent aEvent) = 0;
137 #endif // CFRAMETABLE_H