Checkin of validated codec used during development
[opal.git] / plugins / audio / Speex / libspeex / speex_header.h
blob8ded911423bd61d2428279c8f3af886851fbf669
1 /* Copyright (C) 2002 Jean-Marc Valin */
2 /**
3 @file speex_header.h
4 @brief Describes the Speex header
5 */
6 /*
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions
9 are met:
11 - Redistributions of source code must retain the above copyright
12 notice, this list of conditions and the following disclaimer.
14 - Redistributions in binary form must reproduce the above copyright
15 notice, this list of conditions and the following disclaimer in the
16 documentation and/or other materials provided with the distribution.
18 - Neither the name of the Xiph.org Foundation nor the names of its
19 contributors may be used to endorse or promote products derived from
20 this software without specific prior written permission.
22 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
26 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
29 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #ifndef SPEEX_HEADER_H
38 #define SPEEX_HEADER_H
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
44 struct SpeexMode;
46 /** Maximum number of characters for encoding the Speex version number in the header */
47 #define SPEEX_HEADER_VERSION_LENGTH 20
49 /** Speex header info for file-based formats */
50 typedef struct SpeexHeader {
51 char speex_string[8]; /**< Identifies a Speex bit-stream, always set to "Speex " */
52 char speex_version[SPEEX_HEADER_VERSION_LENGTH]; /**< Speex version */
53 int speex_version_id; /**< Version for Speex (for checking compatibility) */
54 int header_size; /**< Total size of the header ( sizeof(SpeexHeader) ) */
55 int rate; /**< Sampling rate used */
56 int mode; /**< Mode used (0 for narrowband, 1 for wideband) */
57 int mode_bitstream_version; /**< Version ID of the bit-stream */
58 int nb_channels; /**< Number of channels encoded */
59 int bitrate; /**< Bit-rate used */
60 int frame_size; /**< Size of frames */
61 int vbr; /**< 1 for a VBR encoding, 0 otherwise */
62 int frames_per_packet; /**< Number of frames stored per Ogg packet */
63 int extra_headers; /**< Number of additional headers after the comments */
64 int reserved1; /**< Reserved for future use, must be zero */
65 int reserved2; /**< Reserved for future use, must be zero */
66 } SpeexHeader;
68 /** Initializes a SpeexHeader using basic information */
69 void speex_init_header(SpeexHeader *header, int rate, int nb_channels, struct SpeexMode *m);
71 /** Creates the header packet from the header itself (mostly involves endianness conversion) */
72 char *speex_header_to_packet(SpeexHeader *header, int *size);
74 /** Creates a SpeexHeader from a packet */
75 SpeexHeader *speex_packet_to_header(char *packet, int size);
77 #ifdef __cplusplus
79 #endif
82 #endif