mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
28 lines
510 B
C++
28 lines
510 B
C++
/*
|
|
* latm.h: Frontend Status Monitor plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
*/
|
|
|
|
#ifndef __FEMON_LATM_H
|
|
#define __FEMON_LATM_H
|
|
|
|
#include "audio.h"
|
|
|
|
class cFemonLATM {
|
|
private:
|
|
cFemonAudioIf *audioHandlerM;
|
|
|
|
static int bitrateS[3][16];
|
|
static int sampleRateS[4];
|
|
|
|
public:
|
|
cFemonLATM(cFemonAudioIf *audioHandlerP);
|
|
virtual ~cFemonLATM();
|
|
|
|
bool processAudio(const uint8_t *bufP, int lenP);
|
|
};
|
|
|
|
#endif //__FEMON_LATM_H
|