| 25 | |
| 26 | template<typename R, typename Q> |
| 27 | void |
| 28 | Quantizer_NO<R, Q>::_process(const R* Y_N1, Q* Y_N2, const size_t /*frame_id*/) |
| 29 | { |
| 30 | const auto loop_size = (unsigned)(this->N); |
| 31 | for (unsigned i = 0; i < loop_size; i++) |
| 32 | Y_N2[i] = (Q)Y_N1[i]; |
| 33 | } |
| 34 | |
| 35 | namespace aff3ct |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected