Searched refs:SpeexHeader (Results 1 - 2 of 2) sorted by relevance

/external/speex/include/speex/
H A Dspeex_header.h39 /** @defgroup SpeexHeader SpeexHeader: Makes it easy to write/parse an Ogg/Speex header
59 typedef struct SpeexHeader { struct
63 spx_int32_t header_size; /**< Total size of the header ( sizeof(SpeexHeader) ) */
75 } SpeexHeader; typedef in typeref:struct:SpeexHeader
77 /** Initializes a SpeexHeader using basic information */
78 void speex_init_header(SpeexHeader *header, int rate, int nb_channels, const struct SpeexMode *m);
81 char *speex_header_to_packet(SpeexHeader *header, int *size);
83 /** Creates a SpeexHeader from a packet */
84 SpeexHeader *speex_packet_to_heade
[all...]
/external/speex/libspeex/
H A Dspeex_header.c67 typedef struct SpeexHeader {
83 } SpeexHeader;
86 EXPORT void speex_init_header(SpeexHeader *header, int rate, int nb_channels, const SpeexMode *m)
103 header->header_size = sizeof(SpeexHeader);
121 EXPORT char *speex_header_to_packet(SpeexHeader *header, int *size)
123 SpeexHeader *le_header;
124 le_header = (SpeexHeader*)speex_alloc(sizeof(SpeexHeader));
141 *size = sizeof(SpeexHeader);
145 EXPORT SpeexHeader *speex_packet_to_heade
[all...]

Completed in 115 milliseconds