os/mm/mmswadaptation/videorenderer/src/videoframebuffer.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmswadaptation/videorenderer/src/videoframebuffer.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,162 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <e32std.h>
    1.20 +#include "videoframebuffer.h"
    1.21 +
    1.22 +const TInt TVideoFrameBuffer::iOffset = _FOFF(TVideoFrameBuffer, iDblQueLink);
    1.23 +
    1.24 +/**
    1.25 +Constructor
    1.26 +
    1.27 +@publishedPartner
    1.28 +@prototype 
    1.29 +@param aFormat Data format for the buffer.
    1.30 +@param aStride Stride for the buffer, i.e. the number of bytes from the start 
    1.31 +				of one pixel row to the next.
    1.32 +@param aBufferId Buffer identifier, set by the buffer allocator. Buffer IDs 
    1.33 +				are used to identify buffers in e.g. buffer rendering notifications.
    1.34 +@param aChunk The chunk where the buffer is located. Note that the TVideoFrame
    1.35 +				Buffer does not take ownership of the RChunk.
    1.36 +@param aOffsetInChunk Offset from the beginning of the chunk for this buffer, in bytes.
    1.37 +*/
    1.38 +EXPORT_C TVideoFrameBuffer::TVideoFrameBuffer(const TUncompressedVideoFormat& aFormat, 
    1.39 +												TInt aStride, 
    1.40 +												TInt aBufferId, 
    1.41 +												const RChunk& aChunk, 
    1.42 +												TInt aOffsetInChunk)
    1.43 +: iFormat(aFormat), iStride(aStride), iBufferId(aBufferId), iChunk(aChunk), iOffsetInChunk(aOffsetInChunk)
    1.44 +	{
    1.45 +	}
    1.46 +
    1.47 +/**
    1.48 +Returns the data format of the buffer. For YUV formats, typically only 
    1.49 +TUncompressedVideoFormat.iYuvFormat.iDataLayout and iPattern are valid.
    1.50 +
    1.51 +@publishedPartner
    1.52 +@prototype 
    1.53 +@return The data format of the buffer.
    1.54 +*/
    1.55 +EXPORT_C TUncompressedVideoFormat TVideoFrameBuffer::Format() const
    1.56 +	{
    1.57 +	return iFormat;
    1.58 +	}
    1.59 +
    1.60 +/**
    1.61 +Returns the stride of the buffer. This is the number of bytes from the start 
    1.62 +of one pixel row to the next. The stride is commonly equal to bytes_per_pixel*width, 
    1.63 +but can be larger if the buffer requires padding. With planar YUV data the 
    1.64 +stride refers to luminance (Y) stride. Chrominance (U & V) stride is iStride/2.
    1.65 +
    1.66 +@publishedPartner
    1.67 +@prototype 
    1.68 +@return The stride of the buffer.
    1.69 +*/
    1.70 +EXPORT_C TUint TVideoFrameBuffer::Stride() const
    1.71 +	{
    1.72 +	return iStride;
    1.73 +	}
    1.74 +
    1.75 +/**
    1.76 +Returns the buffer identifier of the buffer. Buffer IDs are used to identify buffers.
    1.77 +
    1.78 +@publishedPartner
    1.79 +@prototype 
    1.80 +@return The buffer id of the buffer.
    1.81 +*/
    1.82 +EXPORT_C TInt TVideoFrameBuffer::BufferId() const
    1.83 +	{
    1.84 +	return iBufferId;
    1.85 +	}
    1.86 +
    1.87 +/**
    1.88 +Returns the RChunk where the buffer is located. The RChunk can be shared 
    1.89 +between several TVideoFrameBuffers.
    1.90 +
    1.91 +@publishedPartner
    1.92 +@prototype 
    1.93 +@return The RChunk where the buffer is located.
    1.94 +*/
    1.95 +EXPORT_C const RChunk& TVideoFrameBuffer::Chunk() const
    1.96 +	{
    1.97 +	return iChunk;
    1.98 +	}
    1.99 +
   1.100 +/**
   1.101 +Returns a pointer to buffer data as mapped to the current process’s address space.
   1.102 +
   1.103 +@publishedPartner
   1.104 +@prototype 
   1.105 +@return A pointer to the buffer data.
   1.106 +*/
   1.107 +EXPORT_C TUint8* TVideoFrameBuffer::Buffer() const
   1.108 +	{
   1.109 +	return iChunk.Base() + iOffsetInChunk;
   1.110 +	}
   1.111 +
   1.112 +/**
   1.113 +Returns the buffer status.
   1.114 +
   1.115 +@internalComponent
   1.116 +@return The buffer status.
   1.117 +*/
   1.118 +TVideoFrameBuffer::TBufferStatus TVideoFrameBuffer::BufferStatus() const
   1.119 +	{
   1.120 +	return iStatus;
   1.121 +	}
   1.122 +
   1.123 +/**
   1.124 +Set buffer status.
   1.125 +
   1.126 +@internalComponent
   1.127 +@param aStatus Buffer status set by video renderer
   1.128 +*/
   1.129 +void TVideoFrameBuffer::SetBufferStatus(TVideoFrameBuffer::TBufferStatus aStatus)
   1.130 +	{
   1.131 +	iStatus = aStatus;
   1.132 +	}
   1.133 +
   1.134 +/**
   1.135 +Returns the queue link for use by video renderer.
   1.136 +
   1.137 +@internalComponent
   1.138 +@return A reference to the queue link
   1.139 +*/
   1.140 +TDblQueLink& TVideoFrameBuffer::DblQueLink()
   1.141 +	{
   1.142 +	return iDblQueLink;
   1.143 +	}
   1.144 +
   1.145 +/**
   1.146 +Set presentation time.
   1.147 +
   1.148 +@internalComponent
   1.149 +@param aTime Presentation time
   1.150 +*/
   1.151 +void TVideoFrameBuffer::SetPresentationTime(const TTime& aTime)
   1.152 +	{
   1.153 +	iPresentationTime = aTime;
   1.154 +	}
   1.155 +
   1.156 +/**
   1.157 +Returns presentation time.
   1.158 +
   1.159 +@internalComponent
   1.160 +@return Presentation time
   1.161 +*/
   1.162 +TTime TVideoFrameBuffer::PresentationTime() const
   1.163 +	{
   1.164 +	return iPresentationTime;
   1.165 +	}