aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2010-10-24 21:13:40 +0200
committerSylvain Munaut <tnt@246tNt.com>2010-10-24 21:13:40 +0200
commita1094c801f95e1e9e617458fdb4294add2e29599 (patch)
treebf4ec54d1a8780af798f052136430fefda2a4bd4
parentb99b9309b23fc4e1b5746abe188d1d4258eecdbd (diff)
codec: Fix bit order table definition for GSM HR0.1.25
There is two tables: one for unvoiced frames and one for voiced frames. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--include/osmocom/codec/codec.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/osmocom/codec/codec.h b/include/osmocom/codec/codec.h
index 82013e55..6f9ffea5 100644
--- a/include/osmocom/codec/codec.h
+++ b/include/osmocom/codec/codec.h
@@ -4,7 +4,8 @@
#include <stdint.h>
extern uint16_t gsm610_bitorder[]; /* FR */
-extern uint16_t gsm620_bitorder[]; /* HR */
+extern uint16_t gsm620_unvoiced_bitorder[]; /* HR unvoiced */
+extern uint16_t gsm620_voiced_bitorder[]; /* HR voiced */
extern uint16_t gsm660_bitorder[]; /* EFR */
extern uint16_t gsm690_12_2_bitorder[]; /* AMR 12.2 kbits */