3
|
1 |
/*
|
|
2 |
* Copyright (c) 2006 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: Definition of constants for IclExtJpegApi
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef _ICLEXTJPEGAPICONST_
|
|
19 |
#define _ICLEXTJPEGAPICONST_
|
|
20 |
|
|
21 |
//----------------------------------------------------------------------------
|
|
22 |
// Common const definitions:
|
|
23 |
//----------------------------------------------------------------------------
|
|
24 |
_LIT8( KJpgMimeType,"image/jpeg" );
|
|
25 |
_LIT( KJpgFileExt,".jpg" );
|
|
26 |
|
|
27 |
const TInt KMinSwVersion = 64;
|
|
28 |
const TInt KMinHwVersion = 0;
|
|
29 |
const TInt KMaxSwVersion = 127;
|
|
30 |
const TInt KMaxHwVersion = 63;
|
|
31 |
|
|
32 |
//----------------------------------------------------------------------------
|
|
33 |
// V2 specific variations:
|
|
34 |
//----------------------------------------------------------------------------
|
|
35 |
|
|
36 |
const TUid KUidExtIclImageFrameFormat = { 0x11111111 };
|
|
37 |
|
|
38 |
//----------------------------------------------------------------------------
|
|
39 |
// Initial version specific variations:
|
|
40 |
//----------------------------------------------------------------------------
|
|
41 |
|
|
42 |
#endif // _ICLEXTJPEGAPICONST_
|
|
43 |
|
|
44 |
|
|
45 |
// End of File
|