mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
66eca7f8b5
Cleaned up compilation warnings.
29 lines
523 B
C++
29 lines
523 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 __FEMONAC3_H
|
|
#define __FEMONAC3_H
|
|
|
|
#include "femonaudio.h"
|
|
|
|
class cFemonAC3 {
|
|
private:
|
|
cFemonAC3If *m_AudioHandler;
|
|
|
|
static int s_Bitrates[32];
|
|
static int s_Frequencies[4];
|
|
static int s_Frames[3][32];
|
|
|
|
public:
|
|
cFemonAC3(cFemonAC3If *audiohandler);
|
|
virtual ~cFemonAC3();
|
|
|
|
bool processAudio(const uint8_t *buf, int len);
|
|
};
|
|
|
|
#endif //__FEMONAC3_H
|