os/mm/devsound/devsoundrefplugin/src/swcodecwrapper/mmfswaudioinput.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2003-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
// mmfswaudioinput.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef SWAUDIOINPUT_H
sl@0
    19
#define SWAUDIOINPUT_H
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <d32soundsc.h>
sl@0
    23
sl@0
    24
sl@0
    25
//TAudioInputParams 
sl@0
    26
//- give sample rate and buffer size
sl@0
    27
class TAudioInputParams
sl@0
    28
	{
sl@0
    29
public:
sl@0
    30
	IMPORT_C TAudioInputParams();
sl@0
    31
	
sl@0
    32
	TInt iSampleRate;
sl@0
    33
		// The sample rate of the data past to the client. Ideally, but not
sl@0
    34
		// necessarily that used on the device
sl@0
    35
	TInt iNumChannels;
sl@0
    36
		// Number of channels to use. 1 = mono. 2 = (interleaved) stereo.
sl@0
    37
	TInt iNominalBufferSize;
sl@0
    38
		// "Full buffers" are to be of this size. (Only the penultimate can be shorter)
sl@0
    39
	TInt iInitialGain;
sl@0
    40
		// Gain to use on start.
sl@0
    41
	};
sl@0
    42
sl@0
    43
// Observer class for MAudioInput
sl@0
    44
class MAudioInputObserver
sl@0
    45
	{
sl@0
    46
public:
sl@0
    47
	virtual void InputBufferAvailable(const TDesC8& aBuffer)=0;
sl@0
    48
		// A buffer of data is available. Assume single buffering
sl@0
    49
		
sl@0
    50
	virtual void InputFinished()=0;
sl@0
    51
		// called following Pause() to say no more data left
sl@0
    52
		
sl@0
    53
	virtual void InputError(TInt aError)=0;
sl@0
    54
		// called on fatal(ish) error. Client should call Stop() and/or Close()
sl@0
    55
	};
sl@0
    56
	
sl@0
    57
// Interface to SwWrapper AudioInput
sl@0
    58
class MAudioInput
sl@0
    59
	{
sl@0
    60
public:
sl@0
    61
	IMPORT_C static MAudioInput* CreateL(MAudioInputObserver& aObserver);
sl@0
    62
		// Create new object
sl@0
    63
		
sl@0
    64
	virtual void Release()=0;
sl@0
    65
		// destructor call
sl@0
    66
		
sl@0
    67
	virtual TInt Initialize(const TAudioInputParams& aParams)=0;
sl@0
    68
		// Initialize with given properties. synchronous call.
sl@0
    69
		
sl@0
    70
	virtual void Close()=0;
sl@0
    71
		// undo of Initialize() - return to created state. Implied Stop() if required.
sl@0
    72
		
sl@0
    73
	virtual TInt Start()=0;
sl@0
    74
		// Start to record and supply buffers. Only valid if initialized
sl@0
    75
		// subsequently BufferToEmpty() will be called
sl@0
    76
		
sl@0
    77
	virtual void BufferAck()=0;
sl@0
    78
		// The buffer supplied by InputBufferAvailable has been read.
sl@0
    79
		// Client must have stopped reading from the buffer
sl@0
    80
		
sl@0
    81
	virtual TInt Pause()=0;
sl@0
    82
		// pause (temporarily stop) recording. When all buffers have been passed
sl@0
    83
		// InputFinished() is called.
sl@0
    84
		
sl@0
    85
	virtual TInt Resume()=0;
sl@0
    86
		// resume from paused mode. If InputFinished() has not been sent
sl@0
    87
		// already it won't be
sl@0
    88
		
sl@0
    89
	virtual TInt Flush()=0;
sl@0
    90
		// throw away any partially recorded buffers than have not been
sl@0
    91
		// received. Implied BufferAck(). Only legal when paused
sl@0
    92
		
sl@0
    93
	virtual void Stop()=0;
sl@0
    94
		// immediate stop, but does not close. Akin to Cancel() if we are running.
sl@0
    95
		
sl@0
    96
	virtual TAny* Interface(TUid aInterfaceUid)=0;
sl@0
    97
		// for standard extension pattern
sl@0
    98
	};
sl@0
    99
sl@0
   100
// Parameter access. Do as CI since API not so clear
sl@0
   101
const TUid KUidAIParamInterface = {0x10287080};
sl@0
   102
class MAIParamInterface
sl@0
   103
	{
sl@0
   104
public:
sl@0
   105
	virtual TInt SetGain(TInt aGain)=0;
sl@0
   106
		// set basic gain
sl@0
   107
		
sl@0
   108
	virtual TInt GetBufferSizes(TInt& aMinSize, TInt& aMaxSize)=0;
sl@0
   109
		// min and max buffer size supported (or at least recommended)	
sl@0
   110
	
sl@0
   111
	virtual TInt GetSupportedSampleRates(RArray<TInt>& aSupportedSampleRates)=0;
sl@0
   112
	};
sl@0
   113
sl@0
   114
#endif // SWAUDIOINPUT_H
sl@0
   115