vdr-plugin-femon/femonlatm.h

28 lines
504 B
C
Raw Normal View History

2010-06-23 11:16:17 +02:00
/*
* 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:
2015-03-07 17:22:02 +01:00
cFemonAudioIf *audioHandlerM;
2010-06-23 11:16:17 +02:00
2015-03-07 17:22:02 +01:00
static int bitrateS[3][16];
static int sampleRateS[4];
2010-06-23 11:16:17 +02:00
public:
2015-03-07 17:22:02 +01:00
cFemonLATM(cFemonAudioIf *audioHandlerP);
2010-06-23 11:16:17 +02:00
virtual ~cFemonLATM();
2015-03-07 17:22:02 +01:00
bool processAudio(const uint8_t *bufP, int lenP);
2010-06-23 11:16:17 +02:00
};
#endif //__FEMONLATM_H