mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
25 lines
448 B
C
25 lines
448 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
|
|
|
|
struct FemonService_v1_1 {
|
|
cString fe_name;
|
|
cString fe_status;
|
|
double fe_cnr;
|
|
double fe_signal;
|
|
double fe_ber;
|
|
double fe_per;
|
|
double video_bitrate;
|
|
double audio_bitrate;
|
|
double dolby_bitrate;
|
|
};
|
|
|
|
#endif //__FEMONSERVICE_H
|
|
|