| 44 | } |
| 45 | |
| 46 | void |
| 47 | Decoder_RSC ::get_description(cli::Argument_map_info& args) const |
| 48 | { |
| 49 | Decoder::get_description(args); |
| 50 | |
| 51 | auto p = this->get_prefix(); |
| 52 | const std::string class_name = "factory::Decoder_RSC::"; |
| 53 | |
| 54 | args.erase({ p + "-cw-size", "N" }); |
| 55 | |
| 56 | cli::add_options(args.at({ p + "-type", "D" }), 0, "BCJR", "VITERBI", "PLVA"); |
| 57 | cli::add_options(args.at({ p + "-implem" }), 0, "GENERIC", "FAST", "VERY_FAST"); |
| 58 | |
| 59 | tools::add_arg(args, p, class_name + "p+simd", cli::Text(cli::Including_set("INTRA", "INTER"))); |
| 60 | |
| 61 | tools::add_arg(args, p, class_name + "p+max", cli::Text(cli::Including_set("MAX", "MAXL", "MAXS"))); |
| 62 | |
| 63 | tools::add_arg(args, p, class_name + "p+no-buff", cli::None()); |
| 64 | |
| 65 | tools::add_arg(args, p, class_name + "p+poly", cli::Text()); |
| 66 | |
| 67 | tools::add_arg(args, p, class_name + "p+std", cli::Text(cli::Including_set("LTE", "CCSDS"))); |
| 68 | |
| 69 | tools::add_arg(args, p, class_name + "p+lists,L", cli::Integer(cli::Positive(), cli::Non_zero())); |
| 70 | } |
| 71 | |
| 72 | void |
| 73 | Decoder_RSC ::store(const cli::Argument_map_value& vals) |
nothing calls this directly
no test coverage detected