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