osmo-v5/src/libg711/g711.h

9 lines
237 B
C
Raw Normal View History

2024-01-14 12:12:14 +00:00
#pragma once
2023-01-29 15:22:16 +00:00
2024-01-14 12:12:14 +00:00
extern int16_t g711_alaw_flipped_to_linear[256];
extern int16_t g711_ulaw_flipped_to_linear[256];
extern uint8_t g711_linear_to_alaw_flipped[65536];
extern uint8_t g711_linear_to_ulaw_flipped[65536];
2023-01-29 15:22:16 +00:00
2024-01-14 12:12:14 +00:00
void g711_init(void);