4-bit G.726 data More...
Go to the source code of this file.
Functions | |
static struct ast_frame * | g726_sample (void) |
Variables | |
static uint8_t | ex_g726 [] |
4-bit G.726 data
Copyright (C) 2008, Digium, Inc.
Distributed under the terms of the GNU General Public License
Definition in file ex_g726.h.
static struct ast_frame* g726_sample | ( | void | ) | [static, read] |
Definition at line 18 of file ex_g726.h.
References ARRAY_LEN, AST_FORMAT_G726, AST_FRAME_VOICE, ex_g726, ast_frame::frametype, and ast_frame::samples.
00019 { 00020 static struct ast_frame f = { 00021 .frametype = AST_FRAME_VOICE, 00022 .subclass.codec = AST_FORMAT_G726, 00023 .datalen = sizeof(ex_g726), 00024 .samples = ARRAY_LEN(ex_g726) * 2, /* 2 samples per byte */ 00025 .mallocd = 0, 00026 .offset = 0, 00027 .src = __PRETTY_FUNCTION__, 00028 .data.ptr = ex_g726, 00029 }; 00030 00031 return &f; 00032 }
uint8_t ex_g726[] [static] |
Definition at line 10 of file ex_g726.h.
Referenced by g726_sample().