tweaks to build libs as DLLs under windows
[platform/upstream/flac.git] / include / FLAC / stream_encoder.h
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2000,2001,2002  Josh Coalson
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA  02111-1307, USA.
18  */
19
20 #ifndef FLAC__STREAM_ENCODER_H
21 #define FLAC__STREAM_ENCODER_H
22
23 #include "export.h"
24 #include "format.h"
25 #include "stream_decoder.h"
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31
32 /** \file include/FLAC/stream_encoder.h
33  *
34  *  \brief
35  *  This module contains the functions which implement the stream
36  *  encoder.
37  *
38  *  See the detailed documentation in the
39  *  \link flac_stream_encoder stream encoder \endlink module.
40  */
41
42 /** \defgroup flac_encoder FLAC/ *_encoder.h: encoder interfaces
43  *  \ingroup flac
44  *
45  *  \brief
46  *  This module describes the two encoder layers provided by libFLAC.
47  *
48  * For encoding FLAC streams, libFLAC provides two layers of access.  The
49  * lowest layer is stream-level encoding, and the highest is file-level
50  * encoding.  The interfaces are described in the \link flac_stream_encoder
51  * stream encoder \endlink and \link flac_file_encoder file encoder \endlink
52  * modules respectively.  Typically you will choose the highest layer that
53  * your output source will support.
54  *
55  * The stream encoder relies on callbacks for writing the data and
56  * metadata. The file encoder provides these callbacks internally and you
57  * need only supply the filename.
58  */
59
60 /** \defgroup flac_stream_encoder FLAC/stream_encoder.h: stream encoder interface
61  *  \ingroup flac_encoder
62  *
63  *  \brief
64  *  This module contains the functions which implement the stream
65  *  encoder.
66  *
67  * The basic usage of this encoder is as follows:
68  * - The program creates an instance of an encoder using
69  *   FLAC__stream_encoder_new().
70  * - The program overrides the default settings and sets callbacks using
71  *   FLAC__stream_encoder_set_*() functions.
72  * - The program initializes the instance to validate the settings and
73  *   prepare for encoding using FLAC__stream_encoder_init().
74  * - The program calls FLAC__stream_encoder_process() or
75  *   FLAC__stream_encoder_process_interleaved() to encode data, which
76  *   subsequently calls the callbacks when there is encoder data ready
77  *   to be written.
78  * - The program finishes the encoding with FLAC__stream_encoder_finish(),
79  *   which causes the encoder to encode any data still in its input pipe,
80  *   call the metadata callback with the final encoding statistics, and
81  *   finally reset the encoder to the uninitialized state.
82  * - The instance may be used again or deleted with
83  *   FLAC__stream_encoder_delete().
84  *
85  * In more detail, the stream encoder functions similarly to the
86  * \link flac_stream_decoder stream decoder \endlink, but has fewer
87  * callbacks and more options.  Typically the user will create a new
88  * instance by calling FLAC__stream_encoder_new(), then set the necessary
89  * parameters and callbacks with FLAC__stream_encoder_set_*(), and
90  * initialize it by calling FLAC__stream_encoder_init().
91  *
92  * Unlike the decoders, the stream encoder has many options that can
93  * affect the speed and compression ratio.  When setting these parameters
94  * you should have some basic knowledge of the format (see the
95  * <A HREF="../documentation.html#format">user-level documentation</A>
96  * or the <A HREF="../format.html">formal description</A>).  The
97  * FLAC__stream_encoder_set_*() functions themselves do not validate the
98  * values as many are interdependent.  The FLAC__stream_encoder_init()
99  * function will do this, so make sure to pay attention to the state
100  * returned by FLAC__stream_encoder_init() to make sure that it is
101  * FLAC__STREAM_ENCODER_OK.  Any parameters that are not set before
102  * FLAC__stream_encoder_init() will take on the defaults from the
103  * constructor.
104  *
105  * The user must provide function pointers for the following callbacks:
106  *
107  * - Write callback - This function is called by the encoder anytime there
108  *   is raw encoded data to write.  It may include metadata mixed with
109  *   encoded audio frames and the data is not guaranteed to be aligned on
110  *   frame or metadata block boundaries.
111  * - Metadata callback - This function is called once at the end of
112  *   encoding with the populated STREAMINFO structure.  This is so file
113  *   encoders can seek back to the beginning of the file and write the
114  *   STREAMINFO block with the correct statistics after encoding (like
115  *   minimum/maximum frame size).
116  *
117  * The call to FLAC__stream_encoder_init() currently will also immediately
118  * call the write callback several times, once with the \c fLaC signature,
119  * and once for each encoded metadata block.
120  *
121  * After initializing the instance, the user may feed audio data to the
122  * encoder in one of two ways:
123  *
124  * - Channel separate, through FLAC__stream_encoder_process() - The user
125  *   will pass an array of pointers to buffers, one for each channel, to
126  *   the encoder, each of the same length.  The samples need not be
127  *   block-aligned.
128  * - Channel interleaved, through
129  *   FLAC__stream_encoder_process_interleaved() - The user will pass a single
130  *   pointer to data that is channel-interleaved (i.e. channel0_sample0,
131  *   channel1_sample0, ... , channelN_sample0, channel0_sample1, ...).
132  *   Again, the samples need not be block-aligned but they must be
133  *   sample-aligned, i.e. the first value should be channel0_sample0 and
134  *   the last value channelN_sampleM.
135  *
136  * When the user is finished encoding data, it calls
137  * FLAC__stream_encoder_finish(), which causes the encoder to encode any
138  * data still in its input pipe, and call the metadata callback with the
139  * final encoding statistics.  Then the instance may be deleted with
140  * FLAC__stream_encoder_delete() or initialized again to encode another
141  * stream.
142  *
143  * For programs that write their own metadata, but that do not know the
144  * actual metadata until after encoding, it is advantageous to instruct
145  * the encoder to write a PADDING block of the correct size, so that
146  * instead of rewriting the whole stream after encoding, the program can
147  * just overwrite the PADDING block.  If only the maximum size of the
148  * metadata is known, the program can write a slightly larger padding
149  * block, then split it after encoding.
150  *
151  * Make sure you understand how lengths are calculated.  All FLAC metadata
152  * blocks have a 4 byte header which contains the type and length.  This
153  * length does not include the 4 bytes of the header.  See the format page
154  * for the specification of metadata blocks and their lengths.
155  *
156  * \note
157  * The "set" functions may only be called when the encoder is in the
158  * state FLAC__STREAM_ENCODER_UNINITIALIZED, i.e. after
159  * FLAC__stream_encoder_new() or FLAC__stream_encoder_finish(), but
160  * before FLAC__stream_encoder_init().  If this is the case they will
161  * return \c true, otherwise \c false.
162  *
163  * \note
164  * FLAC__stream_encoder_finish() resets all settings to the constructor
165  * defaults, including the callbacks.
166  *
167  * \{
168  */
169
170
171 /** State values for a FLAC__StreamEncoder
172  *
173  *  The encoder's state can be obtained by calling FLAC__stream_encoder_get_state().
174  */
175 typedef enum {
176
177         FLAC__STREAM_ENCODER_OK = 0,
178         /**< The encoder is in the normal OK state. */
179
180         FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR,
181         /**< An error occurred in the underlying verify stream decoder;
182          * check FLAC__stream_encoder_get_verify_decoder_state().
183          */
184
185         FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA,
186         /**< The verify decoder detected a mismatch between the original
187          * audio signal and the decoded audio signal.
188          */
189
190         FLAC__STREAM_ENCODER_INVALID_CALLBACK,
191         /**< The encoder was initialized before setting all the required callbacks. */
192
193         FLAC__STREAM_ENCODER_INVALID_NUMBER_OF_CHANNELS,
194         /**< The encoder has an invalid setting for number of channels. */
195
196         FLAC__STREAM_ENCODER_INVALID_BITS_PER_SAMPLE,
197         /**< The encoder has an invalid setting for bits-per-sample.
198          * FLAC supports 4-32 bps but the reference encoder currently supports
199          * only up to 24 bps.
200          */
201
202         FLAC__STREAM_ENCODER_INVALID_SAMPLE_RATE,
203         /**< The encoder has an invalid setting for the input sample rate. */
204
205         FLAC__STREAM_ENCODER_INVALID_BLOCK_SIZE,
206         /**< The encoder has an invalid setting for the block size. */
207
208         FLAC__STREAM_ENCODER_INVALID_MAX_LPC_ORDER,
209         /**< The encoder has an invalid setting for the maximum LPC order. */
210
211         FLAC__STREAM_ENCODER_INVALID_QLP_COEFF_PRECISION,
212         /**< The encoder has an invalid setting for the precision of the quantized linear predictor coefficients. */
213
214         FLAC__STREAM_ENCODER_MID_SIDE_CHANNELS_MISMATCH,
215         /**< Mid/side coding was specified but the number of channels is not equal to 2. */
216
217         FLAC__STREAM_ENCODER_MID_SIDE_SAMPLE_SIZE_MISMATCH,
218         /**< Deprecated. */
219
220         FLAC__STREAM_ENCODER_ILLEGAL_MID_SIDE_FORCE,
221         /**< Loose mid/side coding was specified but mid/side coding was not. */
222
223         FLAC__STREAM_ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER,
224         /**< The specified block size is less than the maximum LPC order. */
225
226         FLAC__STREAM_ENCODER_NOT_STREAMABLE,
227         /**< The encoder is bound to the "streamable subset" but other settings violate it. */
228
229         FLAC__STREAM_ENCODER_FRAMING_ERROR,
230         /**< An error occurred while writing the stream; usually, the write_callback returned an error. */
231
232         FLAC__STREAM_ENCODER_INVALID_METADATA,
233         /**< The metadata input to the encoder is invalid, in one of the following ways:
234          * - FLAC__stream_encoder_set_metadata() was called with a null pointer but a block count > 0
235          * - It contains an illegal SEEKTABLE as checked by FLAC__format_seektable_is_legal()
236          * - It contains more than one SEEKTABLE block or more than one VORBIS_COMMENT block
237          */
238
239         FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING,
240         /**< An error occurred while writing the stream; usually, the write_callback returned an error. */
241
242         FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_WRITING,
243         /**< The write_callback returned an error. */
244
245         FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR,
246         /**< Memory allocation failed. */
247
248         FLAC__STREAM_ENCODER_ALREADY_INITIALIZED,
249         /**< FLAC__stream_encoder_init() was called when the encoder was
250          * already initialized, usually because
251          * FLAC__stream_encoder_finish() was not called.
252          */
253
254         FLAC__STREAM_ENCODER_UNINITIALIZED
255         /**< The encoder is in the uninitialized state. */
256
257 } FLAC__StreamEncoderState;
258
259 /** Maps a FLAC__StreamEncoderState to a C string.
260  *
261  *  Using a FLAC__StreamEncoderState as the index to this array
262  *  will give the string equivalent.  The contents should not be modified.
263  */
264 extern FLAC_API const char * const FLAC__StreamEncoderStateString[];
265
266 /** Return values for the FLAC__StreamEncoder write callback.
267  */
268 typedef enum {
269
270         FLAC__STREAM_ENCODER_WRITE_STATUS_OK = 0,
271         /**< The write was OK and encoding can continue. */
272
273         FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR
274         /**< An unrecoverable error occurred.  The encoder will return from the process call. */
275
276 } FLAC__StreamEncoderWriteStatus;
277
278 /** Maps a FLAC__StreamEncoderWriteStatus to a C string.
279  *
280  *  Using a FLAC__StreamEncoderWriteStatus as the index to this array
281  *  will give the string equivalent.  The contents should not be modified.
282  */
283 extern FLAC_API const char * const FLAC__StreamEncoderWriteStatusString[];
284
285
286 /***********************************************************************
287  *
288  * class FLAC__StreamEncoder
289  *
290  ***********************************************************************/
291
292 struct FLAC__StreamEncoderProtected;
293 struct FLAC__StreamEncoderPrivate;
294 /** The opaque structure definition for the stream encoder type.
295  *  See the \link flac_stream_encoder stream encoder module \endlink
296  *  for a detailed description.
297  */
298 typedef struct {
299         struct FLAC__StreamEncoderProtected *protected_; /* avoid the C++ keyword 'protected' */
300         struct FLAC__StreamEncoderPrivate *private_; /* avoid the C++ keyword 'private' */
301 } FLAC__StreamEncoder;
302
303 /** Signature for the write callback.
304  *  See FLAC__stream_encoder_set_write_callback() for more info.
305  *
306  * \param  encoder  The encoder instance calling the callback.
307  * \param  buffer   An array of encoded data of length \a bytes.
308  * \param  bytes    The byte length of \a buffer.
309  * \param  samples  The number of samples encoded by \a buffer.
310  *                  \c 0 has a special meaning; see
311  *                  FLAC__stream_encoder_set_write_callback().
312  * \param  current_frame  The number of the current frame being encoded.
313  * \param  client_data  The callee's client data set through
314  *                      FLAC__stream_encoder_set_client_data().
315  * \retval FLAC__StreamDecoderWriteStatus
316  *    The callee's return status.
317  */
318 typedef FLAC__StreamEncoderWriteStatus (*FLAC__StreamEncoderWriteCallback)(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data);
319
320 /** Signature for the metadata callback.
321  *  See FLAC__stream_encoder_set_metadata_callback() for more info.
322  *
323  * \param  encoder      The encoder instance calling the callback.
324  * \param  metadata     The final populated STREAMINFO block.
325  * \param  client_data  The callee's client data set through
326  *                      FLAC__stream_encoder_set_client_data().
327  */
328 typedef void (*FLAC__StreamEncoderMetadataCallback)(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data);
329
330
331 /***********************************************************************
332  *
333  * Class constructor/destructor
334  *
335  ***********************************************************************/
336
337 /** Create a new stream encoder instance.  The instance is created with
338  *  default settings; see the individual FLAC__stream_encoder_set_*()
339  *  functions for each setting's default.
340  *
341  * \retval FLAC__StreamEncoder*
342  *    \c NULL if there was an error allocating memory, else the new instance.
343  */
344 FLAC_API FLAC__StreamEncoder *FLAC__stream_encoder_new();
345
346 /** Free an encoder instance.  Deletes the object pointed to by \a encoder.
347  *
348  * \param encoder  A pointer to an existing encoder.
349  * \assert
350  *    \code encoder != NULL \endcode
351  */
352 FLAC_API void FLAC__stream_encoder_delete(FLAC__StreamEncoder *encoder);
353
354 /***********************************************************************
355  *
356  * Public class method prototypes
357  *
358  ***********************************************************************/
359
360 /** Set the "verify" flag.  If \c true, the encoder will verify it's own
361  *  encoded output by feeding it through an internal decoder and comparing
362  *  the original signal against the decoded signal.  If a mismatch occurs,
363  *  the process call will return \c false.  Note that this will slow the
364  *  encoding process by the extra time required for decoding and comparison.
365  *
366  * \default \c false
367  * \param  encoder  An encoder instance to set.
368  * \param  value    Flag value (see above).
369  * \assert
370  *    \code encoder != NULL \endcode
371  * \retval FLAC__bool
372  *    \c false if the encoder is already initialized, else \c true.
373  */
374 FLAC_API FLAC__bool FLAC__stream_encoder_set_verify(FLAC__StreamEncoder *encoder, FLAC__bool value);
375
376 /** Set the "streamable subset" flag.  If \c true, the encoder will comply
377  *  with the subset (see the format specification) and will check the
378  *  settings during FLAC__stream_encoder_init() to see if all settings
379  *  comply.  If \c false, the settings may take advantage of the full
380  *  range that the format allows.
381  *
382  *  Make sure you know what it entails before setting this to \c false.
383  *
384  * \default \c true
385  * \param  encoder  An encoder instance to set.
386  * \param  value    Flag value (see above).
387  * \assert
388  *    \code encoder != NULL \endcode
389  * \retval FLAC__bool
390  *    \c false if the encoder is already initialized, else \c true.
391  */
392 FLAC_API FLAC__bool FLAC__stream_encoder_set_streamable_subset(FLAC__StreamEncoder *encoder, FLAC__bool value);
393
394 /** Set to \c true to enable mid-side encoding on stereo input.  The
395  *  number of channels must be 2.  Set to \c false to use only
396  *  independent channel coding.
397  *
398  * \default \c false
399  * \param  encoder  An encoder instance to set.
400  * \param  value    Flag value (see above).
401  * \assert
402  *    \code encoder != NULL \endcode
403  * \retval FLAC__bool
404  *    \c false if the encoder is already initialized, else \c true.
405  */
406 FLAC_API FLAC__bool FLAC__stream_encoder_set_do_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value);
407
408 /** Set to \c true to enable adaptive switching between mid-side and
409  *  left-right encoding on stereo input.  The number of channels must
410  *  be 2.  Set to \c false to use exhaustive searching.  In either
411  *  case, the mid/side stereo setting must be \c true.
412  *
413  * \default \c false
414  * \param  encoder  An encoder instance to set.
415  * \param  value    Flag value (see above).
416  * \assert
417  *    \code encoder != NULL \endcode
418  * \retval FLAC__bool
419  *    \c false if the encoder is already initialized, else \c true.
420  */
421 FLAC_API FLAC__bool FLAC__stream_encoder_set_loose_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value);
422
423 /** Set the number of channels to be encoded.
424  *
425  * \default \c 2
426  * \param  encoder  An encoder instance to set.
427  * \param  value    See above.
428  * \assert
429  *    \code encoder != NULL \endcode
430  * \retval FLAC__bool
431  *    \c false if the encoder is already initialized, else \c true.
432  */
433 FLAC_API FLAC__bool FLAC__stream_encoder_set_channels(FLAC__StreamEncoder *encoder, unsigned value);
434
435 /** Set the sample resolution of the input to be encoded.
436  *
437  * \warning
438  * Do not feed the encoder data that is wider than the value you
439  * set here or you will generate an invalid stream.
440  *
441  * \default \c 16
442  * \param  encoder  An encoder instance to set.
443  * \param  value    See above.
444  * \assert
445  *    \code encoder != NULL \endcode
446  * \retval FLAC__bool
447  *    \c false if the encoder is already initialized, else \c true.
448  */
449 FLAC_API FLAC__bool FLAC__stream_encoder_set_bits_per_sample(FLAC__StreamEncoder *encoder, unsigned value);
450
451 /** Set the sample rate (in Hz) of the input to be encoded.
452  *
453  * \default \c 44100
454  * \param  encoder  An encoder instance to set.
455  * \param  value    See above.
456  * \assert
457  *    \code encoder != NULL \endcode
458  * \retval FLAC__bool
459  *    \c false if the encoder is already initialized, else \c true.
460  */
461 FLAC_API FLAC__bool FLAC__stream_encoder_set_sample_rate(FLAC__StreamEncoder *encoder, unsigned value);
462
463 /** Set the blocksize to use while encoding.
464  *
465  * \default \c 1152
466  * \param  encoder  An encoder instance to set.
467  * \param  value    See above.
468  * \assert
469  *    \code encoder != NULL \endcode
470  * \retval FLAC__bool
471  *    \c false if the encoder is already initialized, else \c true.
472  */
473 FLAC_API FLAC__bool FLAC__stream_encoder_set_blocksize(FLAC__StreamEncoder *encoder, unsigned value);
474
475 /** Set the maximum LPC order, or \c 0 to use only the fixed predictors.
476  *
477  * \default \c 0
478  * \param  encoder  An encoder instance to set.
479  * \param  value    See above.
480  * \assert
481  *    \code encoder != NULL \endcode
482  * \retval FLAC__bool
483  *    \c false if the encoder is already initialized, else \c true.
484  */
485 FLAC_API FLAC__bool FLAC__stream_encoder_set_max_lpc_order(FLAC__StreamEncoder *encoder, unsigned value);
486
487 /** Set the precision, in bits, of the quantized linear predictor
488  *  coefficients, or \c 0 to let the encoder select it based on the
489  *  blocksize.
490  *
491  * \note
492  * In the current implementation, qlp_coeff_precision + bits_per_sample must
493  * be less than 32.
494  *
495  * \default \c 0
496  * \param  encoder  An encoder instance to set.
497  * \param  value    See above.
498  * \assert
499  *    \code encoder != NULL \endcode
500  * \retval FLAC__bool
501  *    \c false if the encoder is already initialized, else \c true.
502  */
503 FLAC_API FLAC__bool FLAC__stream_encoder_set_qlp_coeff_precision(FLAC__StreamEncoder *encoder, unsigned value);
504
505 /** Set to \c false to use only the specified quantized linear predictor
506  *  coefficient precision, or \c true to search neighboring precision
507  *  values and use the best one.
508  *
509  * \default \c false
510  * \param  encoder  An encoder instance to set.
511  * \param  value    See above.
512  * \assert
513  *    \code encoder != NULL \endcode
514  * \retval FLAC__bool
515  *    \c false if the encoder is already initialized, else \c true.
516  */
517 FLAC_API FLAC__bool FLAC__stream_encoder_set_do_qlp_coeff_prec_search(FLAC__StreamEncoder *encoder, FLAC__bool value);
518
519 /** Deprecated.  Setting this value has no effect.
520  *
521  * \default \c false
522  * \param  encoder  An encoder instance to set.
523  * \param  value    See above.
524  * \assert
525  *    \code encoder != NULL \endcode
526  * \retval FLAC__bool
527  *    \c false if the encoder is already initialized, else \c true.
528  */
529 FLAC_API FLAC__bool FLAC__stream_encoder_set_do_escape_coding(FLAC__StreamEncoder *encoder, FLAC__bool value);
530
531 /** Set to \c false to let the encoder estimate the best model order
532  *  based on the residual signal energy, or \c true to force the
533  *  encoder to evaluate all order models and select the best.
534  *
535  * \default \c false
536  * \param  encoder  An encoder instance to set.
537  * \param  value    See above.
538  * \assert
539  *    \code encoder != NULL \endcode
540  * \retval FLAC__bool
541  *    \c false if the encoder is already initialized, else \c true.
542  */
543 FLAC_API FLAC__bool FLAC__stream_encoder_set_do_exhaustive_model_search(FLAC__StreamEncoder *encoder, FLAC__bool value);
544
545 /** Set the minimum partition order to search when coding the residual.
546  *  This is used in tandem with
547  *  FLAC__stream_encoder_set_max_residual_partition_order().
548  *
549  *  The partition order determines the context size in the residual.
550  *  The context size will be approximately <tt>blocksize / (2 ^ order)</tt>.
551  *
552  *  Set both min and max values to \c 0 to force a single context,
553  *  whose Rice parameter is based on the residual signal variance.
554  *  Otherwise, set a min and max order, and the encoder will search
555  *  all orders, using the mean of each context for its Rice parameter,
556  *  and use the best.
557  *
558  * \default \c 0
559  * \param  encoder  An encoder instance to set.
560  * \param  value    See above.
561  * \assert
562  *    \code encoder != NULL \endcode
563  * \retval FLAC__bool
564  *    \c false if the encoder is already initialized, else \c true.
565  */
566 FLAC_API FLAC__bool FLAC__stream_encoder_set_min_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value);
567
568 /** Set the maximum partition order to search when coding the residual.
569  *  This is used in tandem with
570  *  FLAC__stream_encoder_set_min_residual_partition_order().
571  *
572  *  The partition order determines the context size in the residual.
573  *  The context size will be approximately <tt>blocksize / (2 ^ order)</tt>.
574  *
575  *  Set both min and max values to \c 0 to force a single context,
576  *  whose Rice parameter is based on the residual signal variance.
577  *  Otherwise, set a min and max order, and the encoder will search
578  *  all orders, using the mean of each context for its Rice parameter,
579  *  and use the best.
580  *
581  * \default \c 0
582  * \param  encoder  An encoder instance to set.
583  * \param  value    See above.
584  * \assert
585  *    \code encoder != NULL \endcode
586  * \retval FLAC__bool
587  *    \c false if the encoder is already initialized, else \c true.
588  */
589 FLAC_API FLAC__bool FLAC__stream_encoder_set_max_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value);
590
591 /** Deprecated.  Setting this value has no effect.
592  *
593  * \default \c 0
594  * \param  encoder  An encoder instance to set.
595  * \param  value    See above.
596  * \assert
597  *    \code encoder != NULL \endcode
598  * \retval FLAC__bool
599  *    \c false if the encoder is already initialized, else \c true.
600  */
601 FLAC_API FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist(FLAC__StreamEncoder *encoder, unsigned value);
602
603 /** Set an estimate of the total samples that will be encoded.
604  *  This is merely an estimate and may be set to \c 0 if unknown.
605  *  This value will be written to the STREAMINFO block before encoding,
606  *  and can remove the need for the caller to rewrite the value later
607  *  if the value is known before encoding.
608  *
609  * \default \c 0
610  * \param  encoder  An encoder instance to set.
611  * \param  value    See above.
612  * \assert
613  *    \code encoder != NULL \endcode
614  * \retval FLAC__bool
615  *    \c false if the encoder is already initialized, else \c true.
616  */
617 FLAC_API FLAC__bool FLAC__stream_encoder_set_total_samples_estimate(FLAC__StreamEncoder *encoder, FLAC__uint64 value);
618
619 /** Set the metadata blocks to be emitted to the stream before encoding.
620  *  A value of \c NULL, \c 0 implies no metadata; otherwise, supply an
621  *  array of pointers to metadata blocks.  The array is non-const since
622  *  the encoder may need to change the \a is_last flag inside them.
623  *  Otherwise, the encoder will not modify or free the blocks.  It is up
624  *  to the caller to free the metadata blocks after encoding.
625  *
626  * \note
627  * The encoder stores only the \a metadata pointer; the passed-in array
628  * must survive at least until after FLAC__stream_encoder_init() returns.
629  * Do not modify the array or free the blocks until then.
630  *
631  * \note
632  * The STREAMINFO block is always written and no STREAMINFO block may
633  * occur in the supplied array.
634  *
635  * \note
636  * By default the encoder does not create a SEEKTABLE.  If one is supplied
637  * in the \a metadata array it will be written verbatim.  However by itself
638  * this is not very useful as the user will not know the stream offsets for
639  * the seekpoints ahead of time.  You must use the seekable stream encoder
640  * to generate a legal seektable
641  * (see FLAC__seekable_stream_encoder_set_metadata())
642  *
643  * \note
644  * A VORBIS_COMMENT block may be supplied.  The vendor string in it
645  * will be ignored.  libFLAC will use it's own vendor string. libFLAC
646  * will not modify the passed-in VORBIS_COMMENT's vendor string, it
647  * will simply write it's own into the stream.  If no VORBIS_COMMENT
648  * block is present in the \a metadata array, libFLAC will write an
649  * empty one, containing only the vendor string.
650  *
651  * \default \c NULL, 0
652  * \param  encoder     An encoder instance to set.
653  * \param  metadata    See above.
654  * \param  num_blocks  See above.
655  * \assert
656  *    \code encoder != NULL \endcode
657  * \retval FLAC__bool
658  *    \c false if the encoder is already initialized, else \c true.
659  */
660 FLAC_API FLAC__bool FLAC__stream_encoder_set_metadata(FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, unsigned num_blocks);
661
662 /** Set the write callback.
663  *  The supplied function will be called by the encoder anytime there is raw
664  *  encoded data ready to write.  It may include metadata mixed with encoded
665  *  audio frames and the data is not guaranteed to be aligned on frame or
666  *  metadata block boundaries.
667  *
668  *  The only duty of the callback is to write out the \a bytes worth of data
669  *  in \a buffer to the current position in the output stream.  The arguments
670  *  \a samples and \a current_frame are purely informational.  If \a samples
671  *  is greater than \c 0, then \a current_frame will hold the current frame
672  *  number that is being written; otherwise, the write callback is being called
673  *  to write metadata.
674  *
675  * \note
676  * The callback is mandatory and must be set before initialization.
677  *
678  * \default \c NULL
679  * \param  encoder  An encoder instance to set.
680  * \param  value    See above.
681  * \assert
682  *    \code encoder != NULL \endcode
683  *    \code value != NULL \endcode
684  * \retval FLAC__bool
685  *    \c false if the encoder is already initialized, else \c true.
686  */
687 FLAC_API FLAC__bool FLAC__stream_encoder_set_write_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback value);
688
689 /** Set the metadata callback.
690  *  The supplied function will be called once at the end of encoding with
691  *  the populated STREAMINFO structure.  This is so file encoders can seek
692  *  back to the beginning of the file and write the STREAMINFO block with
693  *  the correct statistics after encoding (like minimum/maximum frame size
694  *  and total samples).
695  *
696  * \note
697  * The callback is mandatory and must be set before initialization.
698  *
699  * \default \c NULL
700  * \param  encoder  An encoder instance to set.
701  * \param  value    See above.
702  * \assert
703  *    \code encoder != NULL \endcode
704  *    \code value != NULL \endcode
705  * \retval FLAC__bool
706  *    \c false if the encoder is already initialized, else \c true.
707  */
708 FLAC_API FLAC__bool FLAC__stream_encoder_set_metadata_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderMetadataCallback value);
709
710 /** Set the client data to be passed back to callbacks.
711  *  This value will be supplied to callbacks in their \a client_data
712  *  argument.
713  *
714  * \default \c NULL
715  * \param  encoder  An encoder instance to set.
716  * \param  value    See above.
717  * \assert
718  *    \code encoder != NULL \endcode
719  * \retval FLAC__bool
720  *    \c false if the encoder is already initialized, else \c true.
721  */
722 FLAC_API FLAC__bool FLAC__stream_encoder_set_client_data(FLAC__StreamEncoder *encoder, void *value);
723
724 /** Get the current encoder state.
725  *
726  * \param  encoder  An encoder instance to query.
727  * \assert
728  *    \code encoder != NULL \endcode
729  * \retval FLAC__StreamEncoderState
730  *    The current encoder state.
731  */
732 FLAC_API FLAC__StreamEncoderState FLAC__stream_encoder_get_state(const FLAC__StreamEncoder *encoder);
733
734 /** Get the state of the verify stream decoder.
735  *  Useful when the stream encoder state is
736  *  \c FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR.
737  *
738  * \param  encoder  An encoder instance to query.
739  * \assert
740  *    \code encoder != NULL \endcode
741  * \retval FLAC__StreamDecoderState
742  *    The verify stream decoder state.
743  */
744 FLAC_API FLAC__StreamDecoderState FLAC__stream_encoder_get_verify_decoder_state(const FLAC__StreamEncoder *encoder);
745
746 /** Get relevant values about the nature of a verify decoder error.
747  *  Useful when the stream encoder state is
748  *  \c FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR.  The arguments should
749  *  be addresses in which the stats will be returned, or NULL if value
750  *  is not desired.
751  *
752  * \param  encoder  An encoder instance to query.
753  * \param  absolute_sample  The absolute sample number of the mismatch.
754  * \param  frame_number  The number of the frame in which the mismatch occurred.
755  * \param  channel       The channel in which the mismatch occurred.
756  * \param  sample        The number of the sample (relative to the frame) in
757  *                       which the mismatch occurred.
758  * \param  expected      The expected value for the sample in question.
759  * \param  got           The actual value returned by the decoder.
760  * \assert
761  *    \code encoder != NULL \endcode
762  */
763 FLAC_API void FLAC__stream_encoder_get_verify_decoder_error_stats(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_sample, unsigned *frame_number, unsigned *channel, unsigned *sample, FLAC__int32 *expected, FLAC__int32 *got);
764
765 /** Get the "verify" flag.
766  *
767  * \param  encoder  An encoder instance to query.
768  * \assert
769  *    \code encoder != NULL \endcode
770  * \retval FLAC__bool
771  *    See FLAC__stream_encoder_set_verify().
772  */
773 FLAC_API FLAC__bool FLAC__stream_encoder_get_verify(const FLAC__StreamEncoder *encoder);
774
775 /** Get the "streamable subset" flag.
776  *
777  * \param  encoder  An encoder instance to query.
778  * \assert
779  *    \code encoder != NULL \endcode
780  * \retval FLAC__bool
781  *    See FLAC__stream_encoder_set_streamable_subset().
782  */
783 FLAC_API FLAC__bool FLAC__stream_encoder_get_streamable_subset(const FLAC__StreamEncoder *encoder);
784
785 /** Get the "mid/side stereo coding" flag.
786  *
787  * \param  encoder  An encoder instance to query.
788  * \assert
789  *    \code encoder != NULL \endcode
790  * \retval FLAC__bool
791  *    See FLAC__stream_encoder_get_do_mid_side_stereo().
792  */
793 FLAC_API FLAC__bool FLAC__stream_encoder_get_do_mid_side_stereo(const FLAC__StreamEncoder *encoder);
794
795 /** Get the "adaptive mid/side switching" flag.
796  *
797  * \param  encoder  An encoder instance to query.
798  * \assert
799  *    \code encoder != NULL \endcode
800  * \retval FLAC__bool
801  *    See FLAC__stream_encoder_set_loose_mid_side_stereo().
802  */
803 FLAC_API FLAC__bool FLAC__stream_encoder_get_loose_mid_side_stereo(const FLAC__StreamEncoder *encoder);
804
805 /** Get the number of input channels being processed.
806  *
807  * \param  encoder  An encoder instance to query.
808  * \assert
809  *    \code encoder != NULL \endcode
810  * \retval unsigned
811  *    See FLAC__stream_encoder_set_channels().
812  */
813 FLAC_API unsigned FLAC__stream_encoder_get_channels(const FLAC__StreamEncoder *encoder);
814
815 /** Get the input sample resolution setting.
816  *
817  * \param  encoder  An encoder instance to query.
818  * \assert
819  *    \code encoder != NULL \endcode
820  * \retval unsigned
821  *    See FLAC__stream_encoder_set_bits_per_sample().
822  */
823 FLAC_API unsigned FLAC__stream_encoder_get_bits_per_sample(const FLAC__StreamEncoder *encoder);
824
825 /** Get the input sample rate setting.
826  *
827  * \param  encoder  An encoder instance to query.
828  * \assert
829  *    \code encoder != NULL \endcode
830  * \retval unsigned
831  *    See FLAC__stream_encoder_set_sample_rate().
832  */
833 FLAC_API unsigned FLAC__stream_encoder_get_sample_rate(const FLAC__StreamEncoder *encoder);
834
835 /** Get the blocksize setting.
836  *
837  * \param  encoder  An encoder instance to query.
838  * \assert
839  *    \code encoder != NULL \endcode
840  * \retval unsigned
841  *    See FLAC__stream_encoder_set_blocksize().
842  */
843 FLAC_API unsigned FLAC__stream_encoder_get_blocksize(const FLAC__StreamEncoder *encoder);
844
845 /** Get the maximum LPC order setting.
846  *
847  * \param  encoder  An encoder instance to query.
848  * \assert
849  *    \code encoder != NULL \endcode
850  * \retval unsigned
851  *    See FLAC__stream_encoder_set_max_lpc_order().
852  */
853 FLAC_API unsigned FLAC__stream_encoder_get_max_lpc_order(const FLAC__StreamEncoder *encoder);
854
855 /** Get the quantized linear predictor coefficient precision setting.
856  *
857  * \param  encoder  An encoder instance to query.
858  * \assert
859  *    \code encoder != NULL \endcode
860  * \retval unsigned
861  *    See FLAC__stream_encoder_set_qlp_coeff_precision().
862  */
863 FLAC_API unsigned FLAC__stream_encoder_get_qlp_coeff_precision(const FLAC__StreamEncoder *encoder);
864
865 /** Get the qlp coefficient precision search flag.
866  *
867  * \param  encoder  An encoder instance to query.
868  * \assert
869  *    \code encoder != NULL \endcode
870  * \retval FLAC__bool
871  *    See FLAC__stream_encoder_set_do_qlp_coeff_prec_search().
872  */
873 FLAC_API FLAC__bool FLAC__stream_encoder_get_do_qlp_coeff_prec_search(const FLAC__StreamEncoder *encoder);
874
875 /** Get the "escape coding" flag.
876  *
877  * \param  encoder  An encoder instance to query.
878  * \assert
879  *    \code encoder != NULL \endcode
880  * \retval FLAC__bool
881  *    See FLAC__stream_encoder_set_do_escape_coding().
882  */
883 FLAC_API FLAC__bool FLAC__stream_encoder_get_do_escape_coding(const FLAC__StreamEncoder *encoder);
884
885 /** Get the exhaustive model search flag.
886  *
887  * \param  encoder  An encoder instance to query.
888  * \assert
889  *    \code encoder != NULL \endcode
890  * \retval FLAC__bool
891  *    See FLAC__stream_encoder_set_do_exhaustive_model_search().
892  */
893 FLAC_API FLAC__bool FLAC__stream_encoder_get_do_exhaustive_model_search(const FLAC__StreamEncoder *encoder);
894
895 /** Get the minimum residual partition order setting.
896  *
897  * \param  encoder  An encoder instance to query.
898  * \assert
899  *    \code encoder != NULL \endcode
900  * \retval unsigned
901  *    See FLAC__stream_encoder_set_min_residual_partition_order().
902  */
903 FLAC_API unsigned FLAC__stream_encoder_get_min_residual_partition_order(const FLAC__StreamEncoder *encoder);
904
905 /** Get maximum residual partition order setting.
906  *
907  * \param  encoder  An encoder instance to query.
908  * \assert
909  *    \code encoder != NULL \endcode
910  * \retval unsigned
911  *    See FLAC__stream_encoder_set_max_residual_partition_order().
912  */
913 FLAC_API unsigned FLAC__stream_encoder_get_max_residual_partition_order(const FLAC__StreamEncoder *encoder);
914
915 /** Get the Rice parameter search distance setting.
916  *
917  * \param  encoder  An encoder instance to query.
918  * \assert
919  *    \code encoder != NULL \endcode
920  * \retval unsigned
921  *    See FLAC__stream_encoder_set_rice_parameter_search_dist().
922  */
923 FLAC_API unsigned FLAC__stream_encoder_get_rice_parameter_search_dist(const FLAC__StreamEncoder *encoder);
924
925 /** Get the previously set estimate of the total samples to be encoded.
926  *  The encoder merely mimics back the value given to
927  *  FLAC__stream_encoder_set_total_samples_estimate() since it has no
928  *  other way of knowing how many samples the user will encode.
929  *
930  * \param  encoder  An encoder instance to set.
931  * \assert
932  *    \code encoder != NULL \endcode
933  * \retval FLAC__uint64
934  *    See FLAC__stream_encoder_get_total_samples_estimate().
935  */
936 FLAC_API FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate(const FLAC__StreamEncoder *encoder);
937
938 /** Initialize the encoder instance.
939  *  Should be called after FLAC__stream_encoder_new() and
940  *  FLAC__stream_encoder_set_*() but before FLAC__stream_encoder_process()
941  *  or FLAC__stream_encoder_process_interleaved().  Will set and return
942  *  the encoder state, which will be FLAC__STREAM_ENCODER_OK if
943  *  initialization succeeded.
944  *
945  *  The call to FLAC__stream_encoder_init() currently will also immediately
946  *  call the write callback several times, once with the \c fLaC signature,
947  *  and once for each encoded metadata block.
948  *
949  * \param  encoder  An uninitialized encoder instance.
950  * \assert
951  *    \code encoder != NULL \endcode
952  * \retval FLAC__StreamEncoderState
953  *    \c FLAC__STREAM_ENCODER_OK if initialization was successful; see
954  *    FLAC__StreamEncoderState for the meanings of other return values.
955  */
956 FLAC_API FLAC__StreamEncoderState FLAC__stream_encoder_init(FLAC__StreamEncoder *encoder);
957
958 /** Finish the encoding process.
959  *  Flushes the encoding buffer, releases resources, resets the encoder
960  *  settings to their defaults, and returns the encoder state to
961  *  FLAC__STREAM_ENCODER_UNINITIALIZED.  Note that this can generate
962  *  one or more write callbacks before returning, and will generate
963  *  a metadata callback.
964  *
965  *  In the event of a prematurely-terminated encode, it is not strictly
966  *  necessary to call this immediately before FLAC__stream_encoder_delete()
967  *  but it is good practice to match every FLAC__stream_encoder_init()
968  *  with a FLAC__stream_encoder_finish().
969  *
970  * \param  encoder  An uninitialized encoder instance.
971  * \assert
972  *    \code encoder != NULL \endcode
973  */
974 FLAC_API void FLAC__stream_encoder_finish(FLAC__StreamEncoder *encoder);
975
976 /** Submit data for encoding.
977  *  This version allows you to supply the input data via an array of
978  *  pointers, each pointer pointing to an array of \a samples samples
979  *  representing one channel.  The samples need not be block-aligned,
980  *  but each channel should have the same number of samples.
981  *
982  * \param  encoder  An initialized encoder instance in the OK state.
983  * \param  buffer   An array of pointers to each channel's signal.
984  * \param  samples  The number of samples in one channel.
985  * \assert
986  *    \code encoder != NULL \endcode
987  *    \code FLAC__stream_encoder_get_state(encoder) == FLAC__STREAM_ENCODER_OK \endcode
988  * \retval FLAC__bool
989  *    \c true if successful, else \c false; in this case, check the
990  *    encoder state with FLAC__stream_encoder_get_state() to see what
991  *    went wrong.
992  */
993 FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * const buffer[], unsigned samples);
994
995 /** Submit data for encoding.
996  *  This version allows you to supply the input data where the channels
997  *  are interleaved into a single array (i.e. channel0_sample0,
998  *  channel1_sample0, ... , channelN_sample0, channel0_sample1, ...).
999  *  The samples need not be block-aligned but they must be
1000  *  sample-aligned, i.e. the first value should be channel0_sample0
1001  *  and the last value channelN_sampleM.
1002  *
1003  * \param  encoder  An initialized encoder instance in the OK state.
1004  * \param  buffer   An array of channel-interleaved data (see above).
1005  * \param  samples  The number of samples in one channel, the same as for
1006  *                  FLAC__stream_encoder_process().  For example, if
1007  *                  encoding two channels, \c 1000 \a samples corresponds
1008  *                  to a \a buffer of 2000 values.
1009  * \assert
1010  *    \code encoder != NULL \endcode
1011  *    \code FLAC__stream_encoder_get_state(encoder) == FLAC__STREAM_ENCODER_OK \endcode
1012  * \retval FLAC__bool
1013  *    \c true if successful, else \c false; in this case, check the
1014  *    encoder state with FLAC__stream_encoder_get_state() to see what
1015  *    went wrong.
1016  */
1017 FLAC_API FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsigned samples);
1018
1019 /* \} */
1020
1021 #ifdef __cplusplus
1022 }
1023 #endif
1024
1025 #endif