File: ex_lpc10.h

package info (click to toggle)
asterisk 1%3A1.8.13.1~dfsg1-3%2Bdeb7u3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 49,336 kB
  • sloc: ansic: 497,975; sh: 11,763; cpp: 5,934; makefile: 3,065; perl: 3,019; yacc: 2,147; xml: 498; sql: 387; tcl: 113; php: 62; python: 42
file content (30 lines) | stat: -rw-r--r-- 660 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*! \file
 * \brief
 *
 * Copyright (C) 2008, Digium, Inc.
 *
 * Distributed under the terms of the GNU General Public License
 *
 */

static uint8_t ex_lpc10[] = {
	0x01, 0x08, 0x31, 0x08, 0x31, 0x80, 0x30,
};

static struct ast_frame *lpc10_sample(void)
{
	static struct ast_frame f = {
		.frametype = AST_FRAME_VOICE,
		.subclass.codec = AST_FORMAT_LPC10,
		.datalen = sizeof(ex_lpc10),
		/* All frames are 22 ms long (maybe a little more -- why did he choose
		   LPC10_SAMPLES_PER_FRAME sample frames anyway?? */
		.samples = LPC10_SAMPLES_PER_FRAME,
		.mallocd = 0,
		.offset = 0,
		.src = __PRETTY_FUNCTION__,
		.data.ptr = ex_lpc10,
	};

	return &f;
}