~ubuntu-branches/ubuntu/hardy/speex/hardy-security

« back to all changes in this revision

Viewing changes to include/speex/speex_header.h

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2005-02-26 22:33:22 UTC
  • Revision ID: james.westby@ubuntu.com-20050226223322-vc6sdoshrqjxfh9c
Tags: upstream-1.1.6
ImportĀ upstreamĀ versionĀ 1.1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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:
 
10
   
 
11
   - Redistributions of source code must retain the above copyright
 
12
   notice, this list of conditions and the following disclaimer.
 
13
   
 
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.
 
17
   
 
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.
 
21
   
 
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.
 
33
 
 
34
*/
 
35
 
 
36
 
 
37
#ifndef SPEEX_HEADER_H
 
38
#define SPEEX_HEADER_H
 
39
 
 
40
#ifdef __cplusplus
 
41
extern "C" {
 
42
#endif
 
43
 
 
44
struct SpeexMode;
 
45
 
 
46
/** Maximum number of characters for encoding the Speex version number in the header */
 
47
#define SPEEX_HEADER_VERSION_LENGTH 20
 
48
 
 
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;
 
67
 
 
68
/** Initializes a SpeexHeader using basic information */
 
69
void speex_init_header(SpeexHeader *header, int rate, int nb_channels, const struct SpeexMode *m);
 
70
 
 
71
/** Creates the header packet from the header itself (mostly involves endianness conversion) */
 
72
char *speex_header_to_packet(SpeexHeader *header, int *size);
 
73
 
 
74
/** Creates a SpeexHeader from a packet */
 
75
SpeexHeader *speex_packet_to_header(char *packet, int size);
 
76
 
 
77
#ifdef __cplusplus
 
78
}
 
79
#endif
 
80
 
 
81
 
 
82
#endif