
Go to the source code of this file.
Functions | |
| static struct ast_frame * | ilbc_sample (void) |
Variables | |
| static uint8_t | ex_ilbc [] |
Copyright (C) 2008, Digium, Inc.
Distributed under the terms of the GNU General Public License
Definition in file ex_ilbc.h.
| static struct ast_frame* ilbc_sample | ( | void | ) | [static, read] |
Definition at line 18 of file ex_ilbc.h.
References AST_FORMAT_ILBC, ast_format_set(), AST_FRAME_VOICE, ast_frame::data, ex_ilbc, ast_frame_subclass::format, ast_frame::frametype, ILBC_SAMPLES, ast_frame::mallocd, ast_frame::offset, ast_frame::samples, ast_frame::src, and ast_frame::subclass.
00019 { 00020 static struct ast_frame f = { 00021 .frametype = AST_FRAME_VOICE, 00022 .datalen = sizeof(ex_ilbc), 00023 /* All frames are 30 ms long */ 00024 .samples = ILBC_SAMPLES, 00025 .mallocd = 0, 00026 .offset = 0, 00027 .src = __PRETTY_FUNCTION__, 00028 .data.ptr = ex_ilbc, 00029 }; 00030 00031 ast_format_set(&f.subclass.format, AST_FORMAT_ILBC, 0); 00032 return &f; 00033 }
uint8_t ex_ilbc[] [static] |
1.5.6