sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "../inc/uids.hrh" // get UID
|
sl@0
|
17 |
|
sl@0
|
18 |
TARGET pcmprocessingunit.dll
|
sl@0
|
19 |
CAPABILITY ALL -TCB
|
sl@0
|
20 |
TARGETTYPE plugin
|
sl@0
|
21 |
|
sl@0
|
22 |
UID KSharedLibraryUidDefine KUidPcmProcessingUnitDll
|
sl@0
|
23 |
VENDORID 0x70000001
|
sl@0
|
24 |
|
sl@0
|
25 |
/*
|
sl@0
|
26 |
The PCM PU has false test UIDs to avoid conflict with the existing HwDevice
|
sl@0
|
27 |
implementation. Commenting the following #define in allows it to
|
sl@0
|
28 |
be used in preference to the HwDevice ones, and thus be tested by running
|
sl@0
|
29 |
normal apps.
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
//#define TEST_REALFOURCC
|
sl@0
|
32 |
|
sl@0
|
33 |
SOURCEPATH ../src
|
sl@0
|
34 |
SOURCE pcmprocessingunit.cpp
|
sl@0
|
35 |
SOURCE pcmprocessingunitmain.cpp
|
sl@0
|
36 |
SOURCE pcminputport.cpp
|
sl@0
|
37 |
SOURCE pcmoutputport.cpp
|
sl@0
|
38 |
|
sl@0
|
39 |
USERINCLUDE ../src
|
sl@0
|
40 |
USERINCLUDE ../inc
|
sl@0
|
41 |
USERINCLUDE ../
|
sl@0
|
42 |
|
sl@0
|
43 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN
|
sl@0
|
44 |
|
sl@0
|
45 |
#ifdef TEST_REALFOURCC
|
sl@0
|
46 |
START RESOURCE pcmprocessingunittest.rss
|
sl@0
|
47 |
TARGET pcmprocessingunit.rss
|
sl@0
|
48 |
END
|
sl@0
|
49 |
#else
|
sl@0
|
50 |
RESOURCE pcmprocessingunit.rss
|
sl@0
|
51 |
#endif
|
sl@0
|
52 |
|
sl@0
|
53 |
LIBRARY euser.lib
|
sl@0
|
54 |
LIBRARY ecom.lib
|
sl@0
|
55 |
LIBRARY mmcommonutils.lib
|
sl@0
|
56 |
LIBRARY omxcomponent.lib
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
SMPSAFE
|