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.

filter.h 829B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Filtering functions
  3. * Copyright (C) 2012 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 (COPYING file) for more details.
  13. *
  14. */
  15. #ifndef FILTERS_H
  16. #define FILTERS_H
  17. #include <inttypes.h>
  18. #include "data.h"
  19. int filter_parse(char *filter_def, struct filter *filter);
  20. int filter_match_emm(struct ts *ts, uint8_t *data, unsigned int data_len);
  21. void filter_dump(struct filter *filter, char *buffer, unsigned int buf_len);
  22. #endif