X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-commonfmt%2FCargo.toml;h=5bd89901063b422dc3da361ec963fbd5fa1953d1;hb=787b8d03074419d7f8e6b52daba02a3807444bc2;hp=1ab9d0ca57780779de76b4c12ac36076399fcca1;hpb=38953fb529efad1b0b609eec77f7839e62ad2719;p=nihav.git diff --git a/nihav-commonfmt/Cargo.toml b/nihav-commonfmt/Cargo.toml index 1ab9d0c..5bd8990 100644 --- a/nihav-commonfmt/Cargo.toml +++ b/nihav-commonfmt/Cargo.toml @@ -6,21 +6,34 @@ edition = "2018" [dependencies.nihav_core] path = "../nihav-core" + +[dependencies.nihav_registry] +path = "../nihav-registry" + +[dependencies.nihav_codec_support] +path = "../nihav-codec-support" features = ["h263", "mdct", "fft", "dsp_window"] [dev-dependencies] nihav_realmedia = { path = "../nihav-realmedia" } [features] -default = ["all_decoders", "all_demuxers"] +default = ["all_decoders", "all_demuxers", "all_muxers"] decoders = [] demuxers = [] -all_demuxers = ["demuxer_avi"] +muxers = [] +all_demuxers = ["demuxer_avi", "demuxer_mov", "demuxer_wav"] demuxer_avi = ["demuxers"] +demuxer_mov = ["demuxers"] +demuxer_wav = ["demuxers"] +all_muxers = ["muxer_avi", "muxer_wav"] +muxer_avi = ["muxers"] +muxer_wav = ["muxers"] all_decoders = ["all_video_decoders", "all_audio_decoders"] -all_video_decoders = ["decoder_clearvideo"] +all_video_decoders = ["decoder_cinepak", "decoder_clearvideo"] +decoder_cinepak = ["decoders"] decoder_clearvideo = ["decoders"] all_audio_decoders = ["decoder_pcm", "decoder_ts102366", "decoder_sipro", "decoder_atrac3", "decoder_aac"]