├── .gitignore ├── AribChannel.h ├── BonDriver_DVB.so.conf ├── BonDriver_LinuxPT.so.conf ├── COPYING ├── LICENSE ├── Makefile.in ├── README.md ├── README.md~ ├── autogen.sh ├── channels ├── sample.recpt1-channels-chiba ├── sample.recpt1-channels-kanazawa ├── sample.recpt1-channels-nagoya └── sample.recpt1-channels-tokyo ├── checksignal.c ├── configure.ac ├── decoder.c ├── decoder.h ├── linux_ch.diff ├── mkpath.c ├── mkpath.h ├── pt1_dev.h ├── recpt1.c ├── recpt1.h ├── recpt1core.c ├── recpt1core.h ├── recpt1ctl.c ├── tssplitter_lite.c └── tssplitter_lite.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/.gitignore -------------------------------------------------------------------------------- /AribChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/AribChannel.h -------------------------------------------------------------------------------- /BonDriver_DVB.so.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/BonDriver_DVB.so.conf -------------------------------------------------------------------------------- /BonDriver_LinuxPT.so.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/BonDriver_LinuxPT.so.conf -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/README.md -------------------------------------------------------------------------------- /README.md~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/README.md~ -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/autogen.sh -------------------------------------------------------------------------------- /channels/sample.recpt1-channels-chiba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/channels/sample.recpt1-channels-chiba -------------------------------------------------------------------------------- /channels/sample.recpt1-channels-kanazawa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/channels/sample.recpt1-channels-kanazawa -------------------------------------------------------------------------------- /channels/sample.recpt1-channels-nagoya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/channels/sample.recpt1-channels-nagoya -------------------------------------------------------------------------------- /channels/sample.recpt1-channels-tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/channels/sample.recpt1-channels-tokyo -------------------------------------------------------------------------------- /checksignal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/checksignal.c -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/configure.ac -------------------------------------------------------------------------------- /decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/decoder.c -------------------------------------------------------------------------------- /decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/decoder.h -------------------------------------------------------------------------------- /linux_ch.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/linux_ch.diff -------------------------------------------------------------------------------- /mkpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/mkpath.c -------------------------------------------------------------------------------- /mkpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/mkpath.h -------------------------------------------------------------------------------- /pt1_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/pt1_dev.h -------------------------------------------------------------------------------- /recpt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/recpt1.c -------------------------------------------------------------------------------- /recpt1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/recpt1.h -------------------------------------------------------------------------------- /recpt1core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/recpt1core.c -------------------------------------------------------------------------------- /recpt1core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/recpt1core.h -------------------------------------------------------------------------------- /recpt1ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/recpt1ctl.c -------------------------------------------------------------------------------- /tssplitter_lite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/tssplitter_lite.c -------------------------------------------------------------------------------- /tssplitter_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogeel/recbond/HEAD/tssplitter_lite.h --------------------------------------------------------------------------------