2008-11-09 12:43:27 +01:00
|
|
|
/*
|
|
|
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __FEMONAAC_H
|
|
|
|
#define __FEMONAAC_H
|
|
|
|
|
|
|
|
#include "femonaudio.h"
|
|
|
|
|
2009-08-25 19:22:06 +02:00
|
|
|
class cFemonAAC {
|
|
|
|
private:
|
|
|
|
cFemonAudioIf *m_AudioHandler;
|
|
|
|
|
2012-03-12 20:59:34 +01:00
|
|
|
static int s_Samplerates[16];
|
2009-08-25 19:22:06 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
cFemonAAC(cFemonAudioIf *audiohandler);
|
|
|
|
virtual ~cFemonAAC();
|
|
|
|
|
|
|
|
bool processAudio(const uint8_t *buf, int len);
|
|
|
|
};
|
2008-11-09 12:43:27 +01:00
|
|
|
|
|
|
|
#endif //__FEMONAAC_H
|