os/kernelhwsrv/kernel/eka/include/drivers/soundsc.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2006-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 the License "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
// e32\include\drivers\soundsc.inl
sl@0
    15
// The kernel side inline header file for the shared chunk sound driver.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @internalTechnology
sl@0
    22
 @prototype
sl@0
    23
*/
sl@0
    24
sl@0
    25
// class TSndScTransfer	
sl@0
    26
sl@0
    27
inline TInt TSndScTransfer::GetNotStartedLen()
sl@0
    28
	{return(iEndOffset-iStartedOffset);}
sl@0
    29
sl@0
    30
inline TInt TSndScTransfer::GetStartOffset()
sl@0
    31
	{return(iStartedOffset);}
sl@0
    32
sl@0
    33
inline TInt TSndScTransfer::GetLengthTransferred()
sl@0
    34
	{return(iLengthTransferred);}
sl@0
    35
	
sl@0
    36
// class TSoundScRequest	
sl@0
    37
	
sl@0
    38
inline TSoundScRequest::TSoundScRequest()
sl@0
    39
	{iNext=NULL; iClientRequest=0;}	
sl@0
    40
	
sl@0
    41
// class TSoundScPlayRequest
sl@0
    42
	
sl@0
    43
inline void TSoundScPlayRequest::SetFail(TInt aCompletionReason)
sl@0
    44
	{iCompletionReason=aCompletionReason; iTf.iTfState=TSndScTransfer::ETfDone;}
sl@0
    45
	
sl@0
    46
inline void TSoundScPlayRequest::UpdateProgress(TInt aLength)
sl@0
    47
	{if (iTf.SetCompleted(aLength)) iCompletionReason=KErrNone;}	
sl@0
    48
			
sl@0
    49
// class TSoundScRequestQueue	
sl@0
    50
		
sl@0
    51
inline TBool TSoundScRequestQueue::IsEmpty()
sl@0
    52
	{return(iPendRequestQ.IsEmpty());}
sl@0
    53
	
sl@0
    54
inline TBool TSoundScRequestQueue::IsAnchor(TSoundScRequest* aReq)
sl@0
    55
	{return(aReq==&iPendRequestQ.iA);}	
sl@0
    56
	
sl@0
    57
// class DRecordBufferManager
sl@0
    58
	
sl@0
    59
inline TAudioBuffer* DRecordBufferManager::GetCurrentRecordBuffer()
sl@0
    60
	{return(iCurrentBuffer);}
sl@0
    61
	
sl@0
    62
inline TAudioBuffer* DRecordBufferManager::GetNextRecordBuffer()
sl@0
    63
	{return(iNextBuffer);}
sl@0
    64
	
sl@0
    65
// class DSoundScLdd
sl@0
    66
sl@0
    67
inline DSoundScPdd* DSoundScLdd::Pdd()
sl@0
    68
	{return((DSoundScPdd*)iPdd);}
sl@0
    69
	
sl@0
    70
inline void DSoundScLdd::CompletePlayRequest(TSoundScPlayRequest* aReq,TInt aResult)
sl@0
    71
	{aReq->iCompletionReason=aResult; DoCompletePlayRequest(aReq);}	
sl@0
    72
		
sl@0
    73
inline DSoundScLdd* DSoundScPdd::Ldd()
sl@0
    74
	{return(iLdd);}
sl@0
    75
sl@0
    76
// class DSoundScPdd
sl@0
    77
sl@0
    78
inline TInt DSoundScPdd::TimeTransferred(TInt64& /*aTime*/, TInt /*aState*/)
sl@0
    79
	{return(KErrNotSupported);}