├── .gitignore ├── .gitmodules ├── COPYING ├── ChangeLog ├── FFdecsa ├── COPYING ├── ChangeLog ├── FFdecsa.c ├── FFdecsa.h ├── FFdecsa_test.c ├── FFdecsa_test_testcases.h ├── Makefile ├── README ├── docs │ ├── FAQ.txt │ ├── how_to_compile.txt │ ├── how_to_release.txt │ ├── how_to_understand.txt │ ├── how_to_use.txt │ └── technical_background.txt ├── fftable.h ├── logic │ ├── Makefile │ └── logic.c ├── parallel_032_4char.h ├── parallel_032_4charA.h ├── parallel_032_int.h ├── parallel_064_2int.h ├── parallel_064_8char.h ├── parallel_064_8charA.h ├── parallel_064_long.h ├── parallel_064_mmx.h ├── parallel_128_16char.h ├── parallel_128_16charA.h ├── parallel_128_2long.h ├── parallel_128_2mmx.h ├── parallel_128_4int.h ├── parallel_128_sse.h ├── parallel_128_sse2.h ├── parallel_generic.h ├── parallel_std_def.h └── stream.c ├── FFdecsa_init ├── FILTERING ├── Makefile ├── README ├── RELEASE ├── TODO ├── bitstream.h ├── camd-cs378x.c ├── camd-newcamd.c ├── camd.c ├── camd.h ├── csa.c ├── csa.h ├── data.c ├── data.h ├── filter.c ├── filter.h ├── notify-script.example ├── notify.c ├── notify.h ├── process.c ├── process.h ├── tables.c ├── tables.h ├── tsdecrypt.1 ├── tsdecrypt.c ├── udp.c ├── udp.h ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.d 3 | tsdecrypt 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/ChangeLog -------------------------------------------------------------------------------- /FFdecsa/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/COPYING -------------------------------------------------------------------------------- /FFdecsa/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/ChangeLog -------------------------------------------------------------------------------- /FFdecsa/FFdecsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/FFdecsa.c -------------------------------------------------------------------------------- /FFdecsa/FFdecsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/FFdecsa.h -------------------------------------------------------------------------------- /FFdecsa/FFdecsa_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/FFdecsa_test.c -------------------------------------------------------------------------------- /FFdecsa/FFdecsa_test_testcases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/FFdecsa_test_testcases.h -------------------------------------------------------------------------------- /FFdecsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/Makefile -------------------------------------------------------------------------------- /FFdecsa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/README -------------------------------------------------------------------------------- /FFdecsa/docs/FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/docs/FAQ.txt -------------------------------------------------------------------------------- /FFdecsa/docs/how_to_compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/docs/how_to_compile.txt -------------------------------------------------------------------------------- /FFdecsa/docs/how_to_release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/docs/how_to_release.txt -------------------------------------------------------------------------------- /FFdecsa/docs/how_to_understand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/docs/how_to_understand.txt -------------------------------------------------------------------------------- /FFdecsa/docs/how_to_use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/docs/how_to_use.txt -------------------------------------------------------------------------------- /FFdecsa/docs/technical_background.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/docs/technical_background.txt -------------------------------------------------------------------------------- /FFdecsa/fftable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/fftable.h -------------------------------------------------------------------------------- /FFdecsa/logic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/logic/Makefile -------------------------------------------------------------------------------- /FFdecsa/logic/logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/logic/logic.c -------------------------------------------------------------------------------- /FFdecsa/parallel_032_4char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_032_4char.h -------------------------------------------------------------------------------- /FFdecsa/parallel_032_4charA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_032_4charA.h -------------------------------------------------------------------------------- /FFdecsa/parallel_032_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_032_int.h -------------------------------------------------------------------------------- /FFdecsa/parallel_064_2int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_064_2int.h -------------------------------------------------------------------------------- /FFdecsa/parallel_064_8char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_064_8char.h -------------------------------------------------------------------------------- /FFdecsa/parallel_064_8charA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_064_8charA.h -------------------------------------------------------------------------------- /FFdecsa/parallel_064_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_064_long.h -------------------------------------------------------------------------------- /FFdecsa/parallel_064_mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_064_mmx.h -------------------------------------------------------------------------------- /FFdecsa/parallel_128_16char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_128_16char.h -------------------------------------------------------------------------------- /FFdecsa/parallel_128_16charA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_128_16charA.h -------------------------------------------------------------------------------- /FFdecsa/parallel_128_2long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_128_2long.h -------------------------------------------------------------------------------- /FFdecsa/parallel_128_2mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_128_2mmx.h -------------------------------------------------------------------------------- /FFdecsa/parallel_128_4int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_128_4int.h -------------------------------------------------------------------------------- /FFdecsa/parallel_128_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_128_sse.h -------------------------------------------------------------------------------- /FFdecsa/parallel_128_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_128_sse2.h -------------------------------------------------------------------------------- /FFdecsa/parallel_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_generic.h -------------------------------------------------------------------------------- /FFdecsa/parallel_std_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/parallel_std_def.h -------------------------------------------------------------------------------- /FFdecsa/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa/stream.c -------------------------------------------------------------------------------- /FFdecsa_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FFdecsa_init -------------------------------------------------------------------------------- /FILTERING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/FILTERING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/README -------------------------------------------------------------------------------- /RELEASE: -------------------------------------------------------------------------------- 1 | 10.0 2 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/bitstream.h -------------------------------------------------------------------------------- /camd-cs378x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/camd-cs378x.c -------------------------------------------------------------------------------- /camd-newcamd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/camd-newcamd.c -------------------------------------------------------------------------------- /camd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/camd.c -------------------------------------------------------------------------------- /camd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/camd.h -------------------------------------------------------------------------------- /csa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/csa.c -------------------------------------------------------------------------------- /csa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/csa.h -------------------------------------------------------------------------------- /data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/data.c -------------------------------------------------------------------------------- /data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/data.h -------------------------------------------------------------------------------- /filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/filter.c -------------------------------------------------------------------------------- /filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/filter.h -------------------------------------------------------------------------------- /notify-script.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/notify-script.example -------------------------------------------------------------------------------- /notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/notify.c -------------------------------------------------------------------------------- /notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/notify.h -------------------------------------------------------------------------------- /process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/process.c -------------------------------------------------------------------------------- /process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/process.h -------------------------------------------------------------------------------- /tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/tables.c -------------------------------------------------------------------------------- /tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/tables.h -------------------------------------------------------------------------------- /tsdecrypt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/tsdecrypt.1 -------------------------------------------------------------------------------- /tsdecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/tsdecrypt.c -------------------------------------------------------------------------------- /udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/udp.c -------------------------------------------------------------------------------- /udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/udp.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfto/tsdecrypt/HEAD/util.h --------------------------------------------------------------------------------