├── .github ├── dependabot.yml └── workflows │ ├── Dockerfile │ ├── format.yml │ ├── release.yml │ └── rust.yml ├── .gitignore ├── .gitmodules ├── .textlintrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── b25-sys ├── Cargo.toml ├── LICENSE ├── build.rs └── src │ ├── access_control.rs │ ├── access_control │ ├── block00_mac.rs │ ├── block00_structure.rs │ ├── macros.rs │ └── types.rs │ ├── bindings │ ├── arib_std_b25.rs │ ├── error.rs │ ├── ffi.rs │ └── mod.rs │ └── lib.rs └── recisdb-rs ├── Cargo.toml ├── LICENSE ├── build.rs └── src ├── channels.rs ├── commands ├── mod.rs └── utils.rs ├── context.rs ├── io.rs ├── main.rs ├── tuner.rs ├── tuner ├── error.rs ├── linux │ ├── character_device.rs │ ├── dvbv5.rs │ ├── dvbv5 │ │ ├── dvbv5_channels_isdbs.conf │ │ ├── dvbv5_channels_isdbt.conf │ │ └── table.rs │ └── mod.rs └── windows │ ├── IBonDriver.cpp │ ├── IBonDriver.hpp │ ├── IBonDriver.rs │ ├── mod.rs │ └── vtable_resolver │ ├── IBonDriver1.cpp │ ├── IBonDriver2.cpp │ └── IBonDriver3.cpp └── utils.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.github/workflows/Dockerfile -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.textlintrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmake.configureOnOpen": false 3 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/README.md -------------------------------------------------------------------------------- /b25-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/Cargo.toml -------------------------------------------------------------------------------- /b25-sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/LICENSE -------------------------------------------------------------------------------- /b25-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/build.rs -------------------------------------------------------------------------------- /b25-sys/src/access_control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/access_control.rs -------------------------------------------------------------------------------- /b25-sys/src/access_control/block00_mac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/access_control/block00_mac.rs -------------------------------------------------------------------------------- /b25-sys/src/access_control/block00_structure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/access_control/block00_structure.rs -------------------------------------------------------------------------------- /b25-sys/src/access_control/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/access_control/macros.rs -------------------------------------------------------------------------------- /b25-sys/src/access_control/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/access_control/types.rs -------------------------------------------------------------------------------- /b25-sys/src/bindings/arib_std_b25.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/bindings/arib_std_b25.rs -------------------------------------------------------------------------------- /b25-sys/src/bindings/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/bindings/error.rs -------------------------------------------------------------------------------- /b25-sys/src/bindings/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/bindings/ffi.rs -------------------------------------------------------------------------------- /b25-sys/src/bindings/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/bindings/mod.rs -------------------------------------------------------------------------------- /b25-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/b25-sys/src/lib.rs -------------------------------------------------------------------------------- /recisdb-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/Cargo.toml -------------------------------------------------------------------------------- /recisdb-rs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/LICENSE -------------------------------------------------------------------------------- /recisdb-rs/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/build.rs -------------------------------------------------------------------------------- /recisdb-rs/src/channels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/channels.rs -------------------------------------------------------------------------------- /recisdb-rs/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/commands/mod.rs -------------------------------------------------------------------------------- /recisdb-rs/src/commands/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/commands/utils.rs -------------------------------------------------------------------------------- /recisdb-rs/src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/context.rs -------------------------------------------------------------------------------- /recisdb-rs/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/io.rs -------------------------------------------------------------------------------- /recisdb-rs/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/main.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/error.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/linux/character_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/linux/character_device.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/linux/dvbv5.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/linux/dvbv5.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/linux/dvbv5/dvbv5_channels_isdbs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/linux/dvbv5/dvbv5_channels_isdbs.conf -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/linux/dvbv5/dvbv5_channels_isdbt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/linux/dvbv5/dvbv5_channels_isdbt.conf -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/linux/dvbv5/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/linux/dvbv5/table.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/linux/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/linux/mod.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/windows/IBonDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/windows/IBonDriver.cpp -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/windows/IBonDriver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/windows/IBonDriver.hpp -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/windows/IBonDriver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/windows/IBonDriver.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/windows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/windows/mod.rs -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/windows/vtable_resolver/IBonDriver1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/windows/vtable_resolver/IBonDriver1.cpp -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/windows/vtable_resolver/IBonDriver2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/windows/vtable_resolver/IBonDriver2.cpp -------------------------------------------------------------------------------- /recisdb-rs/src/tuner/windows/vtable_resolver/IBonDriver3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/tuner/windows/vtable_resolver/IBonDriver3.cpp -------------------------------------------------------------------------------- /recisdb-rs/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kazuki0824/recisdb-rs/HEAD/recisdb-rs/src/utils.rs --------------------------------------------------------------------------------