Data Structures | |
struct | G722Band |
The band[0] and band[1] correspond respectively to the lower band and higher band. More... | |
struct | TrellisNode |
struct | TrellisPath |
Data Fields | |
int16_t | prev_samples [PREV_SAMPLES_BUF_SIZE] |
memory of past decoded samples | |
int | prev_samples_pos |
the number of values in prev_samples | |
struct G722Context::G722Band | band [2] |
The band[0] and band[1] correspond respectively to the lower band and higher band. | |
struct G722Context::TrellisNode * | node_buf [2] |
struct G722Context::TrellisNode ** | nodep_buf [2] |
struct G722Context::TrellisPath * | paths [2] |
Definition at line 48 of file g722.c.
struct G722Context::G722Band G722Context::band[2] |
The band[0] and band[1] correspond respectively to the lower band and higher band.
Referenced by g722_decode_frame(), g722_encode_trellis(), and g722_init().
struct G722Context::TrellisNode * G722Context::node_buf[2] |
Referenced by g722_close(), g722_encode_trellis(), and g722_init().
struct G722Context::TrellisNode ** G722Context::nodep_buf[2] |
Referenced by g722_close(), g722_encode_trellis(), and g722_init().
struct G722Context::TrellisPath * G722Context::paths[2] |
Referenced by g722_close(), g722_encode_trellis(), and g722_init().
int16_t G722Context::prev_samples[PREV_SAMPLES_BUF_SIZE] |
memory of past decoded samples
Definition at line 49 of file g722.c.
Referenced by filter_samples(), and g722_decode_frame().
the number of values in prev_samples
Definition at line 50 of file g722.c.
Referenced by filter_samples(), g722_decode_frame(), and g722_init().