vdr-plugin-femon/femonmpeg.h

32 lines
684 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 __FEMONMPEG_H
#define __FEMONMPEG_H
#include "femonvideo.h"
2009-08-25 19:22:06 +02:00
#include "femonaudio.h"
class cFemonMPEG {
private:
2015-03-07 17:22:02 +01:00
cFemonVideoIf *videoHandlerM;
cFemonAudioIf *audioHandlerM;
2009-08-25 19:22:06 +02:00
2015-03-07 17:22:02 +01:00
static int bitrateS[2][3][16];
static int sampleRateS[2][4];
static eAudioCodec formatS[2][4];
2009-08-25 19:22:06 +02:00
public:
2015-03-07 17:22:02 +01:00
cFemonMPEG(cFemonVideoIf *videoHandlerP, cFemonAudioIf *audioHandlerP);
2009-08-25 19:22:06 +02:00
virtual ~cFemonMPEG();
2015-03-07 17:22:02 +01:00
bool processVideo(const uint8_t *bufP, int lenP);
bool processAudio(const uint8_t *bufP, int lenP);
2009-08-25 19:22:06 +02:00
};
#endif //__FEMONMPEG_H