Asterisk - The Open Source Telephony Project  18.5.0
Functions | Variables
ex_ilbc.h File Reference

Raw 8-bit data. More...

#include "asterisk/format_cache.h"
#include "asterisk/frame.h"
Include dependency graph for ex_ilbc.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

static struct ast_frameilbc_sample (void)
 

Variables

static uint8_t ex_ilbc []
 

Detailed Description

Raw 8-bit data.

Copyright (C) 2008, Digium, Inc.

Distributed under the terms of the GNU General Public License

Definition in file ex_ilbc.h.

Function Documentation

◆ ilbc_sample()

static struct ast_frame* ilbc_sample ( void  )
static

Definition at line 21 of file ex_ilbc.h.

References ast_format_ilbc, AST_FRAME_VOICE, ast_frame::data, ex_ilbc, ast_frame_subclass::format, ast_frame::frametype, ast_frame::mallocd, ast_frame::offset, ast_frame::samples, ast_frame::src, and ast_frame::subclass.

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
const char * src
Data structure associated with a single frame of data.
union ast_frame::@263 data
enum ast_frame_type frametype
struct ast_format * format
struct ast_format * ast_format_ilbc
Built-in cached ilbc format.
Definition: format_cache.c:126

Variable Documentation

◆ ex_ilbc

uint8_t ex_ilbc[]
static

Definition at line 13 of file ex_ilbc.h.

Referenced by ilbc_sample().