vdr-plugin-femon/femonaac.h

27 lines
469 B
C++

/*
* 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"
class cFemonAAC {
private:
cFemonAudioIf *audioHandlerM;
static int sampleRateS[16];
public:
cFemonAAC(cFemonAudioIf *audioHandlerP);
virtual ~cFemonAAC();
bool processAudio(const uint8_t *bufP, int lenP);
};
#endif //__FEMONAAC_H