os/mm/mmswadaptation/videorenderer/src/videoframebuffer.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32std.h>
sl@0
    17
#include "videoframebuffer.h"
sl@0
    18
sl@0
    19
const TInt TVideoFrameBuffer::iOffset = _FOFF(TVideoFrameBuffer, iDblQueLink);
sl@0
    20
sl@0
    21
/**
sl@0
    22
Constructor
sl@0
    23
sl@0
    24
@publishedPartner
sl@0
    25
@prototype 
sl@0
    26
@param aFormat Data format for the buffer.
sl@0
    27
@param aStride Stride for the buffer, i.e. the number of bytes from the start 
sl@0
    28
				of one pixel row to the next.
sl@0
    29
@param aBufferId Buffer identifier, set by the buffer allocator. Buffer IDs 
sl@0
    30
				are used to identify buffers in e.g. buffer rendering notifications.
sl@0
    31
@param aChunk The chunk where the buffer is located. Note that the TVideoFrame
sl@0
    32
				Buffer does not take ownership of the RChunk.
sl@0
    33
@param aOffsetInChunk Offset from the beginning of the chunk for this buffer, in bytes.
sl@0
    34
*/
sl@0
    35
EXPORT_C TVideoFrameBuffer::TVideoFrameBuffer(const TUncompressedVideoFormat& aFormat, 
sl@0
    36
												TInt aStride, 
sl@0
    37
												TInt aBufferId, 
sl@0
    38
												const RChunk& aChunk, 
sl@0
    39
												TInt aOffsetInChunk)
sl@0
    40
: iFormat(aFormat), iStride(aStride), iBufferId(aBufferId), iChunk(aChunk), iOffsetInChunk(aOffsetInChunk)
sl@0
    41
	{
sl@0
    42
	}
sl@0
    43
sl@0
    44
/**
sl@0
    45
Returns the data format of the buffer. For YUV formats, typically only 
sl@0
    46
TUncompressedVideoFormat.iYuvFormat.iDataLayout and iPattern are valid.
sl@0
    47
sl@0
    48
@publishedPartner
sl@0
    49
@prototype 
sl@0
    50
@return The data format of the buffer.
sl@0
    51
*/
sl@0
    52
EXPORT_C TUncompressedVideoFormat TVideoFrameBuffer::Format() const
sl@0
    53
	{
sl@0
    54
	return iFormat;
sl@0
    55
	}
sl@0
    56
sl@0
    57
/**
sl@0
    58
Returns the stride of the buffer. This is the number of bytes from the start 
sl@0
    59
of one pixel row to the next. The stride is commonly equal to bytes_per_pixel*width, 
sl@0
    60
but can be larger if the buffer requires padding. With planar YUV data the 
sl@0
    61
stride refers to luminance (Y) stride. Chrominance (U & V) stride is iStride/2.
sl@0
    62
sl@0
    63
@publishedPartner
sl@0
    64
@prototype 
sl@0
    65
@return The stride of the buffer.
sl@0
    66
*/
sl@0
    67
EXPORT_C TUint TVideoFrameBuffer::Stride() const
sl@0
    68
	{
sl@0
    69
	return iStride;
sl@0
    70
	}
sl@0
    71
sl@0
    72
/**
sl@0
    73
Returns the buffer identifier of the buffer. Buffer IDs are used to identify buffers.
sl@0
    74
sl@0
    75
@publishedPartner
sl@0
    76
@prototype 
sl@0
    77
@return The buffer id of the buffer.
sl@0
    78
*/
sl@0
    79
EXPORT_C TInt TVideoFrameBuffer::BufferId() const
sl@0
    80
	{
sl@0
    81
	return iBufferId;
sl@0
    82
	}
sl@0
    83
sl@0
    84
/**
sl@0
    85
Returns the RChunk where the buffer is located. The RChunk can be shared 
sl@0
    86
between several TVideoFrameBuffers.
sl@0
    87
sl@0
    88
@publishedPartner
sl@0
    89
@prototype 
sl@0
    90
@return The RChunk where the buffer is located.
sl@0
    91
*/
sl@0
    92
EXPORT_C const RChunk& TVideoFrameBuffer::Chunk() const
sl@0
    93
	{
sl@0
    94
	return iChunk;
sl@0
    95
	}
sl@0
    96
sl@0
    97
/**
sl@0
    98
Returns a pointer to buffer data as mapped to the current process’s address space.
sl@0
    99
sl@0
   100
@publishedPartner
sl@0
   101
@prototype 
sl@0
   102
@return A pointer to the buffer data.
sl@0
   103
*/
sl@0
   104
EXPORT_C TUint8* TVideoFrameBuffer::Buffer() const
sl@0
   105
	{
sl@0
   106
	return iChunk.Base() + iOffsetInChunk;
sl@0
   107
	}
sl@0
   108
sl@0
   109
/**
sl@0
   110
Returns the buffer status.
sl@0
   111
sl@0
   112
@internalComponent
sl@0
   113
@return The buffer status.
sl@0
   114
*/
sl@0
   115
TVideoFrameBuffer::TBufferStatus TVideoFrameBuffer::BufferStatus() const
sl@0
   116
	{
sl@0
   117
	return iStatus;
sl@0
   118
	}
sl@0
   119
sl@0
   120
/**
sl@0
   121
Set buffer status.
sl@0
   122
sl@0
   123
@internalComponent
sl@0
   124
@param aStatus Buffer status set by video renderer
sl@0
   125
*/
sl@0
   126
void TVideoFrameBuffer::SetBufferStatus(TVideoFrameBuffer::TBufferStatus aStatus)
sl@0
   127
	{
sl@0
   128
	iStatus = aStatus;
sl@0
   129
	}
sl@0
   130
sl@0
   131
/**
sl@0
   132
Returns the queue link for use by video renderer.
sl@0
   133
sl@0
   134
@internalComponent
sl@0
   135
@return A reference to the queue link
sl@0
   136
*/
sl@0
   137
TDblQueLink& TVideoFrameBuffer::DblQueLink()
sl@0
   138
	{
sl@0
   139
	return iDblQueLink;
sl@0
   140
	}
sl@0
   141
sl@0
   142
/**
sl@0
   143
Set presentation time.
sl@0
   144
sl@0
   145
@internalComponent
sl@0
   146
@param aTime Presentation time
sl@0
   147
*/
sl@0
   148
void TVideoFrameBuffer::SetPresentationTime(const TTime& aTime)
sl@0
   149
	{
sl@0
   150
	iPresentationTime = aTime;
sl@0
   151
	}
sl@0
   152
sl@0
   153
/**
sl@0
   154
Returns presentation time.
sl@0
   155
sl@0
   156
@internalComponent
sl@0
   157
@return Presentation time
sl@0
   158
*/
sl@0
   159
TTime TVideoFrameBuffer::PresentationTime() const
sl@0
   160
	{
sl@0
   161
	return iPresentationTime;
sl@0
   162
	}