X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-duck%2FCargo.toml;h=ef8a4745e2aeb45463228d136448c3106079ece1;hb=c9c5dcb10719920f3e5502e33e3ff224ae268e13;hp=bae08cf59397c6d0c015a769adb35823bdff516b;hpb=6a4942885d50ab644f27d0d25aee0b2740dce509;p=nihav.git diff --git a/nihav-duck/Cargo.toml b/nihav-duck/Cargo.toml index bae08cf..ef8a474 100644 --- a/nihav-duck/Cargo.toml +++ b/nihav-duck/Cargo.toml @@ -6,15 +6,20 @@ edition = "2018" [dependencies.nihav_core] path = "../nihav-core" + +[dependencies.nihav_codec_support] +path = "../nihav-codec-support" features = ["fft", "dsp_window", "blockdsp"] [dev-dependencies] -nihav_commonfmt = { path = "../nihav-commonfmt" } +nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] } [features] default = ["all_decoders"] -all_decoders = ["decoder_truemotion1", "decoder_truemotionrt", "decoder_dk3_adpcm", "decoder_dk4_adpcm", "decoder_truemotion2", "decoder_truemotion2x", "decoder_vp3", "decoder_vp4", "decoder_vp5", "decoder_vp6", "decoder_on2avc"]#, "decoder_vp7"] +all_decoders = ["all_video_decoders", "all_audio_decoders"] +all_video_decoders = ["decoder_truemotion1", "decoder_truemotionrt", "decoder_truemotion2", "decoder_truemotion2x", "decoder_vp3", "decoder_vp4", "decoder_vp5", "decoder_vp6", "decoder_vp7"] +all_audio_decoders = ["decoder_dk3_adpcm", "decoder_dk4_adpcm", "decoder_on2avc"] decoders = [] decoder_truemotion1 = ["decoders"]