Correctly determine coding rate

pull/61/head
Pieter Robyns 2017-09-11 11:58:51 +02:00
rodzic ba4e72b232
commit 2714c3f2d3
1 zmienionych plików z 1 dodań i 7 usunięć

Wyświetl plik

@ -657,13 +657,7 @@ namespace gr {
}
uint8_t decoder_impl::lookup_cr(const uint8_t bytevalue) {
switch (bytevalue & 0x0f) {
case 0x09: return 4;
case 0x07: return 3;
case 0x05: return 2;
case 0x03: return 1;
default: return 4;
}
return (bytevalue & 0x0e) >> 1;
}
int decoder_impl::work(int noutput_items,