os/mm/devsound/devsoundapi/inc/SoundDevice.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
// SoundDevice.inl
sl@0
     3
sl@0
     4
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     5
// All rights reserved.
sl@0
     6
// This component and the accompanying materials are made available
sl@0
     7
// under the terms of "Eclipse Public License v1.0"
sl@0
     8
// which accompanies this distribution, and is available
sl@0
     9
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
    10
//
sl@0
    11
// Initial Contributors:
sl@0
    12
// Nokia Corporation - initial contribution.
sl@0
    13
//
sl@0
    14
// Contributors:
sl@0
    15
//
sl@0
    16
// Description:
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef SOUNDDEVICE_INL
sl@0
    20
#define SOUNDDEVICE_INL
sl@0
    21
sl@0
    22
#include <mmf/server/mmfdevsoundcustominterfacesupport.h>
sl@0
    23
sl@0
    24
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    25
#include <mmf/server/mmfdevsoundcustominterfaceobserver.h>
sl@0
    26
#include <mmf/server/mmfdevsoundcustominterfacesupportclasses.h>
sl@0
    27
#endif
sl@0
    28
sl@0
    29
#include <mmf/common/mmfstandardcustomcommands.h>
sl@0
    30
sl@0
    31
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    32
#include <mmf/common/mmfstandardcustomcommandsenums.h>
sl@0
    33
#include <mmf/common/mmfstandardcustomcommandsimpl.h>
sl@0
    34
#endif
sl@0
    35
sl@0
    36
sl@0
    37
inline TInt CMMFDevSound::RegisterAsClient(TUid aEventType, const TDesC8& aNotificationRegistrationData)
sl@0
    38
	{
sl@0
    39
	MAutoPauseResumeSupport* support = 
sl@0
    40
				static_cast<MAutoPauseResumeSupport*>(CustomInterface(KMmfUidDevSoundAudioResourceCustomInterface));
sl@0
    41
	if (support==NULL)
sl@0
    42
		{
sl@0
    43
		return KErrNotSupported;
sl@0
    44
		}
sl@0
    45
	if(aEventType != KMMFEventCategoryAudioResourceAvailable)
sl@0
    46
		{
sl@0
    47
		return KErrNotSupported;
sl@0
    48
		}
sl@0
    49
	else
sl@0
    50
		{ 
sl@0
    51
		return support->RegisterAsClient(aEventType, aNotificationRegistrationData);	
sl@0
    52
		}
sl@0
    53
	}
sl@0
    54
sl@0
    55
inline TInt CMMFDevSound::CancelRegisterAsClient(TUid aEventType)
sl@0
    56
	{
sl@0
    57
	MAutoPauseResumeSupport* support = 
sl@0
    58
			static_cast<MAutoPauseResumeSupport*>(CustomInterface(KMmfUidDevSoundAudioResourceCustomInterface));
sl@0
    59
	if (support==NULL)
sl@0
    60
		{
sl@0
    61
		return KErrNotSupported;
sl@0
    62
		}
sl@0
    63
	if(aEventType != KMMFEventCategoryAudioResourceAvailable)
sl@0
    64
		{
sl@0
    65
		return KErrNotSupported;
sl@0
    66
		}
sl@0
    67
	else
sl@0
    68
		{
sl@0
    69
		return support->CancelRegisterAsClient(aEventType);
sl@0
    70
		}
sl@0
    71
	}
sl@0
    72
sl@0
    73
inline TInt CMMFDevSound::GetResourceNotificationData(TUid aEventType,TDes8& aNotificationData)
sl@0
    74
	{
sl@0
    75
	MAutoPauseResumeSupport* support = 
sl@0
    76
			static_cast<MAutoPauseResumeSupport*>(CustomInterface(KMmfUidDevSoundAudioResourceCustomInterface));
sl@0
    77
	if (support==NULL)
sl@0
    78
		{
sl@0
    79
		return KErrNotSupported;
sl@0
    80
		}
sl@0
    81
	if(aEventType != KMMFEventCategoryAudioResourceAvailable)
sl@0
    82
		{
sl@0
    83
		return KErrNotSupported;
sl@0
    84
		}
sl@0
    85
	else
sl@0
    86
		{
sl@0
    87
		return support->GetResourceNotificationData(aEventType, aNotificationData);
sl@0
    88
		}
sl@0
    89
	}
sl@0
    90
sl@0
    91
inline TInt CMMFDevSound::WillResumePlay()
sl@0
    92
	{
sl@0
    93
	MAutoPauseResumeSupport* support = 
sl@0
    94
			static_cast<MAutoPauseResumeSupport*>(CustomInterface(KMmfUidDevSoundAudioResourceCustomInterface));
sl@0
    95
	if (support==NULL)
sl@0
    96
		{
sl@0
    97
		return KErrNotSupported;
sl@0
    98
		}
sl@0
    99
	return support->WillResumePlay();
sl@0
   100
	}
sl@0
   101
sl@0
   102
