Asterisk - The Open Source Telephony Project  18.5.0
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 #include "asterisk/format_cache.h" /* for ast_format_ilbc */
11 #include "asterisk/frame.h" /* for ast_frame, etc */
12 
13 static uint8_t ex_ilbc[] = {
14  0xff, 0xa0, 0xff, 0xfa, 0x0f, 0x60, 0x12, 0x11, 0xa2, 0x47,
15  0x22, 0x8c, 0x00, 0x00, 0x01, 0x02, 0x80, 0x43, 0xa0, 0x40,
16  0x33, 0xff, 0xcf, 0xc0, 0xf3, 0xf3, 0x3f, 0x8f, 0x3f, 0xff,
17  0xff, 0xff, 0xff, 0xfc, 0xf9, 0xe5, 0x55, 0x78, 0x0b, 0xca,
18  0xe1, 0x27, 0x94, 0x7b, 0xa8, 0x91, 0x2c, 0x36, 0x08, 0x56,
19 };
20 
21 static struct ast_frame *ilbc_sample(void)
22 {
23  static struct ast_frame f = {
25  .datalen = sizeof(ex_ilbc),
26  /* example frames are default long (30 ms) */
27  .samples = 240,
28  .mallocd = 0,
29  .offset = 0,
30  .src = __PRETTY_FUNCTION__,
31  .data.ptr = ex_ilbc,
32  };
33 
35 
36  return &f;
37 }
static uint8_t ex_ilbc[]
Definition: ex_ilbc.h:13
struct ast_frame_subclass subclass
static struct ast_frame * ilbc_sample(void)
Definition: ex_ilbc.h:21
const char * src
Asterisk internal frame definitions.
Data structure associated with a single frame of data.
union ast_frame::@263 data
enum ast_frame_type frametype
struct ast_format * format
Media Format Cache API.
struct ast_format * ast_format_ilbc
Built-in cached ilbc format.
Definition: format_cache.c:126