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.

parallel_064_long.h 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* FFdecsa -- fast decsa algorithm
  2. *
  3. * Copyright (C) 2007 Dark Avenger
  4. * 2003-2004 fatih89r
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. #include "parallel_std_def.h"
  21. typedef unsigned long long group;
  22. #define GROUP_PARALLELISM 64
  23. #define FF0() 0x0ULL
  24. #define FF1() 0xffffffffffffffffULL
  25. typedef unsigned long long batch;
  26. #define BYTES_PER_BATCH 8
  27. #define B_FFN_ALL_29() 0x2929292929292929ULL
  28. #define B_FFN_ALL_02() 0x0202020202020202ULL
  29. #define B_FFN_ALL_04() 0x0404040404040404ULL
  30. #define B_FFN_ALL_10() 0x1010101010101010ULL
  31. #define B_FFN_ALL_40() 0x4040404040404040ULL
  32. #define B_FFN_ALL_80() 0x8080808080808080ULL
  33. #define M_EMPTY()
  34. #include "fftable.h"