vdr-plugin-femon/femonaac.h

27 lines
469 B
C
Raw Normal View History

/*
* 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:
2015-03-07 17:22:02 +01:00
cFemonAudioIf *audioHandlerM;
2009-08-25 19:22:06 +02:00
2015-03-07 17:22:02 +01:00
static int sampleRateS[16];
2009-08-25 19:22:06 +02:00
public:
2015-03-07 17:22:02 +01:00
cFemonAAC(cFemonAudioIf *audioHandlerP);
2009-08-25 19:22:06 +02:00
virtual ~cFemonAAC();
2015-03-07 17:22:02 +01:00
bool processAudio(const uint8_t *bufP, int lenP);
2009-08-25 19:22:06 +02:00
};
#endif //__FEMONAAC_H