Fri Nov 12 12:00:23 2010

Asterisk developer's documentation


ex_speex.h File Reference

Random Data. More...

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

static struct ast_framespeex_sample (void)

Variables

static uint8_t ex_speex []

Detailed Description

Random Data.

Copyright (C) 2008, Digium, Inc.

Distributed under the terms of the GNU General Public License

Definition in file ex_speex.h.


Function Documentation

static struct ast_frame* speex_sample ( void   )  [static, read]

Definition at line 17 of file ex_speex.h.

References AST_FORMAT_SPEEX, AST_FRAME_VOICE, ast_frame::data, ex_speex, ast_frame::frametype, ast_frame::mallocd, ast_frame::offset, ast_frame::samples, SPEEX_SAMPLES, and ast_frame::src.

00018 {
00019    static struct ast_frame f = {
00020       .frametype = AST_FRAME_VOICE,
00021       .subclass = AST_FORMAT_SPEEX,
00022       .datalen = sizeof(ex_speex),
00023       /* All frames are 20 ms long */
00024       .samples = SPEEX_SAMPLES,
00025       .mallocd = 0,
00026       .offset = 0,
00027       .src = __PRETTY_FUNCTION__,
00028       .data.ptr = ex_speex,
00029    };
00030 
00031    return &f;
00032 }


Variable Documentation

uint8_t ex_speex[] [static]

Definition at line 10 of file ex_speex.h.

Referenced by speex_sample().


Generated by  doxygen 1.6.2