mp3: small workaround for some slightly bad encodes
[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
18 [features]
19 default = ["all_decoders"]
20 decoders = []
21
22 all_decoders = ["all_video_decoders", "all_audio_decoders"]
23
24 all_video_decoders = []
25
26 all_audio_decoders = ["decoder_aac", "decoder_mpa"]
27 decoder_aac = ["decoders"]
28 decoder_mpa = ["decoders"]