Alejandro Acuña
2024-08-12 1876e65234c20209001178705cfa50d8f9ded67a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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_)