]>
Commit | Line | Data |
---|---|---|
1 | [package] | |
2 | name = "nihav_acorn" | |
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 | ||
13 | [features] | |
14 | default = ["all_decoders", "all_demuxers"] | |
15 | ||
16 | all_decoders = ["all_video_decoders"] | |
17 | all_video_decoders = ["decoder_movinglines", "decoder_movingblocks", "decoder_linepack"] | |
18 | decoders = [] | |
19 | ||
20 | decoder_movinglines = ["decoders"] | |
21 | decoder_movingblocks = ["decoders"] | |
22 | decoder_linepack = ["decoders"] | |
23 | ||
24 | all_demuxers = ["demuxer_armovie"] | |
25 | demuxers = [] | |
26 | ||
27 | demuxer_armovie = ["demuxers"] |