Update contrib.
2 * Copyright (c) 2002-2007 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: Used for error concealment.
19 #ifndef RA8CUSTOMINTERFACE_H
20 #define RA8CUSTOMINTERFACE_H
26 const TUid KUidRa8DecHwDeviceCI = {0x101FAF42};
31 enum TRa8DecHwDeviceCommand
36 // FUNCTION PROTOTYPES
38 // FORWARD DECLARATIONS
44 * Interface for ra8 and sipro.
45 * Used for providing initialization information for dsp decoder and getting.
46 * information about played frames.
47 * This abstract class just provides the static NewL function for the creation
48 * of the proxy, and also defines the custom interface to be implemented by the
49 * proxy and the real custom interface implementation.
52 class CRa8CustomInterface : public CBase
54 public: // Constructors and destructor
57 * Creates the interface.
59 IMPORT_C static CRa8CustomInterface* NewL(CMMFDevSound& aDevSound);
61 public: // New functions
63 * CRa8CustomInterface::FrameNumber
64 * is used get the current number of audio frames played.
67 virtual TInt FrameNumber() = 0;
69 * CRa8CustomInterface::SetInitString
70 * is used to configure the initialization parameters for task creation.
71 * @param aInitString contains the initialization information for the task.
74 virtual TInt SetInitString(TDesC8& aInitString) = 0;
76 public: // Functions from base classes
77 protected: // New functions
78 protected: // Functions from base classes
84 public: // Friend classes
85 protected: // Friend classes
86 private: // Friend classes
90 #endif // RA8CUSTOMINTERFACE_H