sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <mmf/devvideo/devvideobase.h>
|
sl@0
|
17 |
#include "rendererutil.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
/** Convert TVideoRendererPixelFormat pixel format from resource file to uncompressed video format */
|
sl@0
|
20 |
TUncompressedVideoFormat VideoRendererUtil::ConvertPixelFormatToUncompressedVideoFormatL(TVideoRendererPixelFormat aPixelFormat)
|
sl@0
|
21 |
{
|
sl@0
|
22 |
TUncompressedVideoFormat ret;
|
sl@0
|
23 |
|
sl@0
|
24 |
switch (aPixelFormat)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
case EVideoRendererPixelFormatXRGB_8888:
|
sl@0
|
27 |
ret.iDataFormat = ERgbRawData;
|
sl@0
|
28 |
ret.iRgbFormat = ERgb32bit888;
|
sl@0
|
29 |
break;
|
sl@0
|
30 |
case EVideoRendererPixelFormatRGB_565:
|
sl@0
|
31 |
ret.iDataFormat = ERgbRawData;
|
sl@0
|
32 |
ret.iRgbFormat = ERgb16bit565;
|
sl@0
|
33 |
break;
|
sl@0
|
34 |
case EVideoRendererPixelFormatXRGB_4444:
|
sl@0
|
35 |
ret.iDataFormat = ERgbRawData;
|
sl@0
|
36 |
ret.iRgbFormat = ERgb16bit444;
|
sl@0
|
37 |
break;
|
sl@0
|
38 |
default:
|
sl@0
|
39 |
DEBUGPRINT2(_L("VideoRendererUtil::ConvertPixelFormatToUncompressedVideoFormatL aPixelFormat=%d"), aPixelFormat);
|
sl@0
|
40 |
User::Leave(KErrNotSupported);
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
return ret;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
/** Convert TUidPixelFormat pixel format to uncompressed video format */
|
sl@0
|
47 |
TUncompressedVideoFormat VideoRendererUtil::ConvertUidPixelFormatToUncompressedVideoFormatL(TUidPixelFormat aUidPixelFormat)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
return ConvertPixelFormatToUncompressedVideoFormatL(static_cast<TVideoRendererPixelFormat>(aUidPixelFormat));
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
/** Convert uncompressed video format to TUidPixelFormat pixel format */
|
sl@0
|
53 |
TUidPixelFormat VideoRendererUtil::ConvertUncompressedVideoFormatToUidPixelFormatL(const TUncompressedVideoFormat& aFormat)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
TUidPixelFormat ret = EUidPixelFormatUnknown;
|
sl@0
|
56 |
|
sl@0
|
57 |
if (aFormat.iDataFormat != ERgbRawData)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
DEBUGPRINT2(_L("VideoRendererUtil::ConvertUncompressedVideoFormatToUidPixelFormat iDataFormat=%d"), aFormat.iDataFormat);
|
sl@0
|
60 |
User::Leave(KErrNotSupported);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
switch (aFormat.iRgbFormat)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
case ERgb32bit888:
|
sl@0
|
66 |
ret = EUidPixelFormatXRGB_8888;
|
sl@0
|
67 |
break;
|
sl@0
|
68 |
case ERgb16bit565:
|
sl@0
|
69 |
ret = EUidPixelFormatRGB_565;
|
sl@0
|
70 |
break;
|
sl@0
|
71 |
case ERgb16bit444:
|
sl@0
|
72 |
ret = EUidPixelFormatXRGB_4444;
|
sl@0
|
73 |
break;
|
sl@0
|
74 |
default:
|
sl@0
|
75 |
DEBUGPRINT2(_L("VideoRendererUtil::ConvertUncompressedVideoFormatToUidPixelFormatL iRgbFormat=%d"), aFormat.iRgbFormat);
|
sl@0
|
76 |
User::Leave(KErrNotSupported);
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
return ret;
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
/** return the bytes per pixel for a uid pixel format */
|
sl@0
|
83 |
TInt VideoRendererUtil::BytesPerPixelL(TUidPixelFormat aPixelFormat)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
switch (aPixelFormat)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
case EUidPixelFormatXRGB_4444:
|
sl@0
|
88 |
case EUidPixelFormatRGB_565:
|
sl@0
|
89 |
return 2;
|
sl@0
|
90 |
case EUidPixelFormatXRGB_8888:
|
sl@0
|
91 |
return 4;
|
sl@0
|
92 |
default:
|
sl@0
|
93 |
DEBUGPRINT2(_L("VideoRendererUtil::BytesPerPixelL aPixelFormat=%d"), aPixelFormat);
|
sl@0
|
94 |
User::Leave(KErrNotSupported);
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
return 0; // to remove compile warning
|
sl@0
|
98 |
}
|