equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
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". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Provides Video Conversion method |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 // INCLUDE FILES |
|
23 #include <e32base.h> |
|
24 #include "VideoConversionApi.h" |
|
25 |
|
26 |
|
27 // ============================ MEMBER FUNCTIONS =============================== |
|
28 |
|
29 |
|
30 |
|
31 // ----------------------------------------------------------------------------- |
|
32 // CVideoConversionPlugin::NewL |
|
33 // Factory method for a specific implementation |
|
34 // ----------------------------------------------------------------------------- |
|
35 // |
|
36 EXPORT_C CVideoConversionPlugin* CVideoConversionPlugin::NewL( const TUid aImplUid ) |
|
37 { |
|
38 TAny* defaultPlugin = REComSession::CreateImplementationL( |
|
39 aImplUid, |
|
40 _FOFF( CVideoConversionPlugin, iDtor_ID_Key )); |
|
41 |
|
42 return ( REINTERPRET_CAST(CVideoConversionPlugin*,(defaultPlugin)) ); |
|
43 } |
|
44 |
|
45 // Destructor |
|
46 EXPORT_C CVideoConversionPlugin::~CVideoConversionPlugin() |
|
47 { |
|
48 REComSession::DestroyedImplementation( iDtor_ID_Key ); |
|
49 } |
|
50 |
|
51 |
|
52 |
|
53 |
|
54 // End of File |