Wed Jan 8 2020 09:49:47

Asterisk developer's documentation


ex_ilbc.h
Go to the documentation of this file.
1 /*! \file
2  * \brief Raw 8-bit data
3  *
4  * Copyright (C) 2008, Digium, Inc.
5  *
6  * Distributed under the terms of the GNU General Public License
7  *
8  */
9 
10 static uint8_t ex_ilbc[] = {
11  0xff, 0xa0, 0xff, 0xfa, 0x0f, 0x60, 0x12, 0x11, 0xa2, 0x47,
12  0x22, 0x8c, 0x00, 0x00, 0x01, 0x02, 0x80, 0x43, 0xa0, 0x40,
13  0x33, 0xff, 0xcf, 0xc0, 0xf3, 0xf3, 0x3f, 0x8f, 0x3f, 0xff,
14  0xff, 0xff, 0xff, 0xfc, 0xf9, 0xe5, 0x55, 0x78, 0x0b, 0xca,
15  0xe1, 0x27, 0x94, 0x7b, 0xa8, 0x91, 0x2c, 0x36, 0x08, 0x56,
16 };
17 
18 static struct ast_frame *ilbc_sample(void)
19 {
20  static struct ast_frame f = {
22  .subclass.codec = AST_FORMAT_ILBC,
23  .datalen = sizeof(ex_ilbc),
24  /* All frames are 30 ms long */
26  .mallocd = 0,
27  .offset = 0,
28  .src = __PRETTY_FUNCTION__,
29  .data.ptr = ex_ilbc,
30  };
31 
32  return &f;
33 }
int offset
Definition: frame.h:156
static uint8_t ex_ilbc[]
Definition: ex_ilbc.h:10
static struct ast_frame * ilbc_sample(void)
Definition: ex_ilbc.h:18
const char * src
Definition: frame.h:158
#define ILBC_SAMPLES
Definition: codec_ilbc.c:48
static struct ast_format f[]
Definition: format_g726.c:181
int mallocd
Definition: frame.h:152
Data structure associated with a single frame of data.
Definition: frame.h:142
enum ast_frame_type frametype
Definition: frame.h:144
union ast_frame::@172 data
#define AST_FORMAT_ILBC
Definition: frame.h:262
int samples
Definition: frame.h:150