Fix some greedy sed changes in imported code. Also provide a sys/types.h for compatib...
[kugel-rb.git] / apps / codecs / libspeex / speex / speex_jitter.h
blob03bac156365a7cee30e9a07bae0df2971097c59d
1 /* Copyright (C) 2002 Jean-Marc Valin */
2 /**
3 @file speex_jitter.h
4 @brief Adaptive jitter buffer for Speex
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.
36 #ifndef SPEEX_JITTER_H
37 #define SPEEX_JITTER_H
38 /** @defgroup JitterBuffer JitterBuffer: Adaptive jitter buffer
39 * This is the jitter buffer that reorders UDP/RTP packets and adjusts the buffer size
40 * to maintain good quality and low latency.
41 * @{
44 #include "speex_types.h"
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
50 /** Generic adaptive jitter buffer state */
51 struct JitterBuffer_;
53 /** Generic adaptive jitter buffer state */
54 typedef struct JitterBuffer_ JitterBuffer;
56 /** Definition of an incoming packet */
57 typedef struct _JitterBufferPacket JitterBufferPacket;
59 /** Definition of an incoming packet */
60 struct _JitterBufferPacket {
61 char *data; /**< Data bytes contained in the packet */
62 spx_uint32_t len; /**< Length of the packet in bytes */
63 spx_uint32_t timestamp; /**< Timestamp for the packet */
64 spx_uint32_t span; /**< Time covered by the packet (same units as timestamp) */
65 spx_uint16_t sequence; /**< RTP Sequence number if available (0 otherwise) */
66 spx_uint32_t user_data; /**< Put whatever data you like here (it's ignored by the jitter buffer) */
69 /** Packet has been retrieved */
70 #define JITTER_BUFFER_OK 0
71 /** Packet is lost or is late */
72 #define JITTER_BUFFER_MISSING 1
73 /** A "fake" packet is meant to be inserted here to increase buffering */
74 #define JITTER_BUFFER_INSERTION 2
75 /** There was an error in the jitter buffer */
76 #define JITTER_BUFFER_INTERNAL_ERROR -1
77 /** Invalid argument */
78 #define JITTER_BUFFER_BAD_ARGUMENT -2
81 /** Set minimum amount of extra buffering required (margin) */
82 #define JITTER_BUFFER_SET_MARGIN 0
83 /** Get minimum amount of extra buffering required (margin) */
84 #define JITTER_BUFFER_GET_MARGIN 1
85 /* JITTER_BUFFER_SET_AVAILABLE_COUNT wouldn't make sense */
87 /** Get the amount of available packets currently buffered */
88 #define JITTER_BUFFER_GET_AVAILABLE_COUNT 3
89 /** Included because of an early misspelling (will remove in next release) */
90 #define JITTER_BUFFER_GET_AVALIABLE_COUNT 3
92 /** Assign a function to destroy unused packet. When setting that, the jitter
93 buffer no longer copies packet data. */
94 #define JITTER_BUFFER_SET_DESTROY_CALLBACK 4
95 /** */
96 #define JITTER_BUFFER_GET_DESTROY_CALLBACK 5
98 /** Tell the jitter buffer to only adjust the delay in multiples of the step parameter provided */
99 #define JITTER_BUFFER_SET_DELAY_STEP 6
100 /** */
101 #define JITTER_BUFFER_GET_DELAY_STEP 7
103 /** Tell the jitter buffer to only do concealment in multiples of the size parameter provided */
104 #define JITTER_BUFFER_SET_CONCEALMENT_SIZE 8
105 #define JITTER_BUFFER_GET_CONCEALMENT_SIZE 9
107 /** Absolute max amount of loss that can be tolerated regardless of the delay. Typical loss
108 should be half of that or less. */
109 #define JITTER_BUFFER_SET_MAX_LATE_RATE 10
110 #define JITTER_BUFFER_GET_MAX_LATE_RATE 11
112 /** Equivalent cost of one percent late packet in timestamp units */
113 #define JITTER_BUFFER_SET_LATE_COST 12
114 #define JITTER_BUFFER_GET_LATE_COST 13
117 /** Initialises jitter buffer
119 * @param step_size Starting value for the size of concleanment packets and delay
120 adjustment steps. Can be changed at any time using JITTER_BUFFER_SET_DELAY_STEP
121 and JITTER_BUFFER_GET_CONCEALMENT_SIZE.
122 * @return Newly created jitter buffer state
124 JitterBuffer *jitter_buffer_init(int step_size);
126 /** Restores jitter buffer to its original state
128 * @param jitter Jitter buffer state
130 void jitter_buffer_reset(JitterBuffer *jitter);
132 /** Destroys jitter buffer
134 * @param jitter Jitter buffer state
136 void jitter_buffer_destroy(JitterBuffer *jitter);
138 /** Put one packet into the jitter buffer
140 * @param jitter Jitter buffer state
141 * @param packet Incoming packet
143 void jitter_buffer_put(JitterBuffer *jitter, const JitterBufferPacket *packet);
145 /** Get one packet from the jitter buffer
147 * @param jitter Jitter buffer state
148 * @param packet Returned packet
149 * @param desired_span Number of samples (or units) we wish to get from the buffer (no guarantee)
150 * @param current_timestamp Timestamp for the returned packet
152 int jitter_buffer_get(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t desired_span, spx_int32_t *start_offset);
154 /** Used right after jitter_buffer_get() to obtain another packet that would have the same timestamp.
155 * This is mainly useful for media where a single "frame" can be split into several packets.
157 * @param jitter Jitter buffer state
158 * @param packet Returned packet
160 int jitter_buffer_get_another(JitterBuffer *jitter, JitterBufferPacket *packet);
162 /** Get pointer timestamp of jitter buffer
164 * @param jitter Jitter buffer state
166 int jitter_buffer_get_pointer_timestamp(JitterBuffer *jitter);
168 /** Advance by one tick
170 * @param jitter Jitter buffer state
172 void jitter_buffer_tick(JitterBuffer *jitter);
174 /** Telling the jitter buffer about the remaining data in the application buffer
175 * @param jitter Jitter buffer state
176 * @param rem Amount of data buffered by the application (timestamp units)
178 void jitter_buffer_remaining_span(JitterBuffer *jitter, spx_uint32_t rem);
180 /** Used like the ioctl function to control the jitter buffer parameters
182 * @param jitter Jitter buffer state
183 * @param request ioctl-type request (one of the JITTER_BUFFER_* macros)
184 * @param ptr Data exchanged to-from function
185 * @return 0 if no error, -1 if request in unknown
187 int jitter_buffer_ctl(JitterBuffer *jitter, int request, void *ptr);
189 int jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset);
191 /* @} */
193 #ifdef __cplusplus
195 #endif
197 #endif