Asterisk - The Open Source Telephony Project  18.5.0
Macros | Enumerations
celt.h File Reference

CELT Format Attributes. More...

Go to the source code of this file.

Macros

#define AST_CELT_DEFAULT_FRAME_SIZE   480
 

Enumerations

enum  celt_attr_keys { CELT_ATTR_KEY_SAMP_RATE, CELT_ATTR_KEY_MAX_BITRATE, CELT_ATTR_KEY_FRAME_SIZE }
 

Detailed Description

CELT Format Attributes.

Author
David Vossel dvoss.nosp@m.el@d.nosp@m.igium.nosp@m..com

Definition in file celt.h.

Macro Definition Documentation

◆ AST_CELT_DEFAULT_FRAME_SIZE

#define AST_CELT_DEFAULT_FRAME_SIZE   480

Definition at line 28 of file celt.h.

Enumeration Type Documentation

◆ celt_attr_keys

CELT format attribute key value pairs, all are accessible through ast_format_get_value()

Enumerator
CELT_ATTR_KEY_SAMP_RATE 

value is an unsigned integer representing sample rate

CELT_ATTR_KEY_MAX_BITRATE 

value is an int

CELT_ATTR_KEY_FRAME_SIZE 

value is an int

Definition at line 31 of file celt.h.

31  {
32  CELT_ATTR_KEY_SAMP_RATE, /*!< value is an unsigned integer representing sample rate */
33  CELT_ATTR_KEY_MAX_BITRATE, /*!< value is an int */
34  CELT_ATTR_KEY_FRAME_SIZE, /*!< value is an int */
35 };