mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
/*
|
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
*/
|
|
|
|
#ifndef __FEMONH264_H
|
|
#define __FEMONH264_H
|
|
|
|
#include "femonvideo.h"
|
|
|
|
class cFemonH264 {
|
|
private:
|
|
enum {
|
|
NAL_SEI = 0x06, // Supplemental Enhancement Information
|
|
NAL_SPS = 0x07, // Sequence Parameter Set
|
|
NAL_AUD = 0x09, // Access Unit Delimiter
|
|
NAL_END_SEQ = 0x0A // End of Sequence
|
|
};
|
|
|
|
typedef struct DAR {
|
|
eVideoAspectRatio dar;
|
|
int ratio;
|
|
} t_DAR;
|
|
|
|
typedef struct SAR {
|
|
int w;
|
|
int h;
|
|
} t_SAR;
|
|
|
|
cFemonVideoIf *m_VideoHandler;
|
|
uint32_t m_Width;
|
|
uint32_t m_Height;
|
|
eVideoAspectRatio m_AspectRatio;
|
|
eVideoFormat m_Format;
|
|
double m_FrameRate;
|
|
double m_BitRate;
|
|
eVideoScan m_Scan;
|
|
bool m_CpbDpbDelaysPresentFlag;
|
|
bool m_PicStructPresentFlag;
|
|
bool m_FrameMbsOnlyFlag;
|
|
bool m_MbAdaptiveFrameFieldFlag;
|
|
uint32_t m_TimeOffsetLength;
|
|
|
|
void reset();
|
|
const uint8_t *nextStartCode(const uint8_t *start, const uint8_t *end);
|
|
int nalUnescape(uint8_t *dst, const uint8_t *src, int len);
|
|
int parseSPS(const uint8_t *buf, int len);
|
|
int parseSEI(const uint8_t *buf, int len);
|
|
|
|
static const t_SAR s_SAR[];
|
|
static const t_DAR s_DAR[];
|
|
static const eVideoFormat s_VideoFormats[];
|
|
static const uint8_t s_SeiNumClockTsTable[9];
|
|
|
|
public:
|
|
cFemonH264(cFemonVideoIf *videohandler);
|
|
virtual ~cFemonH264();
|
|
|
|
bool processVideo(const uint8_t *buf, int len);
|
|
};
|
|
|
|
#endif //__FEMONH264_H
|