|
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #include "ExtendedTestConvert.h" |
|
17 |
|
18 //CExtendedTestDecoderPlugin |
|
19 CExtendedTestDecoderPlugin* CExtendedTestDecoderPlugin::NewL() |
|
20 { |
|
21 return new(ELeave) CExtendedTestDecoderPlugin; |
|
22 } |
|
23 |
|
24 CExtendedTestDecoderPlugin::CExtendedTestDecoderPlugin() |
|
25 {} |
|
26 |
|
27 void CExtendedTestDecoderPlugin::ScanDataL() |
|
28 {} |
|
29 |
|
30 CFrameInfoStrings* CExtendedTestDecoderPlugin::FrameInfoStringsL(RFs& /*aFs*/, TInt /*aFrameNumber*/) |
|
31 { |
|
32 return NULL; |
|
33 } |
|
34 |
|
35 void CExtendedTestDecoderPlugin::ImageType(TInt /*aFrameNumber*/, TUid& /*aImageType*/, TUid& /*aImageSubType*/) const |
|
36 {} |
|
37 |
|
38 CExtendedTestDecoderPlugin::~CExtendedTestDecoderPlugin() |
|
39 { |
|
40 CExtendedDecoderPlugin::Cleanup(); |
|
41 } |
|
42 |
|
43 |
|
44 //CExtendedTestEncoderPlugin |
|
45 CExtendedTestEncoderPlugin* CExtendedTestEncoderPlugin::NewL() |
|
46 { |
|
47 CExtendedTestEncoderPlugin* self; |
|
48 self = new (ELeave) CExtendedTestEncoderPlugin; |
|
49 return self; |
|
50 } |
|
51 |
|
52 CExtendedTestEncoderPlugin::CExtendedTestEncoderPlugin() |
|
53 {} |
|
54 |
|
55 void CExtendedTestEncoderPlugin::PrepareEncoderL(const CFrameImageData* /*aFrameImageData*/) |
|
56 { |
|
57 } |
|
58 |
|
59 void CExtendedTestEncoderPlugin::UpdateHeaderL() |
|
60 {} |
|
61 |
|
62 CExtendedTestEncoderPlugin::~CExtendedTestEncoderPlugin() |
|
63 { |
|
64 CExtendedEncoderPlugin::Cleanup(); |
|
65 } |
|
66 |
|
67 |