tsdecrypt reads and decrypts CSA encrypted incoming mpeg transport stream over UDP/RTP using code words obtained from OSCAM or similar CAM server. tsdecrypt communicates with CAM server using cs378x (camd35 over tcp) protocol or newcamd protocol. https://georgi.unixsol.org/programs/tsdecrypt/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tables.h 396B

123456789101112
  1. #ifndef TABLE_H
  2. #define TABLES_H
  3. #include "data.h"
  4. void process_pat(struct ts *ts, uint16_t pid, uint8_t *ts_packet);
  5. void process_cat(struct ts *ts, uint16_t pid, uint8_t *ts_packet);
  6. void process_pmt(struct ts *ts, uint16_t pid, uint8_t *ts_packet);
  7. void process_emm(struct ts *ts, uint16_t pid, uint8_t *ts_packet);
  8. void process_ecm(struct ts *ts, uint16_t pid, uint8_t *ts_packet);
  9. #endif