1 /*
2 	libmpg123: MPEG Audio Decoder library (version 1.22.0)
3 
4 	copyright 1995-2010 by the mpg123 project - free software under the terms of the LGPL 2.1
5 	see COPYING and AUTHORS files in distribution or http://mpg123.org
6 */
7 
8 #ifndef MPG123_LIB_H
9 #define MPG123_LIB_H
10 
11 /** \file mpg123.h The header file for the libmpg123 MPEG Audio decoder */
12 
13 /* A macro to check at compile time which set of API functions to expect.
14    This should be incremented at least each time a new symbol is added to the header. */
15 #define MPG123_API_VERSION 41
16 
17 /* These aren't actually in use... seems to work without using libtool. */
18 #ifdef BUILD_MPG123_DLL
19 /* The dll exports. */
20 #define MPG123_EXPORT __declspec(dllexport)
21 #else
22 #ifdef LINK_MPG123_DLL
23 /* The exe imports. */
24 #define MPG123_EXPORT __declspec(dllimport)
25 #else
26 /* Nothing on normal/UNIX builds */
27 #define MPG123_EXPORT
28 #endif
29 #endif
30 
31 #ifndef MPG123_NO_CONFIGURE /* Enable use of this file without configure. */
32 #include <stdlib.h>
33 #include <sys/types.h>
34 
35 /* Simplified large file handling.
36 	I used to have a check here that prevents building for a library with conflicting large file setup
37 	(application that uses 32 bit offsets with library that uses 64 bits).
38 	While that was perfectly fine in an environment where there is one incarnation of the library,
39 	it hurt GNU/Linux and Solaris systems with multilib where the distribution fails to provide the
40 	correct header matching the 32 bit library (where large files need explicit support) or
41 	the 64 bit library (where there is no distinction).
42 
43 	New approach: When the app defines _FILE_OFFSET_BITS, it wants non-default large file support,
44 	and thus functions with added suffix (mpg123_open_64).
45 	Any mismatch will be caught at link time because of the _FILE_OFFSET_BITS setting used when
46 	building libmpg123. Plus, there's dual mode large file support in mpg123 since 1.12 now.
47 	Link failure is not the expected outcome of any half-sane usage anymore.
48 
49 	More complication: What about client code defining _LARGEFILE64_SOURCE? It might want direct access to the _64 functions, along with the ones without suffix. Well, that's possible now via defining MPG123_NO_LARGENAME and MPG123_LARGESUFFIX, respectively, for disabling or enforcing the suffix names.
50 */
51 
52 /*
53 	Now, the renaming of large file aware functions.
54 	By default, it appends underscore _FILE_OFFSET_BITS (so, mpg123_seek_64 for mpg123_seek), if _FILE_OFFSET_BITS is defined. You can force a different suffix via MPG123_LARGESUFFIX (that must include the underscore), or you can just disable the whole mess by defining MPG123_NO_LARGENAME.
55 */
56 #if (!defined MPG123_NO_LARGENAME) && ((defined _FILE_OFFSET_BITS) || (defined MPG123_LARGESUFFIX))
57 
58 /* Need some trickery to concatenate the value(s) of the given macro(s). */
59 #define MPG123_MACROCAT_REALLY(a, b) a ## b
60 #define MPG123_MACROCAT(a, b) MPG123_MACROCAT_REALLY(a, b)
61 #ifndef MPG123_LARGESUFFIX
62 #define MPG123_LARGESUFFIX MPG123_MACROCAT(_, _FILE_OFFSET_BITS)
63 #endif
64 #define MPG123_LARGENAME(func) MPG123_MACROCAT(func, MPG123_LARGESUFFIX)
65 
66 #define mpg123_open         MPG123_LARGENAME(mpg123_open)
67 #define mpg123_open_fd      MPG123_LARGENAME(mpg123_open_fd)
68 #define mpg123_open_handle  MPG123_LARGENAME(mpg123_open_handle)
69 #define mpg123_framebyframe_decode MPG123_LARGENAME(mpg123_framebyframe_decode)
70 #define mpg123_decode_frame MPG123_LARGENAME(mpg123_decode_frame)
71 #define mpg123_tell         MPG123_LARGENAME(mpg123_tell)
72 #define mpg123_tellframe    MPG123_LARGENAME(mpg123_tellframe)
73 #define mpg123_tell_stream  MPG123_LARGENAME(mpg123_tell_stream)
74 #define mpg123_seek         MPG123_LARGENAME(mpg123_seek)
75 #define mpg123_feedseek     MPG123_LARGENAME(mpg123_feedseek)
76 #define mpg123_seek_frame   MPG123_LARGENAME(mpg123_seek_frame)
77 #define mpg123_timeframe    MPG123_LARGENAME(mpg123_timeframe)
78 #define mpg123_index        MPG123_LARGENAME(mpg123_index)
79 #define mpg123_set_index    MPG123_LARGENAME(mpg123_set_index)
80 #define mpg123_position     MPG123_LARGENAME(mpg123_position)
81 #define mpg123_length       MPG123_LARGENAME(mpg123_length)
82 #define mpg123_set_filesize MPG123_LARGENAME(mpg123_set_filesize)
83 #define mpg123_replace_reader MPG123_LARGENAME(mpg123_replace_reader)
84 #define mpg123_replace_reader_handle MPG123_LARGENAME(mpg123_replace_reader_handle)
85 #define mpg123_framepos MPG123_LARGENAME(mpg123_framepos)
86 
87 #endif /* largefile hackery */
88 
89 #endif /* MPG123_NO_CONFIGURE */
90 
91 #ifdef __cplusplus
92 extern "C" {
93 #endif
94 
95 /** \defgroup mpg123_init mpg123 library and handle setup
96  *
97  * Functions to initialise and shutdown the mpg123 library and handles.
98  * The parameters of handles have workable defaults, you only have to tune them when you want to tune something;-)
99  * Tip: Use a RVA setting...
100  *
101  * @{
102  */
103 
104 /** Opaque structure for the libmpg123 decoder handle. */
105 struct mpg123_handle_struct;
106 
107 /** Opaque structure for the libmpg123 decoder handle.
108  *  Most functions take a pointer to a mpg123_handle as first argument and operate on its data in an object-oriented manner.
109  */
110 typedef struct mpg123_handle_struct mpg123_handle;
111 
112 /** Function to initialise the mpg123 library.
113  *	This function is not thread-safe. Call it exactly once per process, before any other (possibly threaded) work with the library.
114  *
115  *	\return MPG123_OK if successful, otherwise an error number.
116  */
117 MPG123_EXPORT int  mpg123_init(void);
118 
119 /** Function to close down the mpg123 library.
120  *	This function is not thread-safe. Call it exactly once per process, before any other (possibly threaded) work with the library. */
121 MPG123_EXPORT void mpg123_exit(void);
122 
123 /** Create a handle with optional choice of decoder (named by a string, see mpg123_decoders() or mpg123_supported_decoders()).
124  *  and optional retrieval of an error code to feed to mpg123_plain_strerror().
125  *  Optional means: Any of or both the parameters may be NULL.
126  *
127  *  \return Non-NULL pointer when successful.
128  */
129 MPG123_EXPORT mpg123_handle *mpg123_new(const char* decoder, int *error);
130 
131 /** Delete handle, mh is either a valid mpg123 handle or NULL. */
132 MPG123_EXPORT void mpg123_delete(mpg123_handle *mh);
133 
134 /** Enumeration of the parameters types that it is possible to set/get. */
135 enum mpg123_parms
136 {
137 	MPG123_VERBOSE = 0,        /**< set verbosity value for enabling messages to stderr, >= 0 makes sense (integer) */
138 	MPG123_FLAGS,          /**< set all flags, p.ex val = MPG123_GAPLESS|MPG123_MONO_MIX (integer) */
139 	MPG123_ADD_FLAGS,      /**< add some flags (integer) */
140 	MPG123_FORCE_RATE,     /**< when value > 0, force output rate to that value (integer) */
141 	MPG123_DOWN_SAMPLE,    /**< 0=native rate, 1=half rate, 2=quarter rate (integer) */
142 	MPG123_RVA,            /**< one of the RVA choices above (integer) */
143 	MPG123_DOWNSPEED,      /**< play a frame N times (integer) */
144 	MPG123_UPSPEED,        /**< play every Nth frame (integer) */
145 	MPG123_START_FRAME,    /**< start with this frame (skip frames before that, integer) */
146 	MPG123_DECODE_FRAMES,  /**< decode only this number of frames (integer) */
147 	MPG123_ICY_INTERVAL,   /**< stream contains ICY metadata with this interval (integer) */
148 	MPG123_OUTSCALE,       /**< the scale for output samples (amplitude - integer or float according to mpg123 output format, normally integer) */
149 	MPG123_TIMEOUT,        /**< timeout for reading from a stream (not supported on win32, integer) */
150 	MPG123_REMOVE_FLAGS,   /**< remove some flags (inverse of MPG123_ADD_FLAGS, integer) */
151 	MPG123_RESYNC_LIMIT,   /**< Try resync on frame parsing for that many bytes or until end of stream (<0 ... integer). This can enlarge the limit for skipping junk on beginning, too (but not reduce it).  */
152 	MPG123_INDEX_SIZE      /**< Set the frame index size (if supported). Values <0 mean that the index is allowed to grow dynamically in these steps (in positive direction, of course) -- Use this when you really want a full index with every individual frame. */
153 	,MPG123_PREFRAMES /**< Decode/ignore that many frames in advance for layer 3. This is needed to fill bit reservoir after seeking, for example (but also at least one frame in advance is needed to have all "normal" data for layer 3). Give a positive integer value, please.*/
154 	,MPG123_FEEDPOOL  /**< For feeder mode, keep that many buffers in a pool to avoid frequent malloc/free. The pool is allocated on mpg123_open_feed(). If you change this parameter afterwards, you can trigger growth and shrinkage during decoding. The default value could change any time. If you care about this, then set it. (integer) */
155 	,MPG123_FEEDBUFFER /**< Minimal size of one internal feeder buffer, again, the default value is subject to change. (integer) */
156 };
157 
158 /** Flag bits for MPG123_FLAGS, use the usual binary or to combine. */
159 enum mpg123_param_flags
160 {
161 	 MPG123_FORCE_MONO   = 0x7  /**<     0111 Force some mono mode: This is a test bitmask for seeing if any mono forcing is active. */
162 	,MPG123_MONO_LEFT    = 0x1  /**<     0001 Force playback of left channel only.  */
163 	,MPG123_MONO_RIGHT   = 0x2  /**<     0010 Force playback of right channel only. */
164 	,MPG123_MONO_MIX     = 0x4  /**<     0100 Force playback of mixed mono.         */
165 	,MPG123_FORCE_STEREO = 0x8  /**<     1000 Force stereo output.                  */
166 	,MPG123_FORCE_8BIT   = 0x10 /**< 00010000 Force 8bit formats.                   */
167 	,MPG123_QUIET        = 0x20 /**< 00100000 Suppress any printouts (overrules verbose).                    */
168 	,MPG123_GAPLESS      = 0x40 /**< 01000000 Enable gapless decoding (default on if libmpg123 has support). */
169 	,MPG123_NO_RESYNC    = 0x80 /**< 10000000 Disable resync stream after error.                             */
170 	,MPG123_SEEKBUFFER   = 0x100 /**< 000100000000 Enable small buffer on non-seekable streams to allow some peek-ahead (for better MPEG sync). */
171 	,MPG123_FUZZY        = 0x200 /**< 001000000000 Enable fuzzy seeks (guessing byte offsets or using approximate seek points from Xing TOC) */
172 	,MPG123_FORCE_FLOAT  = 0x400 /**< 010000000000 Force floating point output (32 or 64 bits depends on mpg123 internal precision). */
173 	,MPG123_PLAIN_ID3TEXT = 0x800 /**< 100000000000 Do not translate ID3 text data to UTF-8. ID3 strings will contain the raw text data, with the first byte containing the ID3 encoding code. */
174 	,MPG123_IGNORE_STREAMLENGTH = 0x1000 /**< 1000000000000 Ignore any stream length information contained in the stream, which can be contained in a 'TLEN' frame of an ID3v2 tag or a Xing tag */
175 	,MPG123_SKIP_ID3V2 = 0x2000 /**< 10 0000 0000 0000 Do not parse ID3v2 tags, just skip them. */
176 	,MPG123_IGNORE_INFOFRAME = 0x4000 /**< 100 0000 0000 0000 Do not parse the LAME/Xing info frame, treat it as normal MPEG data. */
177 	,MPG123_AUTO_RESAMPLE = 0x8000 /**< 1000 0000 0000 0000 Allow automatic internal resampling of any kind (default on if supported). Especially when going lowlevel with replacing output buffer, you might want to unset this flag. Setting MPG123_DOWNSAMPLE or MPG123_FORCE_RATE will override this. */
178 	,MPG123_PICTURE = 0x10000 /**< 17th bit: Enable storage of pictures from tags (ID3v2 APIC). */
179 };
180 
181 /** choices for MPG123_RVA */
182 enum mpg123_param_rva
183 {
184 	 MPG123_RVA_OFF   = 0 /**< RVA disabled (default).   */
185 	,MPG123_RVA_MIX   = 1 /**< Use mix/track/radio gain. */
186 	,MPG123_RVA_ALBUM = 2 /**< Use album/audiophile gain */
187 	,MPG123_RVA_MAX   = MPG123_RVA_ALBUM /**< The maximum RVA code, may increase in future. */
188 };
189 
190 /* TODO: Assess the possibilities and troubles of changing parameters during playback. */
191 
192 /** Set a specific parameter, for a specific mpg123_handle, using a parameter
193  *  type key chosen from the mpg123_parms enumeration, to the specified value.
194  * \return MPG123_OK on success
195  */
196 MPG123_EXPORT int mpg123_param(mpg123_handle *mh, enum mpg123_parms type, long value, double fvalue);
197 
198 /** Get a specific parameter, for a specific mpg123_handle.
199  *  See the mpg123_parms enumeration for a list of available parameters.
200  *  \return MPG123_OK on success
201  */
202 MPG123_EXPORT int mpg123_getparam(mpg123_handle *mh, enum mpg123_parms type, long *val, double *fval);
203 
204 /** Feature set available for query with mpg123_feature. */
205 enum mpg123_feature_set
206 {
207 	 MPG123_FEATURE_ABI_UTF8OPEN = 0     /**< mpg123 expects path names to be given in UTF-8 encoding instead of plain native. */
208 	,MPG123_FEATURE_OUTPUT_8BIT          /**< 8bit output   */
209 	,MPG123_FEATURE_OUTPUT_16BIT         /**< 16bit output  */
210 	,MPG123_FEATURE_OUTPUT_32BIT         /**< 32bit output  */
211 	,MPG123_FEATURE_INDEX                /**< support for building a frame index for accurate seeking */
212 	,MPG123_FEATURE_PARSE_ID3V2          /**< id3v2 parsing */
213 	,MPG123_FEATURE_DECODE_LAYER1        /**< mpeg layer-1 decoder enabled */
214 	,MPG123_FEATURE_DECODE_LAYER2        /**< mpeg layer-2 decoder enabled */
215 	,MPG123_FEATURE_DECODE_LAYER3        /**< mpeg layer-3 decoder enabled */
216 	,MPG123_FEATURE_DECODE_ACCURATE      /**< accurate decoder rounding    */
217 	,MPG123_FEATURE_DECODE_DOWNSAMPLE    /**< downsample (sample omit)     */
218 	,MPG123_FEATURE_DECODE_NTOM          /**< flexible rate decoding       */
219 	,MPG123_FEATURE_PARSE_ICY            /**< ICY support                  */
220 	,MPG123_FEATURE_TIMEOUT_READ         /**< Reader with timeout (network). */
221 };
222 
223 /** Query libmpg123 feature, 1 for success, 0 for unimplemented functions. */
224 MPG123_EXPORT int mpg123_feature(const enum mpg123_feature_set key);
225 
226 /* @} */
227 
228 
229 /** \defgroup mpg123_error mpg123 error handling
230  *
231  * Functions to get text version of the error numbers and an enumeration
232  * of the error codes returned by libmpg123.
233  *
234  * Most functions operating on a mpg123_handle simply return MPG123_OK (0)
235  * on success and MPG123_ERR (-1) on failure, setting the internal error
236  * variable of the handle to the specific error code. If there was not a valid
237  * (non-NULL) handle provided to a function operating on one, MPG123_BAD_HANDLE
238  * may be returned if this can not be confused with a valid positive return
239  * value.
240  * Meaning: A function expected to return positive integers on success will
241  * always indicate error or a special condition by returning a negative one.
242  *
243  * Decoding/seek functions may also return message codes MPG123_DONE,
244  * MPG123_NEW_FORMAT and MPG123_NEED_MORE (all negative, see below on how to
245  * react). Note that calls to those can be nested, so generally watch out
246  * for these codes after initial handle setup.
247  * Especially any function that needs information about the current stream
248  * to work will try to at least parse the beginning if that did not happen
249  * yet.
250  *
251  * On a function that is supposed to return MPG123_OK on success and
252  * MPG123_ERR on failure, make sure you check for != MPG123_OK, not
253  * == MPG123_ERR, as the error code could get more specific in future,
254  * or there is just a special message from a decoding routine as indicated
255  * above.
256  *
257  * @{
258  */
259 
260 /** Enumeration of the message and error codes and returned by libmpg123 functions. */
261 enum mpg123_errors
262 {
263 	MPG123_DONE=-12,	/**< Message: Track ended. Stop decoding. */
264 	MPG123_NEW_FORMAT=-11,	/**< Message: Output format will be different on next call. Note that some libmpg123 versions between 1.4.3 and 1.8.0 insist on you calling mpg123_getformat() after getting this message code. Newer verisons behave like advertised: You have the chance to call mpg123_getformat(), but you can also just continue decoding and get your data. */
265 	MPG123_NEED_MORE=-10,	/**< Message: For feed reader: "Feed me more!" (call mpg123_feed() or mpg123_decode() with some new input data). */
266 	MPG123_ERR=-1,			/**< Generic Error */
267 	MPG123_OK=0, 			/**< Success */
268 	MPG123_BAD_OUTFORMAT, 	/**< Unable to set up output format! */
269 	MPG123_BAD_CHANNEL,		/**< Invalid channel number specified. */
270 	MPG123_BAD_RATE,		/**< Invalid sample rate specified.  */
271 	MPG123_ERR_16TO8TABLE,	/**< Unable to allocate memory for 16 to 8 converter table! */
272 	MPG123_BAD_PARAM,		/**< Bad parameter id! */
273 	MPG123_BAD_BUFFER,		/**< Bad buffer given -- invalid pointer or too small size. */
274 	MPG123_OUT_OF_MEM,		/**< Out of memory -- some malloc() failed. */
275 	MPG123_NOT_INITIALIZED,	/**< You didn't initialize the library! */
276 	MPG123_BAD_DECODER,		/**< Invalid decoder choice. */
277 	MPG123_BAD_HANDLE,		/**< Invalid mpg123 handle. */
278 	MPG123_NO_BUFFERS,		/**< Unable to initialize frame buffers (out of memory?). */
279 	MPG123_BAD_RVA,			/**< Invalid RVA mode. */
280 	MPG123_NO_GAPLESS,		/**< This build doesn't support gapless decoding. */
281 	MPG123_NO_SPACE,		/**< Not enough buffer space. */
282 	MPG123_BAD_TYPES,		/**< Incompatible numeric data types. */
283 	MPG123_BAD_BAND,		/**< Bad equalizer band. */
284 	MPG123_ERR_NULL,		/**< Null pointer given where valid storage address needed. */
285 	MPG123_ERR_READER,		/**< Error reading the stream. */
286 	MPG123_NO_SEEK_FROM_END,/**< Cannot seek from end (end is not known). */
287 	MPG123_BAD_WHENCE,		/**< Invalid 'whence' for seek function.*/
288 	MPG123_NO_TIMEOUT,		/**< Build does not support stream timeouts. */
289 	MPG123_BAD_FILE,		/**< File access error. */
290 	MPG123_NO_SEEK,			/**< Seek not supported by stream. */
291 	MPG123_NO_READER,		/**< No stream opened. */
292 	MPG123_BAD_PARS,		/**< Bad parameter handle. */
293 	MPG123_BAD_INDEX_PAR,	/**< Bad parameters to mpg123_index() and mpg123_set_index() */
294 	MPG123_OUT_OF_SYNC,	/**< Lost track in bytestream and did not try to resync. */
295 	MPG123_RESYNC_FAIL,	/**< Resync failed to find valid MPEG data. */
296 	MPG123_NO_8BIT,	/**< No 8bit encoding possible. */
297 	MPG123_BAD_ALIGN,	/**< Stack aligmnent error */
298 	MPG123_NULL_BUFFER,	/**< NULL input buffer with non-zero size... */
299 	MPG123_NO_RELSEEK,	/**< Relative seek not possible (screwed up file offset) */
300 	MPG123_NULL_POINTER, /**< You gave a null pointer somewhere where you shouldn't have. */
301 	MPG123_BAD_KEY,	/**< Bad key value given. */
302 	MPG123_NO_INDEX,	/**< No frame index in this build. */
303 	MPG123_INDEX_FAIL,	/**< Something with frame index went wrong. */
304 	MPG123_BAD_DECODER_SETUP,	/**< Something prevents a proper decoder setup */
305 	MPG123_MISSING_FEATURE  /**< This feature has not been built into libmpg123. */
306 	,MPG123_BAD_VALUE /**< A bad value has been given, somewhere. */
307 	,MPG123_LSEEK_FAILED /**< Low-level seek failed. */
308 	,MPG123_BAD_CUSTOM_IO /**< Custom I/O not prepared. */
309 	,MPG123_LFS_OVERFLOW /**< Offset value overflow during translation of large file API calls -- your client program cannot handle that large file. */
310 	,MPG123_INT_OVERFLOW /**< Some integer overflow. */
311 };
312 
313 /** Return a string describing that error errcode means. */
314 MPG123_EXPORT const char* mpg123_plain_strerror(int errcode);
315 
316 /** Give string describing what error has occured in the context of handle mh.
317  *  When a function operating on an mpg123 handle returns MPG123_ERR, you should check for the actual reason via
318  *  char *errmsg = mpg123_strerror(mh)
319  *  This function will catch mh == NULL and return the message for MPG123_BAD_HANDLE. */
320 MPG123_EXPORT const char* mpg123_strerror(mpg123_handle *mh);
321 
322 /** Return the plain errcode intead of a string.
323  *  \return error code recorded in handle or MPG123_BAD_HANDLE
324  */
325 MPG123_EXPORT int mpg123_errcode(mpg123_handle *mh);
326 
327 /*@}*/
328 
329 
330 /** \defgroup mpg123_decoder mpg123 decoder selection
331  *
332  * Functions to list and select the available decoders.
333  * Perhaps the most prominent feature of mpg123: You have several (optimized) decoders to choose from (on x86 and PPC (MacOS) systems, that is).
334  *
335  * @{
336  */
337 
338 /** Return a NULL-terminated array of generally available decoder names (plain 8bit ASCII). */
339 MPG123_EXPORT const char **mpg123_decoders(void);
340 
341 /** Return a NULL-terminated array of the decoders supported by the CPU (plain 8bit ASCII). */
342 MPG123_EXPORT const char **mpg123_supported_decoders(void);
343 
344 /** Set the chosen decoder to 'decoder_name'
345  * \return MPG123_OK on success
346  */
347 MPG123_EXPORT int mpg123_decoder(mpg123_handle *mh, const char* decoder_name);
348 
349 /** Get the currently active decoder engine name.
350     The active decoder engine can vary depening on output constraints,
351     mostly non-resampling, integer output is accelerated via 3DNow & Co. but for other modes a fallback engine kicks in.
352     Note that this can return a decoder that is ony active in the hidden and not available as decoder choice from the outside.
353     \return The decoder name or NULL on error. */
354 MPG123_EXPORT const char* mpg123_current_decoder(mpg123_handle *mh);
355 
356 /*@}*/
357 
358 
359 /** \defgroup mpg123_output mpg123 output audio format
360  *
361  * Functions to get and select the format of the decoded audio.
362  *
363  * Before you dive in, please be warned that you might get confused by this. This seems to happen a lot, therefore I am trying to explain in advance.
364  *
365  * The mpg123 library decides what output format to use when encountering the first frame in a stream, or actually any frame that is still valid but differs from the frames before in the prompted output format. At such a deciding point, an internal table of allowed encodings, sampling rates and channel setups is consulted. According to this table, an output format is chosen and the decoding engine set up accordingly (including ptimized routines for different output formats). This might seem unusual but it just follows from the non-existence of "MPEG audio files" with defined overall properties. There are streams, streams are concatenations of (semi) independent frames. We store streams on disk and call them "MPEG audio files", but that does not change their nature as the decoder is concerned (the LAME/Xing header for gapless decoding makes things interesting again).
366  *
367  * To get to the point: What you do with mpg123_format() and friends is to fill the internal table of allowed formats before it is used. That includes removing support for some formats or adding your forced sample rate (see MPG123_FORCE_RATE) that will be used with the crude internal resampler. Also keep in mind that the sample encoding is just a question of choice -- the MPEG frames do only indicate their native sampling rate and channel count. If you want to decode to integer or float samples, 8 or 16 bit ... that is your decision. In a "clean" world, libmpg123 would always decode to 32 bit float and let you handle any sample conversion. But there are optimized routines that work faster by directly decoding to the desired encoding / accuracy. We prefer efficiency over conceptual tidyness.
368  *
369  * People often start out thinking that mpg123_format() should change the actual decoding format on the fly. That is wrong. It only has effect on the next natural change of output format, when libmpg123 will consult its format table again. To make life easier, you might want to call mpg123_format_none() before any thing else and then just allow one desired encoding and a limited set of sample rates / channel choices that you actually intend to deal with. You can force libmpg123 to decode everything to 44100 KHz, stereo, 16 bit integer ... it will duplicate mono channels and even do resampling if needed (unless that feature is disabled in the build, same with some encodings). But I have to stress that the resampling of libmpg123 is very crude and doesn't even contain any kind of "proper" interpolation.
370  *
371  * In any case, watch out for MPG123_NEW_FORMAT as return message from decoding routines and call mpg123_getformat() to get the currently active output format.
372  *
373  * @{
374  */
375 
376 /** An enum over all sample types possibly known to mpg123.
377  *  The values are designed as bit flags to allow bitmasking for encoding families.
378  *
379  *  Note that (your build of) libmpg123 does not necessarily support all these.
380  *  Usually, you can expect the 8bit encodings and signed 16 bit.
381  *  Also 32bit float will be usual beginning with mpg123-1.7.0 .
382  *  What you should bear in mind is that (SSE, etc) optimized routines may be absent
383  *  for some formats. We do have SSE for 16, 32 bit and float, though.
384  *  24 bit integer is done via postprocessing of 32 bit output -- just cutting
385  *  the last byte, no rounding, even. If you want better, do it yourself.
386  *
387  *  All formats are in native byte order. If you need different endinaness, you
388  *  can simply postprocess the output buffers (libmpg123 wouldn't do anything else).
389  *  mpg123_encsize() can be helpful there.
390  */
391 enum mpg123_enc_enum
392 {
393 	 MPG123_ENC_8      = 0x00f  /**<      0000 0000 1111 Some 8 bit  integer encoding. */
394 	,MPG123_ENC_16     = 0x040  /**<      0000 0100 0000 Some 16 bit integer encoding. */
395 	,MPG123_ENC_24     = 0x4000 /**< 0100 0000 0000 0000 Some 24 bit integer encoding. */
396 	,MPG123_ENC_32     = 0x100  /**<      0001 0000 0000 Some 32 bit integer encoding. */
397 	,MPG123_ENC_SIGNED = 0x080  /**<      0000 1000 0000 Some signed integer encoding. */
398 	,MPG123_ENC_FLOAT  = 0xe00  /**<      1110 0000 0000 Some float encoding. */
399 	,MPG123_ENC_SIGNED_16   = (MPG123_ENC_16|MPG123_ENC_SIGNED|0x10) /**<           1101 0000 signed 16 bit */
400 	,MPG123_ENC_UNSIGNED_16 = (MPG123_ENC_16|0x20)                   /**<           0110 0000 unsigned 16 bit */
401 	,MPG123_ENC_UNSIGNED_8  = 0x01                                   /**<           0000 0001 unsigned 8 bit */
402 	,MPG123_ENC_SIGNED_8    = (MPG123_ENC_SIGNED|0x02)               /**<           1000 0010 signed 8 bit */
403 	,MPG123_ENC_ULAW_8      = 0x04                                   /**<           0000 0100 ulaw 8 bit */
404 	,MPG123_ENC_ALAW_8      = 0x08                                   /**<           0000 1000 alaw 8 bit */
405 	,MPG123_ENC_SIGNED_32   = MPG123_ENC_32|MPG123_ENC_SIGNED|0x1000 /**< 0001 0001 1000 0000 signed 32 bit */
406 	,MPG123_ENC_UNSIGNED_32 = MPG123_ENC_32|0x2000                   /**< 0010 0001 0000 0000 unsigned 32 bit */
407 	,MPG123_ENC_SIGNED_24   = MPG123_ENC_24|MPG123_ENC_SIGNED|0x1000 /**< 0101 0000 1000 0000 signed 24 bit */
408 	,MPG123_ENC_UNSIGNED_24 = MPG123_ENC_24|0x2000                   /**< 0110 0000 0000 0000 unsigned 24 bit */
409 	,MPG123_ENC_FLOAT_32    = 0x200                                  /**<      0010 0000 0000 32bit float */
410 	,MPG123_ENC_FLOAT_64    = 0x400                                  /**<      0100 0000 0000 64bit float */
411 	,MPG123_ENC_ANY = ( MPG123_ENC_SIGNED_16  | MPG123_ENC_UNSIGNED_16 | MPG123_ENC_UNSIGNED_8
412 	                  | MPG123_ENC_SIGNED_8   | MPG123_ENC_ULAW_8      | MPG123_ENC_ALAW_8
413 	                  | MPG123_ENC_SIGNED_32  | MPG123_ENC_UNSIGNED_32
414 	                  | MPG123_ENC_SIGNED_24  | MPG123_ENC_UNSIGNED_24
415 	                  | MPG123_ENC_FLOAT_32   | MPG123_ENC_FLOAT_64 ) /**< Any encoding on the list. */
416 };
417 
418 /** They can be combined into one number (3) to indicate mono and stereo... */
419 enum mpg123_channelcount
420 {
421 	 MPG123_MONO   = 1
422 	,MPG123_STEREO = 2
423 };
424 
425 /** An array of supported standard sample rates
426  *  These are possible native sample rates of MPEG audio files.
427  *  You can still force mpg123 to resample to a different one, but by default you will only get audio in one of these samplings.
428  *  \param list Store a pointer to the sample rates array there.
429  *  \param number Store the number of sample rates there. */
430 MPG123_EXPORT void mpg123_rates(const long **list, size_t *number);
431 
432 /** An array of supported audio encodings.
433  *  An audio encoding is one of the fully qualified members of mpg123_enc_enum (MPG123_ENC_SIGNED_16, not MPG123_SIGNED).
434  *  \param list Store a pointer to the encodings array there.
435  *  \param number Store the number of encodings there. */
436 MPG123_EXPORT void mpg123_encodings(const int **list, size_t *number);
437 
438 /** Return the size (in bytes) of one mono sample of the named encoding.
439  * \param encoding The encoding value to analyze.
440  * \return positive size of encoding in bytes, 0 on invalid encoding. */
441 MPG123_EXPORT int mpg123_encsize(int encoding);
442 
443 /** Configure a mpg123 handle to accept no output format at all,
444  *  use before specifying supported formats with mpg123_format
445  *  \return MPG123_OK on success
446  */
447 MPG123_EXPORT int mpg123_format_none(mpg123_handle *mh);
448 
449 /** Configure mpg123 handle to accept all formats
450  *  (also any custom rate you may set) -- this is default.
451  *  \return MPG123_OK on success
452  */
453 MPG123_EXPORT int mpg123_format_all(mpg123_handle *mh);
454 
455 /** Set the audio format support of a mpg123_handle in detail:
456  *  \param mh audio decoder handle
457  *  \param rate The sample rate value (in Hertz).
458  *  \param channels A combination of MPG123_STEREO and MPG123_MONO.
459  *  \param encodings A combination of accepted encodings for rate and channels, p.ex MPG123_ENC_SIGNED16 | MPG123_ENC_ULAW_8 (or 0 for no support). Please note that some encodings may not be supported in the library build and thus will be ignored here.
460  *  \return MPG123_OK on success, MPG123_ERR if there was an error. */
461 MPG123_EXPORT int mpg123_format(mpg123_handle *mh, long rate, int channels, int encodings);
462 
463 /** Check to see if a specific format at a specific rate is supported
464  *  by mpg123_handle.
465  *  \return 0 for no support (that includes invalid parameters), MPG123_STEREO,
466  *          MPG123_MONO or MPG123_STEREO|MPG123_MONO. */
467 MPG123_EXPORT int mpg123_format_support(mpg123_handle *mh, long rate, int encoding);
468 
469 /** Get the current output format written to the addresses given.
470  *  \return MPG123_OK on success
471  */
472 MPG123_EXPORT int mpg123_getformat(mpg123_handle *mh, long *rate, int *channels, int *encoding);
473 
474 /*@}*/
475 
476 
477 /** \defgroup mpg123_input mpg123 file input and decoding
478  *
479  * Functions for input bitstream and decoding operations.
480  * Decoding/seek functions may also return message codes MPG123_DONE, MPG123_NEW_FORMAT and MPG123_NEED_MORE (please read up on these on how to react!).
481  * @{
482  */
483 
484 /* reading samples / triggering decoding, possible return values: */
485 /** Enumeration of the error codes returned by libmpg123 functions. */
486 
487 /** Open and prepare to decode the specified file by filesystem path.
488  *  This does not open HTTP urls; libmpg123 contains no networking code.
489  *  If you want to decode internet streams, use mpg123_open_fd() or mpg123_open_feed().
490  *  \param path filesystem path
491  *  \return MPG123_OK on success
492  */
493 MPG123_EXPORT int mpg123_open(mpg123_handle *mh, const char *path);
494 
495 /** Use an already opened file descriptor as the bitstream input
496  *  mpg123_close() will _not_ close the file descriptor.
497  */
498 MPG123_EXPORT int mpg123_open_fd(mpg123_handle *mh, int fd);
499 
500 /** Use an opaque handle as bitstream input. This works only with the
501  *  replaced I/O from mpg123_replace_reader_handle()!
502  *  mpg123_close() will call the cleanup callback for your handle (if you gave one).
503  *  \return MPG123_OK on success
504  */
505 MPG123_EXPORT int mpg123_open_handle(mpg123_handle *mh, void *iohandle);
506 
507 /** Open a new bitstream and prepare for direct feeding
508  *  This works together with mpg123_decode(); you are responsible for reading and feeding the input bitstream.
509  *  \return MPG123_OK on success
510  */
511 MPG123_EXPORT int mpg123_open_feed(mpg123_handle *mh);
512 
513 /** Closes the source, if libmpg123 opened it.
514  *  \return MPG123_OK on success
515  */
516 MPG123_EXPORT int mpg123_close(mpg123_handle *mh);
517 
518 /** Read from stream and decode up to outmemsize bytes.
519  *  \param outmemory address of output buffer to write to
520  *  \param outmemsize maximum number of bytes to write
521  *  \param done address to store the number of actually decoded bytes to
522  *  \return MPG123_OK or error/message code
523  */
524 MPG123_EXPORT int mpg123_read(mpg123_handle *mh, unsigned char *outmemory, size_t outmemsize, size_t *done);
525 
526 /** Feed data for a stream that has been opened with mpg123_open_feed().
527  *  It's give and take: You provide the bytestream, mpg123 gives you the decoded samples.
528  *  \param in input buffer
529  *  \param size number of input bytes
530  *  \return MPG123_OK or error/message code.
531  */
532 MPG123_EXPORT int mpg123_feed(mpg123_handle *mh, const unsigned char *in, size_t size);
533 
534 /** Decode MPEG Audio from inmemory to outmemory.
535  *  This is very close to a drop-in replacement for old mpglib.
536  *  When you give zero-sized output buffer the input will be parsed until
537  *  decoded data is available. This enables you to get MPG123_NEW_FORMAT (and query it)
538  *  without taking decoded data.
539  *  Think of this function being the union of mpg123_read() and mpg123_feed() (which it actually is, sort of;-).
540  *  You can actually always decide if you want those specialized functions in separate steps or one call this one here.
541  *  \param inmemory input buffer
542  *  \param inmemsize number of input bytes
543  *  \param outmemory output buffer
544  *  \param outmemsize maximum number of output bytes
545  *  \param done address to store the number of actually decoded bytes to
546  *  \return error/message code (watch out especially for MPG123_NEED_MORE)
547  */
548 MPG123_EXPORT int mpg123_decode(mpg123_handle *mh, const unsigned char *inmemory, size_t inmemsize, unsigned char *outmemory, size_t outmemsize, size_t *done);
549 
550 /** Decode next MPEG frame to internal buffer
551  *  or read a frame and return after setting a new format.
552  *  \param num current frame offset gets stored there
553  *  \param audio This pointer is set to the internal buffer to read the decoded audio from.
554  *  \param bytes number of output bytes ready in the buffer
555  *  \return MPG123_OK or error/message code
556  */
557 MPG123_EXPORT int mpg123_decode_frame(mpg123_handle *mh, off_t *num, unsigned char **audio, size_t *bytes);
558 
559 /** Decode current MPEG frame to internal buffer.
560  * Warning: This is experimental API that might change in future releases!
561  * Please watch mpg123 development closely when using it.
562  *  \param num last frame offset gets stored there
563  *  \param audio this pointer is set to the internal buffer to read the decoded audio from.
564  *  \param bytes number of output bytes ready in the buffer
565  *  \return MPG123_OK or error/message code
566  */
567 MPG123_EXPORT int mpg123_framebyframe_decode(mpg123_handle *mh, off_t *num, unsigned char **audio, size_t *bytes);
568 
569 /** Find, read and parse the next mp3 frame
570  * Warning: This is experimental API that might change in future releases!
571  * Please watch mpg123 development closely when using it.
572  *  \return MPG123_OK or error/message code
573  */
574 MPG123_EXPORT int mpg123_framebyframe_next(mpg123_handle *mh);
575 
576 /** Get access to the raw input data for the last parsed frame.
577  * This gives you a direct look (and write access) to the frame body data.
578  * Together with the raw header, you can reconstruct the whole raw MPEG stream without junk and meta data, or play games by actually modifying the frame body data before decoding this frame (mpg123_framebyframe_decode()).
579  * A more sane use would be to use this for CRC checking (see mpg123_info() and MPG123_CRC), the first two bytes of the body make up the CRC16 checksum, if present.
580  * You can provide NULL for a parameter pointer when you are not interested in the value.
581  *
582  * \param header the 4-byte MPEG header
583  * \param bodydata pointer to the frame body stored in the handle (without the header)
584  * \param bodybytes size of frame body in bytes (without the header)
585  * \return MPG123_OK if there was a yet un-decoded frame to get the
586  *    data from, MPG123_BAD_HANDLE or MPG123_ERR otherwise (without further
587  *    explanation, the error state of the mpg123_handle is not modified by
588  *    this function).
589  */
590 MPG123_EXPORT int mpg123_framedata(mpg123_handle *mh, unsigned long *header, unsigned char **bodydata, size_t *bodybytes);
591 
592 /** Get the input position (byte offset in stream) of the last parsed frame.
593  * This can be used for external seek index building, for example.
594  * It just returns the internally stored offset, regardless of validity -- you ensure that a valid frame has been parsed before! */
595 MPG123_EXPORT off_t mpg123_framepos(mpg123_handle *mh);
596 
597 /*@}*/
598 
599 
600 /** \defgroup mpg123_seek mpg123 position and seeking
601  *
602  * Functions querying and manipulating position in the decoded audio bitstream.
603  * The position is measured in decoded audio samples, or MPEG frame offset for the specific functions.
604  * If gapless code is in effect, the positions are adjusted to compensate the skipped padding/delay - meaning, you should not care about that at all and just use the position defined for the samples you get out of the decoder;-)
605  * The general usage is modelled after stdlib's ftell() and fseek().
606  * Especially, the whence parameter for the seek functions has the same meaning as the one for fseek() and needs the same constants from stdlib.h:
607  * - SEEK_SET: set position to (or near to) specified offset
608  * - SEEK_CUR: change position by offset from now
609  * - SEEK_END: set position to offset from end
610  *
611  * Note that sample-accurate seek only works when gapless support has been enabled at compile time; seek is frame-accurate otherwise.
612  * Also, really sample-accurate seeking (meaning that you get the identical sample value after seeking compared to plain decoding up to the position) is only guaranteed when you do not mess with the position code by using MPG123_UPSPEED, MPG123_DOWNSPEED or MPG123_START_FRAME. The first two mainly should cause trouble with NtoM resampling, but in any case with these options in effect, you have to keep in mind that the sample offset is not the same as counting the samples you get from decoding since mpg123 counts the skipped samples, too (or the samples played twice only once)!
613  * Short: When you care about the sample position, don't mess with those parameters;-)
614  * Also, seeking is not guaranteed to work for all streams (underlying stream may not support it).
615  * And yet another caveat: If the stream is concatenated out of differing pieces (Frankenstein stream), seeking may suffer, too.
616  *
617  * @{
618  */
619 
620 /** Returns the current position in samples.
621  *  On the next successful read, you'd get that sample.
622  *  \return sample offset or MPG123_ERR (null handle)
623  */
624 MPG123_EXPORT off_t mpg123_tell(mpg123_handle *mh);
625 
626 /** Returns the frame number that the next read will give you data from.
627  *  \return frame offset or MPG123_ERR (null handle)
628  */
629 MPG123_EXPORT off_t mpg123_tellframe(mpg123_handle *mh);
630 
631 /** Returns the current byte offset in the input stream.
632  *  \return byte offset or MPG123_ERR (null handle)
633  */
634 MPG123_EXPORT off_t mpg123_tell_stream(mpg123_handle *mh);
635 
636 /** Seek to a desired sample offset.
637  *  Set whence to SEEK_SET, SEEK_CUR or SEEK_END.
638  *  \return The resulting offset >= 0 or error/message code */
639 MPG123_EXPORT off_t mpg123_seek(mpg123_handle *mh, off_t sampleoff, int whence);
640 
641 /** Seek to a desired sample offset in data feeding mode.
642  *  This just prepares things to be right only if you ensure that the next chunk of input data will be from input_offset byte position.
643  *  \param input_offset The position it expects to be at the
644  *                      next time data is fed to mpg123_decode().
645  *  \return The resulting offset >= 0 or error/message code */
646 MPG123_EXPORT off_t mpg123_feedseek(mpg123_handle *mh, off_t sampleoff, int whence, off_t *input_offset);
647 
648 /** Seek to a desired MPEG frame index.
649  *  Set whence to SEEK_SET, SEEK_CUR or SEEK_END.
650  *  \return The resulting offset >= 0 or error/message code */
651 MPG123_EXPORT off_t mpg123_seek_frame(mpg123_handle *mh, off_t frameoff, int whence);
652 
653 /** Return a MPEG frame offset corresponding to an offset in seconds.
654  *  This assumes that the samples per frame do not change in the file/stream, which is a good assumption for any sane file/stream only.
655  *  \return frame offset >= 0 or error/message code */
656 MPG123_EXPORT off_t mpg123_timeframe(mpg123_handle *mh, double sec);
657 
658 /** Give access to the frame index table that is managed for seeking.
659  *  You are asked not to modify the values... Use mpg123_set_index to set the
660  *  seek index
661  *  \param offsets pointer to the index array
662  *  \param step one index byte offset advances this many MPEG frames
663  *  \param fill number of recorded index offsets; size of the array
664  *  \return MPG123_OK on success
665  */
666 MPG123_EXPORT int mpg123_index(mpg123_handle *mh, off_t **offsets, off_t *step, size_t *fill);
667 
668 /** Set the frame index table
669  *  Setting offsets to NULL and fill > 0 will allocate fill entries. Setting offsets
670  *  to NULL and fill to 0 will clear the index and free the allocated memory used by the index.
671  *  \param offsets pointer to the index array
672  *  \param step    one index byte offset advances this many MPEG frames
673  *  \param fill    number of recorded index offsets; size of the array
674  *  \return MPG123_OK on success
675  */
676 MPG123_EXPORT int mpg123_set_index(mpg123_handle *mh, off_t *offsets, off_t step, size_t fill);
677 
678 /** Get information about current and remaining frames/seconds.
679  *  WARNING: This function is there because of special usage by standalone mpg123 and may be removed in the final version of libmpg123!
680  *  You provide an offset (in frames) from now and a number of output bytes
681  *  served by libmpg123 but not yet played. You get the projected current frame
682  *  and seconds, as well as the remaining frames/seconds. This does _not_ care
683  *  about skipped samples due to gapless playback. */
684 MPG123_EXPORT int mpg123_position( mpg123_handle *mh, off_t frame_offset, off_t buffered_bytes, off_t *current_frame, off_t *frames_left, double *current_seconds, double *seconds_left);
685 
686 /*@}*/
687 
688 
689 /** \defgroup mpg123_voleq mpg123 volume and equalizer
690  *
691  * @{
692  */
693 
694 enum mpg123_channels
695 {
696 	 MPG123_LEFT=0x1	/**< The Left Channel. */
697 	,MPG123_RIGHT=0x2	/**< The Right Channel. */
698 	,MPG123_LR=0x3	/**< Both left and right channel; same as MPG123_LEFT|MPG123_RIGHT */
699 };
700 
701 /** Set the 32 Band Audio Equalizer settings.
702  *  \param channel Can be MPG123_LEFT, MPG123_RIGHT or MPG123_LEFT|MPG123_RIGHT for both.
703  *  \param band The equaliser band to change (from 0 to 31)
704  *  \param val The (linear) adjustment factor.
705  *  \return MPG123_OK on success
706  */
707 MPG123_EXPORT int mpg123_eq(mpg123_handle *mh, enum mpg123_channels channel, int band, double val);
708 
709 /** Get the 32 Band Audio Equalizer settings.
710  *  \param channel Can be MPG123_LEFT, MPG123_RIGHT or MPG123_LEFT|MPG123_RIGHT for (arithmetic mean of) both.
711  *  \param band The equaliser band to change (from 0 to 31)
712  *  \return The (linear) adjustment factor (zero for pad parameters) */
713 MPG123_EXPORT double mpg123_geteq(mpg123_handle *mh, enum mpg123_channels channel, int band);
714 
715 /** Reset the 32 Band Audio Equalizer settings to flat
716  *  \return MPG123_OK on success
717  */
718 MPG123_EXPORT int mpg123_reset_eq(mpg123_handle *mh);
719 
720 /** Set the absolute output volume including the RVA setting,
721  *  vol<0 just applies (a possibly changed) RVA setting. */
722 MPG123_EXPORT int mpg123_volume(mpg123_handle *mh, double vol);
723 
724 /** Adjust output volume including the RVA setting by chosen amount */
725 MPG123_EXPORT int mpg123_volume_change(mpg123_handle *mh, double change);
726 
727 /** Return current volume setting, the actual value due to RVA, and the RVA
728  *  adjustment itself. It's all as double float value to abstract the sample
729  *  format. The volume values are linear factors / amplitudes (not percent)
730  *  and the RVA value is in decibels. */
731 MPG123_EXPORT int mpg123_getvolume(mpg123_handle *mh, double *base, double *really, double *rva_db);
732 
733 /* TODO: Set some preamp in addition / to replace internal RVA handling? */
734 
735 /*@}*/
736 
737 
738 /** \defgroup mpg123_status mpg123 status and information
739  *
740  * @{
741  */
742 
743 /** Enumeration of the mode types of Variable Bitrate */
744 enum mpg123_vbr {
745 	MPG123_CBR=0,	/**< Constant Bitrate Mode (default) */
746 	MPG123_VBR,		/**< Variable Bitrate Mode */
747 	MPG123_ABR		/**< Average Bitrate Mode */
748 };
749 
750 /** Enumeration of the MPEG Versions */
751 enum mpg123_version {
752 	MPG123_1_0=0,	/**< MPEG Version 1.0 */
753 	MPG123_2_0,		/**< MPEG Version 2.0 */
754 	MPG123_2_5		/**< MPEG Version 2.5 */
755 };
756 
757 
758 /** Enumeration of the MPEG Audio mode.
759  *  Only the mono mode has 1 channel, the others have 2 channels. */
760 enum mpg123_mode {
761 	MPG123_M_STEREO=0,	/**< Standard Stereo. */
762 	MPG123_M_JOINT,		/**< Joint Stereo. */
763 	MPG123_M_DUAL,		/**< Dual Channel. */
764 	MPG123_M_MONO		/**< Single Channel. */
765 };
766 
767 
768 /** Enumeration of the MPEG Audio flag bits */
769 enum mpg123_flags {
770 	MPG123_CRC=0x1,			/**< The bitstream is error protected using 16-bit CRC. */
771 	MPG123_COPYRIGHT=0x2,	/**< The bitstream is copyrighted. */
772 	MPG123_PRIVATE=0x4,		/**< The private bit has been set. */
773 	MPG123_ORIGINAL=0x8	/**< The bitstream is an original, not a copy. */
774 };
775 
776 /** Data structure for storing information about a frame of MPEG Audio */
777 struct mpg123_frameinfo
778 {
779 	enum mpg123_version version;	/**< The MPEG version (1.0/2.0/2.5). */
780 	int layer;						/**< The MPEG Audio Layer (MP1/MP2/MP3). */
781 	long rate; 						/**< The sampling rate in Hz. */
782 	enum mpg123_mode mode;			/**< The audio mode (Mono, Stereo, Joint-stero, Dual Channel). */
783 	int mode_ext;					/**< The mode extension bit flag. */
784 	int framesize;					/**< The size of the frame (in bytes, including header). */
785 	enum mpg123_flags flags;		/**< MPEG Audio flag bits. Just now I realize that it should be declared as int, not enum. It's a bitwise combination of the enum values. */
786 	int emphasis;					/**< The emphasis type. */
787 	int bitrate;					/**< Bitrate of the frame (kbps). */
788 	int abr_rate;					/**< The target average bitrate. */
789 	enum mpg123_vbr vbr;			/**< The VBR mode. */
790 };
791 
792 /** Get frame information about the MPEG audio bitstream and store it in a mpg123_frameinfo structure.
793  *  \return MPG123_OK on success
794  */
795 MPG123_EXPORT int mpg123_info(mpg123_handle *mh, struct mpg123_frameinfo *mi);
796 
797 /** Get the safe output buffer size for all cases (when you want to replace the internal buffer) */
798 MPG123_EXPORT size_t mpg123_safe_buffer(void);
799 
800 /** Make a full parsing scan of each frame in the file. ID3 tags are found. An accurate length
801  *  value is stored. Seek index will be filled. A seek back to current position
802  *  is performed. At all, this function refuses work when stream is
803  *  not seekable.
804  *  \return MPG123_OK on success
805  */
806 MPG123_EXPORT int mpg123_scan(mpg123_handle *mh);
807 
808 /** Return, if possible, the full (expected) length of current track in samples.
809   * \return length >= 0 or MPG123_ERR if there is no length guess possible. */
810 MPG123_EXPORT off_t mpg123_length(mpg123_handle *mh);
811 
812 /** Override the value for file size in bytes.
813   * Useful for getting sensible track length values in feed mode or for HTTP streams.
814   * \return MPG123_OK on success
815   */
816 MPG123_EXPORT int mpg123_set_filesize(mpg123_handle *mh, off_t size);
817 
818 /** Returns the time (seconds) per frame; <0 is error. */
819 MPG123_EXPORT double mpg123_tpf(mpg123_handle *mh);
820 
821 /** Returns the samples per frame for the most recently parsed frame; <0 is error. */
822 MPG123_EXPORT int mpg123_spf(mpg123_handle *mh);
823 
824 /** Get and reset the clip count. */
825 MPG123_EXPORT long mpg123_clip(mpg123_handle *mh);
826 
827 
828 /** The key values for state information from mpg123_getstate(). */
829 enum mpg123_state
830 {
831 	 MPG123_ACCURATE = 1 /**< Query if positons are currently accurate (integer value, 0 if false, 1 if true). */
832 	,MPG123_BUFFERFILL   /**< Get fill of internal (feed) input buffer as integer byte count returned as long and as double. An error is returned on integer overflow while converting to (signed) long, but the returned floating point value shold still be fine. */
833 	,MPG123_FRANKENSTEIN /**< Stream consists of carelessly stitched together files. Seeking may yield unexpected results (also with MPG123_ACCURATE, it may be confused). */
834 	,MPG123_FRESH_DECODER /**< Decoder structure has been updated, possibly indicating changed stream (integer value, 0 if false, 1 if true). Flag is cleared after retrieval. */
835 };
836 
837 /** Get various current decoder/stream state information.
838  *  \param key the key to identify the information to give.
839  *  \param val the address to return (long) integer values to
840  *  \param fval the address to return floating point values to
841  *  \return MPG123_OK on success
842  */
843 MPG123_EXPORT int mpg123_getstate(mpg123_handle *mh, enum mpg123_state key, long *val, double *fval);
844 
845 /*@}*/
846 
847 
848 /** \defgroup mpg123_metadata mpg123 metadata handling
849  *
850  * Functions to retrieve the metadata from MPEG Audio files and streams.
851  * Also includes string handling functions.
852  *
853  * @{
854  */
855 
856 /** Data structure for storing strings in a safer way than a standard C-String.
857  *  Can also hold a number of null-terminated strings. */
858 typedef struct
859 {
860 	char* p;     /**< pointer to the string data */
861 	size_t size; /**< raw number of bytes allocated */
862 	size_t fill; /**< number of used bytes (including closing zero byte) */
863 } mpg123_string;
864 
865 /** Create and allocate memory for a new mpg123_string */
866 MPG123_EXPORT void mpg123_init_string(mpg123_string* sb);
867 
868 /** Free-up mempory for an existing mpg123_string */
869 MPG123_EXPORT void mpg123_free_string(mpg123_string* sb);
870 
871 /** Change the size of a mpg123_string
872  *  \return 0 on error, 1 on success */
873 MPG123_EXPORT int  mpg123_resize_string(mpg123_string* sb, size_t news);
874 
875 /** Increase size of a mpg123_string if necessary (it may stay larger).
876  *  Note that the functions for adding and setting in current libmpg123 use this instead of mpg123_resize_string().
877  *  That way, you can preallocate memory and safely work afterwards with pieces.
878  *  \return 0 on error, 1 on success */
879 MPG123_EXPORT int  mpg123_grow_string(mpg123_string* sb, size_t news);
880 
881 /** Copy the contents of one mpg123_string string to another.
882  *  \return 0 on error, 1 on success */
883 MPG123_EXPORT int  mpg123_copy_string(mpg123_string* from, mpg123_string* to);
884 
885 /** Append a C-String to an mpg123_string
886  *  \return 0 on error, 1 on success */
887 MPG123_EXPORT int  mpg123_add_string(mpg123_string* sb, const char* stuff);
888 
889 /** Append a C-substring to an mpg123 string
890  *  \return 0 on error, 1 on success
891  *  \param from offset to copy from
892  *  \param count number of characters to copy (a null-byte is always appended) */
893 MPG123_EXPORT int  mpg123_add_substring(mpg123_string *sb, const char *stuff, size_t from, size_t count);
894 
895 /** Set the conents of a mpg123_string to a C-string
896  *  \return 0 on error, 1 on success */
897 MPG123_EXPORT int  mpg123_set_string(mpg123_string* sb, const char* stuff);
898 
899 /** Set the contents of a mpg123_string to a C-substring
900  *  \return 0 on error, 1 on success
901  *  \param from offset to copy from
902  *  \param count number of characters to copy (a null-byte is always appended) */
903 MPG123_EXPORT int  mpg123_set_substring(mpg123_string *sb, const char *stuff, size_t from, size_t count);
904 
905 /** Count characters in a mpg123 string (non-null bytes or UTF-8 characters).
906  *  \return character count
907  *  \param sb the string
908  *  \param utf8 a flag to tell if the string is in utf8 encoding
909  *  Even with the fill property, the character count is not obvious as there could be multiple trailing null bytes.
910 */
911 MPG123_EXPORT size_t mpg123_strlen(mpg123_string *sb, int utf8);
912 
913 /** Remove trailing \r and \n, if present.
914  *  \return 0 on error, 1 on success
915  *  \param sb the string
916  */
917 MPG123_EXPORT int mpg123_chomp_string(mpg123_string *sb);
918 
919 /** The mpg123 text encodings. This contains encodings we encounter in ID3 tags or ICY meta info. */
920 enum mpg123_text_encoding
921 {
922 	 mpg123_text_unknown  = 0 /**< Unkown encoding... mpg123_id3_encoding can return that on invalid codes. */
923 	,mpg123_text_utf8     = 1 /**< UTF-8 */
924 	,mpg123_text_latin1   = 2 /**< ISO-8859-1. Note that sometimes latin1 in ID3 is abused for totally different encodings. */
925 	,mpg123_text_icy      = 3 /**< ICY metadata encoding, usually CP-1252 but we take it as UTF-8 if it qualifies as such. */
926 	,mpg123_text_cp1252   = 4 /**< Really CP-1252 without any guessing. */
927 	,mpg123_text_utf16    = 5 /**< Some UTF-16 encoding. The last of a set of leading BOMs (byte order mark) rules.
928 	                           *   When there is no BOM, big endian ordering is used. Note that UCS-2 qualifies as UTF-8 when
929 	                           *   you don't mess with the reserved code points. If you want to decode little endian data
930 	                           *   without BOM you need to prepend 0xff 0xfe yourself. */
931 	,mpg123_text_utf16bom = 6 /**< Just an alias for UTF-16, ID3v2 has this as distinct code. */
932 	,mpg123_text_utf16be  = 7 /**< Another alias for UTF16 from ID3v2. Note, that, because of the mess that is reality,
933 	                           *   BOMs are used if encountered. There really is not much distinction between the UTF16 types for mpg123
934 	                           *   One exception: Since this is seen in ID3v2 tags, leading null bytes are skipped for all other UTF16
935 	                           *   types (we expect a BOM before real data there), not so for utf16be!*/
936 	,mpg123_text_max      = 7 /**< Placeholder for the maximum encoding value. */
937 };
938 
939 /** The encoding byte values from ID3v2. */
940 enum mpg123_id3_enc
941 {
942 	 mpg123_id3_latin1   = 0 /**< Note: This sometimes can mean anything in practice... */
943 	,mpg123_id3_utf16bom = 1 /**< UTF16, UCS-2 ... it's all the same for practical purposes. */
944 	,mpg123_id3_utf16be  = 2 /**< Big-endian UTF-16, BOM see note for mpg123_text_utf16be. */
945 	,mpg123_id3_utf8     = 3 /**< Our lovely overly ASCII-compatible 8 byte encoding for the world. */
946 	,mpg123_id3_enc_max  = 3 /**< Placeholder to check valid range of encoding byte. */
947 };
948 
949 /** Convert ID3 encoding byte to mpg123 encoding index. */
950 MPG123_EXPORT enum mpg123_text_encoding mpg123_enc_from_id3(unsigned char id3_enc_byte);
951 
952 /** Store text data in string, after converting to UTF-8 from indicated encoding
953  *  \return 0 on error, 1 on success (on error, mpg123_free_string is called on sb)
954  *  \param sb  target string
955  *  \param enc mpg123 text encoding value
956  *  \param source source buffer with plain unsigned bytes (you might need to cast from char *)
957  *  \param source_size number of bytes in the source buffer
958  *
959  *  A prominent error can be that you provided an unknown encoding value, or this build of libmpg123 lacks support for certain encodings (ID3 or ICY stuff missing).
960  *  Also, you might want to take a bit of care with preparing the data; for example, strip leading zeroes (I have seen that).
961  */
962 MPG123_EXPORT int mpg123_store_utf8(mpg123_string *sb, enum mpg123_text_encoding enc, const unsigned char *source, size_t source_size);
963 
964 /** Sub data structure for ID3v2, for storing various text fields (including comments).
965  *  This is for ID3v2 COMM, TXXX and all the other text fields.
966  *  Only COMM and TXXX have a description, only COMM and USLT have a language.
967  *  You should consult the ID3v2 specification for the use of the various text fields ("frames" in ID3v2 documentation, I use "fields" here to separate from MPEG frames). */
968 typedef struct
969 {
970 	char lang[3]; /**< Three-letter language code (not terminated). */
971 	char id[4];   /**< The ID3v2 text field id, like TALB, TPE2, ... (4 characters, no string termination). */
972 	mpg123_string description; /**< Empty for the generic comment... */
973 	mpg123_string text;        /**< ... */
974 } mpg123_text;
975 
976 /** The picture type values from ID3v2. */
977 enum mpg123_id3_pic_type
978 {
979 	 mpg123_id3_pic_other          =  0
980 	,mpg123_id3_pic_icon           =  1
981 	,mpg123_id3_pic_other_icon     =  2
982 	,mpg123_id3_pic_front_cover    =  3
983 	,mpg123_id3_pic_back_cover     =  4
984 	,mpg123_id3_pic_leaflet        =  5
985 	,mpg123_id3_pic_media          =  6
986 	,mpg123_id3_pic_lead           =  7
987 	,mpg123_id3_pic_artist         =  8
988 	,mpg123_id3_pic_conductor      =  9
989 	,mpg123_id3_pic_orchestra      = 10
990 	,mpg123_id3_pic_composer       = 11
991 	,mpg123_id3_pic_lyricist       = 12
992 	,mpg123_id3_pic_location       = 13
993 	,mpg123_id3_pic_recording      = 14
994 	,mpg123_id3_pic_performance    = 15
995 	,mpg123_id3_pic_video          = 16
996 	,mpg123_id3_pic_fish           = 17
997 	,mpg123_id3_pic_illustration   = 18
998 	,mpg123_id3_pic_artist_logo    = 19
999 	,mpg123_id3_pic_publisher_logo = 20
1000 };
1001 
1002 /** Sub data structure for ID3v2, for storing picture data including comment.
1003  *  This is for the ID3v2 APIC field. You should consult the ID3v2 specification
1004  *  for the use of the APIC field ("frames" in ID3v2 documentation, I use "fields"
1005  *  here to separate from MPEG frames). */
1006 typedef struct
1007 {
1008 	char type;
1009 	mpg123_string description;
1010 	mpg123_string mime_type;
1011 	size_t size;
1012 	unsigned char* data;
1013 } mpg123_picture;
1014 
1015 /** Data structure for storing IDV3v2 tags.
1016  *  This structure is not a direct binary mapping with the file contents.
1017  *  The ID3v2 text frames are allowed to contain multiple strings.
1018  *  So check for null bytes until you reach the mpg123_string fill.
1019  *  All text is encoded in UTF-8. */
1020 typedef struct
1021 {
1022 	unsigned char version; /**< 3 or 4 for ID3v2.3 or ID3v2.4. */
1023 	mpg123_string *title;   /**< Title string (pointer into text_list). */
1024 	mpg123_string *artist;  /**< Artist string (pointer into text_list). */
1025 	mpg123_string *album;   /**< Album string (pointer into text_list). */
1026 	mpg123_string *year;    /**< The year as a string (pointer into text_list). */
1027 	mpg123_string *genre;   /**< Genre String (pointer into text_list). The genre string(s) may very well need postprocessing, esp. for ID3v2.3. */
1028 	mpg123_string *comment; /**< Pointer to last encountered comment text with empty description. */
1029 	/* Encountered ID3v2 fields are appended to these lists.
1030 	   There can be multiple occurences, the pointers above always point to the last encountered data. */
1031 	mpg123_text    *comment_list; /**< Array of comments. */
1032 	size_t          comments;     /**< Number of comments. */
1033 	mpg123_text    *text;         /**< Array of ID3v2 text fields (including USLT) */
1034 	size_t          texts;        /**< Numer of text fields. */
1035 	mpg123_text    *extra;        /**< The array of extra (TXXX) fields. */
1036 	size_t          extras;       /**< Number of extra text (TXXX) fields. */
1037 	mpg123_picture  *picture;     /**< Array of ID3v2 pictures fields (APIC). */
1038 	size_t           pictures;    /**< Number of picture (APIC) fields. */
1039 } mpg123_id3v2;
1040 
1041 /** Data structure for ID3v1 tags (the last 128 bytes of a file).
1042  *  Don't take anything for granted (like string termination)!
1043  *  Also note the change ID3v1.1 did: comment[28] = 0; comment[29] = track_number
1044  *  It is your task to support ID3v1 only or ID3v1.1 ...*/
1045 typedef struct
1046 {
1047 	char tag[3];         /**< Always the string "TAG", the classic intro. */
1048 	char title[30];      /**< Title string.  */
1049 	char artist[30];     /**< Artist string. */
1050 	char album[30];      /**< Album string. */
1051 	char year[4];        /**< Year string. */
1052 	char comment[30];    /**< Comment string. */
1053 	unsigned char genre; /**< Genre index. */
1054 } mpg123_id3v1;
1055 
1056 #define MPG123_ID3     0x3 /**< 0011 There is some ID3 info. Also matches 0010 or NEW_ID3. */
1057 #define MPG123_NEW_ID3 0x1 /**< 0001 There is ID3 info that changed since last call to mpg123_id3. */
1058 #define MPG123_ICY     0xc /**< 1100 There is some ICY info. Also matches 0100 or NEW_ICY.*/
1059 #define MPG123_NEW_ICY 0x4 /**< 0100 There is ICY info that changed since last call to mpg123_icy. */
1060 
1061 /** Query if there is (new) meta info, be it ID3 or ICY (or something new in future).
1062    The check function returns a combination of flags. */
1063 MPG123_EXPORT int mpg123_meta_check(mpg123_handle *mh); /* On error (no valid handle) just 0 is returned. */
1064 
1065 /** Clean up meta data storage (ID3v2 and ICY), freeing memory. */
1066 MPG123_EXPORT void mpg123_meta_free(mpg123_handle *mh);
1067 
1068 /** Point v1 and v2 to existing data structures wich may change on any next read/decode function call.
1069  *  v1 and/or v2 can be set to NULL when there is no corresponding data.
1070  *  \return MPG123_OK on success
1071  */
1072 MPG123_EXPORT int mpg123_id3(mpg123_handle *mh, mpg123_id3v1 **v1, mpg123_id3v2 **v2);
1073 
1074 /** Point icy_meta to existing data structure wich may change on any next read/decode function call.
1075  *  \return MPG123_OK on success
1076  */
1077 MPG123_EXPORT int mpg123_icy(mpg123_handle *mh, char **icy_meta); /* same for ICY meta string */
1078 
1079 /** Decode from windows-1252 (the encoding ICY metainfo used) to UTF-8.
1080  *  Note that this is very similar to mpg123_store_utf8(&sb, mpg123_text_icy, icy_text, strlen(icy_text+1)) .
1081  *  \param icy_text The input data in ICY encoding
1082  *  \return pointer to newly allocated buffer with UTF-8 data (You free() it!) */
1083 MPG123_EXPORT char* mpg123_icy2utf8(const char* icy_text);
1084 
1085 
1086 /* @} */
1087 
1088 
1089 /** \defgroup mpg123_advpar mpg123 advanced parameter API
1090  *
1091  *  Direct access to a parameter set without full handle around it.
1092  *	Possible uses:
1093  *    - Influence behaviour of library _during_ initialization of handle (MPG123_VERBOSE).
1094  *    - Use one set of parameters for multiple handles.
1095  *
1096  *	The functions for handling mpg123_pars (mpg123_par() and mpg123_fmt()
1097  *  family) directly return a fully qualified mpg123 error code, the ones
1098  *  operating on full handles normally MPG123_OK or MPG123_ERR, storing the
1099  *  specific error code itseld inside the handle.
1100  *
1101  * @{
1102  */
1103 
1104 /** Opaque structure for the libmpg123 decoder parameters. */
1105 struct mpg123_pars_struct;
1106 
1107 /** Opaque structure for the libmpg123 decoder parameters. */
1108 typedef struct mpg123_pars_struct   mpg123_pars;
1109 
1110 /** Create a handle with preset parameters. */
1111 MPG123_EXPORT mpg123_handle *mpg123_parnew(mpg123_pars *mp, const char* decoder, int *error);
1112 
1113 /** Allocate memory for and return a pointer to a new mpg123_pars */
1114 MPG123_EXPORT mpg123_pars *mpg123_new_pars(int *error);
1115 
1116 /** Delete and free up memory used by a mpg123_pars data structure */
1117 MPG123_EXPORT void         mpg123_delete_pars(mpg123_pars* mp);
1118 
1119 /** Configure mpg123 parameters to accept no output format at all,
1120  * use before specifying supported formats with mpg123_format
1121  *  \return MPG123_OK on success
1122  */
1123 MPG123_EXPORT int mpg123_fmt_none(mpg123_pars *mp);
1124 
1125 /** Configure mpg123 parameters to accept all formats
1126  *  (also any custom rate you may set) -- this is default.
1127  *  \return MPG123_OK on success
1128  */
1129 MPG123_EXPORT int mpg123_fmt_all(mpg123_pars *mp);
1130 
1131 /** Set the audio format support of a mpg123_pars in detail:
1132 	\param rate The sample rate value (in Hertz).
1133 	\param channels A combination of MPG123_STEREO and MPG123_MONO.
1134 	\param encodings A combination of accepted encodings for rate and channels, p.ex MPG123_ENC_SIGNED16|MPG123_ENC_ULAW_8 (or 0 for no support).
1135 	\return MPG123_OK on success
1136 */
1137 MPG123_EXPORT int mpg123_fmt(mpg123_pars *mp, long rate, int channels, int encodings); /* 0 is good, -1 is error */
1138 
1139 /** Check to see if a specific format at a specific rate is supported
1140  *  by mpg123_pars.
1141  *  \return 0 for no support (that includes invalid parameters), MPG123_STEREO,
1142  *          MPG123_MONO or MPG123_STEREO|MPG123_MONO. */
1143 MPG123_EXPORT int mpg123_fmt_support(mpg123_pars *mp,   long rate, int encoding);
1144 
1145 /** Set a specific parameter, for a specific mpg123_pars, using a parameter
1146  *  type key chosen from the mpg123_parms enumeration, to the specified value. */
1147 MPG123_EXPORT int mpg123_par(mpg123_pars *mp, enum mpg123_parms type, long value, double fvalue);
1148 
1149 /** Get a specific parameter, for a specific mpg123_pars.
1150  *  See the mpg123_parms enumeration for a list of available parameters. */
1151 MPG123_EXPORT int mpg123_getpar(mpg123_pars *mp, enum mpg123_parms type, long *val, double *fval);
1152 
1153 /* @} */
1154 
1155 
1156 /** \defgroup mpg123_lowio mpg123 low level I/O
1157   * You may want to do tricky stuff with I/O that does not work with mpg123's default file access or you want to make it decode into your own pocket...
1158   *
1159   * @{ */
1160 
1161 /** Replace default internal buffer with user-supplied buffer.
1162   * Instead of working on it's own private buffer, mpg123 will directly use the one you provide for storing decoded audio.
1163   * Note that the required buffer size could be bigger than expected from output
1164   * encoding if libmpg123 has to convert from primary decoder output (p.ex. 32 bit
1165   * storage for 24 bit output.
1166   * \param data pointer to user buffer
1167   * \param size of buffer in bytes
1168   * \return MPG123_OK on success
1169   */
1170 MPG123_EXPORT int mpg123_replace_buffer(mpg123_handle *mh, unsigned char *data, size_t size);
1171 
1172 /** The max size of one frame's decoded output with current settings.
1173  *  Use that to determine an appropriate minimum buffer size for decoding one frame. */
1174 MPG123_EXPORT size_t mpg123_outblock(mpg123_handle *mh);
1175 
1176 /** Replace low-level stream access functions; read and lseek as known in POSIX.
1177  *  You can use this to make any fancy file opening/closing yourself,
1178  *  using mpg123_open_fd() to set the file descriptor for your read/lseek (doesn't need to be a "real" file descriptor...).
1179  *  Setting a function to NULL means that the default internal read is
1180  *  used (active from next mpg123_open call on).
1181  *  Note: As it would be troublesome to mess with this while having a file open,
1182  *  this implies mpg123_close(). */
1183 MPG123_EXPORT int mpg123_replace_reader(mpg123_handle *mh, ssize_t (*r_read) (int, void *, size_t), off_t (*r_lseek)(int, off_t, int));
1184 
1185 /** Replace I/O functions with your own ones operating on some kind of handle instead of integer descriptors.
1186  *  The handle is a void pointer, so you can pass any data you want...
1187  *  mpg123_open_handle() is the call you make to use the I/O defined here.
1188  *  There is no fallback to internal read/seek here.
1189  *  Note: As it would be troublesome to mess with this while having a file open,
1190  *  this mpg123_close() is implied here.
1191  *  \param r_read The callback for reading (behaviour like posix read).
1192  *  \param r_lseek The callback for seeking (like posix lseek).
1193  *  \param cleanup A callback to clean up an I/O handle on mpg123_close, can be NULL for none (you take care of cleaning your handles). */
1194 MPG123_EXPORT int mpg123_replace_reader_handle(mpg123_handle *mh, ssize_t (*r_read) (void *, void *, size_t), off_t (*r_lseek)(void *, off_t, int), void (*cleanup)(void*));
1195 
1196 /* @} */
1197 
1198 #ifdef __cplusplus
1199 }
1200 #endif
1201 
1202 #endif
1203