Update contrib.
1 // Copyright (c) 2006-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 the License "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.
14 // e32\include\drivers\soundsc.inl
15 // The kernel side inline header file for the shared chunk sound driver.
25 // class TSndScTransfer
27 inline TInt TSndScTransfer::GetNotStartedLen()
28 {return(iEndOffset-iStartedOffset);}
30 inline TInt TSndScTransfer::GetStartOffset()
31 {return(iStartedOffset);}
33 inline TInt TSndScTransfer::GetLengthTransferred()
34 {return(iLengthTransferred);}
36 // class TSoundScRequest
38 inline TSoundScRequest::TSoundScRequest()
39 {iNext=NULL; iClientRequest=0;}
41 // class TSoundScPlayRequest
43 inline void TSoundScPlayRequest::SetFail(TInt aCompletionReason)
44 {iCompletionReason=aCompletionReason; iTf.iTfState=TSndScTransfer::ETfDone;}
46 inline void TSoundScPlayRequest::UpdateProgress(TInt aLength)
47 {if (iTf.SetCompleted(aLength)) iCompletionReason=KErrNone;}
49 // class TSoundScRequestQueue
51 inline TBool TSoundScRequestQueue::IsEmpty()
52 {return(iPendRequestQ.IsEmpty());}
54 inline TBool TSoundScRequestQueue::IsAnchor(TSoundScRequest* aReq)
55 {return(aReq==&iPendRequestQ.iA);}
57 // class DRecordBufferManager
59 inline TAudioBuffer* DRecordBufferManager::GetCurrentRecordBuffer()
60 {return(iCurrentBuffer);}
62 inline TAudioBuffer* DRecordBufferManager::GetNextRecordBuffer()
63 {return(iNextBuffer);}
67 inline DSoundScPdd* DSoundScLdd::Pdd()
68 {return((DSoundScPdd*)iPdd);}
70 inline void DSoundScLdd::CompletePlayRequest(TSoundScPlayRequest* aReq,TInt aResult)
71 {aReq->iCompletionReason=aResult; DoCompletePlayRequest(aReq);}
73 inline DSoundScLdd* DSoundScPdd::Ldd()
78 inline TInt DSoundScPdd::TimeTransferred(TInt64& /*aTime*/, TInt /*aState*/)
79 {return(KErrNotSupported);}