FreeCalypso > hg > gsm-codec-lib
comparison libgsmfr2/dhf.c @ 278:c94d9a336e8f
libgsmfr2: implement DHF const datum
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 14 Apr 2024 04:10:02 +0000 |
parents | libgsmfr2/silence_frame.c@a33edf624061 |
children |
comparison
equal
deleted
inserted
replaced
277:37dc5c84bbe9 | 278:c94d9a336e8f |
---|---|
1 /* | |
2 * Implementation of the optional decoder homing feature requires matching | |
3 * the input RTP-encoded GSM-FR frame against the known decoder homing frame. | |
4 * This C module provides this DHF as an API-exported const array. | |
5 */ | |
6 | |
7 #include <stdint.h> | |
8 #include "tw_gsmfr.h" | |
9 | |
10 const uint8_t gsmfr_decoder_homing_frame[GSMFR_RTP_FRAME_LEN] = { | |
11 0xD2, 0x57, 0x7A, 0x1C, 0xDA, | |
12 0x50, 0x00, 0x49, 0x24, 0x92, 0x49, 0x24, | |
13 0x50, 0x00, 0x49, 0x24, 0x92, 0x49, 0x24, | |
14 0x50, 0x00, 0x49, 0x24, 0x92, 0x49, 0x24, | |
15 0x50, 0x00, 0x49, 0x23, 0x92, 0x49, 0x24, | |
16 }; |