]>
Commit | Line | Data |
---|---|---|
5641dccf KS |
1 | [package] |
2 | name = "nihav_indeo" | |
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" | |
b4d5b851 KS |
9 | |
10 | [dependencies.nihav_codec_support] | |
11 | path = "../nihav-codec-support" | |
5641dccf KS |
12 | features = ["h263", "fft", "dsp_window"] |
13 | ||
3167c45c KS |
14 | [dev-dependencies] |
15 | nihav_commonfmt = { path = "../nihav-commonfmt" } | |
16 | ||
5641dccf KS |
17 | [features] |
18 | default = ["all_decoders"] | |
19 | ||
20 | all_decoders = ["decoder_imc", "decoder_indeo2", "decoder_indeo3", "decoder_indeo4", "decoder_indeo5", "decoder_intel263"] | |
21 | decoders = [] | |
22 | ||
23 | decoder_imc = ["decoders"] | |
24 | decoder_indeo2 = ["decoders"] | |
25 | decoder_indeo3 = ["decoders"] | |
26 | decoder_indeo4 = ["decoders"] | |
27 | decoder_indeo5 = ["decoders"] | |
28 | decoder_intel263 = ["decoders"] |