| 28 | |
| 29 | template<typename B, typename R> |
| 30 | int |
| 31 | Decoder_NO<B, R>::_decode_siso(const R* sys, const R* /*par*/, R* ext, const size_t /*frame_id*/) |
| 32 | { |
| 33 | std::copy(sys, sys + this->K, ext); |
| 34 | |
| 35 | return 0; |
| 36 | } |
| 37 | |
| 38 | template<typename B, typename R> |
| 39 | int |
nothing calls this directly
no outgoing calls
no test coverage detected