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.

Makefile 126B

12345678910
  1. all: logic
  2. logic: logic.o
  3. gcc -o logic logic.o
  4. logic.o: logic.c
  5. gcc -O3 -march=athlon-xp -c logic.c
  6. clean:
  7. rm logic *.o