|
1 // Copyright (c) 2006-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 |
|
17 |
|
18 /** |
|
19 @file |
|
20 @publishedPartner |
|
21 @deprecated |
|
22 */ |
|
23 |
|
24 #ifndef _MP4CONFIG_H |
|
25 #define _MP4CONFIG_H |
|
26 |
|
27 #include <e32def.h> |
|
28 #include <e32std.h> |
|
29 #include <libc/stddef.h> |
|
30 |
|
31 typedef TUint8 mp4_u8; |
|
32 typedef TUint16 mp4_u16; |
|
33 typedef TUint32 mp4_u32; |
|
34 typedef TInt64 mp4_u64; |
|
35 typedef TInt8 mp4_i8; |
|
36 typedef TInt16 mp4_i16; |
|
37 typedef TInt32 mp4_i32; |
|
38 typedef TInt64 mp4_i64; |
|
39 |
|
40 typedef TReal mp4_double; |
|
41 |
|
42 typedef TBool mp4_bool; |
|
43 |
|
44 typedef wchar_t * MP4FileName; |
|
45 typedef wchar_t * MP4String; |
|
46 |
|
47 typedef TInt32 MP4Err; |
|
48 |
|
49 /** Structure containing video frame properties */ |
|
50 struct TFrameInfoParameters |
|
51 { |
|
52 /** Frame size */ |
|
53 mp4_u32 iSize; |
|
54 /** Frame start time */ |
|
55 mp4_u32 iStartTime; |
|
56 /** Frame type */ |
|
57 mp4_bool iType; |
|
58 }; |
|
59 |
|
60 /** Setup info struct for video composition */ |
|
61 struct TVideoClipProperties |
|
62 { |
|
63 /** Indicates the H263 level */ |
|
64 mp4_u8 iH263Level; |
|
65 }; |
|
66 |
|
67 #endif |
|
68 // End of File |