File: ex_ilbc.h

package info (click to toggle)
asterisk 1%3A16.2.1~dfsg-1%2Bdeb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 59,360 kB
  • sloc: ansic: 743,813; sh: 12,460; python: 5,085; sql: 4,427; makefile: 3,117; perl: 3,103; javascript: 3,018; yacc: 2,161; cpp: 2,099; xml: 997; tcl: 113; php: 62
file content (37 lines) | stat: -rw-r--r-- 966 bytes parent folder | download | duplicates (4)
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
31
32
33
34
35
36
37
/*! \file
 * \brief Raw 8-bit data
 *
 * Copyright (C) 2008, Digium, Inc.
 *
 * Distributed under the terms of the GNU General Public License
 *
 */

#include "asterisk/format_cache.h"      /* for ast_format_ilbc */
#include "asterisk/frame.h"             /* for ast_frame, etc */

static uint8_t ex_ilbc[] = {
	0xff, 0xa0, 0xff, 0xfa, 0x0f, 0x60, 0x12, 0x11, 0xa2, 0x47,
	0x22, 0x8c, 0x00, 0x00, 0x01, 0x02, 0x80, 0x43, 0xa0, 0x40,
	0x33, 0xff, 0xcf, 0xc0, 0xf3, 0xf3, 0x3f, 0x8f, 0x3f, 0xff,
	0xff, 0xff, 0xff, 0xfc, 0xf9, 0xe5, 0x55, 0x78, 0x0b, 0xca,
	0xe1, 0x27, 0x94, 0x7b, 0xa8, 0x91, 0x2c, 0x36, 0x08, 0x56,
};

static struct ast_frame *ilbc_sample(void)
{
	static struct ast_frame f = {
		.frametype = AST_FRAME_VOICE,
		.datalen = sizeof(ex_ilbc),
		/* example frames are default long (30 ms) */
		.samples = 240,
		.mallocd = 0,
		.offset = 0,
		.src = __PRETTY_FUNCTION__,
		.data.ptr = ex_ilbc,
	};

	f.subclass.format = ast_format_ilbc;

	return &f;
}