equal
deleted
inserted
replaced
|
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 <fbs.h> |
|
17 #include "BadVerTestCodec.h" |
|
18 |
|
19 |
|
20 // CBadVerTestReadCodec |
|
21 CBadVerTestReadCodec::CBadVerTestReadCodec(CBadVerTestDecoder& aDecoder): |
|
22 iDecoder(&aDecoder) |
|
23 {} |
|
24 |
|
25 CBadVerTestReadCodec::~CBadVerTestReadCodec() |
|
26 { |
|
27 } |
|
28 |
|
29 TFrameState CBadVerTestReadCodec::ProcessFrameL(TBufPtr8& /*aSrc*/) |
|
30 { |
|
31 return EFrameComplete; |
|
32 } |
|
33 |
|
34 void CBadVerTestReadCodec::Complete() |
|
35 { |
|
36 } |
|
37 |
|
38 void CBadVerTestReadCodec::InitFrameL(TFrameInfo& /*aFrameInfo*/, CFrameImageData& /*aFrameImageData*/, TBool /*aDisableErrorDiffusion*/, CFbsBitmap& /*aDestination*/, CFbsBitmap* /*aDestinationMask*/) |
|
39 { |
|
40 } |
|
41 |
|
42 //CBadVerTestWriteCodec |
|
43 CBadVerTestWriteCodec::CBadVerTestWriteCodec() |
|
44 { |
|
45 } |
|
46 |
|
47 CBadVerTestWriteCodec::~CBadVerTestWriteCodec() |
|
48 { |
|
49 } |
|
50 |
|
51 void CBadVerTestWriteCodec::InitFrameL(TBufPtr8& /*aDst*/, const CFbsBitmap& /*aSource*/) |
|
52 { |
|
53 } |
|
54 |
|
55 TFrameState CBadVerTestWriteCodec::ProcessFrameL(TBufPtr8& /*aDst*/) |
|
56 { |
|
57 return EFrameComplete; |
|
58 } |
|
59 |