84d0c4b811515a7ac73dbeffbf082fc743518d25
[nihav.git] / nihav-mpeg / Cargo.toml
1 [package]
2 name = "nihav_mpeg"
3 version = "0.1.0"
4 authors = ["Kostya Shishkov <kostya.shishkov@gmail.com>"]
5 edition = "2018"
6
7 [dependencies.nihav_core]
8 path = "../nihav-core"
9
10 [dependencies.nihav_codec_support]
11 path = "../nihav-codec-support"
12 features = ["qmf", "fft", "mdct", "dsp_window"]
13
14 [dev-dependencies]
15 nihav_flash = { path = "../nihav-flash", default-features=false, features = ["all_demuxers"] }
16 nihav_realmedia = { path = "../nihav-realmedia", default-features=false, features = ["all_demuxers"] }
17 nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] }
18
19 [features]
20 default = ["all_decoders"]
21 decoders = []
22
23 all_decoders = ["all_video_decoders", "all_audio_decoders"]
24
25 all_video_decoders = []
26
27 all_audio_decoders = ["decoder_aac", "decoder_mpa"]
28 decoder_aac = ["decoders"]
29 decoder_mpa = ["decoders"]