mirror of
https://github.com/brmlab/osmo-tetra.git
synced 2025-06-09 02:14:04 +02:00
7 lines
194 B
C
7 lines
194 B
C
#ifndef VITERBI_TCH_H
|
|
#define VITERBI_TCH_H
|
|
|
|
int conv_tch_encode(uint8_t *input, uint8_t *output, int n);
|
|
int conv_tch_decode(int8_t *input, uint8_t *output, int n);
|
|
|
|
#endif /* VITERBI_TCH_H */
|