vdr-plugin-femon/femonac3.h

29 lines
523 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 __FEMONAC3_H
#define __FEMONAC3_H
#include "femonaudio.h"
2009-08-25 19:22:06 +02:00
class cFemonAC3 {
private:
cFemonAC3If *m_AudioHandler;
static int s_Bitrates[32];
static int s_Frequencies[4];
static int s_Frames[3][32];
2009-08-25 19:22:06 +02:00
public:
cFemonAC3(cFemonAC3If *audiohandler);
virtual ~cFemonAC3();
bool processAudio(const uint8_t *buf, int len);
};
#endif //__FEMONAC3_H