inline TInt CMMFDevSound::EmptyBuffers()
sl@0
   103
	{
sl@0
   104
	MMMFDevSoundEmptyBuffers* emptybuffers = 
sl@0
   105
			static_cast<MMMFDevSoundEmptyBuffers*>(CustomInterface(KMmfUidDevSoundEmptyBuffersCustomInterface));
sl@0
   106
	if (emptybuffers == NULL)
sl@0
   107
		{
sl@0
   108
		return KErrNotSupported;
sl@0
   109
		}
sl@0
   110
	return emptybuffers->EmptyBuffers();
sl@0
   111
	}
sl@0
   112
sl@0
   113
inline TInt CMMFDevSound::CancelInitialize()
sl@0
   114
	{
sl@0
   115
	MMMFDevSoundCancelInitialize* cancelInitialize = 
sl@0
   116
			static_cast<MMMFDevSoundCancelInitialize*>(CustomInterface(KMmfUidDevSoundCancelInitializeCustomInterface));
sl@0
   117
	if (cancelInitialize == NULL)
sl@0
   118
		{
sl@0
   119
		return KErrNotSupported;
sl@0
   120
		}
sl@0
   121
	return cancelInitialize->CancelInitialize();
sl@0
   122
	}
sl@0
   123
sl@0
   124
/*
sl@0
   125
 *  -doxygen comments in header-
sl@0
   126
 */
sl@0
   127
inline TInt CMMFDevSound::SetClientThreadInfo(TThreadId aTid)
sl@0
   128
	{
sl@0
   129
	MAudioClientThreadInfo* threadInfo = 
sl@0
   130
			static_cast<MAudioClientThreadInfo*>(CustomInterface(KMmfUidDevSoundAudioClientThreadInfoCustomInterface));
sl@0
   131
	if (threadInfo)
sl@0
   132
		{
sl@0
   133
		return threadInfo->SetClientThreadInfo(aTid);
sl@0
   134
		}
sl@0
   135
	else
sl@0
   136
		{
sl@0
   137
		return KErrNotSupported;
sl@0
   138
		}
sl@0
   139
	}
sl@0
   140
sl@0
   141
inline TInt CMMFDevSound::GetTimePlayed(TTimeIntervalMicroSeconds& aTime)
sl@0
   142
	{
sl@0
   143
	MMMFDevSoundTimePlayed* timePlayed = 
sl@0
   144
			static_cast<MMMFDevSoundTimePlayed*>(CustomInterface(KMmfUidDevSoundTimePlayedCustomInterface));
sl@0
   145
	if (timePlayed == NULL)
sl@0
   146
		{
sl@0
   147
		return KErrNotSupported;
sl@0
   148
		}
sl@0
   149
	return timePlayed->GetTimePlayed(aTime);
sl@0
   150
	}
sl@0
   151
sl@0
   152
inline TBool CMMFDevSound::IsGetTimePlayedSupported()
sl@0
   153
	{
sl@0
   154
	MMMFDevSoundTimePlayed* timePlayed = 
sl@0
   155
			static_cast<MMMFDevSoundTimePlayed*>(CustomInterface(KMmfUidDevSoundTimePlayedCustomInterface));
sl@0
   156
	if (timePlayed == NULL)
sl@0
   157
		{
sl@0
   158
		return EFalse;
sl@0
   159
		}
sl@0
   160
	return ETrue;
sl@0
   161
	}
sl@0
   162
sl@0
   163
inline TBool CMMFDevSound::QueryIgnoresUnderflow()
sl@0
   164
	{
sl@0
   165
	MMMFDevSoundQueryIgnoresUnderflow* ignoresUnderflow = 
sl@0
   166
			static_cast<MMMFDevSoundQueryIgnoresUnderflow*>(CustomInterface(KMmfUidDevSoundQueryIgnoresUnderflowCustomInterface));
sl@0
   167
	if (ignoresUnderflow == NULL)
sl@0
   168
		{
sl@0
   169
		return EFalse;
sl@0
   170
		}
sl@0
   171
	return ignoresUnderflow->QueryIgnoresUnderflow();
sl@0
   172
	}
sl@0
   173
sl@0
   174
inline TBool CMMFDevSound::IsResumeSupported()
sl@0
   175
	{
sl@0
   176
	MMMFDevSoundTruePause* truePause = 
sl@0
   177
			static_cast<MMMFDevSoundTruePause*>(CustomInterface(KMmfUidDevSoundTruePauseCustomInterface));
sl@0
   178
	if (truePause == NULL)
sl@0
   179
		{
sl@0
   180
		return EFalse;
sl@0
   181
		}
sl@0
   182
	return truePause->IsResumeSupported();
sl@0
   183
	}
sl@0
   184
sl@0
   185
inline TInt CMMFDevSound::Resume()
sl@0
   186
	{
sl@0
   187
	MMMFDevSoundTruePause* truePause = 
sl@0
   188
			static_cast<MMMFDevSoundTruePause*>(CustomInterface(KMmfUidDevSoundTruePauseCustomInterface));
sl@0
   189
	if (truePause == NULL || EFalse == truePause->IsResumeSupported() )
sl@0
   190
		{
sl@0
   191
		return KErrNotSupported;
sl@0
   192
		}
sl@0
   193
	return truePause->Resume();
sl@0
   194
	}
sl@0
   195
sl@0
   196
#endif // SOUNDDEVICE_INL