OSDN Git Service

1d74dd0d8e87c74244ccce3bd42ac6cb9be76b61
[rec10/rec10-git.git] / epgdump / ts_ctl.h
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 ;                      // ¥¤¥Ù¥ó¥ÈID
11         int             original_network_id ;                   // OriginalNetworkID
12         int             transport_stream_id ;                   // TransporrtStreamID
13         char    servicename[MAXSECLEN] ;                // ¥µ¡¼¥Ó¥¹Ì¾
14 };
15
16 typedef struct  _EIT_CONTROL    EIT_CONTROL;
17 struct  _EIT_CONTROL{
18         EIT_CONTROL     *next ;
19         EIT_CONTROL     *prev ;
20         int             table_id ;
21         int             servid ;
22         int             event_id ;                      // ¥¤¥Ù¥ó¥ÈID
23         int             content_type ;          // ¥³¥ó¥Æ¥ó¥È¥¿¥¤¥×
24     int         yy;
25     int         mm;
26     int         dd;
27     int         hh;
28     int         hm;
29         int             ss;
30         int             dhh;
31         int             dhm;
32         int             dss;
33         int             ehh;
34         int             emm;
35         int             ess;
36         char    *title ;                        // ¥¿¥¤¥È¥ë
37         char    *subtitle ;                     // ¥µ¥Ö¥¿¥¤¥È¥ë
38         char    *desc ;                 // Description
39 };
40 #endif