sl@0: /* sl@0: * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: Header file for S60 display posting API sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef __POSTING_SURFACE_H__ sl@0: #define __POSTING_SURFACE_H__ sl@0: sl@0: //- Include Files ---------------------------------------------------------- sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: //- Namespace --------------------------------------------------------------- sl@0: sl@0: //- Constants --------------------------------------------------------------- sl@0: sl@0: ///Little endian bit mask sl@0: const TUint KPostFormatLE = 0x01000000; sl@0: ///Big endian bit mask sl@0: const TUint KPostFormatBE = 0x02000000; sl@0: ///Color range 0-255 bit mask sl@0: const TUint KPostColorRange0 = 0x00000010; sl@0: ///Color range 16-235 bit mask sl@0: const TUint KPostColorRange1 = 0x00000020; sl@0: ///ITU-R BT.709-5 standard bit mask sl@0: const TUint KPost709 = 0x00000100; sl@0: ///ITU-R BT.601-5 standard bit mask sl@0: const TUint KPost601 = 0x00000200; sl@0: ///Posting RGB format RGB565 bit mask sl@0: const TUint KPostRGB565 = 0x00000001; sl@0: ///Posting RGB format RGB888 (24bit) bit mask sl@0: const TUint KPostRGB888 = 0x00000002; sl@0: ///Posting RGB format RGBx888 (32bit) bit mask sl@0: const TUint KPostRGBx888 = 0x00000004; sl@0: ///Posting YUV 420 Planar format sl@0: const TUint KPostYUV420Planar= 0x00001000; sl@0: ///Platform specific sl@0: const TUint KPostPlatformDependent = 0x10000000; sl@0: sl@0: //- Forward Declarations ---------------------------------------------------- sl@0: sl@0: class CPostingSurface; sl@0: class TPostingBuff; sl@0: sl@0: //- Class Definitions ------------------------------------------------------- sl@0: /** sl@0: * CPostingSurface sl@0: * sl@0: * Contains core data structures and member functions in the display posting API sl@0: */ sl@0: class CPostingSurface : public CBase sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: * TPostingFormat sl@0: * sl@0: * Specifies the data format. Also sampling pattern, data layout and YUV-RGB conversion coefficients for YUV data. sl@0: */ sl@0: enum TPostingFormat sl@0: { sl@0: EFormatInvalidValue = 0x00000000, //Initialisation value, do not use sl@0: ERgb16bit565Le = KPostRGB565 | KPostFormatLE, sl@0: ERgb24bit888Le = KPostRGB888 | KPostFormatLE, sl@0: ERgb32bit888Le = KPostRGBx888 | KPostFormatLE, sl@0: EYuv422LeBt709Range0 = KPost709 | KPostFormatLE | KPostColorRange0, sl@0: EYuv422LeBt709Range1 = KPost709 | KPostFormatLE | KPostColorRange1, sl@0: EYuv422BeBt709Range0 = KPost709 | KPostFormatBE | KPostColorRange0, sl@0: EYuv422BeBt709Range1 = KPost709 | KPostFormatBE | KPostColorRange1, sl@0: EYuv422LeBt601Range0 = KPost601 | KPostFormatLE | KPostColorRange0, sl@0: EYuv422LeBt601Range1 = KPost601 | KPostFormatLE | KPostColorRange1, sl@0: EYuv422BeBt601Range0 = KPost601 | KPostFormatBE | KPostColorRange0, sl@0: EYuv422BeBt601Range1 = KPost601 | KPostFormatBE | KPostColorRange1, sl@0: EYuv420PlanarBt709Range0 = KPost709 | KPostYUV420Planar | KPostColorRange0, sl@0: EYuv420PlanarBt709Range1 = KPost709 | KPostYUV420Planar | KPostColorRange1, sl@0: EYuv420PlanarBt601Range0 = KPost601 | KPostYUV420Planar | KPostColorRange0, sl@0: EYuv420PlanarBt601Range1 = KPost601 | KPostYUV420Planar | KPostColorRange1, sl@0: EYuvPlatformDependent = KPostPlatformDependent, sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * TRotationType sl@0: * sl@0: * Rotation types as defined in [MDF Video Common Elements] sl@0: */ sl@0: enum TRotationType sl@0: { sl@0: ENoRotation = 0x00000000, //0Deg sl@0: ERotate90ClockWise = 0x00000001, //90Deg sl@0: ERotate180 = 0x00000002, //180Deg sl@0: ERotate90AntiClockWise = 0x00000004, //270Deg sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * TPostingBuffering sl@0: * sl@0: * Bitmask value describing how the display posting is done and how the frames should be handled. sl@0: */ sl@0: enum TPostingBuffering sl@0: { sl@0: EBufferingInvalid = 0x00000000, //Initialisation value, do not use sl@0: ESingleBuffering = 0x00000004, sl@0: EDoubleBuffering = 0x00000001, sl@0: ETripleBuffering = 0x00000002, sl@0: EProgressiveFrames = 0x00000010, sl@0: EInterlacedFrames = 0x00000020, sl@0: EDisAllowFrameSkip = 0x00000100, sl@0: EAllowFrameSkip = 0x00000200, sl@0: EInternalBuffers = 0x00001000, sl@0: EExternalBuffers = 0x00002000, sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * TPostageUsageHint sl@0: * sl@0: * Tells the intended usage of the posting surface. The display driver uses these hints to prioritize the HW usage and route content. sl@0: * Vendor specific meanings may be added to the end of the enum space. sl@0: */ sl@0: enum TPostingUsageHint sl@0: { sl@0: EUsageInvalid = 0x00000000, //Initialisation value, do not use sl@0: EGeneric = 0x00000001, sl@0: E3D = 0x00000002, sl@0: EVideoPlayback = 0x00000004, sl@0: EVideoCapture = 0x00000008, sl@0: EViewfinder = 0x00000010, sl@0: EStillImage = 0x00000011, sl@0: EVendorSpecific = 0x80000000, sl@0: }; sl@0: sl@0: /** sl@0: * TPostingCapab sl@0: * sl@0: * Describes the Posting buffer size restrictions and posting processing capabilities. sl@0: */ sl@0: class TPostingCapab sl@0: { sl@0: public: sl@0: sl@0: inline TPostingCapab(); sl@0: sl@0: public: sl@0: /** Maximum buffer size in bytes */ sl@0: TUint iMaxSourceSize; sl@0: sl@0: /** Hw limits for source size, normally cannot allocated whole this size */ sl@0: TSize iMaxPixelSize; sl@0: sl@0: /** Bit mask of supported rotations */ sl@0: TUint iSupportedRotations; sl@0: sl@0: /** ETrue when horizontal mirroring is supported */ sl@0: TBool iSupportsMirroring; sl@0: sl@0: /** ETrue when rational scales is supported */ sl@0: TBool iSupportsScaling; sl@0: sl@0: /** ETrue when brightness tuning is supported */ sl@0: TBool iSupportsBrightnessControl; sl@0: sl@0: /** ETrue when contrast tuning is supported */ sl@0: TBool iSupportsContrastControl; sl@0: sl@0: /** Bitmask (TPostingBuffering) */ sl@0: TUint iSupportedPostingBuffering; sl@0: sl@0: /** Bitmask (TBufferType) */ sl@0: TUint iSupportedBufferTypes; sl@0: }; sl@0: sl@0: enum TBufferType sl@0: { sl@0: EBufferTypeInvalid = 0x00000000, //Initialisation value, do not use sl@0: EStandardBuffer = 0x00000001, //Direct address sl@0: EChunkBuffer = 0x00000002,//RChunk handle sl@0: EExternalBuffer = 0x00000004,//External buffers sl@0: }; sl@0: sl@0: /** sl@0: * TPostingSourceParams sl@0: * sl@0: * Describes the source content and buffering parameters. These values are fixed in the initialization phase. sl@0: */ sl@0: class TPostingSourceParams sl@0: { sl@0: public: sl@0: inline TPostingSourceParams(); sl@0: sl@0: public: sl@0: /** Buffering usage mode (TPostingBuffering) */ sl@0: TUint iPostingBuffering; sl@0: sl@0: /** Indicates the type of buffer requested */ sl@0: TBufferType iBufferType; sl@0: sl@0: /** Purpose of buffer (TPostingUsageHint) */ sl@0: TUint iPostingUsage; sl@0: sl@0: /** Source resolution. Values must be even */ sl@0: TSize iSourceImageSize; sl@0: sl@0: /** Source's pixel format */ sl@0: TPostingFormat iPostingFormat; sl@0: sl@0: /** Source pixel aspect ratio (width), Scaling factor = Numerator/Denominator. Tv out only */ sl@0: TUint16 iPixelAspectRatioNum; sl@0: sl@0: /** Source pixel aspect ratio (width) */ sl@0: TUint16 iPixelAspectRatioDenom; sl@0: sl@0: /** sl@0: * ETrue when copy protection enabled sl@0: * indicates if the content has copy protection restrictions. true: Restricted sl@0: */ sl@0: TBool iContentCopyRestricted; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * TPostingParams sl@0: * sl@0: * Speficies window properties and required processing types for the posting buffer before it can be displayed on the screen. sl@0: */ sl@0: class TPostingParams sl@0: { sl@0: public: sl@0: sl@0: inline TPostingParams(); sl@0: sl@0: public: sl@0: /** Size and position of the rectangle on phone's display. Even. Ui-orientation parameters. sl@0: * Does not affect Tv-out sl@0: */ sl@0: TRect iDisplayedRect; sl@0: sl@0: /** Output size in pixels, defines scaling. Relative to iDisplayedRect and must not sl@0: * exceed those boundaries sl@0: */ sl@0: TRect iScaleToRect; sl@0: sl@0: /** Required cropping for the content before applying other processing. Even. sl@0: * This is <= iSourceImageSize. This is Tv-out crop too sl@0: */ sl@0: TRect iInputCrop; sl@0: sl@0: /** ETrue when horizontal mirroring. Does not affect Tv-out */ sl@0: TBool iMirror; sl@0: /** Orientation of content compared to symbian videobuffer. Does not affect Tv-out */ sl@0: TRotationType iRotation; sl@0: sl@0: /** Brightness value on screen, [-100,100]%, may be ignored by the driver */ sl@0: TInt16 iBrightness; sl@0: sl@0: /** Contrast value on screen, [-100,100]% */ sl@0: TInt16 iContrast; sl@0: sl@0: /** Defined background color. Give in same format what symbian videobuffer currently is */ sl@0: TRgb iBackGround; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * TPostingBuff sl@0: * sl@0: * Contains information about the posting buffer. sl@0: */ sl@0: class TPostingBuff sl@0: { sl@0: public: sl@0: /** @return EBufferTypeInvalid or EChunkBuffer (iType) */ sl@0: IMPORT_C virtual TBufferType GetType(); sl@0: sl@0: /** @return Direct address of buffer (0,0) (iBuffer) */ sl@0: IMPORT_C virtual TAny* GetBuffer(); sl@0: sl@0: /** @return buffer size in pixels */ sl@0: IMPORT_C virtual TSize GetSize(); sl@0: sl@0: /** @return scanline length in bytes (width*bytes_per_pixel + some_offset) */ sl@0: IMPORT_C virtual TUint GetStride(); sl@0: sl@0: protected: sl@0: /** Hidden constructor, user should never use this */ sl@0: IMPORT_C TPostingBuff(); sl@0: sl@0: protected: sl@0: /** Type of this TPostingBuff */ sl@0: TBufferType iType; sl@0: sl@0: /** Pointer to buffer */ sl@0: TAny* iBuffer; sl@0: sl@0: /** Size of frame in pixels */ sl@0: TSize iSize; sl@0: sl@0: /** Scanline length in bytes (width*bytes_per_pixel + some_offset) */ sl@0: TUint iStride; sl@0: }; sl@0: sl@0: /** sl@0: * TPostingBuffExt sl@0: * sl@0: * Extension for TPostingBuff class. Allows external buffers to be set. sl@0: */ sl@0: class TPostingBuffExt : public TPostingBuff sl@0: { sl@0: public: sl@0: ///Set pointer to external buffer sl@0: IMPORT_C virtual void SetBuffer(TAny* aBuffer); sl@0: ///Set size of buffer in pixels sl@0: IMPORT_C virtual void SetSize(TSize aSize); sl@0: ///Set scanline length in bytes sl@0: IMPORT_C virtual void SetStride(TUint aStride); sl@0: protected: sl@0: ///Hidden constructor, user should never use this sl@0: IMPORT_C TPostingBuffExt(); sl@0: }; sl@0: sl@0: /** sl@0: * TPostingBufferChunk sl@0: * sl@0: * the chunk buffer should be requested by the client if the client application must pass the buffer across a process boundary. sl@0: */ sl@0: class TPostingBufferChunk : public TPostingBuff sl@0: { sl@0: public: sl@0: /** @return Handle to DChunk (iChunk) */ sl@0: IMPORT_C virtual RChunk GetChunk(); sl@0: sl@0: /** @return buffer start address offset in chunk, (iOffsetInChunk) */ sl@0: IMPORT_C virtual TUint GetOffsetInChunk(); sl@0: sl@0: protected: sl@0: /** Hidden constructor */ sl@0: IMPORT_C TPostingBufferChunk(); sl@0: sl@0: protected: sl@0: /** Handle to DChunk */ sl@0: RChunk iChunk; sl@0: sl@0: /** Offset in chunk, to first pixel */ sl@0: TUint iOffsetInChunk; sl@0: }; sl@0: sl@0: public: sl@0: /** Object destructor */ sl@0: virtual ~CPostingSurface(){}; sl@0: sl@0: /** sl@0: * Initialises API for given parameters, and reserving posting for user (limited amount). sl@0: * If all success and aSource&aDest are filled correctly, posting is ready to use. sl@0: * @param aSource Source buffer information. sl@0: * @param aDest Destination parameters, @see CPostingSurface::SetPostingParameters sl@0: * @return Leaves when failed, with standard symbian error code sl@0: */ sl@0: virtual void InitializeL(const TPostingSourceParams& aSource, const TPostingParams& aDest) = 0; sl@0: sl@0: /** sl@0: * Returns posting API provided properties to parameter sl@0: * @param aCaps Supported features, filled by driver sl@0: * @return KErrNone if success sl@0: */ sl@0: virtual void GetCapabilities(TPostingCapab& aCaps) = 0; sl@0: sl@0: /** sl@0: * Queries the underlying implementation about its capability to process proposed input format. sl@0: * @param aFormat Format what to be asked. sl@0: * @return ETrue when aFormat is supported, otherwise EFalse sl@0: */ sl@0: virtual TBool FormatSupported(TPostingFormat aFormat) = 0; sl@0: sl@0: /** sl@0: * Asynchronous freeing of reservation of posting. sl@0: * @param aComplete -parameter is status of destroying, driver completes it when complete sl@0: */ sl@0: virtual void Destroy ( TRequestStatus& aComplete)= 0; sl@0: sl@0: /** sl@0: * Synchronic version of Destroy(TRequestStatus& aComplete), sl@0: * Note, this method can take same time what previous version takes sl@0: */ sl@0: virtual void Destroy() = 0; sl@0: sl@0: /** sl@0: * Starts a wait for next free buffer sl@0: * It is allowed for an application to wait and acquire sl@0: * two or more buffers before actually posting the buffers. sl@0: * However, only one wait for next free buffer can be active at the time (!). sl@0: * @param aComplete Request to be complete when next buffer is available. sl@0: * @return KErrNone if success sl@0: */ sl@0: virtual TInt WaitForNextBuffer(TRequestStatus& aComplete) = 0; sl@0: sl@0: /** sl@0: * Gets the next free buffer (must have been waited with WaitForNextBuffer() sl@0: * for before calling this!). sl@0: * @return Next available buffer settings for user sl@0: */ sl@0: virtual TPostingBuff* NextBuffer() = 0; sl@0: sl@0: /** Cancels the wait for the next free buffer. Can be ingnored by driver */ sl@0: virtual TInt CancelBuffer() = 0; sl@0: sl@0: /** sl@0: * Posts buffer previously got from the API. sl@0: * @param aBuffer Buffer object where driver to continues updating sl@0: * @return KErrNone if success sl@0: */ sl@0: virtual TInt PostBuffer(TPostingBuff* aBuffer) = 0; sl@0: sl@0: /** sl@0: * This function can be used to change window sl@0: * properties and required processing types for the posting sl@0: * buffer before it can be displayed on the screen. sl@0: * Perhaps some limititations of parameter change can exists, then this fails. sl@0: * @param aParams New destination settings of Posting sl@0: * @return KErrNone if success sl@0: */ sl@0: virtual TInt SetPostingParameters(const TPostingParams& aParams) = 0; sl@0: sl@0: /** sl@0: * This function can be used to directly pass the DSA-region sl@0: * of the internal display down to this API if DSA-region is sl@0: * clipped in some way. Some implementations may support none: sl@0: * some may support only one or few clipping regions. sl@0: * In those cases the return value can be KErrNotSupported. sl@0: * If clipping region is supported, no image will be drawn outside sl@0: * of the clipping region. sl@0: * If iDisplayedRect is set to an empty region, then the posting is not sl@0: * active for the internal display. However, if display posting is still done, sl@0: * external display may get updated. Default: no clipping is done, sl@0: * but internal display is enabled. sl@0: * @param aClipRegion Rectangles of current DSA. sl@0: * @return KErrNone if success sl@0: */ sl@0: virtual TInt SetClipRegion(const TRegion& aClipRegion) = 0; sl@0: }; sl@0: sl@0: //- Inline Functions -------------------------------------------------------- sl@0: sl@0: #include "posting_surface.inl" sl@0: sl@0: #endif //__POSTING_SURFACE_H__ sl@0: sl@0: // End of File