// PCMMixer.h: interface for the PCMMixer class.
|
//
|
//////////////////////////////////////////////////////////////////////
|
|
#ifndef AFX_PCMMIXER_H__90BE0AC4_6840_4EA1_AFED_FDBF91F36D66__INCLUDED_
|
#define AFX_PCMMIXER_H__90BE0AC4_6840_4EA1_AFED_FDBF91F36D66__INCLUDED_
|
|
#include "AudioTransformer.h"
|
|
class PCMMixer : public AudioTransformer
|
{
|
public:
|
PCMMixer();
|
virtual ~PCMMixer();
|
int SetTraceLevel();
|
protected:
|
int TransformAudioSamples(std::vector<std::pair<AudioSample *, AudioSource *> > &data, AudioSample **ppAudioSample);
|
};
|
|
#endif // !defined(AFX_PCMMIXER_H__90BE0AC4_6840_4EA1_AFED_FDBF91F36D66__INCLUDED_)
|