X-Git-Url: http://git.osdn.net/view?p=rec10%2Frec10-git.git;a=blobdiff_plain;f=dist%2Ftrunk%2Ftstools%2Fepgdump%2Fts.h;fp=dist%2Ftrunk%2Ftstools%2Fepgdump%2Fts.h;h=0000000000000000000000000000000000000000;hp=da39812b8385583b1e8af0d8bcd4fb023280b0f8;hb=930d3dbdc17ad4179a9b512f4e787a896a544943;hpb=d63ca135202a679bd918561b65e806966f94546e diff --git a/dist/trunk/tstools/epgdump/ts.h b/dist/trunk/tstools/epgdump/ts.h deleted file mode 100755 index da39812..0000000 --- a/dist/trunk/tstools/epgdump/ts.h +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef TS_H -#define TS_H 1 - -#include -#include - -#include "util.h" - -#define TSPAYLOADMAX 184 - -typedef struct _TSpacket { - char sync; - int transport_error_indicator; - int payload_unit_start_indicator; - int transport_priority; - int pid; - int transport_scrambling_control; - int adaptation_field_control; - int continuity_counter; - int adaptation_field; - unsigned char payload[TSPAYLOADMAX]; - int payloadlen; - int rcount; -} TSpacket; - -typedef struct _SECcache { - int pid; - unsigned char buf[MAXSECLEN]; - int seclen; - int setlen; - TSpacket cur; - int curlen; - int cont; -} SECcache; - -#ifdef __cplusplus -extern "C"{ -#endif /* __cplusplus */ - - SECcache *readTS(FILE *in, SECcache secs[], int secscount); - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - -#endif