os/mm/mm_plat/display_posting_api/inc/Posting_Surface.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mm_plat/display_posting_api/inc/Posting_Surface.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,466 @@
     1.4 +/*
     1.5 +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:     Header file for S60 display posting API
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +
    1.24 +
    1.25 +#ifndef __POSTING_SURFACE_H__
    1.26 +#define __POSTING_SURFACE_H__
    1.27 +
    1.28 +//- Include Files  ----------------------------------------------------------
    1.29 +
    1.30 +#include <e32base.h>
    1.31 +#include <e32cmn.h>
    1.32 +#include <gdi.h>
    1.33 +
    1.34 +//- Namespace ---------------------------------------------------------------
    1.35 +
    1.36 +//- Constants ---------------------------------------------------------------
    1.37 +
    1.38 +///Little endian bit mask
    1.39 +const TUint KPostFormatLE    = 0x01000000;
    1.40 +///Big endian bit mask
    1.41 +const TUint KPostFormatBE    = 0x02000000;
    1.42 +///Color range 0-255 bit mask
    1.43 +const TUint KPostColorRange0 = 0x00000010;
    1.44 +///Color range 16-235 bit mask
    1.45 +const TUint KPostColorRange1 = 0x00000020;
    1.46 +///ITU-R BT.709-5 standard bit mask
    1.47 +const TUint KPost709         = 0x00000100;
    1.48 +///ITU-R BT.601-5 standard bit mask
    1.49 +const TUint KPost601         = 0x00000200;
    1.50 +///Posting RGB format RGB565 bit mask
    1.51 +const TUint KPostRGB565      = 0x00000001;
    1.52 +///Posting RGB format RGB888 (24bit) bit mask
    1.53 +const TUint KPostRGB888      = 0x00000002;
    1.54 +///Posting RGB format RGBx888 (32bit) bit mask
    1.55 +const TUint KPostRGBx888     = 0x00000004;
    1.56 +///Posting YUV 420 Planar format
    1.57 +const TUint KPostYUV420Planar= 0x00001000;
    1.58 +///Platform specific
    1.59 +const TUint KPostPlatformDependent = 0x10000000;
    1.60 +
    1.61 +//- Forward Declarations ----------------------------------------------------
    1.62 +
    1.63 +class CPostingSurface;
    1.64 +class TPostingBuff;
    1.65 +
    1.66 +//- Class Definitions -------------------------------------------------------
    1.67 +/**
    1.68 +*  CPostingSurface
    1.69 +*
    1.70 +*  Contains core data structures and member functions in the display posting API
    1.71 +*/
    1.72 +class CPostingSurface : public CBase
    1.73 +{
    1.74 +public:
    1.75 +
    1.76 +    /**
    1.77 +    *  TPostingFormat
    1.78 +    *
    1.79 +    *  Specifies the data format. Also sampling pattern, data layout and YUV-RGB conversion coefficients for YUV data.
    1.80 +    */
    1.81 +    enum TPostingFormat
    1.82 +    {
    1.83 +            EFormatInvalidValue   = 0x00000000,     //Initialisation value, do not use
    1.84 +            ERgb16bit565Le        = KPostRGB565  | KPostFormatLE,
    1.85 +            ERgb24bit888Le        = KPostRGB888  | KPostFormatLE,
    1.86 +            ERgb32bit888Le        = KPostRGBx888 | KPostFormatLE,
    1.87 +            EYuv422LeBt709Range0  = KPost709     | KPostFormatLE | KPostColorRange0,
    1.88 +            EYuv422LeBt709Range1  = KPost709     | KPostFormatLE | KPostColorRange1,
    1.89 +            EYuv422BeBt709Range0  = KPost709     | KPostFormatBE | KPostColorRange0,
    1.90 +            EYuv422BeBt709Range1  = KPost709     | KPostFormatBE | KPostColorRange1,
    1.91 +            EYuv422LeBt601Range0  = KPost601     | KPostFormatLE | KPostColorRange0,
    1.92 +            EYuv422LeBt601Range1  = KPost601     | KPostFormatLE | KPostColorRange1,
    1.93 +            EYuv422BeBt601Range0  = KPost601     | KPostFormatBE | KPostColorRange0,
    1.94 +            EYuv422BeBt601Range1  = KPost601     | KPostFormatBE | KPostColorRange1,
    1.95 +            EYuv420PlanarBt709Range0 = KPost709     | KPostYUV420Planar | KPostColorRange0,
    1.96 +            EYuv420PlanarBt709Range1 = KPost709     | KPostYUV420Planar | KPostColorRange1,
    1.97 +            EYuv420PlanarBt601Range0 = KPost601     | KPostYUV420Planar | KPostColorRange0,
    1.98 +            EYuv420PlanarBt601Range1 = KPost601     | KPostYUV420Planar | KPostColorRange1,
    1.99 +            EYuvPlatformDependent    = KPostPlatformDependent,
   1.100 +            };
   1.101 +
   1.102 +
   1.103 +    /**
   1.104 +    *  TRotationType
   1.105 +    *
   1.106 +    *  Rotation types as defined in [MDF Video Common Elements]
   1.107 +    */
   1.108 +    enum TRotationType
   1.109 +    {
   1.110 +            ENoRotation            = 0x00000000, //0Deg
   1.111 +            ERotate90ClockWise     = 0x00000001, //90Deg
   1.112 +            ERotate180             = 0x00000002, //180Deg
   1.113 +            ERotate90AntiClockWise = 0x00000004, //270Deg
   1.114 +            };
   1.115 +
   1.116 +
   1.117 +    /**
   1.118 +    *  TPostingBuffering
   1.119 +    *
   1.120 +    *  Bitmask value describing how the display posting is done and how the frames should be handled.
   1.121 +    */
   1.122 +    enum TPostingBuffering
   1.123 +    {
   1.124 +            EBufferingInvalid  = 0x00000000,    //Initialisation value, do not use
   1.125 +            ESingleBuffering   = 0x00000004,
   1.126 +            EDoubleBuffering   = 0x00000001,
   1.127 +            ETripleBuffering   = 0x00000002,
   1.128 +            EProgressiveFrames = 0x00000010,
   1.129 +            EInterlacedFrames  = 0x00000020,
   1.130 +            EDisAllowFrameSkip = 0x00000100,
   1.131 +            EAllowFrameSkip    = 0x00000200,
   1.132 +            EInternalBuffers   = 0x00001000,
   1.133 +            EExternalBuffers   = 0x00002000,
   1.134 +            };
   1.135 +
   1.136 +
   1.137 +    /**
   1.138 +    *  TPostageUsageHint
   1.139 +    *
   1.140 +    *  Tells the intended usage of the posting surface. The display driver uses these hints to prioritize the HW usage and route content.
   1.141 +    *  Vendor specific meanings may be added to the end of the enum space.
   1.142 +    */
   1.143 +    enum TPostingUsageHint
   1.144 +    {
   1.145 +            EUsageInvalid   = 0x00000000,   //Initialisation value, do not use
   1.146 +            EGeneric        = 0x00000001,
   1.147 +            E3D             = 0x00000002,
   1.148 +            EVideoPlayback  = 0x00000004,
   1.149 +            EVideoCapture   = 0x00000008,
   1.150 +            EViewfinder     = 0x00000010,
   1.151 +            EStillImage     = 0x00000011,
   1.152 +            EVendorSpecific = 0x80000000,
   1.153 +            };
   1.154 +
   1.155 +    /**
   1.156 +    *  TPostingCapab
   1.157 +    *
   1.158 +    *  Describes the Posting buffer size restrictions and posting processing capabilities.
   1.159 +    */
   1.160 +    class TPostingCapab
   1.161 +    {
   1.162 +        public:
   1.163 +
   1.164 +            inline TPostingCapab();
   1.165 +
   1.166 +        public:
   1.167 +            /** Maximum buffer size in bytes */
   1.168 +            TUint iMaxSourceSize;
   1.169 +
   1.170 +            /** Hw limits for source size, normally cannot allocated whole this size */
   1.171 +            TSize iMaxPixelSize;
   1.172 +
   1.173 +            /** Bit mask of supported rotations */
   1.174 +            TUint iSupportedRotations;
   1.175 +
   1.176 +            /** ETrue when horizontal mirroring is supported */
   1.177 +            TBool iSupportsMirroring;
   1.178 +
   1.179 +            /** ETrue when rational scales is supported */
   1.180 +            TBool iSupportsScaling;
   1.181 +
   1.182 +            /** ETrue when brightness tuning is supported */
   1.183 +            TBool iSupportsBrightnessControl;
   1.184 +
   1.185 +            /** ETrue when contrast tuning is supported */
   1.186 +            TBool iSupportsContrastControl;
   1.187 +
   1.188 +            /** Bitmask (TPostingBuffering) */
   1.189 +            TUint iSupportedPostingBuffering;
   1.190 +
   1.191 +            /** Bitmask (TBufferType) */
   1.192 +            TUint iSupportedBufferTypes;
   1.193 +    };
   1.194 +
   1.195 +    enum TBufferType
   1.196 +    {
   1.197 +            EBufferTypeInvalid = 0x00000000,    //Initialisation value, do not use
   1.198 +            EStandardBuffer    = 0x00000001,    //Direct address
   1.199 +            EChunkBuffer       = 0x00000002,//RChunk handle
   1.200 +            EExternalBuffer    = 0x00000004,//External buffers
   1.201 +    };
   1.202 +
   1.203 +    /**
   1.204 +    *  TPostingSourceParams
   1.205 +    *
   1.206 +    *  Describes the source content and buffering parameters. These values are fixed in the initialization phase.
   1.207 +    */
   1.208 +    class TPostingSourceParams
   1.209 +    {
   1.210 +        public:
   1.211 +                inline TPostingSourceParams();
   1.212 +
   1.213 +        public:
   1.214 +            /** Buffering usage mode (TPostingBuffering) */
   1.215 +            TUint iPostingBuffering;
   1.216 +
   1.217 +            /** Indicates the type of buffer requested */
   1.218 +            TBufferType iBufferType;
   1.219 +
   1.220 +            /** Purpose of buffer (TPostingUsageHint) */
   1.221 +            TUint iPostingUsage;
   1.222 +
   1.223 +            /** Source resolution. Values must be even */
   1.224 +            TSize iSourceImageSize;
   1.225 +
   1.226 +            /** Source's pixel format */
   1.227 +            TPostingFormat iPostingFormat;
   1.228 +
   1.229 +            /** Source pixel aspect ratio (width), Scaling factor = Numerator/Denominator. Tv out only */
   1.230 +            TUint16 iPixelAspectRatioNum;
   1.231 +
   1.232 +            /** Source pixel aspect ratio (width) */
   1.233 +            TUint16 iPixelAspectRatioDenom;
   1.234 +
   1.235 +            /**
   1.236 +            *  ETrue when copy protection enabled
   1.237 +            *  indicates if the content has copy protection restrictions. true: Restricted
   1.238 +            */
   1.239 +            TBool iContentCopyRestricted;
   1.240 +    };
   1.241 +
   1.242 +
   1.243 +    /**
   1.244 +    *  TPostingParams
   1.245 +    *
   1.246 +    *  Speficies window properties and required processing types for the posting buffer before it can be displayed on the screen.
   1.247 +    */
   1.248 +    class TPostingParams
   1.249 +    {
   1.250 +        public:
   1.251 +
   1.252 +            inline TPostingParams();
   1.253 +
   1.254 +        public:
   1.255 +            /** Size and position of the rectangle on phone's display. Even. Ui-orientation parameters.
   1.256 +            *   Does not affect Tv-out
   1.257 +            */
   1.258 +            TRect iDisplayedRect;
   1.259 +
   1.260 +			/** Output size in pixels, defines scaling.  Relative to iDisplayedRect and must not
   1.261 +			*   exceed those boundaries
   1.262 +			*/
   1.263 +			TRect iScaleToRect;
   1.264 +        
   1.265 +            /** Required cropping for the content before applying other processing. Even.
   1.266 +            *   This is <= iSourceImageSize. This is Tv-out crop too
   1.267 +            */
   1.268 +            TRect iInputCrop;
   1.269 +
   1.270 +            /** ETrue when horizontal mirroring. Does not affect Tv-out */
   1.271 +            TBool iMirror;
   1.272 +            /** Orientation of content compared to symbian videobuffer. Does not affect Tv-out */
   1.273 +            TRotationType iRotation;
   1.274 +
   1.275 +            /** Brightness value on screen, [-100,100]%, may be ignored by the driver */
   1.276 +            TInt16 iBrightness;
   1.277 +
   1.278 +            /** Contrast value on screen, [-100,100]% */
   1.279 +            TInt16 iContrast;
   1.280 +
   1.281 +            /** Defined background color. Give in same format what symbian videobuffer currently is */
   1.282 +            TRgb iBackGround;
   1.283 +    };
   1.284 +
   1.285 +
   1.286 +    /**
   1.287 +    *  TPostingBuff
   1.288 +    *
   1.289 +    *  Contains information about the posting buffer.
   1.290 +    */
   1.291 +    class TPostingBuff
   1.292 +    {
   1.293 +        public:
   1.294 +            /** @return EBufferTypeInvalid or EChunkBuffer (iType) */
   1.295 +            IMPORT_C virtual TBufferType GetType();
   1.296 +
   1.297 +            /** @return Direct address of buffer (0,0) (iBuffer) */
   1.298 +            IMPORT_C virtual TAny* GetBuffer();
   1.299 +
   1.300 +            /** @return buffer size in pixels */
   1.301 +            IMPORT_C virtual TSize GetSize();
   1.302 +
   1.303 +            /** @return scanline length in bytes (width*bytes_per_pixel + some_offset) */
   1.304 +            IMPORT_C virtual TUint GetStride();
   1.305 +
   1.306 +        protected:
   1.307 +            /** Hidden constructor, user should never use this */
   1.308 +            IMPORT_C TPostingBuff();
   1.309 +
   1.310 +        protected:
   1.311 +            /** Type of this TPostingBuff */
   1.312 +            TBufferType iType;
   1.313 +
   1.314 +            /** Pointer to buffer */
   1.315 +            TAny*  iBuffer;
   1.316 +
   1.317 +            /** Size of frame in pixels */
   1.318 +            TSize  iSize;
   1.319 +
   1.320 +            /** Scanline length in bytes (width*bytes_per_pixel + some_offset) */
   1.321 +            TUint iStride;
   1.322 +    };
   1.323 +
   1.324 +    /**
   1.325 +	* TPostingBuffExt
   1.326 +	*
   1.327 +    * Extension for TPostingBuff class. Allows external buffers to be set.
   1.328 +    */
   1.329 +    class TPostingBuffExt : public TPostingBuff
   1.330 +        {
   1.331 +        public:
   1.332 +            ///Set pointer to external buffer
   1.333 +            IMPORT_C virtual void SetBuffer(TAny* aBuffer);
   1.334 +            ///Set size of buffer in pixels
   1.335 +            IMPORT_C virtual void SetSize(TSize aSize);
   1.336 +            ///Set scanline length in bytes
   1.337 +            IMPORT_C virtual void SetStride(TUint aStride);
   1.338 +        protected:
   1.339 +            ///Hidden constructor, user should never use this
   1.340 +            IMPORT_C TPostingBuffExt();
   1.341 +        };
   1.342 +
   1.343 +    /**
   1.344 +    *  TPostingBufferChunk
   1.345 +    *
   1.346 +    *  the chunk buffer should be requested by the client if the client application must pass the buffer across a process boundary.
   1.347 +    */
   1.348 +    class TPostingBufferChunk : public TPostingBuff
   1.349 +    {
   1.350 +        public:
   1.351 +            /** @return Handle to DChunk (iChunk) */
   1.352 +            IMPORT_C virtual RChunk GetChunk();
   1.353 +
   1.354 +            /** @return buffer start address offset in chunk, (iOffsetInChunk) */
   1.355 +            IMPORT_C virtual TUint GetOffsetInChunk();
   1.356 +
   1.357 +        protected:
   1.358 +            /** Hidden constructor */
   1.359 +            IMPORT_C TPostingBufferChunk();
   1.360 +
   1.361 +        protected:
   1.362 +            /** Handle to DChunk */
   1.363 +            RChunk iChunk;
   1.364 +
   1.365 +            /** Offset in chunk, to first pixel */
   1.366 +            TUint iOffsetInChunk;
   1.367 +    };
   1.368 +
   1.369 +    public:
   1.370 +    /** Object destructor */
   1.371 +    virtual ~CPostingSurface(){};
   1.372 +
   1.373 +    /**
   1.374 +    *   Initialises API for given parameters, and reserving posting for user (limited amount).
   1.375 +    *   If all success and aSource&aDest are filled correctly, posting is ready to use.
   1.376 +    *   @param  aSource  Source buffer information.
   1.377 +    *   @param  aDest    Destination parameters, @see CPostingSurface::SetPostingParameters
   1.378 +    *   @return Leaves when failed, with standard symbian error code
   1.379 +    */
   1.380 +    virtual void InitializeL(const TPostingSourceParams& aSource, const TPostingParams& aDest) = 0;
   1.381 +
   1.382 +    /**
   1.383 +    *  Returns posting API provided properties to parameter
   1.384 +    *  @param aCaps Supported features, filled by driver
   1.385 +    *  @return KErrNone if success
   1.386 +    */
   1.387 +    virtual void GetCapabilities(TPostingCapab& aCaps) = 0;
   1.388 +
   1.389 +    /**
   1.390 +    *  Queries the underlying implementation about its capability to process proposed input format.
   1.391 +    *  @param aFormat Format what to be asked.
   1.392 +    *  @return ETrue when aFormat is supported, otherwise EFalse
   1.393 +    */
   1.394 +    virtual TBool FormatSupported(TPostingFormat aFormat) = 0;
   1.395 +
   1.396 +    /**
   1.397 +    *  Asynchronous freeing of reservation of posting.
   1.398 +    *  @param  aComplete -parameter is status of destroying, driver completes it when complete
   1.399 +    */
   1.400 +    virtual void  Destroy ( TRequestStatus& aComplete)= 0;
   1.401 +
   1.402 +    /**
   1.403 +    *  Synchronic version of Destroy(TRequestStatus& aComplete),
   1.404 +    *  Note, this method can take same time what previous version takes
   1.405 +    */
   1.406 +    virtual void Destroy() = 0;
   1.407 +
   1.408 +    /**
   1.409 +    *  Starts a wait for next free buffer
   1.410 +    *  It is allowed for an application to wait and acquire
   1.411 +    *  two or more buffers before actually posting the buffers.
   1.412 +    *  However, only one wait for next free buffer can be active at the time (!).
   1.413 +    *  @param  aComplete  Request to be complete when next buffer is available.
   1.414 +    *  @return KErrNone if success
   1.415 +    */
   1.416 +    virtual TInt WaitForNextBuffer(TRequestStatus& aComplete) = 0;
   1.417 +
   1.418 +    /**
   1.419 +    *  Gets the next free buffer (must have been waited with WaitForNextBuffer()
   1.420 +    *  for before calling this!).
   1.421 +    *  @return  Next available buffer settings for user
   1.422 +    */
   1.423 +    virtual TPostingBuff* NextBuffer() = 0;
   1.424 +
   1.425 +    /** Cancels the wait for the next free buffer. Can be ingnored by driver */
   1.426 +    virtual TInt CancelBuffer() = 0;
   1.427 +
   1.428 +    /**
   1.429 +    *  Posts buffer previously got from the API.
   1.430 +    *  @param  aBuffer  Buffer object where driver to continues updating
   1.431 +    *  @return KErrNone if success
   1.432 +    */
   1.433 +    virtual TInt PostBuffer(TPostingBuff* aBuffer) = 0;
   1.434 +
   1.435 +    /**
   1.436 +    *  This function can be used to change window
   1.437 +    *  properties and required processing types for the posting
   1.438 +    *  buffer before it can be displayed on the screen.
   1.439 +    *  Perhaps some limititations of parameter change can exists, then this fails.
   1.440 +    *  @param   aParams  New destination settings of Posting
   1.441 +    *  @return  KErrNone if success
   1.442 +    */
   1.443 +    virtual TInt SetPostingParameters(const TPostingParams& aParams) = 0;
   1.444 +
   1.445 +    /**
   1.446 +    *  This function can be used to directly pass the DSA-region
   1.447 +    *  of the internal display down to this API if DSA-region is
   1.448 +    *  clipped in some way. Some implementations may support none:
   1.449 +    *  some may support only one or few clipping regions.
   1.450 +    *  In those cases the return value can be KErrNotSupported.
   1.451 +    *  If clipping region is supported, no image will be drawn outside
   1.452 +    *  of the clipping region.
   1.453 +    *  If iDisplayedRect is set to an empty region, then the posting is not
   1.454 +    *  active for the internal display. However, if display posting is still done,
   1.455 +    *  external display may get updated. Default: no clipping is done,
   1.456 +    *  but internal display is enabled.
   1.457 +    *  @param  aClipRegion  Rectangles of current DSA.
   1.458 +    *  @return  KErrNone if success
   1.459 +    */
   1.460 +    virtual TInt SetClipRegion(const TRegion& aClipRegion) = 0;
   1.461 +};
   1.462 +
   1.463 +//- Inline Functions --------------------------------------------------------
   1.464 +
   1.465 +#include "posting_surface.inl"
   1.466 +
   1.467 +#endif //__POSTING_SURFACE_H__
   1.468 +
   1.469 +// End of File