/usr/include/asterisk/amr.h is in asterisk-dev 1:13.14.1~dfsg-2+deb9u4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #ifndef _AST_FORMAT_AMR_H_
#define _AST_FORMAT_AMR_H_
struct amr_attr {
unsigned int octet_align;
unsigned int mode_set:9;
unsigned int mode_change_period;
unsigned int mode_change_capability;
unsigned int mode_change_neighbor;
unsigned int crc;
unsigned int robust_sorting;
unsigned int interleaving;
int max_red;
/* internal variables for transcoding module */
unsigned char mode_current; /* see amr_clone for default */
int vad; /* see amr_clone for default */
};
#endif /* _AST_FORMAT_AMR_H */
|