1 |
#ifndef __TS_CONTROL_H__ |
---|
2 |
#define __TS_CONTROL_H__ |
---|
3 |
|
---|
4 |
#include "util.h" |
---|
5 |
|
---|
6 |
typedef struct _SVT_CONTROL SVT_CONTROL; |
---|
7 |
struct _SVT_CONTROL{ |
---|
8 |
SVT_CONTROL *next ; |
---|
9 |
SVT_CONTROL *prev ; |
---|
10 |
int event_id ; |
---|
11 |
int original_network_id ; |
---|
12 |
int transport_stream_id ; |
---|
13 |
char servicename[MAXSECLEN] ; |
---|
14 |
|
---|
15 |
typedef struct _EIT_CONTROL EIT_CONTROL; |
---|
16 |
struct _EIT_CONTROL{ |
---|
17 |
EIT_CONTROL *next ; |
---|
18 |
EIT_CONTROL *prev ; |
---|
19 |
int table_id ; |
---|
20 |
int servid ; |
---|
21 |
int event_id ; |
---|
22 |
int content_type ; |
---|
23 |
int yy; |
---|
24 |
int mm; |
---|
25 |
int dd; |
---|
26 |
int hh; |
---|
27 |
int hm; |
---|
28 |
int ss; |
---|
29 |
int dhh; |
---|
30 |
int dhm; |
---|
31 |
int dss; |
---|
32 |
int ehh; |
---|
33 |
int emm; |
---|
34 |
int ess; |
---|
35 |
char *title ; |
---|
36 |
char *subtitle ; |
---|
37 |
}; |
---|
38 |
#endif |
---|