X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-acorn%2FCargo.toml;h=3266be9e7c42d29c605da41a2d3df733fbf9062a;hb=b108a323998abb1a51176f6694ae71cfe2f750d4;hp=34368732b1eefe451915f177d81f691b9654e781;hpb=8a350691199bba1c03aea0c12128f0b8b21ec6e2;p=nihav.git diff --git a/nihav-acorn/Cargo.toml b/nihav-acorn/Cargo.toml index 3436873..3266be9 100644 --- a/nihav-acorn/Cargo.toml +++ b/nihav-acorn/Cargo.toml @@ -13,14 +13,18 @@ path = "../nihav-codec-support" [features] default = ["all_decoders", "all_demuxers"] -all_decoders = ["all_video_decoders"] -all_video_decoders = ["decoder_movinglines", "decoder_movingblocks", "decoder_movingblockshq", "decoder_linepack"] +all_decoders = ["all_video_decoders", "all_audio_decoders"] +all_video_decoders = ["decoder_movinglines", "decoder_movingblocks", "decoder_movingblockshq", "decoder_linepack", "decoder_rawvideo"] +all_audio_decoders = ["decoder_rawaudio"] decoders = [] decoder_movinglines = ["decoders"] decoder_movingblocks = ["decoders"] decoder_movingblockshq = ["decoders"] decoder_linepack = ["decoders"] +decoder_rawvideo = ["decoders"] + +decoder_rawaudio = ["decoders"] all_demuxers = ["demuxer_armovie"] demuxers = []