aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-mpeg/Cargo.toml
blob: 84d0c4b811515a7ac73dbeffbf082fc743518d25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "nihav_mpeg"
version = "0.1.0"
authors = ["Kostya Shishkov <kostya.shishkov@gmail.com>"]
edition = "2018"

[dependencies.nihav_core]
path = "../nihav-core"

[dependencies.nihav_codec_support]
path = "../nihav-codec-support"
features = ["qmf", "fft", "mdct", "dsp_window"]

[dev-dependencies]
nihav_flash = { path = "../nihav-flash", default-features=false, features = ["all_demuxers"] }
nihav_realmedia = { path = "../nihav-realmedia", default-features=false, features = ["all_demuxers"] }
nihav_commonfmt = { path = "../nihav-commonfmt", default-features=false, features = ["all_demuxers"] }

[features]
default = ["all_decoders"]
decoders = []

all_decoders = ["all_video_decoders", "all_audio_decoders"]

all_video_decoders = []

all_audio_decoders = ["decoder_aac", "decoder_mpa"]
decoder_aac = ["decoders"]
decoder_mpa = ["decoders"]