OSDN Git Service

add dist
[rec10/rec10-git.git] / dist / trunk / tstools / epgdump / ts_ctl.h
diff --git a/dist/trunk/tstools/epgdump/ts_ctl.h b/dist/trunk/tstools/epgdump/ts_ctl.h
new file mode 100755 (executable)
index 0000000..1d74dd0
--- /dev/null
@@ -0,0 +1,40 @@
+#ifndef        __TS_CONTROL_H__
+#define        __TS_CONTROL_H__
+
+#include       "util.h"
+
+typedef        struct  _SVT_CONTROL    SVT_CONTROL;
+struct _SVT_CONTROL{
+       SVT_CONTROL     *next ;
+       SVT_CONTROL     *prev ;
+       int             event_id ;                      // ¥¤¥Ù¥ó¥ÈID
+       int             original_network_id ;                   // OriginalNetworkID
+       int             transport_stream_id ;                   // TransporrtStreamID
+       char    servicename[MAXSECLEN] ;                // ¥µ¡¼¥Ó¥¹Ì¾
+};
+
+typedef        struct  _EIT_CONTROL    EIT_CONTROL;
+struct _EIT_CONTROL{
+       EIT_CONTROL     *next ;
+       EIT_CONTROL     *prev ;
+       int             table_id ;
+       int             servid ;
+       int             event_id ;                      // ¥¤¥Ù¥ó¥ÈID
+       int             content_type ;          // ¥³¥ó¥Æ¥ó¥È¥¿¥¤¥×
+    int                yy;
+    int                mm;
+    int                dd;
+    int                hh;
+    int                hm;
+       int             ss;
+       int             dhh;
+       int             dhm;
+       int             dss;
+       int             ehh;
+       int             emm;
+       int             ess;
+       char    *title ;                        // ¥¿¥¤¥È¥ë
+       char    *subtitle ;                     // ¥µ¥Ö¥¿¥¤¥È¥ë
+       char    *desc ;                 // Description
+};
+#endif