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.

camd.h 1.2KB

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * CAMD communications header
  3. * Copyright (C) 2011 Unix Solutions Ltd.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2
  7. * as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  17. */
  18. #ifndef CAMD_H
  19. #define CAMD_H
  20. #include "data.h"
  21. struct camd_msg * camd_msg_alloc_emm (uint16_t ca_id, uint8_t *emm_data, uint8_t emm_data_len);
  22. struct camd_msg * camd_msg_alloc_ecm (uint16_t ca_id, uint16_t service_id, uint16_t idx, uint8_t *ecm_data, uint8_t ecm_data_len);
  23. void camd_msg_free (struct camd_msg **pmsg);
  24. void camd_start (struct ts *ts);
  25. void camd_stop (struct ts *ts);
  26. void camd_msg_process (struct ts *ts, struct camd_msg *msg);
  27. #endif