diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-08-06 14:45:54 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-08-06 14:45:54 +0200 |
commit | 5135b3d687f653c341f1e5236b482d911200d243 (patch) | |
tree | 6725a4c4ca7c69c8c2a2fc6163a2b6c8e8ccae19 /nihav-game | |
parent | 2793026bf4b826c25ef8fc52fe63a5cd2774d779 (diff) | |
download | nihav-5135b3d687f653c341f1e5236b482d911200d243.tar.gz |
move LH codec into audio section
Diffstat (limited to 'nihav-game')
-rw-r--r-- | nihav-game/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nihav-game/Cargo.toml b/nihav-game/Cargo.toml index 37cf5c1..4f943a0 100644 --- a/nihav-game/Cargo.toml +++ b/nihav-game/Cargo.toml @@ -27,13 +27,13 @@ demuxer_vmd = ["demuxers"] all_decoders = ["all_video_decoders", "all_audio_decoders"] decoders = [] -all_video_decoders = ["decoder_bmv", "decoder_bmv3", "decoder_gdvvid", "decoder_midivid", "decoder_midivid3", "decoder_vmd", "decoder_lhst500f22"] +all_video_decoders = ["decoder_bmv", "decoder_bmv3", "decoder_gdvvid", "decoder_midivid", "decoder_midivid3", "decoder_vmd"] decoder_bmv = ["decoders"] decoder_bmv3 = ["decoders"] decoder_gdvvid = ["decoders"] decoder_midivid = ["decoders"] decoder_midivid3 = ["decoders"] decoder_vmd = ["decoders"] -decoder_lhst500f22 = ["decoders"] -all_audio_decoders = [] +all_audio_decoders = ["decoder_lhst500f22"] +decoder_lhst500f22 = ["decoders"] |