diff -r 000000000000 -r 5d29cba61097 omxilvideocomps/omxil3gpdemuxer/src/tvideoformat.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/omxilvideocomps/omxil3gpdemuxer/src/tvideoformat.h Fri Oct 08 22:09:17 2010 +0100 @@ -0,0 +1,48 @@ +/* +* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + +/** +@file +@internalComponent +*/ + +#ifndef TVIDEOFORMAT_H_ +#define TVIDEOFORMAT_H_ + +#include + +class TVideoFormat + { +public: + OMX_VIDEO_CODINGTYPE iCoding; + union + { + OMX_VIDEO_H263PROFILETYPE h263; + OMX_VIDEO_AVCPROFILETYPE avc; + OMX_VIDEO_MPEG4PROFILETYPE mpeg4; + } iProfile; + + union + { + OMX_VIDEO_H263LEVELTYPE h263; + OMX_VIDEO_AVCLEVELTYPE avc; + OMX_VIDEO_MPEG4LEVELTYPE mpeg4; + } iLevel; + }; + +#endif /*TVIDEOFORMAT_H_*/