Pass HW decoder choice to player

This commit is contained in:
Josh Megnauth 2024-02-16 03:15:23 -05:00
parent 028fd83296
commit e078fe05dd
No known key found for this signature in database
GPG key ID: 70813183462EFAD3
6 changed files with 115 additions and 72 deletions

7
src/hardware.rs Normal file
View file

@ -0,0 +1,7 @@
// SPDX-License-Identifier: GPL-3.0-only
pub mod device_type;
pub mod iter;
pub use device_type::DeviceType;
pub use iter::SupportedDeviceIter;