os/mm/devsound/a3fdevsound/inc/devsoundadaptationinfo.h
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
#ifndef DEVSOUNDADAPTATIONINFO_H
sl@0
    17
#define DEVSOUNDADAPTATIONINFO_H
sl@0
    18
sl@0
    19
/**
sl@0
    20
@publishedPartner 
sl@0
    21
@released
sl@0
    22
@file
sl@0
    23
*/
sl@0
    24
sl@0
    25
//  INCLUDES
sl@0
    26
sl@0
    27
#include <e32std.h>
sl@0
    28
#include <e32base.h>
sl@0
    29
#include <a3f/a3ffourcclookup.h>
sl@0
    30
sl@0
    31
class MA3FDevSoundAdaptationInfoObserver;
sl@0
    32
sl@0
    33
const TUid KTruePauseCustomInterfaceTypeUid = {0x1028643F};
sl@0
    34
sl@0
    35
/**
sl@0
    36
Custom interface class for query a3f adaptation about if resume is supported
sl@0
    37
*/
sl@0
    38
class MTruePauseCustomInterface
sl@0
    39
	{
sl@0
    40
public:
sl@0
    41
	/**
sl@0
    42
	Returns ETrue when True Pause is supported.
sl@0
    43
	*/ 
sl@0
    44
	virtual TBool IsResumeSupported(TUid aCodecType, TUid aFormat) = 0;
sl@0
    45
	};
sl@0
    46
sl@0
    47
sl@0
    48
// CLASS DECLARATION
sl@0
    49
sl@0
    50
/**
sl@0
    51
An interface to a A3FDevsoundAdaptationInfo.
sl@0
    52
A3FDevSoundAdaptationInfo is a replacable component that should correspond to the underlying
sl@0
    53
A3F adaptation, and provides information to the DevSound Adaptor information it cannot otherwise
sl@0
    54
obtain. If the underlying A3F adaptation changes, then potentially so should the implementation of
sl@0
    55
A3FDevSoundAdaptationInfo. Additionally the MaxGain and MaxVolume values should be set to reflect
sl@0
    56
those required for the specific product.
sl@0
    57
@lib devsoundadaptationinfo.lib
sl@0
    58
*/
sl@0
    59
class CA3FDevSoundAdaptationInfo : public CBase
sl@0
    60
	{
sl@0
    61
public:
sl@0
    62
	/**
sl@0
    63
	Constructs and returns a pointer to a new CA3FDevSoundAdaptationInfo object.
sl@0
    64
	Leaves on failure.
sl@0
    65
	@return CA3FDevSoundAdaptationInfo* - on success, pointer to new class instance.
sl@0
    66
	This call returns ownership, as in the standard NewL() pattern
sl@0
    67
	*/
sl@0
    68
	IMPORT_C static CA3FDevSoundAdaptationInfo* NewL(MA3FDevSoundAdaptationInfoObserver& aAdaptationInfoObserver, CFourCCConvertor& aFourCcConvertor);
sl@0
    69
sl@0
    70
	/**
sl@0
    71
	Destructor.
sl@0
    72
	*/
sl@0
    73
	~CA3FDevSoundAdaptationInfo();
sl@0
    74
sl@0
    75
	/**
sl@0
    76
	Requests Maximun Valid Gain/Volume. This is an asynchronous call. If error return is KErrNone,
sl@0
    77
	the result will be returned in subsequent RequestMaxGainComplete() call.
sl@0
    78
	@param aCodecType KUidAudioEncoder for MaxGain, KUidAudioDecoder for MaxVolume
sl@0
    79
	@return KErrNone if successfull, else corresponding error code
sl@0
    80
	*/
sl@0
    81
	virtual TInt RequestMaxGain(TUid aCodecType)=0;
sl@0
    82
sl@0
    83
sl@0
    84
	/**
sl@0
    85
	Requests a list of supported FourCC codes. This is an asynchronous call. If error return is KErrNone,
sl@0
    86
	the completion will be indicated by RequestSupportedFormatsComplete().
sl@0
    87
	@param aCodecType KUidAudioEncoder for supported encoder formats, KUidAudioDecoder for supported decoder formats
sl@0
    88
	@param aSupportedFormats The results are appended to this array.
sl@0
    89
	@return KErrNone if successfull, else corresponding error code
sl@0
    90
	*/
sl@0
    91
	virtual TInt RequestSupportedFormats(TUid aCodecType, RArray<TUid>& aSupportedFormats)=0;
sl@0
    92
sl@0
    93
	/**
sl@0
    94
	Queries A3F adaptation about if True Pause is supported 
sl@0
    95
	the completion will be indicated by RequestSupportedFormatsComplete().
sl@0
    96
	@param aCodecType KUidAudioEncoder for encoder format, KUidAudioDecoder for decoder format
sl@0
    97
	@param aFormat The format to be queried
sl@0
    98
	@return ETrue if True Pause is supported, EFalse otherwise
sl@0
    99
	*/
sl@0
   100
	inline TBool IsResumeSupported(TUid aCodecType, TUid aFormat);
sl@0
   101
sl@0
   102
sl@0
   103
protected:
sl@0
   104
	/**
sl@0
   105
	Constructor
sl@0
   106
	*/
sl@0
   107
	CA3FDevSoundAdaptationInfo();
sl@0
   108
	};
sl@0
   109
sl@0
   110
inline TBool CA3FDevSoundAdaptationInfo::IsResumeSupported(TUid aCodecType, TUid aFormat)
sl@0
   111
	{
sl@0
   112
	TBool supported = EFalse;
sl@0
   113
	
sl@0
   114
	// Extension pattern
sl@0
   115
	TAny* interface = NULL;
sl@0
   116
	TInt err = Extension_(KTruePauseCustomInterfaceTypeUid.iUid, interface, NULL); 
sl@0
   117
	if(err == KErrNone)
sl@0
   118
		{
sl@0
   119
		MTruePauseCustomInterface* truePause = static_cast<MTruePauseCustomInterface*>(interface);
sl@0
   120
		supported = truePause->IsResumeSupported(aCodecType, aFormat);
sl@0
   121
		}	
sl@0
   122
	return supported;
sl@0
   123
	}
sl@0
   124
sl@0
   125
#endif // DEVSOUNDADAPTATIONINFO_H
sl@0
   126
sl@0
   127
//end of file
sl@0
   128