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.

process.h 178B

12345678
  1. #ifndef PROCESS_H
  2. #define PROCESS_H
  3. void *decode_thread(void *_ts);
  4. void *write_thread(void *_ts);
  5. void process_packets(struct ts *ts, uint8_t *data, ssize_t data_len);
  6. #endif