| 23 | } |
| 24 | |
| 25 | void |
| 26 | Encoder_RSC_DB ::get_description(cli::Argument_map_info& args) const |
| 27 | { |
| 28 | Encoder::get_description(args); |
| 29 | |
| 30 | auto p = this->get_prefix(); |
| 31 | const std::string class_name = "factory::Encoder_RSC_DB::"; |
| 32 | |
| 33 | args.erase({ p + "-cw-size", "N" }); |
| 34 | |
| 35 | cli::add_options(args.at({ p + "-type" }), 0, "RSC_DB"); |
| 36 | |
| 37 | tools::add_arg(args, p, class_name + "p+std", cli::Text(cli::Including_set("DVB-RCS1", "DVB-RCS2"))); |
| 38 | |
| 39 | tools::add_arg(args, p, class_name + "p+no-buff", cli::None()); |
| 40 | } |
| 41 | |
| 42 | void |
| 43 | Encoder_RSC_DB ::store(const cli::Argument_map_value& vals) |
nothing calls this directly
no test coverage detected