| 82 | |
| 83 | template<typename B, typename Q> |
| 84 | void |
| 85 | Extractor_RSC<B, Q>::_get_sys_bit(const Q* Y_N, B* V_K, const size_t /*frame_id*/) |
| 86 | { |
| 87 | if (buffered_encoding) |
| 88 | for (auto i = 0; i < this->K; i++) |
| 89 | V_K[i] = Y_N[i] >= 0 ? (B)0 : (B)1; |
| 90 | else |
| 91 | for (auto i = 0; i < this->K; i++) |
| 92 | V_K[i] = Y_N[2 * i] >= 0 ? (B)0 : (B)1; |
| 93 | } |
| 94 | |
| 95 | template<typename B, typename Q> |
| 96 | const std::vector<uint32_t>& |
nothing calls this directly
no outgoing calls
no test coverage detected