stream_encoder.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:42k
源码类别:

Windows CE

开发平台:

C/C++

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