diff -r 000000000000 -r 0e4a32b9112d omxil_generic/omxilcomplib/src/omxilimageportimpl.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/omxil_generic/omxilcomplib/src/omxilimageportimpl.cpp Wed Aug 25 12:40:50 2010 +0300 @@ -0,0 +1,221 @@ +// Copyright (c) 2008-2009 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 + */ + +#include +#include +#include "log.h" +#include "omxilimageportimpl.h" + +COmxILImagePortImpl* COmxILImagePortImpl::NewL(const TOmxILCommonPortData& aCommonPortData, + const RArray& aSupportedImageFormats, + const RArray& aSupportedColorFormats) + { + COmxILImagePortImpl* self = new(ELeave) COmxILImagePortImpl(); + CleanupStack::PushL(self); + self->ConstructL(aCommonPortData, aSupportedImageFormats, aSupportedColorFormats); + CleanupStack::Pop(); + return self; + } + +COmxILImagePortImpl::COmxILImagePortImpl() + { + DEBUG_PRINTF(_L8("COmxILImagePortImpl::COmxILImagePortImpl")); + } + +void COmxILImagePortImpl::ConstructL(const TOmxILCommonPortData& aCommonPortData, + const RArray& aSupportedImageFormats, + const RArray& aSupportedColorFormats) + { + DEBUG_PRINTF(_L8("COmxILImagePortImpl::ConstructL")); + TUint count = aSupportedImageFormats.Count(); + for (TInt i = 0; i < count; ++i) + { + iSupportedImageFormats.AppendL(aSupportedImageFormats[i]); + } + + count = aSupportedColorFormats.Count(); + for (TInt i = 0; i < count; ++i) + { + iSupportedColorFormats.AppendL(aSupportedColorFormats[i]); + } + + TInt numImageFormats = iSupportedImageFormats.Count(); + TInt numColorFormats = iSupportedColorFormats.Count(); + iParamImagePortFormat.nSize = sizeof(OMX_IMAGE_PARAM_PORTFORMATTYPE); + iParamImagePortFormat.nVersion = aCommonPortData.iOmxVersion; + iParamImagePortFormat.nPortIndex = aCommonPortData.iPortIndex; + iParamImagePortFormat.nIndex = numImageFormats ? numImageFormats - 1 : 0; + iParamImagePortFormat.eCompressionFormat = numImageFormats ? iSupportedImageFormats[0] : OMX_IMAGE_CodingUnused; + iParamImagePortFormat.eColorFormat = numColorFormats ? iSupportedColorFormats[0] : OMX_COLOR_FormatUnused; + } + +COmxILImagePortImpl::~COmxILImagePortImpl() + { + DEBUG_PRINTF(_L8("COmxILImagePortImpl::~COmxILImagePortImpl")); + iSupportedImageFormats.Close(); + iSupportedColorFormats.Close(); + } + +OMX_ERRORTYPE COmxILImagePortImpl::GetParameter(OMX_INDEXTYPE aParamIndex, TAny* apComponentParameterStructure) const + { + DEBUG_PRINTF(_L8("COmxILImagePortImpl::GetParameter")); + OMX_ERRORTYPE omxRetValue = OMX_ErrorNone; + + switch(aParamIndex) + { + case OMX_IndexParamImagePortFormat: + { + if (OMX_ErrorNone != (omxRetValue = + TOmxILUtil::CheckOmxStructSizeAndVersion( + const_cast(apComponentParameterStructure), + sizeof(OMX_IMAGE_PARAM_PORTFORMATTYPE)))) + { + return omxRetValue; + } + + OMX_IMAGE_PARAM_PORTFORMATTYPE* imagePortDefinition = static_cast(apComponentParameterStructure); + + if(OMX_IMAGE_CodingUnused == iParamImagePortFormat.eCompressionFormat) + { + if (imagePortDefinition->nIndex >= iSupportedColorFormats.Count()) + { + return OMX_ErrorNoMore; + } + imagePortDefinition->eCompressionFormat = OMX_IMAGE_CodingUnused; + imagePortDefinition->eColorFormat = iSupportedColorFormats[imagePortDefinition->nIndex]; + } + else + { + if (imagePortDefinition->nIndex >= iSupportedImageFormats.Count()) + { + return OMX_ErrorNoMore; + } + imagePortDefinition->eCompressionFormat = iSupportedImageFormats[imagePortDefinition->nIndex]; + } + break; + } + default: + __ASSERT_ALWAYS(EFalse, User::Panic(KOmxILImagePortPanicCategory, 1)); + }; + + return OMX_ErrorNone; + } + +OMX_ERRORTYPE COmxILImagePortImpl::SetParameter(OMX_INDEXTYPE aParamIndex, const TAny* apComponentParameterStructure, TBool& aUpdateProcessingFunction) + { + DEBUG_PRINTF(_L8("COmxILImagePortImpl::SetParameter")); + OMX_ERRORTYPE omxRetValue = OMX_ErrorNone; + + switch(aParamIndex) + { + case OMX_IndexParamImagePortFormat: + { + if (OMX_ErrorNone != (omxRetValue = + TOmxILUtil::CheckOmxStructSizeAndVersion( + const_cast(apComponentParameterStructure), + sizeof(OMX_IMAGE_PARAM_PORTFORMATTYPE)))) + { + return omxRetValue; + } + + const OMX_IMAGE_PARAM_PORTFORMATTYPE *componentParameterStructure = static_cast(apComponentParameterStructure); + + if(OMX_IMAGE_CodingUnused == componentParameterStructure->eCompressionFormat) + { + if(OMX_COLOR_FormatUnused == componentParameterStructure->eColorFormat) + { + // Both Compression Format and Color can not be Unused at the same time. + return OMX_ErrorBadParameter; + } + + if(iParamImagePortFormat.eColorFormat != componentParameterStructure->eColorFormat) + { + if(KErrNotFound == iSupportedColorFormats.Find(componentParameterStructure->eColorFormat)) + { + return OMX_ErrorUnsupportedSetting; + } + else + { + iParamImagePortFormat.eColorFormat = componentParameterStructure->eColorFormat; + } + aUpdateProcessingFunction = ETrue; + } + } + else + { + // Data is compressed. Change relevant variables. + if (OMX_COLOR_FormatUnused != componentParameterStructure->eColorFormat) + { + // Both Compression Format and Color can not be Unused at the same time. + return OMX_ErrorBadParameter; + } + + if (iParamImagePortFormat.eCompressionFormat != componentParameterStructure->eCompressionFormat) + { + if(KErrNotFound == iSupportedImageFormats.Find(componentParameterStructure->eCompressionFormat)) + { + return OMX_ErrorUnsupportedSetting; + } + else + { + iParamImagePortFormat.eCompressionFormat = componentParameterStructure->eCompressionFormat; + aUpdateProcessingFunction = ETrue; + } + } + } + break; + } + default: + __ASSERT_ALWAYS(EFalse, User::Panic(KOmxILImagePortPanicCategory, 1)); + }; + return OMX_ErrorNone; + } + +const RArray& COmxILImagePortImpl::GetSupportedImageFormats() const + { + return iSupportedImageFormats; + } + +const RArray& COmxILImagePortImpl::GetSupportedColorFormats() const + { + return iSupportedColorFormats; + } + +const OMX_IMAGE_PARAM_PORTFORMATTYPE& COmxILImagePortImpl::GetParamImagePortFormat() const + { + return iParamImagePortFormat; + } + +RArray& COmxILImagePortImpl::GetSupportedImageFormats() + { + return iSupportedImageFormats; + } + +RArray& COmxILImagePortImpl::GetSupportedColorFormats() + { + return iSupportedColorFormats; + } + +OMX_IMAGE_PARAM_PORTFORMATTYPE& COmxILImagePortImpl::GetParamImagePortFormat() + { + return iParamImagePortFormat; + } +