Update contrib.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include <mmf/devvideo/devvideobase.h>
17 #include "rendererutil.h"
19 /** Convert TVideoRendererPixelFormat pixel format from resource file to uncompressed video format */
20 TUncompressedVideoFormat VideoRendererUtil::ConvertPixelFormatToUncompressedVideoFormatL(TVideoRendererPixelFormat aPixelFormat)
22 TUncompressedVideoFormat ret;
26 case EVideoRendererPixelFormatXRGB_8888:
27 ret.iDataFormat = ERgbRawData;
28 ret.iRgbFormat = ERgb32bit888;
30 case EVideoRendererPixelFormatRGB_565:
31 ret.iDataFormat = ERgbRawData;
32 ret.iRgbFormat = ERgb16bit565;
34 case EVideoRendererPixelFormatXRGB_4444:
35 ret.iDataFormat = ERgbRawData;
36 ret.iRgbFormat = ERgb16bit444;
39 DEBUGPRINT2(_L("VideoRendererUtil::ConvertPixelFormatToUncompressedVideoFormatL aPixelFormat=%d"), aPixelFormat);
40 User::Leave(KErrNotSupported);
46 /** Convert TUidPixelFormat pixel format to uncompressed video format */
47 TUncompressedVideoFormat VideoRendererUtil::ConvertUidPixelFormatToUncompressedVideoFormatL(TUidPixelFormat aUidPixelFormat)
49 return ConvertPixelFormatToUncompressedVideoFormatL(static_cast<TVideoRendererPixelFormat>(aUidPixelFormat));
52 /** Convert uncompressed video format to TUidPixelFormat pixel format */
53 TUidPixelFormat VideoRendererUtil::ConvertUncompressedVideoFormatToUidPixelFormatL(const TUncompressedVideoFormat& aFormat)
55 TUidPixelFormat ret = EUidPixelFormatUnknown;
57 if (aFormat.iDataFormat != ERgbRawData)
59 DEBUGPRINT2(_L("VideoRendererUtil::ConvertUncompressedVideoFormatToUidPixelFormat iDataFormat=%d"), aFormat.iDataFormat);
60 User::Leave(KErrNotSupported);
63 switch (aFormat.iRgbFormat)
66 ret = EUidPixelFormatXRGB_8888;
69 ret = EUidPixelFormatRGB_565;
72 ret = EUidPixelFormatXRGB_4444;
75 DEBUGPRINT2(_L("VideoRendererUtil::ConvertUncompressedVideoFormatToUidPixelFormatL iRgbFormat=%d"), aFormat.iRgbFormat);
76 User::Leave(KErrNotSupported);
82 /** return the bytes per pixel for a uid pixel format */
83 TInt VideoRendererUtil::BytesPerPixelL(TUidPixelFormat aPixelFormat)
87 case EUidPixelFormatXRGB_4444:
88 case EUidPixelFormatRGB_565:
90 case EUidPixelFormatXRGB_8888:
93 DEBUGPRINT2(_L("VideoRendererUtil::BytesPerPixelL aPixelFormat=%d"), aPixelFormat);
94 User::Leave(KErrNotSupported);
97 return 0; // to remove compile warning