mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
8bf429b381
Fixed detection of false positives in audio/video streams. Refactored source code.
27 lines
489 B
C
27 lines
489 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 __FEMONSERVICE_H
|
|
#define __FEMONSERVICE_H
|
|
|
|
#include <linux/dvb/frontend.h>
|
|
|
|
struct FemonService_v1_0 {
|
|
cString fe_name;
|
|
cString fe_status;
|
|
uint16_t fe_snr;
|
|
uint16_t fe_signal;
|
|
uint32_t fe_ber;
|
|
uint32_t fe_unc;
|
|
double video_bitrate;
|
|
double audio_bitrate;
|
|
double dolby_bitrate;
|
|
};
|
|
|
|
#endif //__FEMONSERVICE_H
|
|
|