sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @deprecated sl@0: */ sl@0: sl@0: #ifndef _MP4CONFIG_H sl@0: #define _MP4CONFIG_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: typedef TUint8 mp4_u8; sl@0: typedef TUint16 mp4_u16; sl@0: typedef TUint32 mp4_u32; sl@0: typedef TInt64 mp4_u64; sl@0: typedef TInt8 mp4_i8; sl@0: typedef TInt16 mp4_i16; sl@0: typedef TInt32 mp4_i32; sl@0: typedef TInt64 mp4_i64; sl@0: sl@0: typedef TReal mp4_double; sl@0: sl@0: typedef TBool mp4_bool; sl@0: sl@0: typedef wchar_t * MP4FileName; sl@0: typedef wchar_t * MP4String; sl@0: sl@0: typedef TInt32 MP4Err; sl@0: sl@0: /** Structure containing video frame properties */ sl@0: struct TFrameInfoParameters sl@0: { sl@0: /** Frame size */ sl@0: mp4_u32 iSize; sl@0: /** Frame start time */ sl@0: mp4_u32 iStartTime; sl@0: /** Frame type */ sl@0: mp4_bool iType; sl@0: }; sl@0: sl@0: /** Setup info struct for video composition */ sl@0: struct TVideoClipProperties sl@0: { sl@0: /** Indicates the H263 level */ sl@0: mp4_u8 iH263Level; sl@0: }; sl@0: sl@0: #endif sl@0: // End of File