diff -r 71ca22bcf22a -r 5a06f39ad45b khronosfws/openmax_al/src/ledarray/xaledarrayitf.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/khronosfws/openmax_al/src/ledarray/xaledarrayitf.h Fri Apr 16 15:29:42 2010 +0300 @@ -0,0 +1,69 @@ +/* +* Copyright (c) 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: +* +*/ + +#ifndef XALEDARRAYITF_H +#define XALEDARRAYITF_H + +#include "openmaxalwrapper.h" +#include "xaglobals.h" +#ifdef _GSTREAMER_BACKEND_ +#include "XAAdaptationContextBase.h" +#endif +/** MACROS **/ +#define LED_COUNT 1 +#define PRIMARY_LED 0 +#define COLOR_MASK 1 + +/** TYPES **/ + +/** ENUMERATIONS **/ + +/** STRUCTURES **/ +/* Definition of XALEDArrayItf implementation */ +typedef struct XALEDArrayItfImpl_ +{ + /* parent interface */ + struct XALEDArrayItf_ itf; + /* pointer to self */ + struct XALEDArrayItfImpl_* self; + + /* variables */ + XAuint32 lightMask; + XAHSL color; + +#ifdef _GSTREAMER_BACKEND_ + /*Adaptation variables*/ + XAAdaptationBaseCtx *adapCtx; +#endif +} XALEDArrayItfImpl; + +/** METHODS **/ + +/* Base interface XALEDArrayItf implementation + *See API Specification for method documentation + */ +XAresult XALEDArrayItfImpl_ActivateLEDArray ( XALEDArrayItf self, XAuint32 lightMask ); +XAresult XALEDArrayItfImpl_IsLEDArrayActivated ( XALEDArrayItf self, XAuint32 * pLightMask ); +XAresult XALEDArrayItfImpl_SetColor ( XALEDArrayItf self, XAuint8 index, const XAHSL * pColor ); +XAresult XALEDArrayItfImpl_GetColor ( XALEDArrayItf self, XAuint8 index, XAHSL * pColor ); +/* XALEDArrayItfImpl -specific methods */ +#ifdef _GSTREAMER_BACKEND_ +XALEDArrayItfImpl* XALEDArrayItfImpl_Create( XAAdaptationBaseCtx *adapCtx ); +void XALEDArrayItfImpl_Free(XALEDArrayItfImpl* self); +#endif + +#endif /* XALEDARRAYITF_H */