Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "videoframebuffer.h"
19 const TInt TVideoFrameBuffer::iOffset = _FOFF(TVideoFrameBuffer, iDblQueLink);
26 @param aFormat Data format for the buffer.
27 @param aStride Stride for the buffer, i.e. the number of bytes from the start
28 of one pixel row to the next.
29 @param aBufferId Buffer identifier, set by the buffer allocator. Buffer IDs
30 are used to identify buffers in e.g. buffer rendering notifications.
31 @param aChunk The chunk where the buffer is located. Note that the TVideoFrame
32 Buffer does not take ownership of the RChunk.
33 @param aOffsetInChunk Offset from the beginning of the chunk for this buffer, in bytes.
35 EXPORT_C TVideoFrameBuffer::TVideoFrameBuffer(const TUncompressedVideoFormat& aFormat,
40 : iFormat(aFormat), iStride(aStride), iBufferId(aBufferId), iChunk(aChunk), iOffsetInChunk(aOffsetInChunk)
45 Returns the data format of the buffer. For YUV formats, typically only
46 TUncompressedVideoFormat.iYuvFormat.iDataLayout and iPattern are valid.
50 @return The data format of the buffer.
52 EXPORT_C TUncompressedVideoFormat TVideoFrameBuffer::Format() const
58 Returns the stride of the buffer. This is the number of bytes from the start
59 of one pixel row to the next. The stride is commonly equal to bytes_per_pixel*width,
60 but can be larger if the buffer requires padding. With planar YUV data the
61 stride refers to luminance (Y) stride. Chrominance (U & V) stride is iStride/2.
65 @return The stride of the buffer.
67 EXPORT_C TUint TVideoFrameBuffer::Stride() const
73 Returns the buffer identifier of the buffer. Buffer IDs are used to identify buffers.
77 @return The buffer id of the buffer.
79 EXPORT_C TInt TVideoFrameBuffer::BufferId() const
85 Returns the RChunk where the buffer is located. The RChunk can be shared
86 between several TVideoFrameBuffers.
90 @return The RChunk where the buffer is located.
92 EXPORT_C const RChunk& TVideoFrameBuffer::Chunk() const
98 Returns a pointer to buffer data as mapped to the current process’s address space.
102 @return A pointer to the buffer data.
104 EXPORT_C TUint8* TVideoFrameBuffer::Buffer() const
106 return iChunk.Base() + iOffsetInChunk;
110 Returns the buffer status.
113 @return The buffer status.
115 TVideoFrameBuffer::TBufferStatus TVideoFrameBuffer::BufferStatus() const
124 @param aStatus Buffer status set by video renderer
126 void TVideoFrameBuffer::SetBufferStatus(TVideoFrameBuffer::TBufferStatus aStatus)
132 Returns the queue link for use by video renderer.
135 @return A reference to the queue link
137 TDblQueLink& TVideoFrameBuffer::DblQueLink()
143 Set presentation time.
146 @param aTime Presentation time
148 void TVideoFrameBuffer::SetPresentationTime(const TTime& aTime)
150 iPresentationTime = aTime;
154 Returns presentation time.
157 @return Presentation time
159 TTime TVideoFrameBuffer::PresentationTime() const
161 return iPresentationTime;