| 135 | |
| 136 | template<typename B, typename R> |
| 137 | void |
| 138 | Decoder_turbo_DB<B, R>::add_post_processing(const tools::Post_processing_SISO<B, R>& post_processing) |
| 139 | { |
| 140 | this->post_processings.push_back(std::shared_ptr<tools::Post_processing_SISO<B, R>>(post_processing.clone())); |
| 141 | if (this->post_processings.back()->get_n_frames() != this->get_n_frames_per_wave()) |
| 142 | this->post_processings.back()->set_n_frames(this->get_n_frames_per_wave()); |
| 143 | } |
| 144 | |
| 145 | template<typename B, typename R> |
| 146 | void |
nothing calls this directly
no test coverage detected