blob: 407346fda813314d9df51a9bafa4cf398312b62f [file] [log] [blame]
Josh Coalson26560dd2001-02-08 00:38:41 +00001/* libFLAC - Free Lossless Audio Codec library
Josh Coalson0395dac2006-04-25 06:59:33 +00002 * Copyright (C) 2000,2001,2002,2003,2004,2005,2006 Josh Coalson
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00003 *
Josh Coalsonafd81072003-01-31 23:34:56 +00004 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00007 *
Josh Coalsonafd81072003-01-31 23:34:56 +00008 * - Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000010 *
Josh Coalsonafd81072003-01-31 23:34:56 +000011 * - 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.
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000030 */
31
Josh Coalsonbf0f52c2006-04-25 06:38:43 +000032/*@@@@@@*/
Josh Coalson81cbb8e2006-05-01 06:17:24 +000033#undef WINDOW_DEBUG_OUTPUT
Josh Coalsonbf0f52c2006-04-25 06:38:43 +000034
Josh Coalsonb1ec7962006-05-24 04:41:36 +000035#if HAVE_CONFIG_H
36# include <config.h>
37#endif
38
Josh Coalson6b21f662006-09-13 01:42:27 +000039#if defined _MSC_VER || defined __MINGW32__
40#include <io.h> /* for _setmode() */
41#include <fcntl.h> /* for _O_BINARY */
42#endif
43#if defined __CYGWIN__ || defined __EMX__
44#include <io.h> /* for setmode(), O_BINARY */
45#include <fcntl.h> /* for _O_BINARY */
46#endif
Josh Coalsone6b3bbe2002-10-08 06:03:25 +000047#include <limits.h>
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000048#include <stdio.h>
49#include <stdlib.h> /* for malloc() */
50#include <string.h> /* for memcpy() */
Josh Coalson6b21f662006-09-13 01:42:27 +000051#include <sys/types.h> /* for off_t */
52#if defined _MSC_VER || defined __MINGW32__
53/*@@@ [2G limit] hacks for MSVC6 */
54#define fseeko fseek
55#define ftello ftell
56#endif
Josh Coalson1b689822001-05-31 20:11:02 +000057#include "FLAC/assert.h"
Josh Coalsond86e03b2002-08-03 21:56:15 +000058#include "FLAC/stream_decoder.h"
Josh Coalson0a15c142001-06-13 17:59:57 +000059#include "protected/stream_encoder.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000060#include "private/bitbuffer.h"
Josh Coalsoneef56702001-03-30 00:45:22 +000061#include "private/bitmath.h"
Josh Coalson215af572001-03-27 01:15:58 +000062#include "private/crc.h"
Josh Coalsoncf30f502001-05-23 20:57:44 +000063#include "private/cpu.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000064#include "private/fixed.h"
Josh Coalsonb7023aa2002-08-17 15:23:43 +000065#include "private/format.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000066#include "private/lpc.h"
Josh Coalsonfa37f1c2001-01-12 23:55:11 +000067#include "private/md5.h"
Josh Coalsond98c43d2001-05-13 05:17:01 +000068#include "private/memory.h"
Josh Coalsonb7023aa2002-08-17 15:23:43 +000069#include "private/stream_encoder_framing.h"
Josh Coalsonbf0f52c2006-04-25 06:38:43 +000070#include "private/window.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000071
72#ifdef min
73#undef min
74#endif
75#define min(x,y) ((x)<(y)?(x):(y))
76
77#ifdef max
78#undef max
79#endif
80#define max(x,y) ((x)>(y)?(x):(y))
81
Josh Coalsond86e03b2002-08-03 21:56:15 +000082typedef struct {
83 FLAC__int32 *data[FLAC__MAX_CHANNELS];
84 unsigned size; /* of each data[] in samples */
85 unsigned tail;
86} verify_input_fifo;
87
88typedef struct {
89 const FLAC__byte *data;
90 unsigned capacity;
91 unsigned bytes;
92} verify_output;
93
94typedef enum {
95 ENCODER_IN_MAGIC = 0,
96 ENCODER_IN_METADATA = 1,
97 ENCODER_IN_AUDIO = 2
98} EncoderStateHint;
99
Josh Coalson0a15c142001-06-13 17:59:57 +0000100/***********************************************************************
101 *
102 * Private class method prototypes
103 *
104 ***********************************************************************/
105
Josh Coalsonf1eff452002-07-31 07:05:33 +0000106static void set_defaults_(FLAC__StreamEncoder *encoder);
107static void free_(FLAC__StreamEncoder *encoder);
108static FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size);
Josh Coalsond86e03b2002-08-03 21:56:15 +0000109static FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples);
Josh Coalson6b21f662006-09-13 01:42:27 +0000110static FLAC__StreamEncoderWriteStatus write_frame_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples);
111static void update_metadata_(const FLAC__StreamEncoder *encoder);
Josh Coalsonf1eff452002-07-31 07:05:33 +0000112static FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame);
113static FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame);
Josh Coalson6fe72f72002-08-20 04:01:59 +0000114
115static FLAC__bool process_subframe_(
116 FLAC__StreamEncoder *encoder,
117 unsigned min_partition_order,
118 unsigned max_partition_order,
119 FLAC__bool precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +0000120 const FLAC__FrameHeader *frame_header,
121 unsigned subframe_bps,
122 const FLAC__int32 integer_signal[],
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000123#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson6fe72f72002-08-20 04:01:59 +0000124 const FLAC__real real_signal[],
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000125#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +0000126 FLAC__Subframe *subframe[2],
127 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents[2],
128 FLAC__int32 *residual[2],
129 unsigned *best_subframe,
130 unsigned *best_bits
Josh Coalsonbf0f52c2006-04-25 06:38:43 +0000131#ifdef WINDOW_DEBUG_OUTPUT
132 ,unsigned subframe_number
133#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +0000134);
135
136static FLAC__bool add_subframe_(
137 FLAC__StreamEncoder *encoder,
138 const FLAC__FrameHeader *frame_header,
139 unsigned subframe_bps,
140 const FLAC__Subframe *subframe,
141 FLAC__BitBuffer *frame
Josh Coalsonbf0f52c2006-04-25 06:38:43 +0000142#ifdef WINDOW_DEBUG_OUTPUT
143,unsigned subframe_bits
144#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +0000145);
146
147static unsigned evaluate_constant_subframe_(
148 const FLAC__int32 signal,
149 unsigned subframe_bps,
150 FLAC__Subframe *subframe
151);
152
153static unsigned evaluate_fixed_subframe_(
154 FLAC__StreamEncoder *encoder,
155 const FLAC__int32 signal[],
156 FLAC__int32 residual[],
157 FLAC__uint32 abs_residual[],
158 FLAC__uint64 abs_residual_partition_sums[],
159 unsigned raw_bits_per_partition[],
160 unsigned blocksize,
161 unsigned subframe_bps,
162 unsigned order,
163 unsigned rice_parameter,
164 unsigned min_partition_order,
165 unsigned max_partition_order,
166 FLAC__bool precompute_partition_sums,
167 FLAC__bool do_escape_coding,
168 unsigned rice_parameter_search_dist,
169 FLAC__Subframe *subframe,
170 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
171);
172
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000173#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson6fe72f72002-08-20 04:01:59 +0000174static unsigned evaluate_lpc_subframe_(
175 FLAC__StreamEncoder *encoder,
176 const FLAC__int32 signal[],
177 FLAC__int32 residual[],
178 FLAC__uint32 abs_residual[],
179 FLAC__uint64 abs_residual_partition_sums[],
180 unsigned raw_bits_per_partition[],
181 const FLAC__real lp_coeff[],
182 unsigned blocksize,
183 unsigned subframe_bps,
184 unsigned order,
185 unsigned qlp_coeff_precision,
186 unsigned rice_parameter,
187 unsigned min_partition_order,
188 unsigned max_partition_order,
189 FLAC__bool precompute_partition_sums,
190 FLAC__bool do_escape_coding,
191 unsigned rice_parameter_search_dist,
192 FLAC__Subframe *subframe,
193 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
Josh Coalsonbf0f52c2006-04-25 06:38:43 +0000194#ifdef WINDOW_DEBUG_OUTPUT
195 ,unsigned frame_number
196 ,unsigned subframe_number
197 ,FLAC__ApodizationSpecification aspec
198#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +0000199);
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000200#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +0000201
202static unsigned evaluate_verbatim_subframe_(
203 const FLAC__int32 signal[],
204 unsigned blocksize,
205 unsigned subframe_bps,
206 FLAC__Subframe *subframe
207);
208
209static unsigned find_best_partition_order_(
210 struct FLAC__StreamEncoderPrivate *private_,
211 const FLAC__int32 residual[],
212 FLAC__uint32 abs_residual[],
213 FLAC__uint64 abs_residual_partition_sums[],
214 unsigned raw_bits_per_partition[],
215 unsigned residual_samples,
216 unsigned predictor_order,
217 unsigned rice_parameter,
218 unsigned min_partition_order,
219 unsigned max_partition_order,
220 FLAC__bool precompute_partition_sums,
221 FLAC__bool do_escape_coding,
222 unsigned rice_parameter_search_dist,
223 FLAC__EntropyCodingMethod_PartitionedRice *best_partitioned_rice
224);
225
226static void precompute_partition_info_sums_(
227 const FLAC__uint32 abs_residual[],
228 FLAC__uint64 abs_residual_partition_sums[],
229 unsigned residual_samples,
230 unsigned predictor_order,
231 unsigned min_partition_order,
232 unsigned max_partition_order
233);
234
235static void precompute_partition_info_escapes_(
236 const FLAC__int32 residual[],
237 unsigned raw_bits_per_partition[],
238 unsigned residual_samples,
239 unsigned predictor_order,
240 unsigned min_partition_order,
241 unsigned max_partition_order
242);
243
Josh Coalson8395d022001-07-12 21:25:22 +0000244#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +0000245static FLAC__bool set_partitioned_rice_(
246 const FLAC__uint32 abs_residual[],
247 const FLAC__int32 residual[],
248 const unsigned residual_samples,
249 const unsigned predictor_order,
250 const unsigned suggested_rice_parameter,
251 const unsigned rice_parameter_search_dist,
252 const unsigned partition_order,
253 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
254 unsigned *bits
255);
256
257static FLAC__bool set_partitioned_rice_with_precompute_(
258 const FLAC__int32 residual[],
259 const FLAC__uint64 abs_residual_partition_sums[],
260 const unsigned raw_bits_per_partition[],
261 const unsigned residual_samples,
262 const unsigned predictor_order,
263 const unsigned suggested_rice_parameter,
264 const unsigned rice_parameter_search_dist,
265 const unsigned partition_order,
266 const FLAC__bool search_for_escapes,
267 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
268 unsigned *bits
269);
Josh Coalson8395d022001-07-12 21:25:22 +0000270#else
Josh Coalson6fe72f72002-08-20 04:01:59 +0000271static FLAC__bool set_partitioned_rice_(
272 const FLAC__uint32 abs_residual[],
273 const unsigned residual_samples,
274 const unsigned predictor_order,
275 const unsigned suggested_rice_parameter,
276 const unsigned rice_parameter_search_dist,
277 const unsigned partition_order,
278 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
279 unsigned *bits
280);
281
282static FLAC__bool set_partitioned_rice_with_precompute_(
283 const FLAC__uint32 abs_residual[],
284 const FLAC__uint64 abs_residual_partition_sums[],
285 const unsigned raw_bits_per_partition[],
286 const unsigned residual_samples,
287 const unsigned predictor_order,
288 const unsigned suggested_rice_parameter,
289 const unsigned rice_parameter_search_dist,
290 const unsigned partition_order,
291 const FLAC__bool search_for_escapes,
292 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
293 unsigned *bits
294);
Josh Coalson0a15c142001-06-13 17:59:57 +0000295#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +0000296
Josh Coalsonf1eff452002-07-31 07:05:33 +0000297static unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples);
Josh Coalson6fe72f72002-08-20 04:01:59 +0000298
Josh Coalsond86e03b2002-08-03 21:56:15 +0000299/* verify-related routines: */
Josh Coalson6fe72f72002-08-20 04:01:59 +0000300static void append_to_verify_fifo_(
301 verify_input_fifo *fifo,
302 const FLAC__int32 * const input[],
303 unsigned input_offset,
304 unsigned channels,
305 unsigned wide_samples
306);
307
308static void append_to_verify_fifo_interleaved_(
309 verify_input_fifo *fifo,
310 const FLAC__int32 input[],
311 unsigned input_offset,
312 unsigned channels,
313 unsigned wide_samples
314);
315
Josh Coalson6b21f662006-09-13 01:42:27 +0000316static FLAC__StreamDecoderReadStatus verify_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data);
317static FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
318static void verify_metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
319static void verify_error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
Josh Coalson6fe72f72002-08-20 04:01:59 +0000320
Josh Coalson6b21f662006-09-13 01:42:27 +0000321static FLAC__StreamEncoderSeekStatus file_seek_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data);
322static FLAC__StreamEncoderTellStatus file_tell_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data);
323static FLAC__StreamEncoderWriteStatus file_write_callback_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data);
324static FILE *get_binary_stdout_();
Josh Coalson6fe72f72002-08-20 04:01:59 +0000325
Josh Coalsonbf0f52c2006-04-25 06:38:43 +0000326#ifdef WINDOW_DEBUG_OUTPUT
327static const char * const winstr[] = {
328 "bartlett",
329 "bartlett_hann",
330 "blackman",
331 "blackman_harris_4term_92db_sidelobe",
332 "connes",
333 "flattop",
334 "gauss",
335 "hamming",
336 "hann",
337 "kaiser_bessel",
338 "nuttall",
339 "rectangular",
340 "triangle",
341 "tukey",
342 "welch"
343};
344#endif
Josh Coalson0a15c142001-06-13 17:59:57 +0000345
346/***********************************************************************
347 *
348 * Private class data
349 *
350 ***********************************************************************/
351
352typedef struct FLAC__StreamEncoderPrivate {
Josh Coalson8395d022001-07-12 21:25:22 +0000353 unsigned input_capacity; /* current size (in samples) of the signal and residual buffers */
Josh Coalson77e3f312001-06-23 03:03:24 +0000354 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
355 FLAC__int32 *integer_signal_mid_side[2]; /* the integer version of the mid-side input signal (stereo only) */
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000356#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson77e3f312001-06-23 03:03:24 +0000357 FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* the floating-point version of the input signal */
358 FLAC__real *real_signal_mid_side[2]; /* the floating-point version of the mid-side input signal (stereo only) */
Josh Coalsonbf0f52c2006-04-25 06:38:43 +0000359 FLAC__real *window[FLAC__MAX_APODIZATION_FUNCTIONS]; /* the pre-computed floating-point window for each apodization function */
360 FLAC__real *windowed_signal; /* the real_signal[] * current window[] */
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000361#endif
Josh Coalson8395d022001-07-12 21:25:22 +0000362 unsigned subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input signal (stream bps - wasted bits) */
363 unsigned subframe_bps_mid_side[2]; /* the effective bits per sample of the mid-side input signal (stream bps - wasted bits + 0/1) */
Josh Coalson77e3f312001-06-23 03:03:24 +0000364 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
365 FLAC__int32 *residual_workspace_mid_side[2][2];
Josh Coalson94e02cd2001-01-25 10:41:06 +0000366 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
367 FLAC__Subframe subframe_workspace_mid_side[2][2];
368 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
369 FLAC__Subframe *subframe_workspace_ptr_mid_side[2][2];
Josh Coalsona37ba462002-08-19 21:36:39 +0000370 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[FLAC__MAX_CHANNELS][2];
371 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[FLAC__MAX_CHANNELS][2];
372 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[FLAC__MAX_CHANNELS][2];
373 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr_mid_side[FLAC__MAX_CHANNELS][2];
Josh Coalson8395d022001-07-12 21:25:22 +0000374 unsigned best_subframe[FLAC__MAX_CHANNELS]; /* index into the above workspaces */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000375 unsigned best_subframe_mid_side[2];
Josh Coalson8395d022001-07-12 21:25:22 +0000376 unsigned best_subframe_bits[FLAC__MAX_CHANNELS]; /* size in bits of the best subframe for each channel */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000377 unsigned best_subframe_bits_mid_side[2];
Josh Coalson77e3f312001-06-23 03:03:24 +0000378 FLAC__uint32 *abs_residual; /* workspace where abs(candidate residual) is stored */
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000379 FLAC__uint64 *abs_residual_partition_sums; /* workspace where the sum of abs(candidate residual) for each partition is stored */
Josh Coalson8395d022001-07-12 21:25:22 +0000380 unsigned *raw_bits_per_partition; /* workspace where the sum of silog2(candidate residual) for each partition is stored */
Josh Coalsonaec256b2002-03-12 16:19:54 +0000381 FLAC__BitBuffer *frame; /* the current frame being worked on */
Josh Coalson8395d022001-07-12 21:25:22 +0000382 unsigned loose_mid_side_stereo_frames; /* rounded number of frames the encoder will use before trying both independent and mid/side frames again */
383 unsigned loose_mid_side_stereo_frame_count; /* number of frames using the current channel assignment */
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000384 FLAC__ChannelAssignment last_channel_assignment;
Josh Coalson6b21f662006-09-13 01:42:27 +0000385 FLAC__StreamMetadata streaminfo; /* scratchpad for STREAMINFO as it is built */
386 FLAC__StreamMetadata_SeekTable *seek_table; /* pointer into encoder->protected_->metadata_ where the seek table is */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000387 unsigned current_sample_number;
388 unsigned current_frame_number;
Josh Coalson3e7a96e2004-07-23 05:18:22 +0000389 struct FLAC__MD5Context md5context;
Josh Coalsoncf30f502001-05-23 20:57:44 +0000390 FLAC__CPUInfo cpuinfo;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000391#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson09758432004-10-20 00:21:50 +0000392 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__float residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000393#else
394 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__fixedpoint residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
395#endif
396#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson77e3f312001-06-23 03:03:24 +0000397 void (*local_lpc_compute_autocorrelation)(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
Josh Coalson7446e182005-01-26 04:04:38 +0000398 void (*local_lpc_compute_residual_from_qlp_coefficients)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
399 void (*local_lpc_compute_residual_from_qlp_coefficients_64bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
400 void (*local_lpc_compute_residual_from_qlp_coefficients_16bit)(const FLAC__int32 *data, unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]);
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000401#endif
Josh Coalson3262b0d2002-08-14 20:58:42 +0000402 FLAC__bool use_wide_by_block; /* use slow 64-bit versions of some functions because of the block size */
403 FLAC__bool use_wide_by_partition; /* use slow 64-bit versions of some functions because of the min partition order and blocksize */
404 FLAC__bool use_wide_by_order; /* use slow 64-bit versions of some functions because of the lpc order */
405 FLAC__bool precompute_partition_sums; /* our initial guess as to whether precomputing the partitions sums will be a speed improvement */
Josh Coalsone6b3bbe2002-10-08 06:03:25 +0000406 FLAC__bool disable_constant_subframes;
407 FLAC__bool disable_fixed_subframes;
408 FLAC__bool disable_verbatim_subframes;
Josh Coalson6b21f662006-09-13 01:42:27 +0000409 FLAC__StreamEncoderSeekCallback seek_callback;
410 FLAC__StreamEncoderTellCallback tell_callback;
Josh Coalson681c2932002-08-01 08:19:37 +0000411 FLAC__StreamEncoderWriteCallback write_callback;
412 FLAC__StreamEncoderMetadataCallback metadata_callback;
Josh Coalson6b21f662006-09-13 01:42:27 +0000413 FLAC__StreamEncoderProgressCallback progress_callback;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000414 void *client_data;
Josh Coalson6b21f662006-09-13 01:42:27 +0000415 unsigned first_seekpoint_to_check;
416 FILE *file; /* only used when encoding to a file */
417 FLAC__uint64 bytes_written;
418 FLAC__uint64 samples_written;
419 unsigned frames_written;
420 unsigned total_frames_estimate;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000421 /* unaligned (original) pointers to allocated data */
Josh Coalson77e3f312001-06-23 03:03:24 +0000422 FLAC__int32 *integer_signal_unaligned[FLAC__MAX_CHANNELS];
423 FLAC__int32 *integer_signal_mid_side_unaligned[2];
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000424#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson77e3f312001-06-23 03:03:24 +0000425 FLAC__real *real_signal_unaligned[FLAC__MAX_CHANNELS];
426 FLAC__real *real_signal_mid_side_unaligned[2];
Josh Coalsonbf0f52c2006-04-25 06:38:43 +0000427 FLAC__real *window_unaligned[FLAC__MAX_APODIZATION_FUNCTIONS];
428 FLAC__real *windowed_signal_unaligned;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000429#endif
Josh Coalson77e3f312001-06-23 03:03:24 +0000430 FLAC__int32 *residual_workspace_unaligned[FLAC__MAX_CHANNELS][2];
431 FLAC__int32 *residual_workspace_mid_side_unaligned[2][2];
432 FLAC__uint32 *abs_residual_unaligned;
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000433 FLAC__uint64 *abs_residual_partition_sums_unaligned;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000434 unsigned *raw_bits_per_partition_unaligned;
Josh Coalson8084b052001-11-01 00:27:29 +0000435 /*
436 * These fields have been moved here from private function local
437 * declarations merely to save stack space during encoding.
438 */
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000439#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonf1eff452002-07-31 07:05:33 +0000440 FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000441#endif
Josh Coalsona37ba462002-08-19 21:36:39 +0000442 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_extra[2]; /* from find_best_partition_order_() */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000443 /*
444 * The data for the verify section
445 */
446 struct {
447 FLAC__StreamDecoder *decoder;
448 EncoderStateHint state_hint;
449 FLAC__bool needs_magic_hack;
450 verify_input_fifo input_fifo;
451 verify_output output;
452 struct {
453 FLAC__uint64 absolute_sample;
454 unsigned frame_number;
455 unsigned channel;
456 unsigned sample;
457 FLAC__int32 expected;
458 FLAC__int32 got;
459 } error_stats;
460 } verify;
Josh Coalson3262b0d2002-08-14 20:58:42 +0000461 FLAC__bool is_being_deleted; /* if true, call to ..._finish() from ..._delete() will not call the callbacks */
Josh Coalson0a15c142001-06-13 17:59:57 +0000462} FLAC__StreamEncoderPrivate;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000463
Josh Coalson0a15c142001-06-13 17:59:57 +0000464/***********************************************************************
465 *
466 * Public static class data
467 *
468 ***********************************************************************/
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000469
Josh Coalson6afed9f2002-10-16 22:29:47 +0000470FLAC_API const char * const FLAC__StreamEncoderStateString[] = {
Josh Coalson0a15c142001-06-13 17:59:57 +0000471 "FLAC__STREAM_ENCODER_OK",
Josh Coalson6b21f662006-09-13 01:42:27 +0000472 "FLAC__STREAM_ENCODER_UNINITIALIZED",
Josh Coalsond86e03b2002-08-03 21:56:15 +0000473 "FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR",
474 "FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA",
Josh Coalson6b21f662006-09-13 01:42:27 +0000475 "FLAC__STREAM_ENCODER_CLIENT_ERROR",
476 "FLAC__STREAM_ENCODER_IO_ERROR",
Josh Coalson0a15c142001-06-13 17:59:57 +0000477 "FLAC__STREAM_ENCODER_FRAMING_ERROR",
Josh Coalson6b21f662006-09-13 01:42:27 +0000478 "FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR"
479};
480
481FLAC_API const char * const FLAC__StreamEncoderInitStatusString[] = {
482 "FLAC__STREAM_ENCODER_INIT_STATUS_OK",
483 "FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR",
484 "FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_CALLBACKS",
485 "FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_NUMBER_OF_CHANNELS",
486 "FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BITS_PER_SAMPLE",
487 "FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_SAMPLE_RATE",
488 "FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BLOCK_SIZE",
489 "FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_MAX_LPC_ORDER",
490 "FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_QLP_COEFF_PRECISION",
491 "FLAC__STREAM_ENCODER_INIT_STATUS_MID_SIDE_CHANNELS_MISMATCH",
492 "FLAC__STREAM_ENCODER_INIT_STATUS_MID_SIDE_SAMPLE_SIZE_MISMATCH",
493 "FLAC__STREAM_ENCODER_INIT_STATUS_ILLEGAL_MID_SIDE_FORCE",
494 "FLAC__STREAM_ENCODER_INIT_STATUS_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER",
495 "FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE",
496 "FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA",
497 "FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED"
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000498};
499
Josh Coalson6afed9f2002-10-16 22:29:47 +0000500FLAC_API const char * const FLAC__StreamEncoderWriteStatusString[] = {
Josh Coalson5c491a12002-08-01 06:39:40 +0000501 "FLAC__STREAM_ENCODER_WRITE_STATUS_OK",
502 "FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR"
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000503};
504
Josh Coalson6b21f662006-09-13 01:42:27 +0000505FLAC_API const char * const FLAC__StreamEncoderSeekStatusString[] = {
506 "FLAC__STREAM_ENCODER_SEEK_STATUS_OK",
507 "FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR",
508 "FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED"
509};
510
511FLAC_API const char * const FLAC__StreamEncoderTellStatusString[] = {
512 "FLAC__STREAM_ENCODER_TELL_STATUS_OK",
513 "FLAC__STREAM_ENCODER_TELL_STATUS_ERROR",
514 "FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED"
515};
516
Josh Coalson0a15c142001-06-13 17:59:57 +0000517/***********************************************************************
518 *
519 * Class constructor/destructor
520 *
Josh Coalsond86e03b2002-08-03 21:56:15 +0000521 */
Josh Coalson6afed9f2002-10-16 22:29:47 +0000522FLAC_API FLAC__StreamEncoder *FLAC__stream_encoder_new()
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000523{
Josh Coalson0a15c142001-06-13 17:59:57 +0000524 FLAC__StreamEncoder *encoder;
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000525 unsigned i;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000526
Josh Coalson0a15c142001-06-13 17:59:57 +0000527 FLAC__ASSERT(sizeof(int) >= 4); /* we want to die right away if this is not true */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000528
Josh Coalsonea7155f2002-10-18 05:49:19 +0000529 encoder = (FLAC__StreamEncoder*)calloc(1, sizeof(FLAC__StreamEncoder));
Josh Coalson0a15c142001-06-13 17:59:57 +0000530 if(encoder == 0) {
531 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000532 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000533
Josh Coalsonea7155f2002-10-18 05:49:19 +0000534 encoder->protected_ = (FLAC__StreamEncoderProtected*)calloc(1, sizeof(FLAC__StreamEncoderProtected));
Josh Coalsonfa697a92001-08-16 20:07:29 +0000535 if(encoder->protected_ == 0) {
Josh Coalson0a15c142001-06-13 17:59:57 +0000536 free(encoder);
537 return 0;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000538 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000539
Josh Coalsonea7155f2002-10-18 05:49:19 +0000540 encoder->private_ = (FLAC__StreamEncoderPrivate*)calloc(1, sizeof(FLAC__StreamEncoderPrivate));
Josh Coalsonfa697a92001-08-16 20:07:29 +0000541 if(encoder->private_ == 0) {
542 free(encoder->protected_);
Josh Coalson0a15c142001-06-13 17:59:57 +0000543 free(encoder);
544 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000545 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000546
Josh Coalsonaec256b2002-03-12 16:19:54 +0000547 encoder->private_->frame = FLAC__bitbuffer_new();
548 if(encoder->private_->frame == 0) {
549 free(encoder->private_);
550 free(encoder->protected_);
551 free(encoder);
552 return 0;
553 }
Josh Coalsond98c43d2001-05-13 05:17:01 +0000554
Josh Coalson6b21f662006-09-13 01:42:27 +0000555 encoder->private_->file = 0;
556
Josh Coalsonf1eff452002-07-31 07:05:33 +0000557 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000558
Josh Coalson3262b0d2002-08-14 20:58:42 +0000559 encoder->private_->is_being_deleted = false;
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000560
561 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
562 encoder->private_->subframe_workspace_ptr[i][0] = &encoder->private_->subframe_workspace[i][0];
563 encoder->private_->subframe_workspace_ptr[i][1] = &encoder->private_->subframe_workspace[i][1];
564 }
565 for(i = 0; i < 2; i++) {
566 encoder->private_->subframe_workspace_ptr_mid_side[i][0] = &encoder->private_->subframe_workspace_mid_side[i][0];
567 encoder->private_->subframe_workspace_ptr_mid_side[i][1] = &encoder->private_->subframe_workspace_mid_side[i][1];
568 }
569 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000570 encoder->private_->partitioned_rice_contents_workspace_ptr[i][0] = &encoder->private_->partitioned_rice_contents_workspace[i][0];
571 encoder->private_->partitioned_rice_contents_workspace_ptr[i][1] = &encoder->private_->partitioned_rice_contents_workspace[i][1];
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000572 }
573 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000574 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[i][0] = &encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0];
575 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[i][1] = &encoder->private_->partitioned_rice_contents_workspace_mid_side[i][1];
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000576 }
577
578 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000579 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace[i][0]);
580 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000581 }
582 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000583 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0]);
584 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000585 }
586 for(i = 0; i < 2; i++)
Josh Coalsona37ba462002-08-19 21:36:39 +0000587 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_extra[i]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000588
Josh Coalsonfa697a92001-08-16 20:07:29 +0000589 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000590
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000591 return encoder;
592}
593
Josh Coalson6afed9f2002-10-16 22:29:47 +0000594FLAC_API void FLAC__stream_encoder_delete(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000595{
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000596 unsigned i;
597
Josh Coalsonf1eff452002-07-31 07:05:33 +0000598 FLAC__ASSERT(0 != encoder);
599 FLAC__ASSERT(0 != encoder->protected_);
600 FLAC__ASSERT(0 != encoder->private_);
601 FLAC__ASSERT(0 != encoder->private_->frame);
Josh Coalson0a15c142001-06-13 17:59:57 +0000602
Josh Coalson3262b0d2002-08-14 20:58:42 +0000603 encoder->private_->is_being_deleted = true;
604
605 FLAC__stream_encoder_finish(encoder);
606
Josh Coalson4fa90592002-12-04 07:01:37 +0000607 if(0 != encoder->private_->verify.decoder)
Josh Coalsond86e03b2002-08-03 21:56:15 +0000608 FLAC__stream_decoder_delete(encoder->private_->verify.decoder);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000609
610 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000611 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace[i][0]);
612 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000613 }
614 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000615 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0]);
616 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000617 }
618 for(i = 0; i < 2; i++)
Josh Coalsona37ba462002-08-19 21:36:39 +0000619 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_extra[i]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000620
Josh Coalsonaec256b2002-03-12 16:19:54 +0000621 FLAC__bitbuffer_delete(encoder->private_->frame);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000622 free(encoder->private_);
623 free(encoder->protected_);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000624 free(encoder);
625}
626
Josh Coalson0a15c142001-06-13 17:59:57 +0000627/***********************************************************************
628 *
629 * Public class methods
630 *
631 ***********************************************************************/
632
Josh Coalson6b21f662006-09-13 01:42:27 +0000633FLAC_API FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_stream(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback write_callback, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderTellCallback tell_callback, FLAC__StreamEncoderMetadataCallback metadata_callback, void *client_data)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000634{
635 unsigned i;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000636 FLAC__bool metadata_has_seektable, metadata_has_vorbis_comment;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000637
Josh Coalsonf1eff452002-07-31 07:05:33 +0000638 FLAC__ASSERT(0 != encoder);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000639
Josh Coalsonfa697a92001-08-16 20:07:29 +0000640 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson6b21f662006-09-13 01:42:27 +0000641 return FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000642
Josh Coalson6b21f662006-09-13 01:42:27 +0000643 if(0 == write_callback || (seek_callback && 0 == tell_callback))
644 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_CALLBACKS;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000645
Josh Coalsonfa697a92001-08-16 20:07:29 +0000646 if(encoder->protected_->channels == 0 || encoder->protected_->channels > FLAC__MAX_CHANNELS)
Josh Coalson6b21f662006-09-13 01:42:27 +0000647 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_NUMBER_OF_CHANNELS;
Josh Coalson69f1ee02001-01-24 00:54:43 +0000648
Josh Coalsonfa697a92001-08-16 20:07:29 +0000649 if(encoder->protected_->do_mid_side_stereo && encoder->protected_->channels != 2)
Josh Coalson6b21f662006-09-13 01:42:27 +0000650 return FLAC__STREAM_ENCODER_INIT_STATUS_MID_SIDE_CHANNELS_MISMATCH;
Josh Coalsond37d1352001-05-30 23:09:31 +0000651
Josh Coalsonfa697a92001-08-16 20:07:29 +0000652 if(encoder->protected_->loose_mid_side_stereo && !encoder->protected_->do_mid_side_stereo)
Josh Coalson6b21f662006-09-13 01:42:27 +0000653 return FLAC__STREAM_ENCODER_INIT_STATUS_ILLEGAL_MID_SIDE_FORCE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000654
Josh Coalsonfa697a92001-08-16 20:07:29 +0000655 if(encoder->protected_->bits_per_sample >= 32)
Josh Coalson6b21f662006-09-13 01:42:27 +0000656 encoder->protected_->do_mid_side_stereo = false; /* since we currenty do 32-bit math, the side channel would have 33 bps and overflow */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000657
Josh Coalson76c68bc2002-05-17 06:22:02 +0000658 if(encoder->protected_->bits_per_sample < FLAC__MIN_BITS_PER_SAMPLE || encoder->protected_->bits_per_sample > FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE)
Josh Coalson6b21f662006-09-13 01:42:27 +0000659 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BITS_PER_SAMPLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000660
Josh Coalson0833f342002-07-15 05:31:55 +0000661 if(!FLAC__format_sample_rate_is_valid(encoder->protected_->sample_rate))
Josh Coalson6b21f662006-09-13 01:42:27 +0000662 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_SAMPLE_RATE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000663
Josh Coalsonfa697a92001-08-16 20:07:29 +0000664 if(encoder->protected_->blocksize < FLAC__MIN_BLOCK_SIZE || encoder->protected_->blocksize > FLAC__MAX_BLOCK_SIZE)
Josh Coalson6b21f662006-09-13 01:42:27 +0000665 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BLOCK_SIZE;
Josh Coalson0a15c142001-06-13 17:59:57 +0000666
Josh Coalson20ac2c12002-08-30 05:47:14 +0000667 if(encoder->protected_->max_lpc_order > FLAC__MAX_LPC_ORDER)
Josh Coalson6b21f662006-09-13 01:42:27 +0000668 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_MAX_LPC_ORDER;
Josh Coalson20ac2c12002-08-30 05:47:14 +0000669
Josh Coalsonfa697a92001-08-16 20:07:29 +0000670 if(encoder->protected_->blocksize < encoder->protected_->max_lpc_order)
Josh Coalson6b21f662006-09-13 01:42:27 +0000671 return FLAC__STREAM_ENCODER_INIT_STATUS_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER;
Josh Coalson0a15c142001-06-13 17:59:57 +0000672
Josh Coalsonfa697a92001-08-16 20:07:29 +0000673 if(encoder->protected_->qlp_coeff_precision == 0) {
674 if(encoder->protected_->bits_per_sample < 16) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000675 /* @@@ need some data about how to set this here w.r.t. blocksize and sample rate */
676 /* @@@ until then we'll make a guess */
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000677 encoder->protected_->qlp_coeff_precision = max(FLAC__MIN_QLP_COEFF_PRECISION, 2 + encoder->protected_->bits_per_sample / 2);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000678 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000679 else if(encoder->protected_->bits_per_sample == 16) {
680 if(encoder->protected_->blocksize <= 192)
681 encoder->protected_->qlp_coeff_precision = 7;
682 else if(encoder->protected_->blocksize <= 384)
683 encoder->protected_->qlp_coeff_precision = 8;
684 else if(encoder->protected_->blocksize <= 576)
685 encoder->protected_->qlp_coeff_precision = 9;
686 else if(encoder->protected_->blocksize <= 1152)
687 encoder->protected_->qlp_coeff_precision = 10;
688 else if(encoder->protected_->blocksize <= 2304)
689 encoder->protected_->qlp_coeff_precision = 11;
690 else if(encoder->protected_->blocksize <= 4608)
691 encoder->protected_->qlp_coeff_precision = 12;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000692 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000693 encoder->protected_->qlp_coeff_precision = 13;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000694 }
695 else {
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000696 if(encoder->protected_->blocksize <= 384)
697 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION-2;
698 else if(encoder->protected_->blocksize <= 1152)
699 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION-1;
700 else
701 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000702 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000703 FLAC__ASSERT(encoder->protected_->qlp_coeff_precision <= FLAC__MAX_QLP_COEFF_PRECISION);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000704 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000705 else if(encoder->protected_->qlp_coeff_precision < FLAC__MIN_QLP_COEFF_PRECISION || encoder->protected_->qlp_coeff_precision > FLAC__MAX_QLP_COEFF_PRECISION)
Josh Coalson6b21f662006-09-13 01:42:27 +0000706 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000707
Josh Coalsonfa697a92001-08-16 20:07:29 +0000708 if(encoder->protected_->streamable_subset) {
Josh Coalson20ac2c12002-08-30 05:47:14 +0000709 if(
710 encoder->protected_->blocksize != 192 &&
711 encoder->protected_->blocksize != 576 &&
712 encoder->protected_->blocksize != 1152 &&
713 encoder->protected_->blocksize != 2304 &&
714 encoder->protected_->blocksize != 4608 &&
715 encoder->protected_->blocksize != 256 &&
716 encoder->protected_->blocksize != 512 &&
717 encoder->protected_->blocksize != 1024 &&
718 encoder->protected_->blocksize != 2048 &&
719 encoder->protected_->blocksize != 4096 &&
720 encoder->protected_->blocksize != 8192 &&
721 encoder->protected_->blocksize != 16384
722 )
Josh Coalson6b21f662006-09-13 01:42:27 +0000723 return FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE;
Josh Coalson20ac2c12002-08-30 05:47:14 +0000724 if(
725 encoder->protected_->sample_rate != 8000 &&
726 encoder->protected_->sample_rate != 16000 &&
727 encoder->protected_->sample_rate != 22050 &&
728 encoder->protected_->sample_rate != 24000 &&
729 encoder->protected_->sample_rate != 32000 &&
730 encoder->protected_->sample_rate != 44100 &&
731 encoder->protected_->sample_rate != 48000 &&
732 encoder->protected_->sample_rate != 96000
733 )
Josh Coalson6b21f662006-09-13 01:42:27 +0000734 return FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE;
Josh Coalson20ac2c12002-08-30 05:47:14 +0000735 if(
736 encoder->protected_->bits_per_sample != 8 &&
737 encoder->protected_->bits_per_sample != 12 &&
738 encoder->protected_->bits_per_sample != 16 &&
739 encoder->protected_->bits_per_sample != 20 &&
740 encoder->protected_->bits_per_sample != 24
741 )
Josh Coalson6b21f662006-09-13 01:42:27 +0000742 return FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE;
Josh Coalsonc1c8d492002-09-26 04:42:10 +0000743 if(encoder->protected_->max_residual_partition_order > FLAC__SUBSET_MAX_RICE_PARTITION_ORDER)
Josh Coalson6b21f662006-09-13 01:42:27 +0000744 return FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000745 }
746
Josh Coalsonfa697a92001-08-16 20:07:29 +0000747 if(encoder->protected_->max_residual_partition_order >= (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN))
748 encoder->protected_->max_residual_partition_order = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN) - 1;
749 if(encoder->protected_->min_residual_partition_order >= encoder->protected_->max_residual_partition_order)
750 encoder->protected_->min_residual_partition_order = encoder->protected_->max_residual_partition_order;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000751
Josh Coalson66075c12002-06-01 05:39:38 +0000752 /* validate metadata */
753 if(0 == encoder->protected_->metadata && encoder->protected_->num_metadata_blocks > 0)
Josh Coalson6b21f662006-09-13 01:42:27 +0000754 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000755 metadata_has_seektable = false;
756 metadata_has_vorbis_comment = false;
Josh Coalson66075c12002-06-01 05:39:38 +0000757 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
Josh Coalsond0609472003-01-10 05:37:13 +0000758 if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_STREAMINFO)
Josh Coalson6b21f662006-09-13 01:42:27 +0000759 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA;
Josh Coalson66075c12002-06-01 05:39:38 +0000760 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_SEEKTABLE) {
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000761 if(metadata_has_seektable) /* only one is allowed */
Josh Coalson6b21f662006-09-13 01:42:27 +0000762 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000763 metadata_has_seektable = true;
Josh Coalson0833f342002-07-15 05:31:55 +0000764 if(!FLAC__format_seektable_is_legal(&encoder->protected_->metadata[i]->data.seek_table))
Josh Coalson6b21f662006-09-13 01:42:27 +0000765 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA;
Josh Coalson66075c12002-06-01 05:39:38 +0000766 }
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000767 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_VORBIS_COMMENT) {
768 if(metadata_has_vorbis_comment) /* only one is allowed */
Josh Coalson6b21f662006-09-13 01:42:27 +0000769 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000770 metadata_has_vorbis_comment = true;
771 }
Josh Coalsone4869382002-11-15 05:41:48 +0000772 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_CUESHEET) {
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000773 if(!FLAC__format_cuesheet_is_legal(&encoder->protected_->metadata[i]->data.cue_sheet, encoder->protected_->metadata[i]->data.cue_sheet.is_cd, /*violation=*/0))
Josh Coalson6b21f662006-09-13 01:42:27 +0000774 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA;
Josh Coalsone4869382002-11-15 05:41:48 +0000775 }
Josh Coalsone343ab22006-09-23 19:21:19 +0000776 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_PICTURE) {
777 if(!FLAC__format_picture_is_legal(&encoder->protected_->metadata[i]->data.picture, /*violation=*/0))
778 return FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA;
779 }
Josh Coalson66075c12002-06-01 05:39:38 +0000780 }
781
Josh Coalsonfa697a92001-08-16 20:07:29 +0000782 encoder->private_->input_capacity = 0;
783 for(i = 0; i < encoder->protected_->channels; i++) {
784 encoder->private_->integer_signal_unaligned[i] = encoder->private_->integer_signal[i] = 0;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000785#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonfa697a92001-08-16 20:07:29 +0000786 encoder->private_->real_signal_unaligned[i] = encoder->private_->real_signal[i] = 0;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000787#endif
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000788 }
789 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000790 encoder->private_->integer_signal_mid_side_unaligned[i] = encoder->private_->integer_signal_mid_side[i] = 0;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000791#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonfa697a92001-08-16 20:07:29 +0000792 encoder->private_->real_signal_mid_side_unaligned[i] = encoder->private_->real_signal_mid_side[i] = 0;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000793#endif
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000794 }
Josh Coalsonbf0f52c2006-04-25 06:38:43 +0000795#ifndef FLAC__INTEGER_ONLY_LIBRARY
796 for(i = 0; i < encoder->protected_->num_apodizations; i++)
797 encoder->private_->window_unaligned[i] = encoder->private_->window[i] = 0;
798 encoder->private_->windowed_signal_unaligned = encoder->private_->windowed_signal = 0;
799#endif
Josh Coalsonfa697a92001-08-16 20:07:29 +0000800 for(i = 0; i < encoder->protected_->channels; i++) {
801 encoder->private_->residual_workspace_unaligned[i][0] = encoder->private_->residual_workspace[i][0] = 0;
802 encoder->private_->residual_workspace_unaligned[i][1] = encoder->private_->residual_workspace[i][1] = 0;
803 encoder->private_->best_subframe[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000804 }
805 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000806 encoder->private_->residual_workspace_mid_side_unaligned[i][0] = encoder->private_->residual_workspace_mid_side[i][0] = 0;
807 encoder->private_->residual_workspace_mid_side_unaligned[i][1] = encoder->private_->residual_workspace_mid_side[i][1] = 0;
808 encoder->private_->best_subframe_mid_side[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000809 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000810 encoder->private_->abs_residual_unaligned = encoder->private_->abs_residual = 0;
811 encoder->private_->abs_residual_partition_sums_unaligned = encoder->private_->abs_residual_partition_sums = 0;
812 encoder->private_->raw_bits_per_partition_unaligned = encoder->private_->raw_bits_per_partition = 0;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000813#ifndef FLAC__INTEGER_ONLY_LIBRARY
814 encoder->private_->loose_mid_side_stereo_frames = (unsigned)((FLAC__double)encoder->protected_->sample_rate * 0.4 / (FLAC__double)encoder->protected_->blocksize + 0.5);
815#else
816 /* 26214 is the approximate fixed-point equivalent to 0.4 (0.4 * 2^16) */
817 /* sample rate can be up to 655350 Hz, and thus use 20 bits, so we do the multiply&divide by hand */
818 FLAC__ASSERT(FLAC__MAX_SAMPLE_RATE <= 655350);
819 FLAC__ASSERT(FLAC__MAX_BLOCK_SIZE <= 65535);
820 FLAC__ASSERT(encoder->protected_->sample_rate <= 655350);
821 FLAC__ASSERT(encoder->protected_->blocksize <= 65535);
822 encoder->private_->loose_mid_side_stereo_frames = (unsigned)FLAC__fixedpoint_trunc((((FLAC__uint64)(encoder->protected_->sample_rate) * (FLAC__uint64)(26214)) << 16) / (encoder->protected_->blocksize<<16) + FLAC__FP_ONE_HALF);
823#endif
Josh Coalsonfa697a92001-08-16 20:07:29 +0000824 if(encoder->private_->loose_mid_side_stereo_frames == 0)
825 encoder->private_->loose_mid_side_stereo_frames = 1;
826 encoder->private_->loose_mid_side_stereo_frame_count = 0;
827 encoder->private_->current_sample_number = 0;
828 encoder->private_->current_frame_number = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000829
Josh Coalsonfa697a92001-08-16 20:07:29 +0000830 encoder->private_->use_wide_by_block = (encoder->protected_->bits_per_sample + FLAC__bitmath_ilog2(encoder->protected_->blocksize)+1 > 30);
831 encoder->private_->use_wide_by_order = (encoder->protected_->bits_per_sample + FLAC__bitmath_ilog2(max(encoder->protected_->max_lpc_order, FLAC__MAX_FIXED_ORDER))+1 > 30); /*@@@ need to use this? */
832 encoder->private_->use_wide_by_partition = (false); /*@@@ need to set this */
Josh Coalson8395d022001-07-12 21:25:22 +0000833
Josh Coalsoncf30f502001-05-23 20:57:44 +0000834 /*
835 * get the CPU info and set the function pointers
836 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000837 FLAC__cpu_info(&encoder->private_->cpuinfo);
Josh Coalsoncf30f502001-05-23 20:57:44 +0000838 /* first default to the non-asm routines */
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000839#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonfa697a92001-08-16 20:07:29 +0000840 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000841#endif
Josh Coalsonfa697a92001-08-16 20:07:29 +0000842 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000843#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonfa697a92001-08-16 20:07:29 +0000844 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000845 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_64bit = FLAC__lpc_compute_residual_from_qlp_coefficients_wide;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000846 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000847#endif
Josh Coalsoncf30f502001-05-23 20:57:44 +0000848 /* now override with asm where appropriate */
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000849#ifndef FLAC__INTEGER_ONLY_LIBRARY
850# ifndef FLAC__NO_ASM
Josh Coalsonfa697a92001-08-16 20:07:29 +0000851 if(encoder->private_->cpuinfo.use_asm) {
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000852# ifdef FLAC__CPU_IA32
Josh Coalsonfa697a92001-08-16 20:07:29 +0000853 FLAC__ASSERT(encoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000854# ifdef FLAC__HAS_NASM
855# ifdef FLAC__SSE_OS
Josh Coalson48cbe662002-12-30 23:38:14 +0000856 if(encoder->private_->cpuinfo.data.ia32.sse) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000857 if(encoder->protected_->max_lpc_order < 4)
858 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_4;
859 else if(encoder->protected_->max_lpc_order < 8)
860 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_8;
861 else if(encoder->protected_->max_lpc_order < 12)
862 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_12;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000863 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000864 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000865 }
Josh Coalson48cbe662002-12-30 23:38:14 +0000866 else
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000867# endif /* FLAC__SSE_OS */
Josh Coalson48cbe662002-12-30 23:38:14 +0000868 if(encoder->private_->cpuinfo.data.ia32._3dnow)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000869 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_3dnow;
Josh Coalsonaa255362001-05-31 06:17:41 +0000870 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000871 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000872 if(encoder->private_->cpuinfo.data.ia32.mmx) {
873 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
874 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000875 }
876 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000877 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
878 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000879 }
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000880 if(encoder->private_->cpuinfo.data.ia32.mmx && encoder->private_->cpuinfo.data.ia32.cmov)
881 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov;
882# endif /* FLAC__HAS_NASM */
883# endif /* FLAC__CPU_IA32 */
Josh Coalson021ad3b2001-07-18 00:25:52 +0000884 }
Josh Coalson5f2b46d2004-11-09 01:34:01 +0000885# endif /* !FLAC__NO_ASM */
886#endif /* !FLAC__INTEGER_ONLY_LIBRARY */
Josh Coalson8395d022001-07-12 21:25:22 +0000887 /* finally override based on wide-ness if necessary */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000888 if(encoder->private_->use_wide_by_block) {
889 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_wide;
Josh Coalson8395d022001-07-12 21:25:22 +0000890 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000891
Josh Coalson8395d022001-07-12 21:25:22 +0000892 /* we require precompute_partition_sums if do_escape_coding because of their intertwined nature */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000893 encoder->private_->precompute_partition_sums = (encoder->protected_->max_residual_partition_order > encoder->protected_->min_residual_partition_order) || encoder->protected_->do_escape_coding;
Josh Coalsoneef56702001-03-30 00:45:22 +0000894
Josh Coalson6b21f662006-09-13 01:42:27 +0000895 /* set state to OK; from here on, errors are fatal and we'll override the state then */
896 encoder->protected_->state = FLAC__STREAM_ENCODER_OK;
897
898 encoder->private_->write_callback = write_callback;
899 encoder->private_->seek_callback = seek_callback;
900 encoder->private_->tell_callback = tell_callback;
901 encoder->private_->metadata_callback = metadata_callback;
902 encoder->private_->client_data = client_data;
903
Josh Coalsonf1eff452002-07-31 07:05:33 +0000904 if(!resize_buffers_(encoder, encoder->protected_->blocksize)) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000905 /* the above function sets the state for us in case of an error */
Josh Coalson6b21f662006-09-13 01:42:27 +0000906 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000907 }
Josh Coalsonaec256b2002-03-12 16:19:54 +0000908
Josh Coalson6b21f662006-09-13 01:42:27 +0000909 if(!FLAC__bitbuffer_init(encoder->private_->frame)) {
910 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
911 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
912 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000913
914 /*
Josh Coalsond86e03b2002-08-03 21:56:15 +0000915 * Set up the verify stuff if necessary
916 */
917 if(encoder->protected_->verify) {
918 /*
919 * First, set up the fifo which will hold the
920 * original signal to compare against
921 */
922 encoder->private_->verify.input_fifo.size = encoder->protected_->blocksize;
923 for(i = 0; i < encoder->protected_->channels; i++) {
Josh Coalson6b21f662006-09-13 01:42:27 +0000924 if(0 == (encoder->private_->verify.input_fifo.data[i] = (FLAC__int32*)malloc(sizeof(FLAC__int32) * encoder->private_->verify.input_fifo.size))) {
925 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
926 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
927 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000928 }
929 encoder->private_->verify.input_fifo.tail = 0;
930
931 /*
932 * Now set up a stream decoder for verification
933 */
934 encoder->private_->verify.decoder = FLAC__stream_decoder_new();
Josh Coalson6b21f662006-09-13 01:42:27 +0000935 if(0 == encoder->private_->verify.decoder) {
936 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
937 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
938 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000939
Josh Coalson6b21f662006-09-13 01:42:27 +0000940 if(FLAC__stream_decoder_init_stream(encoder->private_->verify.decoder, verify_read_callback_, /*seek_callback=*/0, /*tell_callback=*/0, /*length_callback=*/0, /*eof_callback=*/0, verify_write_callback_, verify_metadata_callback_, verify_error_callback_, /*client_data=*/encoder) != FLAC__STREAM_DECODER_INIT_STATUS_OK) {
941 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
942 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
943 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000944 }
Josh Coalson589f8c72002-08-07 23:54:55 +0000945 encoder->private_->verify.error_stats.absolute_sample = 0;
946 encoder->private_->verify.error_stats.frame_number = 0;
947 encoder->private_->verify.error_stats.channel = 0;
948 encoder->private_->verify.error_stats.sample = 0;
949 encoder->private_->verify.error_stats.expected = 0;
950 encoder->private_->verify.error_stats.got = 0;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000951
952 /*
Josh Coalson6b21f662006-09-13 01:42:27 +0000953 * These must be done before we write any metadata, because that
954 * calls the write_callback, which uses these values.
955 */
956 encoder->private_->first_seekpoint_to_check = 0;
957 encoder->private_->samples_written = 0;
958 encoder->protected_->streaminfo_offset = 0;
959 encoder->protected_->seektable_offset = 0;
960 encoder->protected_->audio_offset = 0;
961
962 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000963 * write the stream header
964 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000965 if(encoder->protected_->verify)
966 encoder->private_->verify.state_hint = ENCODER_IN_MAGIC;
Josh Coalson6b21f662006-09-13 01:42:27 +0000967 if(!FLAC__bitbuffer_write_raw_uint32(encoder->private_->frame, FLAC__STREAM_SYNC, FLAC__STREAM_SYNC_LEN)) {
968 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
969 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
970 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000971 if(!write_bitbuffer_(encoder, 0)) {
972 /* the above function sets the state for us in case of an error */
Josh Coalson6b21f662006-09-13 01:42:27 +0000973 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000974 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000975
Josh Coalson5c491a12002-08-01 06:39:40 +0000976 /*
977 * write the STREAMINFO metadata block
978 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000979 if(encoder->protected_->verify)
980 encoder->private_->verify.state_hint = ENCODER_IN_METADATA;
Josh Coalson6b21f662006-09-13 01:42:27 +0000981 encoder->private_->streaminfo.type = FLAC__METADATA_TYPE_STREAMINFO;
982 encoder->private_->streaminfo.is_last = false; /* we will have at a minimum a VORBIS_COMMENT afterwards */
983 encoder->private_->streaminfo.length = FLAC__STREAM_METADATA_STREAMINFO_LENGTH;
984 encoder->private_->streaminfo.data.stream_info.min_blocksize = encoder->protected_->blocksize; /* this encoder uses the same blocksize for the whole stream */
985 encoder->private_->streaminfo.data.stream_info.max_blocksize = encoder->protected_->blocksize;
986 encoder->private_->streaminfo.data.stream_info.min_framesize = 0; /* we don't know this yet; have to fill it in later */
987 encoder->private_->streaminfo.data.stream_info.max_framesize = 0; /* we don't know this yet; have to fill it in later */
988 encoder->private_->streaminfo.data.stream_info.sample_rate = encoder->protected_->sample_rate;
989 encoder->private_->streaminfo.data.stream_info.channels = encoder->protected_->channels;
990 encoder->private_->streaminfo.data.stream_info.bits_per_sample = encoder->protected_->bits_per_sample;
991 encoder->private_->streaminfo.data.stream_info.total_samples = encoder->protected_->total_samples_estimate; /* we will replace this later with the real total */
992 memset(encoder->private_->streaminfo.data.stream_info.md5sum, 0, 16); /* we don't know this yet; have to fill it in later */
Josh Coalson3e7a96e2004-07-23 05:18:22 +0000993 FLAC__MD5Init(&encoder->private_->md5context);
Josh Coalson6b21f662006-09-13 01:42:27 +0000994 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
995 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
996 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
997 }
998 if(!FLAC__add_metadata_block(&encoder->private_->streaminfo, encoder->private_->frame)) {
999 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
1000 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
1001 }
Josh Coalsond86e03b2002-08-03 21:56:15 +00001002 if(!write_bitbuffer_(encoder, 0)) {
1003 /* the above function sets the state for us in case of an error */
Josh Coalson6b21f662006-09-13 01:42:27 +00001004 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +00001005 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001006
Josh Coalson5c491a12002-08-01 06:39:40 +00001007 /*
1008 * Now that the STREAMINFO block is written, we can init this to an
1009 * absurdly-high value...
1010 */
Josh Coalson6b21f662006-09-13 01:42:27 +00001011 encoder->private_->streaminfo.data.stream_info.min_framesize = (1u << FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN) - 1;
Josh Coalsoncbbbb5f2001-01-23 00:41:48 +00001012 /* ... and clear this to 0 */
Josh Coalson6b21f662006-09-13 01:42:27 +00001013 encoder->private_->streaminfo.data.stream_info.total_samples = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001014
Josh Coalson5c491a12002-08-01 06:39:40 +00001015 /*
Josh Coalsoncb9d93a2002-08-25 05:27:15 +00001016 * Check to see if the supplied metadata contains a VORBIS_COMMENT;
1017 * if not, we will write an empty one (FLAC__add_metadata_block()
1018 * automatically supplies the vendor string).
Josh Coalson69cfda72004-09-10 00:38:21 +00001019 *
1020 * WATCHOUT: libOggFLAC depends on us to write this block after the
1021 * STREAMINFO since that's what the mapping requires. (In the case
Josh Coalson8ddf7fb2004-12-30 00:58:50 +00001022 * that metadata_has_vorbis_comment is true it will have already
Josh Coalson69cfda72004-09-10 00:38:21 +00001023 * insured that the metadata list is properly ordered.)
Josh Coalsoncb9d93a2002-08-25 05:27:15 +00001024 */
1025 if(!metadata_has_vorbis_comment) {
1026 FLAC__StreamMetadata vorbis_comment;
1027 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT;
1028 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0);
1029 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */
1030 vorbis_comment.data.vorbis_comment.vendor_string.length = 0;
1031 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0;
1032 vorbis_comment.data.vorbis_comment.num_comments = 0;
1033 vorbis_comment.data.vorbis_comment.comments = 0;
Josh Coalson6b21f662006-09-13 01:42:27 +00001034 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
1035 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
1036 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
1037 }
1038 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame)) {
1039 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
1040 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
1041 }
Josh Coalsoncb9d93a2002-08-25 05:27:15 +00001042 if(!write_bitbuffer_(encoder, 0)) {
1043 /* the above function sets the state for us in case of an error */
Josh Coalson6b21f662006-09-13 01:42:27 +00001044 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +00001045 }
1046 }
1047
1048 /*
Josh Coalson5c491a12002-08-01 06:39:40 +00001049 * write the user's metadata blocks
1050 */
1051 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
1052 encoder->protected_->metadata[i]->is_last = (i == encoder->protected_->num_metadata_blocks - 1);
Josh Coalson6b21f662006-09-13 01:42:27 +00001053 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
1054 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
1055 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
1056 }
1057 if(!FLAC__add_metadata_block(encoder->protected_->metadata[i], encoder->private_->frame)) {
1058 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
1059 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
1060 }
Josh Coalsond86e03b2002-08-03 21:56:15 +00001061 if(!write_bitbuffer_(encoder, 0)) {
1062 /* the above function sets the state for us in case of an error */
Josh Coalson6b21f662006-09-13 01:42:27 +00001063 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +00001064 }
Josh Coalson5c491a12002-08-01 06:39:40 +00001065 }
1066
Josh Coalson6b21f662006-09-13 01:42:27 +00001067 /* now that all the metadata is written, we save the stream offset */
1068 if(encoder->private_->tell_callback && encoder->private_->tell_callback(encoder, &encoder->protected_->audio_offset, encoder->private_->client_data) == FLAC__STREAM_ENCODER_TELL_STATUS_ERROR) { /* FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED just means we didn't get the offset; no error */
1069 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
1070 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
1071 }
1072
Josh Coalsond86e03b2002-08-03 21:56:15 +00001073 if(encoder->protected_->verify)
1074 encoder->private_->verify.state_hint = ENCODER_IN_AUDIO;
1075
Josh Coalson6b21f662006-09-13 01:42:27 +00001076 return FLAC__STREAM_ENCODER_INIT_STATUS_OK;
1077}
1078
1079FLAC_API FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_FILE(FLAC__StreamEncoder *encoder, FILE *file, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data)
1080{
1081 FLAC__StreamEncoderInitStatus init_status;
1082
1083 FLAC__ASSERT(0 != encoder);
1084 FLAC__ASSERT(0 != file);
1085
1086 /*
1087 * To make sure that our file does not go unclosed after an error, we
1088 * must assign the FILE pointer before any further error can occur in
1089 * this routine.
1090 */
1091 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1092 return FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED;
1093
1094 /* double protection */
1095 if(file == 0) {
1096 encoder->protected_->state = FLAC__STREAM_ENCODER_IO_ERROR;
1097 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
1098 }
1099
1100 if(file == stdout)
1101 file = get_binary_stdout_(); /* just to be safe */
1102
1103 encoder->private_->file = file;
1104
1105 encoder->private_->progress_callback = progress_callback;
1106 encoder->private_->bytes_written = 0;
1107 encoder->private_->samples_written = 0;
1108 encoder->private_->frames_written = 0;
1109
1110 init_status = FLAC__stream_encoder_init_stream(encoder, file_write_callback_, file_seek_callback_, file_tell_callback_, /*metadata_callback=*/0, client_data);
1111 if(init_status != FLAC__STREAM_ENCODER_INIT_STATUS_OK) {
1112 /* the above function sets the state for us in case of an error */
1113 return init_status;
1114 }
1115
1116 {
1117 unsigned blocksize = FLAC__stream_encoder_get_blocksize(encoder);
1118
1119 FLAC__ASSERT(blocksize != 0);
1120 encoder->private_->total_frames_estimate = (unsigned)((FLAC__stream_encoder_get_total_samples_estimate(encoder) + blocksize - 1) / blocksize);
1121 }
1122
1123 return init_status;
1124}
1125
1126FLAC_API FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_file(FLAC__StreamEncoder *encoder, const char *filename, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data)
1127{
1128 FILE *file;
1129
1130 FLAC__ASSERT(0 != encoder);
1131
1132 /*
1133 * To make sure that our file does not go unclosed after an error, we
1134 * have to do the same entrance checks here that are later performed
1135 * in FLAC__stream_encoder_init_FILE() before the FILE* is assigned.
1136 */
1137 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1138 return FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED;
1139
1140 file = filename? fopen(filename, "w+b") : stdout;
1141
1142 if(file == 0) {
1143 encoder->protected_->state = FLAC__STREAM_ENCODER_IO_ERROR;
1144 return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
1145 }
1146
1147 return FLAC__stream_encoder_init_FILE(encoder, file, progress_callback, client_data);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001148}
1149
Josh Coalson6afed9f2002-10-16 22:29:47 +00001150FLAC_API void FLAC__stream_encoder_finish(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001151{
Josh Coalsonf1eff452002-07-31 07:05:33 +00001152 FLAC__ASSERT(0 != encoder);
Josh Coalson6b21f662006-09-13 01:42:27 +00001153 FLAC__ASSERT(0 != encoder->private_);
1154 FLAC__ASSERT(0 != encoder->protected_);
Josh Coalson2b245f22002-08-07 17:10:50 +00001155
Josh Coalsonfa697a92001-08-16 20:07:29 +00001156 if(encoder->protected_->state == FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001157 return;
Josh Coalson2b245f22002-08-07 17:10:50 +00001158
Josh Coalson3262b0d2002-08-14 20:58:42 +00001159 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +00001160 if(encoder->private_->current_sample_number != 0) {
1161 encoder->protected_->blocksize = encoder->private_->current_sample_number;
1162 process_frame_(encoder, true); /* true => is last frame */
1163 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001164 }
Josh Coalson2b245f22002-08-07 17:10:50 +00001165
Josh Coalson6b21f662006-09-13 01:42:27 +00001166 FLAC__MD5Final(encoder->private_->streaminfo.data.stream_info.md5sum, &encoder->private_->md5context);
Josh Coalson2b245f22002-08-07 17:10:50 +00001167
Josh Coalson3262b0d2002-08-14 20:58:42 +00001168 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson6b21f662006-09-13 01:42:27 +00001169 if(encoder->private_->seek_callback)
1170 update_metadata_(encoder);
1171 if(encoder->private_->metadata_callback)
1172 encoder->private_->metadata_callback(encoder, &encoder->private_->streaminfo, encoder->private_->client_data);
Josh Coalson2b245f22002-08-07 17:10:50 +00001173 }
Josh Coalson0a15c142001-06-13 17:59:57 +00001174
Josh Coalsond86e03b2002-08-03 21:56:15 +00001175 if(encoder->protected_->verify && 0 != encoder->private_->verify.decoder)
1176 FLAC__stream_decoder_finish(encoder->private_->verify.decoder);
1177
Josh Coalson6b21f662006-09-13 01:42:27 +00001178 if(0 != encoder->private_->file) {
1179 if(encoder->private_->file != stdout)
1180 fclose(encoder->private_->file);
1181 encoder->private_->file = 0;
1182 }
1183
Josh Coalsonf1eff452002-07-31 07:05:33 +00001184 free_(encoder);
1185 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +00001186
Josh Coalsonfa697a92001-08-16 20:07:29 +00001187 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001188}
1189
Josh Coalson6afed9f2002-10-16 22:29:47 +00001190FLAC_API FLAC__bool FLAC__stream_encoder_set_verify(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsond86e03b2002-08-03 21:56:15 +00001191{
1192 FLAC__ASSERT(0 != encoder);
1193 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1194 return false;
Josh Coalson47c7b142005-01-29 06:08:58 +00001195#ifndef FLAC__MANDATORY_VERIFY_WHILE_ENCODING
Josh Coalsond86e03b2002-08-03 21:56:15 +00001196 encoder->protected_->verify = value;
Josh Coalson47c7b142005-01-29 06:08:58 +00001197#endif
Josh Coalsond86e03b2002-08-03 21:56:15 +00001198 return true;
1199}
1200
Josh Coalson6afed9f2002-10-16 22:29:47 +00001201FLAC_API FLAC__bool FLAC__stream_encoder_set_streamable_subset(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001202{
Josh Coalson92031602002-07-24 06:02:11 +00001203 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001204 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001205 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001206 encoder->protected_->streamable_subset = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001207 return true;
1208}
1209
Josh Coalson6afed9f2002-10-16 22:29:47 +00001210FLAC_API FLAC__bool FLAC__stream_encoder_set_do_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001211{
Josh Coalson92031602002-07-24 06:02:11 +00001212 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001213 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001214 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001215 encoder->protected_->do_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001216 return true;
1217}
1218
Josh Coalson6afed9f2002-10-16 22:29:47 +00001219FLAC_API FLAC__bool FLAC__stream_encoder_set_loose_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001220{
Josh Coalson92031602002-07-24 06:02:11 +00001221 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001222 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001223 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001224 encoder->protected_->loose_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001225 return true;
1226}
1227
Josh Coalson6afed9f2002-10-16 22:29:47 +00001228FLAC_API FLAC__bool FLAC__stream_encoder_set_channels(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001229{
Josh Coalson92031602002-07-24 06:02:11 +00001230 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001231 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001232 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001233 encoder->protected_->channels = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001234 return true;
1235}
1236
Josh Coalson6afed9f2002-10-16 22:29:47 +00001237FLAC_API FLAC__bool FLAC__stream_encoder_set_bits_per_sample(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001238{
Josh Coalson92031602002-07-24 06:02:11 +00001239 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001240 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001241 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001242 encoder->protected_->bits_per_sample = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001243 return true;
1244}
1245
Josh Coalson6afed9f2002-10-16 22:29:47 +00001246FLAC_API FLAC__bool FLAC__stream_encoder_set_sample_rate(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001247{
Josh Coalson92031602002-07-24 06:02:11 +00001248 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001249 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001250 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001251 encoder->protected_->sample_rate = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001252 return true;
1253}
1254
Josh Coalson6afed9f2002-10-16 22:29:47 +00001255FLAC_API FLAC__bool FLAC__stream_encoder_set_blocksize(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001256{
Josh Coalson92031602002-07-24 06:02:11 +00001257 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001258 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001259 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001260 encoder->protected_->blocksize = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001261 return true;
1262}
1263
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00001264FLAC_API FLAC__bool FLAC__stream_encoder_set_apodization(FLAC__StreamEncoder *encoder, const char *specification)
1265{
1266 FLAC__ASSERT(0 != encoder);
1267 FLAC__ASSERT(0 != specification);
1268 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1269 return false;
1270#ifdef FLAC__INTEGER_ONLY_LIBRARY
1271 (void)specification; /* silently ignore since we haven't integerized; will always use a rectangular window */
1272#else
1273 encoder->protected_->num_apodizations = 0;
1274 while(1) {
1275 const char *s = strchr(specification, ';');
1276 const size_t n = s? (size_t)(s - specification) : strlen(specification);
1277 if (n==8 && 0 == strncmp("bartlett" , specification, n))
1278 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_BARTLETT;
1279 else if(n==13 && 0 == strncmp("bartlett_hann", specification, n))
1280 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_BARTLETT_HANN;
1281 else if(n==8 && 0 == strncmp("blackman" , specification, n))
1282 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_BLACKMAN;
1283 else if(n==26 && 0 == strncmp("blackman_harris_4term_92db", specification, n))
1284 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_BLACKMAN_HARRIS_4TERM_92DB_SIDELOBE;
1285 else if(n==6 && 0 == strncmp("connes" , specification, n))
1286 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_CONNES;
1287 else if(n==7 && 0 == strncmp("flattop" , specification, n))
1288 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_FLATTOP;
1289 else if(n>7 && 0 == strncmp("gauss(" , specification, 6)) {
1290 FLAC__real stddev = (FLAC__real)strtod(specification+6, 0);
1291 if (stddev > 0.0 && stddev <= 0.5) {
1292 encoder->protected_->apodizations[encoder->protected_->num_apodizations].parameters.gauss.stddev = stddev;
1293 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_GAUSS;
1294 }
1295 }
1296 else if(n==7 && 0 == strncmp("hamming" , specification, n))
1297 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_HAMMING;
1298 else if(n==4 && 0 == strncmp("hann" , specification, n))
1299 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_HANN;
1300 else if(n==13 && 0 == strncmp("kaiser_bessel", specification, n))
1301 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_KAISER_BESSEL;
1302 else if(n==7 && 0 == strncmp("nuttall" , specification, n))
1303 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_NUTTALL;
1304 else if(n==9 && 0 == strncmp("rectangle" , specification, n))
1305 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_RECTANGLE;
1306 else if(n==8 && 0 == strncmp("triangle" , specification, n))
1307 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_TRIANGLE;
1308 else if(n>7 && 0 == strncmp("tukey(" , specification, 6)) {
1309 FLAC__real p = (FLAC__real)strtod(specification+6, 0);
1310 if (p >= 0.0 && p <= 1.0) {
1311 encoder->protected_->apodizations[encoder->protected_->num_apodizations].parameters.tukey.p = p;
1312 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_TUKEY;
1313 }
1314 }
1315 else if(n==5 && 0 == strncmp("welch" , specification, n))
1316 encoder->protected_->apodizations[encoder->protected_->num_apodizations++].type = FLAC__APODIZATION_WELCH;
1317 if (encoder->protected_->num_apodizations == 32)
1318 break;
1319 if (s)
1320 specification = s+1;
1321 else
1322 break;
1323 }
1324 if(encoder->protected_->num_apodizations == 0) {
1325 encoder->protected_->num_apodizations = 1;
Josh Coalson82389362006-05-01 05:58:35 +00001326 encoder->protected_->apodizations[0].type = FLAC__APODIZATION_TUKEY;
1327 encoder->protected_->apodizations[0].parameters.tukey.p = 0.5;
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00001328 }
1329#ifdef WINDOW_DEBUG_OUTPUT
1330{unsigned n;for(n=0;n<encoder->protected_->num_apodizations;n++)fprintf(stderr,"@@@@@@ parsed apodization[%zu]: %s\n",n,winstr[encoder->protected_->apodizations[n].type]);}
1331#endif
1332#endif
1333 return true;
1334}
1335
Josh Coalson6afed9f2002-10-16 22:29:47 +00001336FLAC_API FLAC__bool FLAC__stream_encoder_set_max_lpc_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001337{
Josh Coalson92031602002-07-24 06:02:11 +00001338 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001339 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001340 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001341 encoder->protected_->max_lpc_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001342 return true;
1343}
1344
Josh Coalson6afed9f2002-10-16 22:29:47 +00001345FLAC_API FLAC__bool FLAC__stream_encoder_set_qlp_coeff_precision(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001346{
Josh Coalson92031602002-07-24 06:02:11 +00001347 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001348 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001349 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001350 encoder->protected_->qlp_coeff_precision = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001351 return true;
1352}
1353
Josh Coalson6afed9f2002-10-16 22:29:47 +00001354FLAC_API FLAC__bool FLAC__stream_encoder_set_do_qlp_coeff_prec_search(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001355{
Josh Coalson92031602002-07-24 06:02:11 +00001356 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001357 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001358 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001359 encoder->protected_->do_qlp_coeff_prec_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001360 return true;
1361}
1362
Josh Coalson6afed9f2002-10-16 22:29:47 +00001363FLAC_API FLAC__bool FLAC__stream_encoder_set_do_escape_coding(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson8395d022001-07-12 21:25:22 +00001364{
Josh Coalson92031602002-07-24 06:02:11 +00001365 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001366 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson8395d022001-07-12 21:25:22 +00001367 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001368#if 0
1369 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001370 encoder->protected_->do_escape_coding = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001371#else
1372 (void)value;
1373#endif
Josh Coalson8395d022001-07-12 21:25:22 +00001374 return true;
1375}
1376
Josh Coalson6afed9f2002-10-16 22:29:47 +00001377FLAC_API FLAC__bool FLAC__stream_encoder_set_do_exhaustive_model_search(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001378{
Josh Coalson92031602002-07-24 06:02:11 +00001379 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001380 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001381 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001382 encoder->protected_->do_exhaustive_model_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001383 return true;
1384}
1385
Josh Coalson6afed9f2002-10-16 22:29:47 +00001386FLAC_API FLAC__bool FLAC__stream_encoder_set_min_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001387{
Josh Coalson92031602002-07-24 06:02:11 +00001388 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001389 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001390 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001391 encoder->protected_->min_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001392 return true;
1393}
1394
Josh Coalson6afed9f2002-10-16 22:29:47 +00001395FLAC_API FLAC__bool FLAC__stream_encoder_set_max_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001396{
Josh Coalson92031602002-07-24 06:02:11 +00001397 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001398 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001399 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001400 encoder->protected_->max_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001401 return true;
1402}
1403
Josh Coalson6afed9f2002-10-16 22:29:47 +00001404FLAC_API FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001405{
Josh Coalson92031602002-07-24 06:02:11 +00001406 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001407 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001408 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001409#if 0
1410 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001411 encoder->protected_->rice_parameter_search_dist = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001412#else
1413 (void)value;
1414#endif
Josh Coalson00e53872001-06-16 07:32:25 +00001415 return true;
1416}
1417
Josh Coalson6afed9f2002-10-16 22:29:47 +00001418FLAC_API FLAC__bool FLAC__stream_encoder_set_total_samples_estimate(FLAC__StreamEncoder *encoder, FLAC__uint64 value)
Josh Coalson00e53872001-06-16 07:32:25 +00001419{
Josh Coalson92031602002-07-24 06:02:11 +00001420 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001421 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001422 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001423 encoder->protected_->total_samples_estimate = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001424 return true;
1425}
1426
Josh Coalson6afed9f2002-10-16 22:29:47 +00001427FLAC_API FLAC__bool FLAC__stream_encoder_set_metadata(FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, unsigned num_blocks)
Josh Coalson00e53872001-06-16 07:32:25 +00001428{
Josh Coalson92031602002-07-24 06:02:11 +00001429 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001430 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001431 return false;
Josh Coalson66075c12002-06-01 05:39:38 +00001432 encoder->protected_->metadata = metadata;
1433 encoder->protected_->num_metadata_blocks = num_blocks;
Josh Coalson6b21f662006-09-13 01:42:27 +00001434 if(0 != metadata && num_blocks > 0) {
1435 unsigned i;
1436 for(i = 0; i < num_blocks; i++) {
1437 if(0 != metadata[i] && metadata[i]->type == FLAC__METADATA_TYPE_SEEKTABLE) {
1438 encoder->private_->seek_table = &metadata[i]->data.seek_table;
1439 break; /* take only the first one */
1440 }
1441 }
1442 }
Josh Coalson00e53872001-06-16 07:32:25 +00001443 return true;
1444}
1445
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001446/*
1447 * These three functions are not static, but not publically exposed in
1448 * include/FLAC/ either. They are used by the test suite.
1449 */
Josh Coalson6afed9f2002-10-16 22:29:47 +00001450FLAC_API FLAC__bool FLAC__stream_encoder_disable_constant_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001451{
1452 FLAC__ASSERT(0 != encoder);
1453 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1454 return false;
1455 encoder->private_->disable_constant_subframes = value;
1456 return true;
1457}
1458
Josh Coalson6afed9f2002-10-16 22:29:47 +00001459FLAC_API FLAC__bool FLAC__stream_encoder_disable_fixed_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001460{
1461 FLAC__ASSERT(0 != encoder);
1462 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1463 return false;
1464 encoder->private_->disable_fixed_subframes = value;
1465 return true;
1466}
1467
Josh Coalson6afed9f2002-10-16 22:29:47 +00001468FLAC_API FLAC__bool FLAC__stream_encoder_disable_verbatim_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001469{
1470 FLAC__ASSERT(0 != encoder);
1471 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1472 return false;
1473 encoder->private_->disable_verbatim_subframes = value;
1474 return true;
1475}
1476
Josh Coalson6afed9f2002-10-16 22:29:47 +00001477FLAC_API FLAC__StreamEncoderState FLAC__stream_encoder_get_state(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001478{
Josh Coalson92031602002-07-24 06:02:11 +00001479 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001480 return encoder->protected_->state;
Josh Coalson0a15c142001-06-13 17:59:57 +00001481}
1482
Josh Coalson6afed9f2002-10-16 22:29:47 +00001483FLAC_API FLAC__StreamDecoderState FLAC__stream_encoder_get_verify_decoder_state(const FLAC__StreamEncoder *encoder)
Josh Coalsond86e03b2002-08-03 21:56:15 +00001484{
1485 FLAC__ASSERT(0 != encoder);
1486 if(encoder->protected_->verify)
1487 return FLAC__stream_decoder_get_state(encoder->private_->verify.decoder);
1488 else
1489 return FLAC__STREAM_DECODER_UNINITIALIZED;
1490}
1491
Josh Coalson02954222002-11-08 06:16:31 +00001492FLAC_API const char *FLAC__stream_encoder_get_resolved_state_string(const FLAC__StreamEncoder *encoder)
1493{
1494 if(encoder->protected_->state != FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR)
1495 return FLAC__StreamEncoderStateString[encoder->protected_->state];
1496 else
Josh Coalson807140d2003-09-24 22:10:51 +00001497 return FLAC__stream_decoder_get_resolved_state_string(encoder->private_->verify.decoder);
Josh Coalson02954222002-11-08 06:16:31 +00001498}
1499
Josh Coalson6afed9f2002-10-16 22:29:47 +00001500FLAC_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)
Josh Coalson589f8c72002-08-07 23:54:55 +00001501{
1502 FLAC__ASSERT(0 != encoder);
1503 if(0 != absolute_sample)
1504 *absolute_sample = encoder->private_->verify.error_stats.absolute_sample;
1505 if(0 != frame_number)
1506 *frame_number = encoder->private_->verify.error_stats.frame_number;
1507 if(0 != channel)
1508 *channel = encoder->private_->verify.error_stats.channel;
1509 if(0 != sample)
1510 *sample = encoder->private_->verify.error_stats.sample;
1511 if(0 != expected)
1512 *expected = encoder->private_->verify.error_stats.expected;
1513 if(0 != got)
1514 *got = encoder->private_->verify.error_stats.got;
1515}
1516
Josh Coalson6afed9f2002-10-16 22:29:47 +00001517FLAC_API FLAC__bool FLAC__stream_encoder_get_verify(const FLAC__StreamEncoder *encoder)
Josh Coalsond86e03b2002-08-03 21:56:15 +00001518{
1519 FLAC__ASSERT(0 != encoder);
1520 return encoder->protected_->verify;
1521}
1522
Josh Coalson6afed9f2002-10-16 22:29:47 +00001523FLAC_API FLAC__bool FLAC__stream_encoder_get_streamable_subset(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001524{
Josh Coalson92031602002-07-24 06:02:11 +00001525 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001526 return encoder->protected_->streamable_subset;
Josh Coalson0a15c142001-06-13 17:59:57 +00001527}
1528
Josh Coalson6afed9f2002-10-16 22:29:47 +00001529FLAC_API FLAC__bool FLAC__stream_encoder_get_do_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001530{
Josh Coalson92031602002-07-24 06:02:11 +00001531 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001532 return encoder->protected_->do_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +00001533}
1534
Josh Coalson6afed9f2002-10-16 22:29:47 +00001535FLAC_API FLAC__bool FLAC__stream_encoder_get_loose_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001536{
Josh Coalson92031602002-07-24 06:02:11 +00001537 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001538 return encoder->protected_->loose_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +00001539}
1540
Josh Coalson6afed9f2002-10-16 22:29:47 +00001541FLAC_API unsigned FLAC__stream_encoder_get_channels(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001542{
Josh Coalson92031602002-07-24 06:02:11 +00001543 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001544 return encoder->protected_->channels;
Josh Coalson0a15c142001-06-13 17:59:57 +00001545}
1546
Josh Coalson6afed9f2002-10-16 22:29:47 +00001547FLAC_API unsigned FLAC__stream_encoder_get_bits_per_sample(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001548{
Josh Coalson92031602002-07-24 06:02:11 +00001549 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001550 return encoder->protected_->bits_per_sample;
Josh Coalson0a15c142001-06-13 17:59:57 +00001551}
1552
Josh Coalson6afed9f2002-10-16 22:29:47 +00001553FLAC_API unsigned FLAC__stream_encoder_get_sample_rate(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001554{
Josh Coalson92031602002-07-24 06:02:11 +00001555 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001556 return encoder->protected_->sample_rate;
Josh Coalson0a15c142001-06-13 17:59:57 +00001557}
1558
Josh Coalson6afed9f2002-10-16 22:29:47 +00001559FLAC_API unsigned FLAC__stream_encoder_get_blocksize(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001560{
Josh Coalson92031602002-07-24 06:02:11 +00001561 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001562 return encoder->protected_->blocksize;
Josh Coalson0a15c142001-06-13 17:59:57 +00001563}
1564
Josh Coalson6afed9f2002-10-16 22:29:47 +00001565FLAC_API unsigned FLAC__stream_encoder_get_max_lpc_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001566{
Josh Coalson92031602002-07-24 06:02:11 +00001567 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001568 return encoder->protected_->max_lpc_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001569}
1570
Josh Coalson6afed9f2002-10-16 22:29:47 +00001571FLAC_API unsigned FLAC__stream_encoder_get_qlp_coeff_precision(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001572{
Josh Coalson92031602002-07-24 06:02:11 +00001573 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001574 return encoder->protected_->qlp_coeff_precision;
Josh Coalson0a15c142001-06-13 17:59:57 +00001575}
1576
Josh Coalson6afed9f2002-10-16 22:29:47 +00001577FLAC_API FLAC__bool FLAC__stream_encoder_get_do_qlp_coeff_prec_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001578{
Josh Coalson92031602002-07-24 06:02:11 +00001579 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001580 return encoder->protected_->do_qlp_coeff_prec_search;
Josh Coalson0a15c142001-06-13 17:59:57 +00001581}
1582
Josh Coalson6afed9f2002-10-16 22:29:47 +00001583FLAC_API FLAC__bool FLAC__stream_encoder_get_do_escape_coding(const FLAC__StreamEncoder *encoder)
Josh Coalson8395d022001-07-12 21:25:22 +00001584{
Josh Coalson92031602002-07-24 06:02:11 +00001585 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001586 return encoder->protected_->do_escape_coding;
Josh Coalson8395d022001-07-12 21:25:22 +00001587}
1588
Josh Coalson6afed9f2002-10-16 22:29:47 +00001589FLAC_API FLAC__bool FLAC__stream_encoder_get_do_exhaustive_model_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001590{
Josh Coalson92031602002-07-24 06:02:11 +00001591 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001592 return encoder->protected_->do_exhaustive_model_search;
Josh Coalson0a15c142001-06-13 17:59:57 +00001593}
1594
Josh Coalson6afed9f2002-10-16 22:29:47 +00001595FLAC_API unsigned FLAC__stream_encoder_get_min_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001596{
Josh Coalson92031602002-07-24 06:02:11 +00001597 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001598 return encoder->protected_->min_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001599}
1600
Josh Coalson6afed9f2002-10-16 22:29:47 +00001601FLAC_API unsigned FLAC__stream_encoder_get_max_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001602{
Josh Coalson92031602002-07-24 06:02:11 +00001603 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001604 return encoder->protected_->max_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001605}
1606
Josh Coalson6afed9f2002-10-16 22:29:47 +00001607FLAC_API unsigned FLAC__stream_encoder_get_rice_parameter_search_dist(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001608{
Josh Coalson92031602002-07-24 06:02:11 +00001609 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001610 return encoder->protected_->rice_parameter_search_dist;
Josh Coalson0a15c142001-06-13 17:59:57 +00001611}
1612
Josh Coalson6afed9f2002-10-16 22:29:47 +00001613FLAC_API FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate(const FLAC__StreamEncoder *encoder)
Josh Coalson3a7b2c92002-08-02 07:38:20 +00001614{
1615 FLAC__ASSERT(0 != encoder);
1616 return encoder->protected_->total_samples_estimate;
1617}
1618
Josh Coalson6afed9f2002-10-16 22:29:47 +00001619FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * const buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001620{
1621 unsigned i, j, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001622 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001623 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001624
Josh Coalsonf1eff452002-07-31 07:05:33 +00001625 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001626 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001627
1628 j = 0;
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001629 /*
1630 * we have several flavors of the same basic loop, optimized for
1631 * different conditions:
1632 */
1633 if(encoder->protected_->max_lpc_order > 0) {
1634 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
1635 /*
1636 * stereo coding: unroll channel loop
1637 * with LPC: calculate floating point version of signal
1638 */
1639 do {
1640 if(encoder->protected_->verify)
1641 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
Josh Coalsond86e03b2002-08-03 21:56:15 +00001642
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001643 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
1644 x = mid = side = buffer[0][j];
1645 encoder->private_->integer_signal[0][i] = x;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001646#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001647 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001648#endif
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001649 x = buffer[1][j];
1650 encoder->private_->integer_signal[1][i] = x;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001651#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001652 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001653#endif
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001654 mid += x;
1655 side -= x;
1656 mid >>= 1; /* NOTE: not the same as 'mid = (buffer[0][j] + buffer[1][j]) / 2' ! */
1657 encoder->private_->integer_signal_mid_side[1][i] = side;
1658 encoder->private_->integer_signal_mid_side[0][i] = mid;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001659#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001660 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1661 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001662#endif
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001663 encoder->private_->current_sample_number++;
1664 }
1665 if(i == blocksize) {
1666 if(!process_frame_(encoder, false)) /* false => not last frame */
1667 return false;
1668 }
1669 } while(j < samples);
1670 }
1671 else {
1672 /*
1673 * independent channel coding: buffer each channel in inner loop
1674 * with LPC: calculate floating point version of signal
1675 */
1676 do {
1677 if(encoder->protected_->verify)
1678 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1679
1680 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
1681 for(channel = 0; channel < channels; channel++) {
1682 x = buffer[channel][j];
1683 encoder->private_->integer_signal[channel][i] = x;
1684#ifndef FLAC__INTEGER_ONLY_LIBRARY
1685 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
1686#endif
1687 }
1688 encoder->private_->current_sample_number++;
1689 }
1690 if(i == blocksize) {
1691 if(!process_frame_(encoder, false)) /* false => not last frame */
1692 return false;
1693 }
1694 } while(j < samples);
1695 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001696 }
1697 else {
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001698 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
1699 /*
1700 * stereo coding: unroll channel loop
1701 * without LPC: no need to calculate floating point version of signal
1702 */
1703 do {
1704 if(encoder->protected_->verify)
1705 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
Josh Coalsond86e03b2002-08-03 21:56:15 +00001706
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001707 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
1708 encoder->private_->integer_signal[0][i] = mid = side = buffer[0][j];
1709 x = buffer[1][j];
1710 encoder->private_->integer_signal[1][i] = x;
1711 mid += x;
1712 side -= x;
1713 mid >>= 1; /* NOTE: not the same as 'mid = (buffer[0][j] + buffer[1][j]) / 2' ! */
1714 encoder->private_->integer_signal_mid_side[1][i] = side;
1715 encoder->private_->integer_signal_mid_side[0][i] = mid;
1716 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001717 }
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001718 if(i == blocksize) {
1719 if(!process_frame_(encoder, false)) /* false => not last frame */
1720 return false;
1721 }
1722 } while(j < samples);
1723 }
1724 else {
1725 /*
1726 * independent channel coding: buffer each channel in inner loop
1727 * without LPC: no need to calculate floating point version of signal
1728 */
1729 do {
1730 if(encoder->protected_->verify)
1731 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1732
1733 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
1734 for(channel = 0; channel < channels; channel++)
1735 encoder->private_->integer_signal[channel][i] = buffer[channel][j];
1736 encoder->private_->current_sample_number++;
1737 }
1738 if(i == blocksize) {
1739 if(!process_frame_(encoder, false)) /* false => not last frame */
1740 return false;
1741 }
1742 } while(j < samples);
1743 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001744 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001745
1746 return true;
1747}
1748
Josh Coalson6afed9f2002-10-16 22:29:47 +00001749FLAC_API FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001750{
1751 unsigned i, j, k, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001752 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001753 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001754
Josh Coalsonf1eff452002-07-31 07:05:33 +00001755 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001756 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001757
1758 j = k = 0;
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001759 /*
1760 * we have several flavors of the same basic loop, optimized for
1761 * different conditions:
1762 */
1763 if(encoder->protected_->max_lpc_order > 0) {
1764 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
1765 /*
1766 * stereo coding: unroll channel loop
1767 * with LPC: calculate floating point version of signal
1768 */
1769 do {
1770 if(encoder->protected_->verify)
1771 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
Josh Coalsond86e03b2002-08-03 21:56:15 +00001772
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001773 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
1774 x = mid = side = buffer[k++];
1775 encoder->private_->integer_signal[0][i] = x;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001776#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001777 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001778#endif
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001779 x = buffer[k++];
1780 encoder->private_->integer_signal[1][i] = x;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001781#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001782 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001783#endif
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001784 mid += x;
1785 side -= x;
1786 mid >>= 1; /* NOTE: not the same as 'mid = (left + right) / 2' ! */
1787 encoder->private_->integer_signal_mid_side[1][i] = side;
1788 encoder->private_->integer_signal_mid_side[0][i] = mid;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001789#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001790 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1791 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001792#endif
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001793 encoder->private_->current_sample_number++;
1794 }
1795 if(i == blocksize) {
1796 if(!process_frame_(encoder, false)) /* false => not last frame */
1797 return false;
1798 }
1799 } while(j < samples);
1800 }
1801 else {
1802 /*
1803 * independent channel coding: buffer each channel in inner loop
1804 * with LPC: calculate floating point version of signal
1805 */
1806 do {
1807 if(encoder->protected_->verify)
1808 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1809
1810 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
1811 for(channel = 0; channel < channels; channel++) {
1812 x = buffer[k++];
1813 encoder->private_->integer_signal[channel][i] = x;
1814#ifndef FLAC__INTEGER_ONLY_LIBRARY
1815 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
1816#endif
1817 }
1818 encoder->private_->current_sample_number++;
1819 }
1820 if(i == blocksize) {
1821 if(!process_frame_(encoder, false)) /* false => not last frame */
1822 return false;
1823 }
1824 } while(j < samples);
1825 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001826 }
1827 else {
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001828 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
1829 /*
1830 * stereo coding: unroll channel loop
1831 * without LPC: no need to calculate floating point version of signal
1832 */
1833 do {
1834 if(encoder->protected_->verify)
1835 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
Josh Coalsond86e03b2002-08-03 21:56:15 +00001836
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001837 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
1838 encoder->private_->integer_signal[0][i] = mid = side = buffer[k++];
Josh Coalson57ba6f42002-06-07 05:27:37 +00001839 x = buffer[k++];
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001840 encoder->private_->integer_signal[1][i] = x;
1841 mid += x;
1842 side -= x;
1843 mid >>= 1; /* NOTE: not the same as 'mid = (left + right) / 2' ! */
1844 encoder->private_->integer_signal_mid_side[1][i] = side;
1845 encoder->private_->integer_signal_mid_side[0][i] = mid;
1846 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001847 }
Josh Coalsonc549f0f2004-12-30 03:47:49 +00001848 if(i == blocksize) {
1849 if(!process_frame_(encoder, false)) /* false => not last frame */
1850 return false;
1851 }
1852 } while(j < samples);
1853 }
1854 else {
1855 /*
1856 * independent channel coding: buffer each channel in inner loop
1857 * without LPC: no need to calculate floating point version of signal
1858 */
1859 do {
1860 if(encoder->protected_->verify)
1861 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1862
1863 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
1864 for(channel = 0; channel < channels; channel++)
1865 encoder->private_->integer_signal[channel][i] = buffer[k++];
1866 encoder->private_->current_sample_number++;
1867 }
1868 if(i == blocksize) {
1869 if(!process_frame_(encoder, false)) /* false => not last frame */
1870 return false;
1871 }
1872 } while(j < samples);
1873 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001874 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001875
1876 return true;
1877}
1878
Josh Coalsonf1eff452002-07-31 07:05:33 +00001879/***********************************************************************
1880 *
1881 * Private class methods
1882 *
1883 ***********************************************************************/
1884
1885void set_defaults_(FLAC__StreamEncoder *encoder)
Josh Coalson92031602002-07-24 06:02:11 +00001886{
1887 FLAC__ASSERT(0 != encoder);
1888
Josh Coalson47c7b142005-01-29 06:08:58 +00001889#ifdef FLAC__MANDATORY_VERIFY_WHILE_ENCODING
1890 encoder->protected_->verify = true;
1891#else
Josh Coalsond86e03b2002-08-03 21:56:15 +00001892 encoder->protected_->verify = false;
Josh Coalson47c7b142005-01-29 06:08:58 +00001893#endif
Josh Coalson92031602002-07-24 06:02:11 +00001894 encoder->protected_->streamable_subset = true;
1895 encoder->protected_->do_mid_side_stereo = false;
1896 encoder->protected_->loose_mid_side_stereo = false;
1897 encoder->protected_->channels = 2;
1898 encoder->protected_->bits_per_sample = 16;
1899 encoder->protected_->sample_rate = 44100;
1900 encoder->protected_->blocksize = 1152;
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00001901#ifndef FLAC__INTEGER_ONLY_LIBRARY
1902 encoder->protected_->num_apodizations = 1;
Josh Coalson82389362006-05-01 05:58:35 +00001903 encoder->protected_->apodizations[0].type = FLAC__APODIZATION_TUKEY;
1904 encoder->protected_->apodizations[0].parameters.tukey.p = 0.5;
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00001905#endif
Josh Coalson92031602002-07-24 06:02:11 +00001906 encoder->protected_->max_lpc_order = 0;
1907 encoder->protected_->qlp_coeff_precision = 0;
1908 encoder->protected_->do_qlp_coeff_prec_search = false;
1909 encoder->protected_->do_exhaustive_model_search = false;
1910 encoder->protected_->do_escape_coding = false;
1911 encoder->protected_->min_residual_partition_order = 0;
1912 encoder->protected_->max_residual_partition_order = 0;
1913 encoder->protected_->rice_parameter_search_dist = 0;
1914 encoder->protected_->total_samples_estimate = 0;
1915 encoder->protected_->metadata = 0;
1916 encoder->protected_->num_metadata_blocks = 0;
1917
Josh Coalson6b21f662006-09-13 01:42:27 +00001918 encoder->private_->seek_table = 0;
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001919 encoder->private_->disable_constant_subframes = false;
1920 encoder->private_->disable_fixed_subframes = false;
1921 encoder->private_->disable_verbatim_subframes = false;
Josh Coalson92031602002-07-24 06:02:11 +00001922 encoder->private_->write_callback = 0;
Josh Coalson6b21f662006-09-13 01:42:27 +00001923 encoder->private_->seek_callback = 0;
1924 encoder->private_->tell_callback = 0;
Josh Coalson92031602002-07-24 06:02:11 +00001925 encoder->private_->metadata_callback = 0;
Josh Coalson6b21f662006-09-13 01:42:27 +00001926 encoder->private_->progress_callback = 0;
Josh Coalson92031602002-07-24 06:02:11 +00001927 encoder->private_->client_data = 0;
1928}
1929
Josh Coalsonf1eff452002-07-31 07:05:33 +00001930void free_(FLAC__StreamEncoder *encoder)
Josh Coalson639aeb02002-07-25 05:38:23 +00001931{
1932 unsigned i, channel;
1933
Josh Coalsonf1eff452002-07-31 07:05:33 +00001934 FLAC__ASSERT(0 != encoder);
Josh Coalson639aeb02002-07-25 05:38:23 +00001935 for(i = 0; i < encoder->protected_->channels; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001936 if(0 != encoder->private_->integer_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001937 free(encoder->private_->integer_signal_unaligned[i]);
1938 encoder->private_->integer_signal_unaligned[i] = 0;
1939 }
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001940#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonf1eff452002-07-31 07:05:33 +00001941 if(0 != encoder->private_->real_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001942 free(encoder->private_->real_signal_unaligned[i]);
1943 encoder->private_->real_signal_unaligned[i] = 0;
1944 }
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001945#endif
Josh Coalson639aeb02002-07-25 05:38:23 +00001946 }
1947 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001948 if(0 != encoder->private_->integer_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001949 free(encoder->private_->integer_signal_mid_side_unaligned[i]);
1950 encoder->private_->integer_signal_mid_side_unaligned[i] = 0;
1951 }
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001952#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonf1eff452002-07-31 07:05:33 +00001953 if(0 != encoder->private_->real_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001954 free(encoder->private_->real_signal_mid_side_unaligned[i]);
1955 encoder->private_->real_signal_mid_side_unaligned[i] = 0;
1956 }
Josh Coalson5f2b46d2004-11-09 01:34:01 +00001957#endif
Josh Coalson639aeb02002-07-25 05:38:23 +00001958 }
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00001959#ifndef FLAC__INTEGER_ONLY_LIBRARY
1960 for(i = 0; i < encoder->protected_->num_apodizations; i++) {
1961 if(0 != encoder->private_->window_unaligned[i]) {
1962 free(encoder->private_->window_unaligned[i]);
1963 encoder->private_->window_unaligned[i] = 0;
1964 }
1965 }
1966 if(0 != encoder->private_->windowed_signal_unaligned) {
1967 free(encoder->private_->windowed_signal_unaligned);
1968 encoder->private_->windowed_signal_unaligned = 0;
1969 }
1970#endif
Josh Coalson639aeb02002-07-25 05:38:23 +00001971 for(channel = 0; channel < encoder->protected_->channels; channel++) {
1972 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001973 if(0 != encoder->private_->residual_workspace_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001974 free(encoder->private_->residual_workspace_unaligned[channel][i]);
1975 encoder->private_->residual_workspace_unaligned[channel][i] = 0;
1976 }
1977 }
1978 }
1979 for(channel = 0; channel < 2; channel++) {
1980 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001981 if(0 != encoder->private_->residual_workspace_mid_side_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001982 free(encoder->private_->residual_workspace_mid_side_unaligned[channel][i]);
1983 encoder->private_->residual_workspace_mid_side_unaligned[channel][i] = 0;
1984 }
1985 }
1986 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001987 if(0 != encoder->private_->abs_residual_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001988 free(encoder->private_->abs_residual_unaligned);
1989 encoder->private_->abs_residual_unaligned = 0;
1990 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001991 if(0 != encoder->private_->abs_residual_partition_sums_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001992 free(encoder->private_->abs_residual_partition_sums_unaligned);
1993 encoder->private_->abs_residual_partition_sums_unaligned = 0;
1994 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001995 if(0 != encoder->private_->raw_bits_per_partition_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001996 free(encoder->private_->raw_bits_per_partition_unaligned);
1997 encoder->private_->raw_bits_per_partition_unaligned = 0;
1998 }
Josh Coalsond86e03b2002-08-03 21:56:15 +00001999 if(encoder->protected_->verify) {
2000 for(i = 0; i < encoder->protected_->channels; i++) {
2001 if(0 != encoder->private_->verify.input_fifo.data[i]) {
2002 free(encoder->private_->verify.input_fifo.data[i]);
2003 encoder->private_->verify.input_fifo.data[i] = 0;
2004 }
2005 }
2006 }
Josh Coalson639aeb02002-07-25 05:38:23 +00002007 FLAC__bitbuffer_free(encoder->private_->frame);
2008}
2009
Josh Coalsonf1eff452002-07-31 07:05:33 +00002010FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002011{
Josh Coalson77e3f312001-06-23 03:03:24 +00002012 FLAC__bool ok;
Josh Coalson0a15c142001-06-13 17:59:57 +00002013 unsigned i, channel;
2014
2015 FLAC__ASSERT(new_size > 0);
Josh Coalsonfa697a92001-08-16 20:07:29 +00002016 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
2017 FLAC__ASSERT(encoder->private_->current_sample_number == 0);
Josh Coalson0a15c142001-06-13 17:59:57 +00002018
2019 /* To avoid excessive malloc'ing, we only grow the buffer; no shrinking. */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002020 if(new_size <= encoder->private_->input_capacity)
Josh Coalson0a15c142001-06-13 17:59:57 +00002021 return true;
2022
2023 ok = true;
Josh Coalson8395d022001-07-12 21:25:22 +00002024
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002025 /* WATCHOUT: FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx()
2026 * requires that the input arrays (in our case the integer signals)
2027 * have a buffer of up to 3 zeroes in front (at negative indices) for
2028 * alignment purposes; we use 4 to keep the data well-aligned.
2029 */
Josh Coalson8395d022001-07-12 21:25:22 +00002030
Josh Coalsonfa697a92001-08-16 20:07:29 +00002031 for(i = 0; ok && i < encoder->protected_->channels; i++) {
2032 ok = ok && FLAC__memory_alloc_aligned_int32_array(new_size+4, &encoder->private_->integer_signal_unaligned[i], &encoder->private_->integer_signal[i]);
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002033#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonc549f0f2004-12-30 03:47:49 +00002034 if(encoder->protected_->max_lpc_order > 0)
2035 ok = ok && FLAC__memory_alloc_aligned_real_array(new_size, &encoder->private_->real_signal_unaligned[i], &encoder->private_->real_signal[i]);
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002036#endif
Josh Coalsonfa697a92001-08-16 20:07:29 +00002037 memset(encoder->private_->integer_signal[i], 0, sizeof(FLAC__int32)*4);
2038 encoder->private_->integer_signal[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00002039 }
2040 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002041 ok = ok && FLAC__memory_alloc_aligned_int32_array(new_size+4, &encoder->private_->integer_signal_mid_side_unaligned[i], &encoder->private_->integer_signal_mid_side[i]);
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002042#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalsonc549f0f2004-12-30 03:47:49 +00002043 if(encoder->protected_->max_lpc_order > 0)
2044 ok = ok && FLAC__memory_alloc_aligned_real_array(new_size, &encoder->private_->real_signal_mid_side_unaligned[i], &encoder->private_->real_signal_mid_side[i]);
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002045#endif
Josh Coalsonfa697a92001-08-16 20:07:29 +00002046 memset(encoder->private_->integer_signal_mid_side[i], 0, sizeof(FLAC__int32)*4);
2047 encoder->private_->integer_signal_mid_side[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00002048 }
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002049#ifndef FLAC__INTEGER_ONLY_LIBRARY
2050 if(ok && encoder->protected_->max_lpc_order > 0) {
2051 for(i = 0; ok && i < encoder->protected_->num_apodizations; i++)
2052 ok = ok && FLAC__memory_alloc_aligned_real_array(new_size, &encoder->private_->window_unaligned[i], &encoder->private_->window[i]);
2053 ok = ok && FLAC__memory_alloc_aligned_real_array(new_size, &encoder->private_->windowed_signal_unaligned, &encoder->private_->windowed_signal);
2054 }
2055#endif
Josh Coalsonfa697a92001-08-16 20:07:29 +00002056 for(channel = 0; ok && channel < encoder->protected_->channels; channel++) {
Josh Coalson0a15c142001-06-13 17:59:57 +00002057 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002058 ok = ok && FLAC__memory_alloc_aligned_int32_array(new_size, &encoder->private_->residual_workspace_unaligned[channel][i], &encoder->private_->residual_workspace[channel][i]);
Josh Coalson0a15c142001-06-13 17:59:57 +00002059 }
2060 }
2061 for(channel = 0; ok && channel < 2; channel++) {
2062 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002063 ok = ok && FLAC__memory_alloc_aligned_int32_array(new_size, &encoder->private_->residual_workspace_mid_side_unaligned[channel][i], &encoder->private_->residual_workspace_mid_side[channel][i]);
Josh Coalson0a15c142001-06-13 17:59:57 +00002064 }
2065 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00002066 ok = ok && FLAC__memory_alloc_aligned_uint32_array(new_size, &encoder->private_->abs_residual_unaligned, &encoder->private_->abs_residual);
2067 if(encoder->private_->precompute_partition_sums || encoder->protected_->do_escape_coding) /* we require precompute_partition_sums if do_escape_coding because of their intertwined nature */
2068 ok = ok && FLAC__memory_alloc_aligned_uint64_array(new_size * 2, &encoder->private_->abs_residual_partition_sums_unaligned, &encoder->private_->abs_residual_partition_sums);
2069 if(encoder->protected_->do_escape_coding)
2070 ok = ok && FLAC__memory_alloc_aligned_unsigned_array(new_size * 2, &encoder->private_->raw_bits_per_partition_unaligned, &encoder->private_->raw_bits_per_partition);
Josh Coalson0a15c142001-06-13 17:59:57 +00002071
2072 if(ok)
Josh Coalsonfa697a92001-08-16 20:07:29 +00002073 encoder->private_->input_capacity = new_size;
Josh Coalson0a15c142001-06-13 17:59:57 +00002074 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00002075 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson0a15c142001-06-13 17:59:57 +00002076
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002077#ifndef FLAC__INTEGER_ONLY_LIBRARY
2078 if(ok && encoder->protected_->max_lpc_order > 0) {
2079 for(i = 0; ok && i < encoder->protected_->num_apodizations; i++) {
2080 switch(encoder->protected_->apodizations[i].type) {
2081 case FLAC__APODIZATION_BARTLETT:
2082 FLAC__window_bartlett(encoder->private_->window[i], new_size);
2083 break;
2084 case FLAC__APODIZATION_BARTLETT_HANN:
2085 FLAC__window_bartlett_hann(encoder->private_->window[i], new_size);
2086 break;
2087 case FLAC__APODIZATION_BLACKMAN:
2088 FLAC__window_blackman(encoder->private_->window[i], new_size);
2089 break;
2090 case FLAC__APODIZATION_BLACKMAN_HARRIS_4TERM_92DB_SIDELOBE:
2091 FLAC__window_blackman_harris_4term_92db_sidelobe(encoder->private_->window[i], new_size);
2092 break;
2093 case FLAC__APODIZATION_CONNES:
2094 FLAC__window_connes(encoder->private_->window[i], new_size);
2095 break;
2096 case FLAC__APODIZATION_FLATTOP:
2097 FLAC__window_flattop(encoder->private_->window[i], new_size);
2098 break;
2099 case FLAC__APODIZATION_GAUSS:
2100 FLAC__window_gauss(encoder->private_->window[i], new_size, encoder->protected_->apodizations[i].parameters.gauss.stddev);
2101 break;
2102 case FLAC__APODIZATION_HAMMING:
2103 FLAC__window_hamming(encoder->private_->window[i], new_size);
2104 break;
2105 case FLAC__APODIZATION_HANN:
2106 FLAC__window_hann(encoder->private_->window[i], new_size);
2107 break;
2108 case FLAC__APODIZATION_KAISER_BESSEL:
2109 FLAC__window_kaiser_bessel(encoder->private_->window[i], new_size);
2110 break;
2111 case FLAC__APODIZATION_NUTTALL:
2112 FLAC__window_nuttall(encoder->private_->window[i], new_size);
2113 break;
2114 case FLAC__APODIZATION_RECTANGLE:
2115 FLAC__window_rectangle(encoder->private_->window[i], new_size);
2116 break;
2117 case FLAC__APODIZATION_TRIANGLE:
2118 FLAC__window_triangle(encoder->private_->window[i], new_size);
2119 break;
2120 case FLAC__APODIZATION_TUKEY:
2121 FLAC__window_tukey(encoder->private_->window[i], new_size, encoder->protected_->apodizations[i].parameters.tukey.p);
2122 break;
2123 case FLAC__APODIZATION_WELCH:
2124 FLAC__window_welch(encoder->private_->window[i], new_size);
2125 break;
2126 default:
2127 FLAC__ASSERT(0);
2128 /* double protection */
Josh Coalsondf598452006-04-28 00:13:34 +00002129 FLAC__window_hann(encoder->private_->window[i], new_size);
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002130 break;
2131 }
2132 }
2133 }
2134#endif
2135
Josh Coalson0a15c142001-06-13 17:59:57 +00002136 return ok;
2137}
2138
Josh Coalsond86e03b2002-08-03 21:56:15 +00002139FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples)
Josh Coalson5c491a12002-08-01 06:39:40 +00002140{
2141 const FLAC__byte *buffer;
2142 unsigned bytes;
2143
2144 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
2145
2146 FLAC__bitbuffer_get_buffer(encoder->private_->frame, &buffer, &bytes);
2147
Josh Coalsond86e03b2002-08-03 21:56:15 +00002148 if(encoder->protected_->verify) {
2149 encoder->private_->verify.output.data = buffer;
2150 encoder->private_->verify.output.bytes = bytes;
2151 if(encoder->private_->verify.state_hint == ENCODER_IN_MAGIC) {
2152 encoder->private_->verify.needs_magic_hack = true;
2153 }
2154 else {
2155 if(!FLAC__stream_decoder_process_single(encoder->private_->verify.decoder)) {
2156 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
2157 if(encoder->protected_->state != FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA)
2158 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
2159 return false;
2160 }
2161 }
2162 }
2163
Josh Coalson6b21f662006-09-13 01:42:27 +00002164 if(write_frame_(encoder, buffer, bytes, samples) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
Josh Coalsondd190232002-12-29 09:30:23 +00002165 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
Josh Coalson6b21f662006-09-13 01:42:27 +00002166 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
Josh Coalson5c491a12002-08-01 06:39:40 +00002167 return false;
Josh Coalsond86e03b2002-08-03 21:56:15 +00002168 }
Josh Coalson5c491a12002-08-01 06:39:40 +00002169
2170 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
2171
Josh Coalsond86e03b2002-08-03 21:56:15 +00002172 if(samples > 0) {
Josh Coalson6b21f662006-09-13 01:42:27 +00002173 encoder->private_->streaminfo.data.stream_info.min_framesize = min(bytes, encoder->private_->streaminfo.data.stream_info.min_framesize);
2174 encoder->private_->streaminfo.data.stream_info.max_framesize = max(bytes, encoder->private_->streaminfo.data.stream_info.max_framesize);
Josh Coalsond86e03b2002-08-03 21:56:15 +00002175 }
2176
Josh Coalson5c491a12002-08-01 06:39:40 +00002177 return true;
2178}
2179
Josh Coalson6b21f662006-09-13 01:42:27 +00002180FLAC__StreamEncoderWriteStatus write_frame_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples)
2181{
2182 FLAC__StreamEncoderWriteStatus status;
2183 FLAC__uint64 output_position = 0;
2184
2185 /* FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED just means we didn't get the offset; no error */
2186 if(encoder->private_->tell_callback && encoder->private_->tell_callback(encoder, &output_position, encoder->private_->client_data) == FLAC__STREAM_ENCODER_TELL_STATUS_ERROR) {
2187 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2188 return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
2189 }
2190
2191 /*
2192 * Watch for the STREAMINFO block and first SEEKTABLE block to go by and store their offsets.
2193 */
2194 if(samples == 0) {
2195 FLAC__MetadataType type = (buffer[0] & 0x7f);
2196 if(type == FLAC__METADATA_TYPE_STREAMINFO)
2197 encoder->protected_->streaminfo_offset = output_position;
2198 else if(type == FLAC__METADATA_TYPE_SEEKTABLE && encoder->protected_->seektable_offset == 0)
2199 encoder->protected_->seektable_offset = output_position;
2200 }
2201
2202 /*
2203 * Mark the current seek point if hit (if audio_offset == 0 that
2204 * means we're still writing metadata and haven't hit the first
2205 * frame yet)
2206 */
2207 if(0 != encoder->private_->seek_table && encoder->protected_->audio_offset > 0 && encoder->private_->seek_table->num_points > 0) {
2208 const unsigned blocksize = FLAC__stream_encoder_get_blocksize(encoder);
2209 const FLAC__uint64 frame_first_sample = encoder->private_->samples_written;
2210 const FLAC__uint64 frame_last_sample = frame_first_sample + (FLAC__uint64)blocksize - 1;
2211 FLAC__uint64 test_sample;
2212 unsigned i;
2213 for(i = encoder->private_->first_seekpoint_to_check; i < encoder->private_->seek_table->num_points; i++) {
2214 test_sample = encoder->private_->seek_table->points[i].sample_number;
2215 if(test_sample > frame_last_sample) {
2216 break;
2217 }
2218 else if(test_sample >= frame_first_sample) {
2219 encoder->private_->seek_table->points[i].sample_number = frame_first_sample;
2220 encoder->private_->seek_table->points[i].stream_offset = output_position - encoder->protected_->audio_offset;
2221 encoder->private_->seek_table->points[i].frame_samples = blocksize;
2222 encoder->private_->first_seekpoint_to_check++;
2223 /* DO NOT: "break;" and here's why:
2224 * The seektable template may contain more than one target
2225 * sample for any given frame; we will keep looping, generating
2226 * duplicate seekpoints for them, and we'll clean it up later,
2227 * just before writing the seektable back to the metadata.
2228 */
2229 }
2230 else {
2231 encoder->private_->first_seekpoint_to_check++;
2232 }
2233 }
2234 }
2235
2236 status = encoder->private_->write_callback(encoder, buffer, bytes, samples, encoder->private_->current_frame_number, encoder->private_->client_data);
2237
2238 if(status == FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
2239 encoder->private_->bytes_written += bytes;
2240 encoder->private_->samples_written += samples;
2241 /* we keep a high watermark on the number of frames written because
2242 * when the encoder goes back to write metadata, 'current_frame'
2243 * will drop back to 0.
2244 */
2245 encoder->private_->frames_written = max(encoder->private_->frames_written, encoder->private_->current_frame_number+1);
2246 }
2247 else
2248 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2249
2250 return status;
2251}
2252
2253/* Gets called when the encoding process has finished so that we can update the STREAMINFO and SEEKTABLE blocks. */
2254void update_metadata_(const FLAC__StreamEncoder *encoder)
2255{
2256 FLAC__byte b[max(6, FLAC__STREAM_METADATA_SEEKPOINT_LENGTH)];
2257 const FLAC__StreamMetadata *metadata = &encoder->private_->streaminfo;
2258 const FLAC__uint64 samples = metadata->data.stream_info.total_samples;
2259 const unsigned min_framesize = metadata->data.stream_info.min_framesize;
2260 const unsigned max_framesize = metadata->data.stream_info.max_framesize;
2261 const unsigned bps = metadata->data.stream_info.bits_per_sample;
2262 FLAC__StreamEncoderSeekStatus seek_status;
2263
2264 FLAC__ASSERT(metadata->type == FLAC__METADATA_TYPE_STREAMINFO);
2265
2266 /* All this is based on intimate knowledge of the stream header
2267 * layout, but a change to the header format that would break this
2268 * would also break all streams encoded in the previous format.
2269 */
2270
2271 /*
2272 * Write MD5 signature
2273 */
2274 {
2275 const unsigned md5_offset =
2276 FLAC__STREAM_METADATA_HEADER_LENGTH +
2277 (
2278 FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN +
2279 FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN +
2280 FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN +
2281 FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN +
2282 FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN +
2283 FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN +
2284 FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN +
2285 FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
2286 ) / 8;
2287
2288 if((seek_status = encoder->private_->seek_callback(encoder, encoder->protected_->streaminfo_offset + md5_offset, encoder->private_->client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
2289 if(seek_status == FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR)
2290 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2291 return;
2292 }
2293 if(encoder->private_->write_callback(encoder, metadata->data.stream_info.md5sum, 16, 0, 0, encoder->private_->client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
2294 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2295 return;
2296 }
2297 }
2298
2299 /*
2300 * Write total samples
2301 */
2302 {
2303 const unsigned total_samples_byte_offset =
2304 FLAC__STREAM_METADATA_HEADER_LENGTH +
2305 (
2306 FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN +
2307 FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN +
2308 FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN +
2309 FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN +
2310 FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN +
2311 FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN +
2312 FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
2313 - 4
2314 ) / 8;
2315
2316 b[0] = ((FLAC__byte)(bps-1) << 4) | (FLAC__byte)((samples >> 32) & 0x0F);
2317 b[1] = (FLAC__byte)((samples >> 24) & 0xFF);
2318 b[2] = (FLAC__byte)((samples >> 16) & 0xFF);
2319 b[3] = (FLAC__byte)((samples >> 8) & 0xFF);
2320 b[4] = (FLAC__byte)(samples & 0xFF);
2321 if((seek_status = encoder->private_->seek_callback(encoder, encoder->protected_->streaminfo_offset + total_samples_byte_offset, encoder->private_->client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
2322 if(seek_status == FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR)
2323 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2324 return;
2325 }
2326 if(encoder->private_->write_callback(encoder, b, 5, 0, 0, encoder->private_->client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
2327 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2328 return;
2329 }
2330 }
2331
2332 /*
2333 * Write min/max framesize
2334 */
2335 {
2336 const unsigned min_framesize_offset =
2337 FLAC__STREAM_METADATA_HEADER_LENGTH +
2338 (
2339 FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN +
2340 FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
2341 ) / 8;
2342
2343 b[0] = (FLAC__byte)((min_framesize >> 16) & 0xFF);
2344 b[1] = (FLAC__byte)((min_framesize >> 8) & 0xFF);
2345 b[2] = (FLAC__byte)(min_framesize & 0xFF);
2346 b[3] = (FLAC__byte)((max_framesize >> 16) & 0xFF);
2347 b[4] = (FLAC__byte)((max_framesize >> 8) & 0xFF);
2348 b[5] = (FLAC__byte)(max_framesize & 0xFF);
2349 if((seek_status = encoder->private_->seek_callback(encoder, encoder->protected_->streaminfo_offset + min_framesize_offset, encoder->private_->client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
2350 if(seek_status == FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR)
2351 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2352 return;
2353 }
2354 if(encoder->private_->write_callback(encoder, b, 6, 0, 0, encoder->private_->client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
2355 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2356 return;
2357 }
2358 }
2359
2360 /*
2361 * Write seektable
2362 */
2363 if(0 != encoder->private_->seek_table && encoder->private_->seek_table->num_points > 0 && encoder->protected_->seektable_offset > 0) {
2364 unsigned i;
2365
2366 FLAC__format_seektable_sort(encoder->private_->seek_table);
2367
2368 FLAC__ASSERT(FLAC__format_seektable_is_legal(encoder->private_->seek_table));
2369
2370 if((seek_status = encoder->private_->seek_callback(encoder, encoder->protected_->seektable_offset + FLAC__STREAM_METADATA_HEADER_LENGTH, encoder->private_->client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
2371 if(seek_status == FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR)
2372 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2373 return;
2374 }
2375
2376 for(i = 0; i < encoder->private_->seek_table->num_points; i++) {
2377 FLAC__uint64 xx;
2378 unsigned x;
2379 xx = encoder->private_->seek_table->points[i].sample_number;
2380 b[7] = (FLAC__byte)xx; xx >>= 8;
2381 b[6] = (FLAC__byte)xx; xx >>= 8;
2382 b[5] = (FLAC__byte)xx; xx >>= 8;
2383 b[4] = (FLAC__byte)xx; xx >>= 8;
2384 b[3] = (FLAC__byte)xx; xx >>= 8;
2385 b[2] = (FLAC__byte)xx; xx >>= 8;
2386 b[1] = (FLAC__byte)xx; xx >>= 8;
2387 b[0] = (FLAC__byte)xx; xx >>= 8;
2388 xx = encoder->private_->seek_table->points[i].stream_offset;
2389 b[15] = (FLAC__byte)xx; xx >>= 8;
2390 b[14] = (FLAC__byte)xx; xx >>= 8;
2391 b[13] = (FLAC__byte)xx; xx >>= 8;
2392 b[12] = (FLAC__byte)xx; xx >>= 8;
2393 b[11] = (FLAC__byte)xx; xx >>= 8;
2394 b[10] = (FLAC__byte)xx; xx >>= 8;
2395 b[9] = (FLAC__byte)xx; xx >>= 8;
2396 b[8] = (FLAC__byte)xx; xx >>= 8;
2397 x = encoder->private_->seek_table->points[i].frame_samples;
2398 b[17] = (FLAC__byte)x; x >>= 8;
2399 b[16] = (FLAC__byte)x; x >>= 8;
2400 if(encoder->private_->write_callback(encoder, b, 18, 0, 0, encoder->private_->client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
2401 encoder->protected_->state = FLAC__STREAM_ENCODER_CLIENT_ERROR;
2402 return;
2403 }
2404 }
2405 }
2406}
2407
Josh Coalsonf1eff452002-07-31 07:05:33 +00002408FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson0a15c142001-06-13 17:59:57 +00002409{
Josh Coalsonfa697a92001-08-16 20:07:29 +00002410 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002411
2412 /*
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00002413 * Accumulate raw signal to the MD5 signature
2414 */
Josh Coalson57ba6f42002-06-07 05:27:37 +00002415 if(!FLAC__MD5Accumulate(&encoder->private_->md5context, (const FLAC__int32 * const *)encoder->private_->integer_signal, encoder->protected_->channels, encoder->protected_->blocksize, (encoder->protected_->bits_per_sample+7) / 8)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002416 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00002417 return false;
2418 }
2419
2420 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00002421 * Process the frame header and subframes into the frame bitbuffer
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002422 */
Josh Coalsonf1eff452002-07-31 07:05:33 +00002423 if(!process_subframes_(encoder, is_last_frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002424 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002425 return false;
2426 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002427
2428 /*
2429 * Zero-pad the frame to a byte_boundary
2430 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00002431 if(!FLAC__bitbuffer_zero_pad_to_byte_boundary(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002432 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002433 return false;
2434 }
2435
2436 /*
Josh Coalson215af572001-03-27 01:15:58 +00002437 * CRC-16 the whole thing
2438 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00002439 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
2440 FLAC__bitbuffer_write_raw_uint32(encoder->private_->frame, FLAC__bitbuffer_get_write_crc16(encoder->private_->frame), FLAC__FRAME_FOOTER_CRC_LEN);
Josh Coalson215af572001-03-27 01:15:58 +00002441
2442 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002443 * Write it
2444 */
Josh Coalsond86e03b2002-08-03 21:56:15 +00002445 if(!write_bitbuffer_(encoder, encoder->protected_->blocksize)) {
2446 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002447 return false;
2448 }
2449
2450 /*
2451 * Get ready for the next frame
2452 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002453 encoder->private_->current_sample_number = 0;
2454 encoder->private_->current_frame_number++;
Josh Coalson6b21f662006-09-13 01:42:27 +00002455 encoder->private_->streaminfo.data.stream_info.total_samples += (FLAC__uint64)encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00002456
2457 return true;
2458}
2459
Josh Coalsonf1eff452002-07-31 07:05:33 +00002460FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002461{
2462 FLAC__FrameHeader frame_header;
Josh Coalsonfa697a92001-08-16 20:07:29 +00002463 unsigned channel, min_partition_order = encoder->protected_->min_residual_partition_order, max_partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00002464 FLAC__bool do_independent, do_mid_side, precompute_partition_sums;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002465
2466 /*
Josh Coalson60f77d72001-04-25 02:16:36 +00002467 * Calculate the min,max Rice partition orders
Josh Coalson94e02cd2001-01-25 10:41:06 +00002468 */
2469 if(is_last_frame) {
2470 max_partition_order = 0;
2471 }
2472 else {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002473 max_partition_order = FLAC__format_get_max_rice_partition_order_from_blocksize(encoder->protected_->blocksize);
2474 max_partition_order = min(max_partition_order, encoder->protected_->max_residual_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002475 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002476 min_partition_order = min(min_partition_order, max_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002477
Josh Coalsonfa697a92001-08-16 20:07:29 +00002478 precompute_partition_sums = encoder->private_->precompute_partition_sums && ((max_partition_order > min_partition_order) || encoder->protected_->do_escape_coding);
Josh Coalson8395d022001-07-12 21:25:22 +00002479
Josh Coalson94e02cd2001-01-25 10:41:06 +00002480 /*
2481 * Setup the frame
2482 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00002483 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002484 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002485 return false;
2486 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00002487 frame_header.blocksize = encoder->protected_->blocksize;
2488 frame_header.sample_rate = encoder->protected_->sample_rate;
2489 frame_header.channels = encoder->protected_->channels;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002490 frame_header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT; /* the default unless the encoder determines otherwise */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002491 frame_header.bits_per_sample = encoder->protected_->bits_per_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002492 frame_header.number_type = FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER;
Josh Coalsonfa697a92001-08-16 20:07:29 +00002493 frame_header.number.frame_number = encoder->private_->current_frame_number;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002494
2495 /*
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002496 * Figure out what channel assignments to try
2497 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002498 if(encoder->protected_->do_mid_side_stereo) {
2499 if(encoder->protected_->loose_mid_side_stereo) {
2500 if(encoder->private_->loose_mid_side_stereo_frame_count == 0) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002501 do_independent = true;
2502 do_mid_side = true;
2503 }
2504 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002505 do_independent = (encoder->private_->last_channel_assignment == FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002506 do_mid_side = !do_independent;
2507 }
2508 }
2509 else {
2510 do_independent = true;
2511 do_mid_side = true;
2512 }
2513 }
2514 else {
2515 do_independent = true;
2516 do_mid_side = false;
2517 }
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002518
Josh Coalson1b689822001-05-31 20:11:02 +00002519 FLAC__ASSERT(do_independent || do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002520
2521 /*
Josh Coalson82b73242001-03-28 22:17:05 +00002522 * Check for wasted bits; set effective bps for each subframe
Josh Coalson859bc542001-03-27 22:22:27 +00002523 */
2524 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002525 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002526 const unsigned w = get_wasted_bits_(encoder->private_->integer_signal[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00002527 encoder->private_->subframe_workspace[channel][0].wasted_bits = encoder->private_->subframe_workspace[channel][1].wasted_bits = w;
2528 encoder->private_->subframe_bps[channel] = encoder->protected_->bits_per_sample - w;
Josh Coalson82b73242001-03-28 22:17:05 +00002529 }
Josh Coalson859bc542001-03-27 22:22:27 +00002530 }
2531 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002532 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson82b73242001-03-28 22:17:05 +00002533 for(channel = 0; channel < 2; channel++) {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002534 const unsigned w = get_wasted_bits_(encoder->private_->integer_signal_mid_side[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00002535 encoder->private_->subframe_workspace_mid_side[channel][0].wasted_bits = encoder->private_->subframe_workspace_mid_side[channel][1].wasted_bits = w;
2536 encoder->private_->subframe_bps_mid_side[channel] = encoder->protected_->bits_per_sample - w + (channel==0? 0:1);
Josh Coalson82b73242001-03-28 22:17:05 +00002537 }
Josh Coalson859bc542001-03-27 22:22:27 +00002538 }
2539
2540 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00002541 * First do a normal encoding pass of each independent channel
2542 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002543 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002544 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00002545 if(!
2546 process_subframe_(
2547 encoder,
2548 min_partition_order,
2549 max_partition_order,
2550 precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00002551 &frame_header,
2552 encoder->private_->subframe_bps[channel],
2553 encoder->private_->integer_signal[channel],
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002554#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson6fe72f72002-08-20 04:01:59 +00002555 encoder->private_->real_signal[channel],
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002556#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +00002557 encoder->private_->subframe_workspace_ptr[channel],
2558 encoder->private_->partitioned_rice_contents_workspace_ptr[channel],
2559 encoder->private_->residual_workspace[channel],
2560 encoder->private_->best_subframe+channel,
2561 encoder->private_->best_subframe_bits+channel
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002562#ifdef WINDOW_DEBUG_OUTPUT
2563 ,channel
2564#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +00002565 )
2566 )
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002567 return false;
2568 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002569 }
2570
2571 /*
2572 * Now do mid and side channels if requested
2573 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002574 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002575 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002576
2577 for(channel = 0; channel < 2; channel++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00002578 if(!
2579 process_subframe_(
2580 encoder,
2581 min_partition_order,
2582 max_partition_order,
2583 precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00002584 &frame_header,
2585 encoder->private_->subframe_bps_mid_side[channel],
2586 encoder->private_->integer_signal_mid_side[channel],
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002587#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson6fe72f72002-08-20 04:01:59 +00002588 encoder->private_->real_signal_mid_side[channel],
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002589#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +00002590 encoder->private_->subframe_workspace_ptr_mid_side[channel],
2591 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[channel],
2592 encoder->private_->residual_workspace_mid_side[channel],
2593 encoder->private_->best_subframe_mid_side+channel,
2594 encoder->private_->best_subframe_bits_mid_side+channel
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002595#ifdef WINDOW_DEBUG_OUTPUT
2596 ,channel
2597#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +00002598 )
2599 )
Josh Coalson94e02cd2001-01-25 10:41:06 +00002600 return false;
2601 }
2602 }
2603
2604 /*
2605 * Compose the frame bitbuffer
2606 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002607 if(do_mid_side) {
Josh Coalson82b73242001-03-28 22:17:05 +00002608 unsigned left_bps = 0, right_bps = 0; /* initialized only to prevent superfluous compiler warning */
2609 FLAC__Subframe *left_subframe = 0, *right_subframe = 0; /* initialized only to prevent superfluous compiler warning */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002610 FLAC__ChannelAssignment channel_assignment;
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002611#ifdef WINDOW_DEBUG_OUTPUT
2612 unsigned left_bits = 0, right_bits = 0;
2613#endif
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002614
Josh Coalsonfa697a92001-08-16 20:07:29 +00002615 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002616
Josh Coalsonfa697a92001-08-16 20:07:29 +00002617 if(encoder->protected_->loose_mid_side_stereo && encoder->private_->loose_mid_side_stereo_frame_count > 0) {
2618 channel_assignment = (encoder->private_->last_channel_assignment == FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT? FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT : FLAC__CHANNEL_ASSIGNMENT_MID_SIDE);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002619 }
2620 else {
2621 unsigned bits[4]; /* WATCHOUT - indexed by FLAC__ChannelAssignment */
2622 unsigned min_bits;
2623 FLAC__ChannelAssignment ca;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002624
Josh Coalson1b689822001-05-31 20:11:02 +00002625 FLAC__ASSERT(do_independent && do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002626
2627 /* We have to figure out which channel assignent results in the smallest frame */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002628 bits[FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits [1];
2629 bits[FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE ] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits_mid_side[1];
2630 bits[FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE ] = encoder->private_->best_subframe_bits [1] + encoder->private_->best_subframe_bits_mid_side[1];
2631 bits[FLAC__CHANNEL_ASSIGNMENT_MID_SIDE ] = encoder->private_->best_subframe_bits_mid_side[0] + encoder->private_->best_subframe_bits_mid_side[1];
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002632
Josh Coalson7424d2f2002-11-06 07:10:38 +00002633 for(channel_assignment = (FLAC__ChannelAssignment)0, min_bits = bits[0], ca = (FLAC__ChannelAssignment)1; (int)ca <= 3; ca = (FLAC__ChannelAssignment)((int)ca + 1)) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002634 if(bits[ca] < min_bits) {
2635 min_bits = bits[ca];
2636 channel_assignment = ca;
2637 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002638 }
2639 }
2640
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002641 frame_header.channel_assignment = channel_assignment;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002642
Josh Coalson3e7a96e2004-07-23 05:18:22 +00002643 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002644 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002645 return false;
2646 }
2647
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002648 switch(channel_assignment) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002649 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00002650 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
2651 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002652#ifdef WINDOW_DEBUG_OUTPUT
2653 left_bits = encoder->private_->best_subframe_bits [0];
2654 right_bits = encoder->private_->best_subframe_bits [1];
2655#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002656 break;
2657 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00002658 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
2659 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002660#ifdef WINDOW_DEBUG_OUTPUT
2661 left_bits = encoder->private_->best_subframe_bits [0];
2662 right_bits = encoder->private_->best_subframe_bits_mid_side [1];
2663#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002664 break;
2665 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00002666 left_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
2667 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002668#ifdef WINDOW_DEBUG_OUTPUT
2669 left_bits = encoder->private_->best_subframe_bits_mid_side [1];
2670 right_bits = encoder->private_->best_subframe_bits [1];
2671#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002672 break;
2673 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00002674 left_subframe = &encoder->private_->subframe_workspace_mid_side[0][encoder->private_->best_subframe_mid_side[0]];
2675 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002676#ifdef WINDOW_DEBUG_OUTPUT
2677 left_bits = encoder->private_->best_subframe_bits_mid_side [0];
2678 right_bits = encoder->private_->best_subframe_bits_mid_side [1];
2679#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002680 break;
2681 default:
Josh Coalson1b689822001-05-31 20:11:02 +00002682 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002683 }
Josh Coalson82b73242001-03-28 22:17:05 +00002684
2685 switch(channel_assignment) {
2686 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00002687 left_bps = encoder->private_->subframe_bps [0];
2688 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00002689 break;
2690 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00002691 left_bps = encoder->private_->subframe_bps [0];
2692 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00002693 break;
2694 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00002695 left_bps = encoder->private_->subframe_bps_mid_side[1];
2696 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00002697 break;
2698 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00002699 left_bps = encoder->private_->subframe_bps_mid_side[0];
2700 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00002701 break;
2702 default:
Josh Coalson1b689822001-05-31 20:11:02 +00002703 FLAC__ASSERT(0);
Josh Coalson82b73242001-03-28 22:17:05 +00002704 }
2705
2706 /* note that encoder_add_subframe_ sets the state for us in case of an error */
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002707#ifdef WINDOW_DEBUG_OUTPUT
2708 if(!add_subframe_(encoder, &frame_header, left_bps , left_subframe , encoder->private_->frame, left_bits))
2709 return false;
2710 if(!add_subframe_(encoder, &frame_header, right_bps, right_subframe, encoder->private_->frame, right_bits))
2711 return false;
2712#else
Josh Coalsonf1eff452002-07-31 07:05:33 +00002713 if(!add_subframe_(encoder, &frame_header, left_bps , left_subframe , encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00002714 return false;
Josh Coalsonf1eff452002-07-31 07:05:33 +00002715 if(!add_subframe_(encoder, &frame_header, right_bps, right_subframe, encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00002716 return false;
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002717#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002718 }
2719 else {
Josh Coalson3e7a96e2004-07-23 05:18:22 +00002720 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002721 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002722 return false;
2723 }
2724
Josh Coalsonfa697a92001-08-16 20:07:29 +00002725 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalson0abc7352006-05-03 00:13:25 +00002726#ifdef WINDOW_DEBUG_OUTPUT
2727 if(!add_subframe_(encoder, &frame_header, encoder->private_->subframe_bps[channel], &encoder->private_->subframe_workspace[channel][encoder->private_->best_subframe[channel]], encoder->private_->frame, encoder->private_->best_subframe_bits[channel]))
2728#else
2729 if(!add_subframe_(encoder, &frame_header, encoder->private_->subframe_bps[channel], &encoder->private_->subframe_workspace[channel][encoder->private_->best_subframe[channel]], encoder->private_->frame))
2730#endif
2731 {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002732 /* the above function sets the state for us in case of an error */
2733 return false;
2734 }
2735 }
2736 }
2737
Josh Coalsonfa697a92001-08-16 20:07:29 +00002738 if(encoder->protected_->loose_mid_side_stereo) {
2739 encoder->private_->loose_mid_side_stereo_frame_count++;
2740 if(encoder->private_->loose_mid_side_stereo_frame_count >= encoder->private_->loose_mid_side_stereo_frames)
2741 encoder->private_->loose_mid_side_stereo_frame_count = 0;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002742 }
2743
Josh Coalsonfa697a92001-08-16 20:07:29 +00002744 encoder->private_->last_channel_assignment = frame_header.channel_assignment;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00002745
Josh Coalson94e02cd2001-01-25 10:41:06 +00002746 return true;
2747}
2748
Josh Coalson6fe72f72002-08-20 04:01:59 +00002749FLAC__bool process_subframe_(
2750 FLAC__StreamEncoder *encoder,
2751 unsigned min_partition_order,
2752 unsigned max_partition_order,
2753 FLAC__bool precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00002754 const FLAC__FrameHeader *frame_header,
2755 unsigned subframe_bps,
2756 const FLAC__int32 integer_signal[],
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002757#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson6fe72f72002-08-20 04:01:59 +00002758 const FLAC__real real_signal[],
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002759#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +00002760 FLAC__Subframe *subframe[2],
2761 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents[2],
2762 FLAC__int32 *residual[2],
2763 unsigned *best_subframe,
2764 unsigned *best_bits
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002765#ifdef WINDOW_DEBUG_OUTPUT
2766 ,unsigned subframe_number
2767#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +00002768)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002769{
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002770#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson09758432004-10-20 00:21:50 +00002771 FLAC__float fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1];
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002772#else
2773 FLAC__fixedpoint fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1];
2774#endif
2775#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson09758432004-10-20 00:21:50 +00002776 FLAC__double lpc_residual_bits_per_sample;
Josh Coalsonfa697a92001-08-16 20:07:29 +00002777 FLAC__real autoc[FLAC__MAX_LPC_ORDER+1]; /* WATCHOUT: the size is important even though encoder->protected_->max_lpc_order might be less; some asm routines need all the space */
Josh Coalson09758432004-10-20 00:21:50 +00002778 FLAC__double lpc_error[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00002779 unsigned min_lpc_order, max_lpc_order, lpc_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002780 unsigned min_qlp_coeff_precision, max_qlp_coeff_precision, qlp_coeff_precision;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002781#endif
2782 unsigned min_fixed_order, max_fixed_order, guess_fixed_order, fixed_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002783 unsigned rice_parameter;
2784 unsigned _candidate_bits, _best_bits;
2785 unsigned _best_subframe;
2786
2787 /* verbatim subframe is the baseline against which we measure other compressed subframes */
2788 _best_subframe = 0;
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002789 if(encoder->private_->disable_verbatim_subframes && frame_header->blocksize >= FLAC__MAX_FIXED_ORDER)
2790 _best_bits = UINT_MAX;
2791 else
2792 _best_bits = evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, subframe_bps, subframe[_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002793
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002794 if(frame_header->blocksize >= FLAC__MAX_FIXED_ORDER) {
2795 unsigned signal_is_constant = false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00002796 guess_fixed_order = encoder->private_->local_fixed_compute_best_predictor(integer_signal+FLAC__MAX_FIXED_ORDER, frame_header->blocksize-FLAC__MAX_FIXED_ORDER, fixed_residual_bits_per_sample);
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002797 /* check for constant subframe */
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002798 if(
2799 !encoder->private_->disable_constant_subframes &&
2800#ifndef FLAC__INTEGER_ONLY_LIBRARY
2801 fixed_residual_bits_per_sample[1] == 0.0
2802#else
2803 fixed_residual_bits_per_sample[1] == FLAC__FP_ZERO
2804#endif
2805 ) {
2806 /* the above means it's possible all samples are the same value; now double-check it: */
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002807 unsigned i;
2808 signal_is_constant = true;
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002809 for(i = 1; i < frame_header->blocksize; i++) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002810 if(integer_signal[0] != integer_signal[i]) {
2811 signal_is_constant = false;
2812 break;
2813 }
2814 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002815 }
2816 if(signal_is_constant) {
2817 _candidate_bits = evaluate_constant_subframe_(integer_signal[0], subframe_bps, subframe[!_best_subframe]);
2818 if(_candidate_bits < _best_bits) {
2819 _best_subframe = !_best_subframe;
2820 _best_bits = _candidate_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002821 }
2822 }
2823 else {
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002824 if(!encoder->private_->disable_fixed_subframes || (encoder->protected_->max_lpc_order == 0 && _best_bits == UINT_MAX)) {
2825 /* encode fixed */
2826 if(encoder->protected_->do_exhaustive_model_search) {
2827 min_fixed_order = 0;
2828 max_fixed_order = FLAC__MAX_FIXED_ORDER;
Josh Coalson8395d022001-07-12 21:25:22 +00002829 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002830 else {
2831 min_fixed_order = max_fixed_order = guess_fixed_order;
2832 }
2833 for(fixed_order = min_fixed_order; fixed_order <= max_fixed_order; fixed_order++) {
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002834#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson09758432004-10-20 00:21:50 +00002835 if(fixed_residual_bits_per_sample[fixed_order] >= (FLAC__float)subframe_bps)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002836 continue; /* don't even try */
2837 rice_parameter = (fixed_residual_bits_per_sample[fixed_order] > 0.0)? (unsigned)(fixed_residual_bits_per_sample[fixed_order]+0.5) : 0; /* 0.5 is for rounding */
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002838#else
2839 if(FLAC__fixedpoint_trunc(fixed_residual_bits_per_sample[fixed_order]) >= (int)subframe_bps)
2840 continue; /* don't even try */
2841 rice_parameter = (fixed_residual_bits_per_sample[fixed_order] > FLAC__FP_ZERO)? (unsigned)FLAC__fixedpoint_trunc(fixed_residual_bits_per_sample[fixed_order]+FLAC__FP_ONE_HALF) : 0; /* 0.5 is for rounding */
2842#endif
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002843 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002844 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
2845#ifdef DEBUG_VERBOSE
2846 fprintf(stderr, "clipping rice_parameter (%u -> %u) @0\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2847#endif
2848 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2849 }
2850 _candidate_bits =
2851 evaluate_fixed_subframe_(
2852 encoder,
2853 integer_signal,
2854 residual[!_best_subframe],
2855 encoder->private_->abs_residual,
2856 encoder->private_->abs_residual_partition_sums,
2857 encoder->private_->raw_bits_per_partition,
2858 frame_header->blocksize,
2859 subframe_bps,
2860 fixed_order,
2861 rice_parameter,
2862 min_partition_order,
2863 max_partition_order,
2864 precompute_partition_sums,
2865 encoder->protected_->do_escape_coding,
2866 encoder->protected_->rice_parameter_search_dist,
2867 subframe[!_best_subframe],
2868 partitioned_rice_contents[!_best_subframe]
2869 );
2870 if(_candidate_bits < _best_bits) {
2871 _best_subframe = !_best_subframe;
2872 _best_bits = _candidate_bits;
2873 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002874 }
2875 }
2876
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002877#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson94e02cd2001-01-25 10:41:06 +00002878 /* encode lpc */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002879 if(encoder->protected_->max_lpc_order > 0) {
2880 if(encoder->protected_->max_lpc_order >= frame_header->blocksize)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002881 max_lpc_order = frame_header->blocksize-1;
2882 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00002883 max_lpc_order = encoder->protected_->max_lpc_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002884 if(max_lpc_order > 0) {
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002885 unsigned a;
2886 for (a = 0; a < encoder->protected_->num_apodizations; a++) {
Josh Coalson0abc7352006-05-03 00:13:25 +00002887 FLAC__lpc_window_data(real_signal, encoder->private_->window[a], encoder->private_->windowed_signal, frame_header->blocksize);
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002888 encoder->private_->local_lpc_compute_autocorrelation(encoder->private_->windowed_signal, frame_header->blocksize, max_lpc_order+1, autoc);
2889 /* if autoc[0] == 0.0, the signal is constant and we usually won't get here, but it can happen */
2890 if(autoc[0] != 0.0) {
2891 FLAC__lpc_compute_lp_coefficients(autoc, max_lpc_order, encoder->private_->lp_coeff, lpc_error);
2892 if(encoder->protected_->do_exhaustive_model_search) {
2893 min_lpc_order = 1;
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002894 }
2895 else {
Josh Coalsondf598452006-04-28 00:13:34 +00002896 const unsigned guess_lpc_order =
2897 FLAC__lpc_compute_best_order(
2898 lpc_error,
2899 max_lpc_order,
2900 frame_header->blocksize,
2901 subframe_bps + (
2902 encoder->protected_->do_qlp_coeff_prec_search?
2903 FLAC__MIN_QLP_COEFF_PRECISION : /* have to guess; use the min possible size to avoid accidentally favoring lower orders */
2904 encoder->protected_->qlp_coeff_precision
2905 )
2906 );
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002907 min_lpc_order = max_lpc_order = guess_lpc_order;
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002908 }
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002909 for(lpc_order = min_lpc_order; lpc_order <= max_lpc_order; lpc_order++) {
2910 lpc_residual_bits_per_sample = FLAC__lpc_compute_expected_bits_per_residual_sample(lpc_error[lpc_order-1], frame_header->blocksize-lpc_order);
2911 if(lpc_residual_bits_per_sample >= (FLAC__double)subframe_bps)
2912 continue; /* don't even try */
2913 rice_parameter = (lpc_residual_bits_per_sample > 0.0)? (unsigned)(lpc_residual_bits_per_sample+0.5) : 0; /* 0.5 is for rounding */
2914 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
2915 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalsondf598452006-04-28 00:13:34 +00002916#ifdef DEBUG_VERBOSE
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002917 fprintf(stderr, "clipping rice_parameter (%u -> %u) @1\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
Josh Coalsondf598452006-04-28 00:13:34 +00002918#endif
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002919 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2920 }
2921 if(encoder->protected_->do_qlp_coeff_prec_search) {
2922 min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
Josh Coalsondf598452006-04-28 00:13:34 +00002923 /* try to ensure a 32-bit datapath throughout for 16bps(+1bps for side channel) or less */
2924 if(subframe_bps <= 17) {
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002925 max_qlp_coeff_precision = min(32 - subframe_bps - lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
Josh Coalsondf598452006-04-28 00:13:34 +00002926 max_qlp_coeff_precision = max(max_qlp_coeff_precision, min_qlp_coeff_precision);
2927 }
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002928 else
2929 max_qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION;
2930 }
2931 else {
2932 min_qlp_coeff_precision = max_qlp_coeff_precision = encoder->protected_->qlp_coeff_precision;
2933 }
2934 for(qlp_coeff_precision = min_qlp_coeff_precision; qlp_coeff_precision <= max_qlp_coeff_precision; qlp_coeff_precision++) {
2935 _candidate_bits =
2936 evaluate_lpc_subframe_(
2937 encoder,
2938 integer_signal,
2939 residual[!_best_subframe],
2940 encoder->private_->abs_residual,
2941 encoder->private_->abs_residual_partition_sums,
2942 encoder->private_->raw_bits_per_partition,
2943 encoder->private_->lp_coeff[lpc_order-1],
2944 frame_header->blocksize,
2945 subframe_bps,
2946 lpc_order,
2947 qlp_coeff_precision,
2948 rice_parameter,
2949 min_partition_order,
2950 max_partition_order,
2951 precompute_partition_sums,
2952 encoder->protected_->do_escape_coding,
2953 encoder->protected_->rice_parameter_search_dist,
2954 subframe[!_best_subframe],
2955 partitioned_rice_contents[!_best_subframe]
2956#ifdef WINDOW_DEBUG_OUTPUT
2957 ,frame_header->number.frame_number
2958 ,subframe_number
2959 ,encoder->protected_->apodizations[a]
2960#endif
2961 );
2962 if(_candidate_bits > 0) { /* if == 0, there was a problem quantizing the lpcoeffs */
2963 if(_candidate_bits < _best_bits) {
2964 _best_subframe = !_best_subframe;
2965 _best_bits = _candidate_bits;
2966 }
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002967 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002968 }
2969 }
2970 }
2971 }
2972 }
2973 }
Josh Coalson5f2b46d2004-11-09 01:34:01 +00002974#endif /* !defined FLAC__INTEGER_ONLY_LIBRARY */
Josh Coalson94e02cd2001-01-25 10:41:06 +00002975 }
2976 }
2977
Josh Coalson72695802002-10-11 06:25:16 +00002978 /* under rare circumstances this can happen when all but lpc subframe types are disabled: */
2979 if(_best_bits == UINT_MAX) {
2980 FLAC__ASSERT(_best_subframe == 0);
2981 _best_bits = evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, subframe_bps, subframe[_best_subframe]);
2982 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002983
Josh Coalson94e02cd2001-01-25 10:41:06 +00002984 *best_subframe = _best_subframe;
2985 *best_bits = _best_bits;
2986
2987 return true;
2988}
2989
Josh Coalson6fe72f72002-08-20 04:01:59 +00002990FLAC__bool add_subframe_(
2991 FLAC__StreamEncoder *encoder,
2992 const FLAC__FrameHeader *frame_header,
2993 unsigned subframe_bps,
2994 const FLAC__Subframe *subframe,
2995 FLAC__BitBuffer *frame
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00002996#ifdef WINDOW_DEBUG_OUTPUT
2997,unsigned subframe_bits
2998#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +00002999)
Josh Coalson94e02cd2001-01-25 10:41:06 +00003000{
3001 switch(subframe->type) {
3002 case FLAC__SUBFRAME_TYPE_CONSTANT:
Josh Coalson82b73242001-03-28 22:17:05 +00003003 if(!FLAC__subframe_add_constant(&(subframe->data.constant), subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalson6b21f662006-09-13 01:42:27 +00003004 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003005 return false;
3006 }
3007 break;
3008 case FLAC__SUBFRAME_TYPE_FIXED:
Josh Coalson82b73242001-03-28 22:17:05 +00003009 if(!FLAC__subframe_add_fixed(&(subframe->data.fixed), frame_header->blocksize - subframe->data.fixed.order, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalson6b21f662006-09-13 01:42:27 +00003010 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003011 return false;
3012 }
3013 break;
3014 case FLAC__SUBFRAME_TYPE_LPC:
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00003015#ifdef WINDOW_DEBUG_OUTPUT
3016 fprintf(stderr, "WIN:\tframe=%u\tsubframe=?\torder=%u\twindow=%s\tbits=%u\n", frame_header->number.frame_number, subframe->data.lpc.order, subframe->data.lpc.window_type, subframe_bits);
3017#endif
Josh Coalson82b73242001-03-28 22:17:05 +00003018 if(!FLAC__subframe_add_lpc(&(subframe->data.lpc), frame_header->blocksize - subframe->data.lpc.order, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalson6b21f662006-09-13 01:42:27 +00003019 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003020 return false;
3021 }
3022 break;
3023 case FLAC__SUBFRAME_TYPE_VERBATIM:
Josh Coalson82b73242001-03-28 22:17:05 +00003024 if(!FLAC__subframe_add_verbatim(&(subframe->data.verbatim), frame_header->blocksize, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalson6b21f662006-09-13 01:42:27 +00003025 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003026 return false;
3027 }
3028 break;
3029 default:
Josh Coalson1b689822001-05-31 20:11:02 +00003030 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00003031 }
3032
3033 return true;
3034}
3035
Josh Coalson6fe72f72002-08-20 04:01:59 +00003036unsigned evaluate_constant_subframe_(
3037 const FLAC__int32 signal,
3038 unsigned subframe_bps,
3039 FLAC__Subframe *subframe
3040)
Josh Coalson94e02cd2001-01-25 10:41:06 +00003041{
3042 subframe->type = FLAC__SUBFRAME_TYPE_CONSTANT;
3043 subframe->data.constant.value = signal;
3044
Josh Coalson82b73242001-03-28 22:17:05 +00003045 return FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + subframe_bps;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003046}
3047
Josh Coalson6fe72f72002-08-20 04:01:59 +00003048unsigned evaluate_fixed_subframe_(
3049 FLAC__StreamEncoder *encoder,
3050 const FLAC__int32 signal[],
3051 FLAC__int32 residual[],
3052 FLAC__uint32 abs_residual[],
3053 FLAC__uint64 abs_residual_partition_sums[],
3054 unsigned raw_bits_per_partition[],
3055 unsigned blocksize,
3056 unsigned subframe_bps,
3057 unsigned order,
3058 unsigned rice_parameter,
3059 unsigned min_partition_order,
3060 unsigned max_partition_order,
3061 FLAC__bool precompute_partition_sums,
3062 FLAC__bool do_escape_coding,
3063 unsigned rice_parameter_search_dist,
3064 FLAC__Subframe *subframe,
3065 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
3066)
Josh Coalson94e02cd2001-01-25 10:41:06 +00003067{
3068 unsigned i, residual_bits;
3069 const unsigned residual_samples = blocksize - order;
3070
3071 FLAC__fixed_compute_residual(signal+order, residual_samples, order, residual);
3072
3073 subframe->type = FLAC__SUBFRAME_TYPE_FIXED;
3074
3075 subframe->data.fixed.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
Josh Coalsona37ba462002-08-19 21:36:39 +00003076 subframe->data.fixed.entropy_coding_method.data.partitioned_rice.contents = partitioned_rice_contents;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003077 subframe->data.fixed.residual = residual;
3078
Josh Coalson6fe72f72002-08-20 04:01:59 +00003079 residual_bits =
3080 find_best_partition_order_(
3081 encoder->private_,
3082 residual,
3083 abs_residual,
3084 abs_residual_partition_sums,
3085 raw_bits_per_partition,
3086 residual_samples,
3087 order,
3088 rice_parameter,
3089 min_partition_order,
3090 max_partition_order,
3091 precompute_partition_sums,
3092 do_escape_coding,
3093 rice_parameter_search_dist,
3094 &subframe->data.fixed.entropy_coding_method.data.partitioned_rice
3095 );
Josh Coalson94e02cd2001-01-25 10:41:06 +00003096
3097 subframe->data.fixed.order = order;
3098 for(i = 0; i < order; i++)
3099 subframe->data.fixed.warmup[i] = signal[i];
3100
Josh Coalson82b73242001-03-28 22:17:05 +00003101 return FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + (order * subframe_bps) + residual_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003102}
3103
Josh Coalson5f2b46d2004-11-09 01:34:01 +00003104#ifndef FLAC__INTEGER_ONLY_LIBRARY
Josh Coalson6fe72f72002-08-20 04:01:59 +00003105unsigned evaluate_lpc_subframe_(
3106 FLAC__StreamEncoder *encoder,
3107 const FLAC__int32 signal[],
3108 FLAC__int32 residual[],
3109 FLAC__uint32 abs_residual[],
3110 FLAC__uint64 abs_residual_partition_sums[],
3111 unsigned raw_bits_per_partition[],
3112 const FLAC__real lp_coeff[],
3113 unsigned blocksize,
3114 unsigned subframe_bps,
3115 unsigned order,
3116 unsigned qlp_coeff_precision,
3117 unsigned rice_parameter,
3118 unsigned min_partition_order,
3119 unsigned max_partition_order,
3120 FLAC__bool precompute_partition_sums,
3121 FLAC__bool do_escape_coding,
3122 unsigned rice_parameter_search_dist,
3123 FLAC__Subframe *subframe,
3124 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00003125#ifdef WINDOW_DEBUG_OUTPUT
3126 ,unsigned frame_number
3127 ,unsigned subframe_number
3128 ,FLAC__ApodizationSpecification aspec
3129#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +00003130)
Josh Coalson94e02cd2001-01-25 10:41:06 +00003131{
Josh Coalson77e3f312001-06-23 03:03:24 +00003132 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00003133 unsigned i, residual_bits;
3134 int quantization, ret;
3135 const unsigned residual_samples = blocksize - order;
3136
Josh Coalson20ac2c12002-08-30 05:47:14 +00003137 /* try to keep qlp coeff precision such that only 32-bit math is required for decode of <=16bps streams */
3138 if(subframe_bps <= 16) {
3139 FLAC__ASSERT(order > 0);
3140 FLAC__ASSERT(order <= FLAC__MAX_LPC_ORDER);
3141 qlp_coeff_precision = min(qlp_coeff_precision, 32 - subframe_bps - FLAC__bitmath_ilog2(order));
3142 }
3143
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00003144#ifdef WINDOW_DEBUG_OUTPUT
3145 if (aspec.type == FLAC__APODIZATION_GAUSS)
3146 snprintf(subframe->data.lpc.window_type, sizeof subframe->data.lpc.window_type, "%s(%0.5f)", winstr[aspec.type], aspec.parameters.gauss.stddev);
3147 else if (aspec.type == FLAC__APODIZATION_TUKEY)
3148 snprintf(subframe->data.lpc.window_type, sizeof subframe->data.lpc.window_type, "%s(%0.5f)", winstr[aspec.type], aspec.parameters.tukey.p);
3149 else
3150 strncpy(subframe->data.lpc.window_type, winstr[aspec.type], sizeof subframe->data.lpc.window_type);
3151#endif
3152
Josh Coalsonc9c0d132002-10-04 05:29:05 +00003153 ret = FLAC__lpc_quantize_coefficients(lp_coeff, order, qlp_coeff_precision, qlp_coeff, &quantization);
Josh Coalson94e02cd2001-01-25 10:41:06 +00003154 if(ret != 0)
3155 return 0; /* this is a hack to indicate to the caller that we can't do lp at this order on this subframe */
3156
Josh Coalsonfb9d18f2002-10-21 07:04:07 +00003157 if(subframe_bps + qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32)
3158 if(subframe_bps <= 16 && qlp_coeff_precision <= 16)
3159 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit(signal+order, residual_samples, qlp_coeff, order, quantization, residual);
3160 else
3161 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients(signal+order, residual_samples, qlp_coeff, order, quantization, residual);
Josh Coalsonc9c0d132002-10-04 05:29:05 +00003162 else
3163 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_64bit(signal+order, residual_samples, qlp_coeff, order, quantization, residual);
Josh Coalson94e02cd2001-01-25 10:41:06 +00003164
3165 subframe->type = FLAC__SUBFRAME_TYPE_LPC;
3166
3167 subframe->data.lpc.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
Josh Coalsona37ba462002-08-19 21:36:39 +00003168 subframe->data.lpc.entropy_coding_method.data.partitioned_rice.contents = partitioned_rice_contents;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003169 subframe->data.lpc.residual = residual;
3170
Josh Coalson6fe72f72002-08-20 04:01:59 +00003171 residual_bits =
3172 find_best_partition_order_(
3173 encoder->private_,
3174 residual,
3175 abs_residual,
3176 abs_residual_partition_sums,
3177 raw_bits_per_partition,
3178 residual_samples,
3179 order,
3180 rice_parameter,
3181 min_partition_order,
3182 max_partition_order,
3183 precompute_partition_sums,
3184 do_escape_coding,
3185 rice_parameter_search_dist,
3186 &subframe->data.fixed.entropy_coding_method.data.partitioned_rice
3187 );
Josh Coalson94e02cd2001-01-25 10:41:06 +00003188
3189 subframe->data.lpc.order = order;
3190 subframe->data.lpc.qlp_coeff_precision = qlp_coeff_precision;
3191 subframe->data.lpc.quantization_level = quantization;
Josh Coalson77e3f312001-06-23 03:03:24 +00003192 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);
Josh Coalson94e02cd2001-01-25 10:41:06 +00003193 for(i = 0; i < order; i++)
3194 subframe->data.lpc.warmup[i] = signal[i];
3195
Josh Coalsonbf0f52c2006-04-25 06:38:43 +00003196#ifdef WINDOW_DEBUG_OUTPUT
3197 fprintf(stderr, "SWIN:\tframe=%u\tsubframe=%u\torder=%u\twindow=%s\tbits=%u\n", frame_number, subframe_number, order, subframe->data.lpc.window_type, FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN + FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN + (order * (qlp_coeff_precision + subframe_bps)) + residual_bits);
3198#endif
Josh Coalson82b73242001-03-28 22:17:05 +00003199 return FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN + FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN + (order * (qlp_coeff_precision + subframe_bps)) + residual_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003200}
Josh Coalson5f2b46d2004-11-09 01:34:01 +00003201#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00003202
Josh Coalson6fe72f72002-08-20 04:01:59 +00003203unsigned evaluate_verbatim_subframe_(
3204 const FLAC__int32 signal[],
3205 unsigned blocksize,
3206 unsigned subframe_bps,
3207 FLAC__Subframe *subframe
3208)
Josh Coalson94e02cd2001-01-25 10:41:06 +00003209{
3210 subframe->type = FLAC__SUBFRAME_TYPE_VERBATIM;
3211
3212 subframe->data.verbatim.data = signal;
3213
Josh Coalson82b73242001-03-28 22:17:05 +00003214 return FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + (blocksize * subframe_bps);
Josh Coalson94e02cd2001-01-25 10:41:06 +00003215}
3216
Josh Coalson6fe72f72002-08-20 04:01:59 +00003217unsigned find_best_partition_order_(
3218 FLAC__StreamEncoderPrivate *private_,
3219 const FLAC__int32 residual[],
3220 FLAC__uint32 abs_residual[],
3221 FLAC__uint64 abs_residual_partition_sums[],
3222 unsigned raw_bits_per_partition[],
3223 unsigned residual_samples,
3224 unsigned predictor_order,
3225 unsigned rice_parameter,
3226 unsigned min_partition_order,
3227 unsigned max_partition_order,
3228 FLAC__bool precompute_partition_sums,
3229 FLAC__bool do_escape_coding,
3230 unsigned rice_parameter_search_dist,
3231 FLAC__EntropyCodingMethod_PartitionedRice *best_partitioned_rice
3232)
Josh Coalson94e02cd2001-01-25 10:41:06 +00003233{
Josh Coalson77e3f312001-06-23 03:03:24 +00003234 FLAC__int32 r;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003235 unsigned residual_bits, best_residual_bits = 0;
Josh Coalsonafcd8772001-04-18 22:59:25 +00003236 unsigned residual_sample;
Josh Coalson8084b052001-11-01 00:27:29 +00003237 unsigned best_parameters_index = 0;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003238 const unsigned blocksize = residual_samples + predictor_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003239
Josh Coalson2051dd42001-04-12 22:22:34 +00003240 /* compute abs(residual) for use later */
3241 for(residual_sample = 0; residual_sample < residual_samples; residual_sample++) {
3242 r = residual[residual_sample];
Josh Coalson77e3f312001-06-23 03:03:24 +00003243 abs_residual[residual_sample] = (FLAC__uint32)(r<0? -r : r);
Josh Coalson2051dd42001-04-12 22:22:34 +00003244 }
3245
Josh Coalsonb7023aa2002-08-17 15:23:43 +00003246 max_partition_order = FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(max_partition_order, blocksize, predictor_order);
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003247 min_partition_order = min(min_partition_order, max_partition_order);
3248
Josh Coalson8395d022001-07-12 21:25:22 +00003249 if(precompute_partition_sums) {
3250 int partition_order;
3251 unsigned sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003252
Josh Coalsonf1eff452002-07-31 07:05:33 +00003253 precompute_partition_info_sums_(abs_residual, abs_residual_partition_sums, residual_samples, predictor_order, min_partition_order, max_partition_order);
Josh Coalson8395d022001-07-12 21:25:22 +00003254
3255 if(do_escape_coding)
Josh Coalsonf1eff452002-07-31 07:05:33 +00003256 precompute_partition_info_escapes_(residual, raw_bits_per_partition, residual_samples, predictor_order, min_partition_order, max_partition_order);
Josh Coalson8395d022001-07-12 21:25:22 +00003257
3258 for(partition_order = (int)max_partition_order, sum = 0; partition_order >= (int)min_partition_order; partition_order--) {
3259#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00003260 if(!
3261 set_partitioned_rice_with_precompute_(
3262 residual,
3263 abs_residual_partition_sums+sum,
3264 raw_bits_per_partition+sum,
3265 residual_samples,
3266 predictor_order,
3267 rice_parameter,
3268 rice_parameter_search_dist,
3269 (unsigned)partition_order,
3270 do_escape_coding,
3271 &private_->partitioned_rice_contents_extra[!best_parameters_index],
3272 &residual_bits
3273 )
3274 )
Josh Coalsonafcd8772001-04-18 22:59:25 +00003275#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00003276 if(!
3277 set_partitioned_rice_with_precompute_(
3278 abs_residual,
3279 abs_residual_partition_sums+sum,
3280 raw_bits_per_partition+sum,
3281 residual_samples,
3282 predictor_order,
3283 rice_parameter,
3284 rice_parameter_search_dist,
3285 (unsigned)partition_order,
3286 do_escape_coding,
3287 &private_->partitioned_rice_contents_extra[!best_parameters_index],
3288 &residual_bits
3289 )
3290 )
Josh Coalson8395d022001-07-12 21:25:22 +00003291#endif
3292 {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003293 FLAC__ASSERT(best_residual_bits != 0);
3294 break;
Josh Coalson8395d022001-07-12 21:25:22 +00003295 }
3296 sum += 1u << partition_order;
3297 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
3298 best_residual_bits = residual_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00003299 best_parameters_index = !best_parameters_index;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00003300 best_partitioned_rice->order = partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00003301 }
Josh Coalsonafcd8772001-04-18 22:59:25 +00003302 }
3303 }
Josh Coalson8395d022001-07-12 21:25:22 +00003304 else {
3305 unsigned partition_order;
3306 for(partition_order = min_partition_order; partition_order <= max_partition_order; partition_order++) {
3307#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00003308 if(!
3309 set_partitioned_rice_(
3310 abs_residual,
3311 residual,
3312 residual_samples,
3313 predictor_order,
3314 rice_parameter,
3315 rice_parameter_search_dist,
3316 partition_order,
3317 &private_->partitioned_rice_contents_extra[!best_parameters_index],
3318 &residual_bits
3319 )
3320 )
Josh Coalson8395d022001-07-12 21:25:22 +00003321#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00003322 if(!
3323 set_partitioned_rice_(
3324 abs_residual,
3325 residual_samples,
3326 predictor_order,
3327 rice_parameter,
3328 rice_parameter_search_dist,
3329 partition_order,
3330 &private_->partitioned_rice_contents_extra[!best_parameters_index],
3331 &residual_bits
3332 )
3333 )
Josh Coalsonafcd8772001-04-18 22:59:25 +00003334#endif
Josh Coalson8395d022001-07-12 21:25:22 +00003335 {
3336 FLAC__ASSERT(best_residual_bits != 0);
3337 break;
3338 }
3339 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
3340 best_residual_bits = residual_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00003341 best_parameters_index = !best_parameters_index;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00003342 best_partitioned_rice->order = partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00003343 }
3344 }
3345 }
3346
Josh Coalsona37ba462002-08-19 21:36:39 +00003347 /*
Josh Coalson20ac2c12002-08-30 05:47:14 +00003348 * We are allowed to de-const the pointer based on our special knowledge;
Josh Coalsona37ba462002-08-19 21:36:39 +00003349 * it is const to the outside world.
3350 */
3351 {
3352 FLAC__EntropyCodingMethod_PartitionedRiceContents* best_partitioned_rice_contents = (FLAC__EntropyCodingMethod_PartitionedRiceContents*)best_partitioned_rice->contents;
3353 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(best_partitioned_rice_contents, max(6, best_partitioned_rice->order));
3354 memcpy(best_partitioned_rice_contents->parameters, private_->partitioned_rice_contents_extra[best_parameters_index].parameters, sizeof(unsigned)*(1<<(best_partitioned_rice->order)));
3355 memcpy(best_partitioned_rice_contents->raw_bits, private_->partitioned_rice_contents_extra[best_parameters_index].raw_bits, sizeof(unsigned)*(1<<(best_partitioned_rice->order)));
3356 }
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003357
3358 return best_residual_bits;
3359}
3360
Josh Coalson6fe72f72002-08-20 04:01:59 +00003361void precompute_partition_info_sums_(
3362 const FLAC__uint32 abs_residual[],
3363 FLAC__uint64 abs_residual_partition_sums[],
3364 unsigned residual_samples,
3365 unsigned predictor_order,
3366 unsigned min_partition_order,
3367 unsigned max_partition_order
3368)
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003369{
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003370 int partition_order;
Josh Coalsonaef013c2001-04-24 01:25:42 +00003371 unsigned from_partition, to_partition = 0;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003372 const unsigned blocksize = residual_samples + predictor_order;
3373
Josh Coalsonaef013c2001-04-24 01:25:42 +00003374 /* first do max_partition_order */
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003375 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003376 FLAC__uint64 abs_residual_partition_sum;
Josh Coalson77e3f312001-06-23 03:03:24 +00003377 FLAC__uint32 abs_r;
Josh Coalsonaef013c2001-04-24 01:25:42 +00003378 unsigned partition, partition_sample, partition_samples, residual_sample;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003379 const unsigned partitions = 1u << partition_order;
3380 const unsigned default_partition_samples = blocksize >> partition_order;
3381
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003382 FLAC__ASSERT(default_partition_samples > predictor_order);
3383
3384 for(partition = residual_sample = 0; partition < partitions; partition++) {
3385 partition_samples = default_partition_samples;
3386 if(partition == 0)
3387 partition_samples -= predictor_order;
3388 abs_residual_partition_sum = 0;
3389 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
3390 abs_r = abs_residual[residual_sample];
3391 abs_residual_partition_sum += abs_r;
3392 residual_sample++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003393 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003394 abs_residual_partition_sums[partition] = abs_residual_partition_sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003395 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003396 to_partition = partitions;
3397 break;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003398 }
Josh Coalsonf76a3612001-04-18 02:28:11 +00003399
Josh Coalson8395d022001-07-12 21:25:22 +00003400 /* now merge partitions for lower orders */
Josh Coalson6bd17572001-05-25 19:02:01 +00003401 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003402 FLAC__uint64 s;
Josh Coalsonaef013c2001-04-24 01:25:42 +00003403 unsigned i;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003404 const unsigned partitions = 1u << partition_order;
3405 for(i = 0; i < partitions; i++) {
Josh Coalsonaef013c2001-04-24 01:25:42 +00003406 s = abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00003407 from_partition++;
Josh Coalsonaef013c2001-04-24 01:25:42 +00003408 abs_residual_partition_sums[to_partition] = s + abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00003409 from_partition++;
3410 to_partition++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003411 }
3412 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00003413}
Josh Coalson8395d022001-07-12 21:25:22 +00003414
Josh Coalson6fe72f72002-08-20 04:01:59 +00003415void precompute_partition_info_escapes_(
3416 const FLAC__int32 residual[],
3417 unsigned raw_bits_per_partition[],
3418 unsigned residual_samples,
3419 unsigned predictor_order,
3420 unsigned min_partition_order,
3421 unsigned max_partition_order
3422)
Josh Coalson8395d022001-07-12 21:25:22 +00003423{
3424 int partition_order;
3425 unsigned from_partition, to_partition = 0;
3426 const unsigned blocksize = residual_samples + predictor_order;
3427
3428 /* first do max_partition_order */
3429 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
3430 FLAC__int32 r, residual_partition_min, residual_partition_max;
3431 unsigned silog2_min, silog2_max;
3432 unsigned partition, partition_sample, partition_samples, residual_sample;
3433 const unsigned partitions = 1u << partition_order;
3434 const unsigned default_partition_samples = blocksize >> partition_order;
3435
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003436 FLAC__ASSERT(default_partition_samples > predictor_order);
3437
3438 for(partition = residual_sample = 0; partition < partitions; partition++) {
3439 partition_samples = default_partition_samples;
3440 if(partition == 0)
3441 partition_samples -= predictor_order;
3442 residual_partition_min = residual_partition_max = 0;
3443 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
3444 r = residual[residual_sample];
3445 if(r < residual_partition_min)
3446 residual_partition_min = r;
3447 else if(r > residual_partition_max)
3448 residual_partition_max = r;
3449 residual_sample++;
Josh Coalson8395d022001-07-12 21:25:22 +00003450 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003451 silog2_min = FLAC__bitmath_silog2(residual_partition_min);
3452 silog2_max = FLAC__bitmath_silog2(residual_partition_max);
3453 raw_bits_per_partition[partition] = max(silog2_min, silog2_max);
Josh Coalson8395d022001-07-12 21:25:22 +00003454 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003455 to_partition = partitions;
Josh Coalson03f54be2006-05-18 00:04:14 +00003456 break; /*@@@@@@ yuck, should remove the 'for' loop instead */
Josh Coalson8395d022001-07-12 21:25:22 +00003457 }
3458
3459 /* now merge partitions for lower orders */
3460 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
3461 unsigned m;
3462 unsigned i;
3463 const unsigned partitions = 1u << partition_order;
3464 for(i = 0; i < partitions; i++) {
3465 m = raw_bits_per_partition[from_partition];
3466 from_partition++;
3467 raw_bits_per_partition[to_partition] = max(m, raw_bits_per_partition[from_partition]);
3468 from_partition++;
3469 to_partition++;
3470 }
3471 }
3472}
Josh Coalson94e02cd2001-01-25 10:41:06 +00003473
Josh Coalson352e0f62001-03-20 22:55:50 +00003474#ifdef VARIABLE_RICE_BITS
3475#undef VARIABLE_RICE_BITS
3476#endif
Josh Coalson8395d022001-07-12 21:25:22 +00003477#ifndef DONT_ESTIMATE_RICE_BITS
Josh Coalson352e0f62001-03-20 22:55:50 +00003478#define VARIABLE_RICE_BITS(value, parameter) ((value) >> (parameter))
Josh Coalson8395d022001-07-12 21:25:22 +00003479#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00003480
Josh Coalson8395d022001-07-12 21:25:22 +00003481#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00003482FLAC__bool set_partitioned_rice_(
3483 const FLAC__uint32 abs_residual[],
3484 const FLAC__int32 residual[],
3485 const unsigned residual_samples,
3486 const unsigned predictor_order,
3487 const unsigned suggested_rice_parameter,
3488 const unsigned rice_parameter_search_dist,
3489 const unsigned partition_order,
3490 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
3491 unsigned *bits
3492)
Josh Coalson8395d022001-07-12 21:25:22 +00003493#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00003494FLAC__bool set_partitioned_rice_(
3495 const FLAC__uint32 abs_residual[],
3496 const unsigned residual_samples,
3497 const unsigned predictor_order,
3498 const unsigned suggested_rice_parameter,
3499 const unsigned rice_parameter_search_dist,
3500 const unsigned partition_order,
3501 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
3502 unsigned *bits
3503)
Josh Coalson8395d022001-07-12 21:25:22 +00003504#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00003505{
Josh Coalson034dfab2001-04-27 19:10:23 +00003506 unsigned rice_parameter, partition_bits;
3507#ifndef NO_RICE_SEARCH
3508 unsigned best_partition_bits;
3509 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
3510#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00003511 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00003512 unsigned *parameters;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003513
Josh Coalson1b689822001-05-31 20:11:02 +00003514 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
Josh Coalson2051dd42001-04-12 22:22:34 +00003515
Josh Coalsona37ba462002-08-19 21:36:39 +00003516 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order));
3517 parameters = partitioned_rice_contents->parameters;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00003518
Josh Coalson94e02cd2001-01-25 10:41:06 +00003519 if(partition_order == 0) {
3520 unsigned i;
Josh Coalson352e0f62001-03-20 22:55:50 +00003521
Josh Coalson034dfab2001-04-27 19:10:23 +00003522#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00003523 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00003524 if(suggested_rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00003525 min_rice_parameter = 0;
3526 else
Josh Coalson034dfab2001-04-27 19:10:23 +00003527 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
3528 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00003529 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00003530#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00003531 fprintf(stderr, "clipping rice_parameter (%u -> %u) @2\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
3532#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00003533 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00003534 }
3535 }
3536 else
3537 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
3538
3539 best_partition_bits = 0xffffffff;
3540 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
3541#endif
3542#ifdef VARIABLE_RICE_BITS
Josh Coalson8395d022001-07-12 21:25:22 +00003543 const unsigned rice_parameter_estimate = rice_parameter-1;
3544 partition_bits = (1+rice_parameter) * residual_samples;
Josh Coalson8395d022001-07-12 21:25:22 +00003545#else
3546 partition_bits = 0;
3547#endif
3548 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
3549 for(i = 0; i < residual_samples; i++) {
3550#ifdef VARIABLE_RICE_BITS
Josh Coalson8395d022001-07-12 21:25:22 +00003551 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
Josh Coalson8395d022001-07-12 21:25:22 +00003552#else
3553 partition_bits += FLAC__bitbuffer_rice_bits(residual[i], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
3554#endif
3555 }
3556#ifndef NO_RICE_SEARCH
3557 if(partition_bits < best_partition_bits) {
3558 best_rice_parameter = rice_parameter;
3559 best_partition_bits = partition_bits;
3560 }
3561 }
3562#endif
3563 parameters[0] = best_rice_parameter;
3564 bits_ += best_partition_bits;
3565 }
3566 else {
3567 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003568 unsigned partition_samples;
3569 FLAC__uint64 mean, k;
Josh Coalson8395d022001-07-12 21:25:22 +00003570 const unsigned partitions = 1u << partition_order;
3571 for(partition = residual_sample = 0; partition < partitions; partition++) {
3572 partition_samples = (residual_samples+predictor_order) >> partition_order;
3573 if(partition == 0) {
3574 if(partition_samples <= predictor_order)
3575 return false;
3576 else
3577 partition_samples -= predictor_order;
3578 }
3579 mean = 0;
3580 save_residual_sample = residual_sample;
3581 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++)
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003582 mean += abs_residual[residual_sample];
Josh Coalson8395d022001-07-12 21:25:22 +00003583 residual_sample = save_residual_sample;
Josh Coalsonf81b6df2005-02-04 01:34:35 +00003584 /* we are basically calculating the size in bits of the
3585 * average residual magnitude in the partition:
3586 * rice_parameter = floor(log2(mean/partition_samples))
3587 * 'mean' is not a good name for the variable, it is
3588 * actually the sum of magnitudes of all residual values
3589 * in the partition, so the actual mean is
3590 * mean/partition_samples
3591 */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003592 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson8395d022001-07-12 21:25:22 +00003593 ;
Josh Coalson8395d022001-07-12 21:25:22 +00003594 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00003595#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00003596 fprintf(stderr, "clipping rice_parameter (%u -> %u) @3\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
3597#endif
3598 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
3599 }
3600
3601#ifndef NO_RICE_SEARCH
3602 if(rice_parameter_search_dist) {
3603 if(rice_parameter < rice_parameter_search_dist)
3604 min_rice_parameter = 0;
3605 else
3606 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
3607 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
3608 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00003609#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00003610 fprintf(stderr, "clipping rice_parameter (%u -> %u) @4\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
3611#endif
3612 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
3613 }
3614 }
3615 else
3616 min_rice_parameter = max_rice_parameter = rice_parameter;
3617
3618 best_partition_bits = 0xffffffff;
3619 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
3620#endif
3621#ifdef VARIABLE_RICE_BITS
Josh Coalson8395d022001-07-12 21:25:22 +00003622 const unsigned rice_parameter_estimate = rice_parameter-1;
3623 partition_bits = (1+rice_parameter) * partition_samples;
Josh Coalson8395d022001-07-12 21:25:22 +00003624#else
3625 partition_bits = 0;
3626#endif
3627 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
3628 save_residual_sample = residual_sample;
3629 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
3630#ifdef VARIABLE_RICE_BITS
Josh Coalson8395d022001-07-12 21:25:22 +00003631 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
Josh Coalson8395d022001-07-12 21:25:22 +00003632#else
3633 partition_bits += FLAC__bitbuffer_rice_bits(residual[residual_sample], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
3634#endif
3635 }
3636#ifndef NO_RICE_SEARCH
3637 if(rice_parameter != max_rice_parameter)
3638 residual_sample = save_residual_sample;
3639 if(partition_bits < best_partition_bits) {
3640 best_rice_parameter = rice_parameter;
3641 best_partition_bits = partition_bits;
3642 }
3643 }
3644#endif
3645 parameters[partition] = best_rice_parameter;
3646 bits_ += best_partition_bits;
3647 }
3648 }
3649
3650 *bits = bits_;
3651 return true;
3652}
3653
3654#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00003655FLAC__bool set_partitioned_rice_with_precompute_(
3656 const FLAC__int32 residual[],
3657 const FLAC__uint64 abs_residual_partition_sums[],
3658 const unsigned raw_bits_per_partition[],
3659 const unsigned residual_samples,
3660 const unsigned predictor_order,
3661 const unsigned suggested_rice_parameter,
3662 const unsigned rice_parameter_search_dist,
3663 const unsigned partition_order,
3664 const FLAC__bool search_for_escapes,
3665 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
3666 unsigned *bits
3667)
Josh Coalson8395d022001-07-12 21:25:22 +00003668#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00003669FLAC__bool set_partitioned_rice_with_precompute_(
3670 const FLAC__uint32 abs_residual[],
3671 const FLAC__uint64 abs_residual_partition_sums[],
3672 const unsigned raw_bits_per_partition[],
3673 const unsigned residual_samples,
3674 const unsigned predictor_order,
3675 const unsigned suggested_rice_parameter,
3676 const unsigned rice_parameter_search_dist,
3677 const unsigned partition_order,
3678 const FLAC__bool search_for_escapes,
3679 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
3680 unsigned *bits
3681)
Josh Coalson8395d022001-07-12 21:25:22 +00003682#endif
3683{
3684 unsigned rice_parameter, partition_bits;
3685#ifndef NO_RICE_SEARCH
3686 unsigned best_partition_bits;
3687 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
3688#endif
3689 unsigned flat_bits;
3690 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00003691 unsigned *parameters, *raw_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00003692
3693 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
3694
Josh Coalsona37ba462002-08-19 21:36:39 +00003695 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order));
3696 parameters = partitioned_rice_contents->parameters;
3697 raw_bits = partitioned_rice_contents->raw_bits;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00003698
Josh Coalson8395d022001-07-12 21:25:22 +00003699 if(partition_order == 0) {
3700 unsigned i;
3701
3702#ifndef NO_RICE_SEARCH
3703 if(rice_parameter_search_dist) {
3704 if(suggested_rice_parameter < rice_parameter_search_dist)
3705 min_rice_parameter = 0;
3706 else
3707 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
3708 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
3709 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00003710#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00003711 fprintf(stderr, "clipping rice_parameter (%u -> %u) @5\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
3712#endif
3713 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
3714 }
Josh Coalson60f77d72001-04-25 02:16:36 +00003715 }
3716 else
Josh Coalson034dfab2001-04-27 19:10:23 +00003717 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
Josh Coalson2051dd42001-04-12 22:22:34 +00003718
Josh Coalson034dfab2001-04-27 19:10:23 +00003719 best_partition_bits = 0xffffffff;
3720 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
3721#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00003722#ifdef VARIABLE_RICE_BITS
Josh Coalson352e0f62001-03-20 22:55:50 +00003723 const unsigned rice_parameter_estimate = rice_parameter-1;
Josh Coalson034dfab2001-04-27 19:10:23 +00003724 partition_bits = (1+rice_parameter) * residual_samples;
Josh Coalson034dfab2001-04-27 19:10:23 +00003725#else
3726 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003727#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00003728 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson352e0f62001-03-20 22:55:50 +00003729 for(i = 0; i < residual_samples; i++) {
3730#ifdef VARIABLE_RICE_BITS
Josh Coalson2051dd42001-04-12 22:22:34 +00003731 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00003732#else
Josh Coalson2051dd42001-04-12 22:22:34 +00003733 partition_bits += FLAC__bitbuffer_rice_bits(residual[i], rice_parameter); /* NOTE: we will need to pass in residual[] instead of abs_residual[] */
Josh Coalson94e02cd2001-01-25 10:41:06 +00003734#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00003735 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003736#ifndef NO_RICE_SEARCH
3737 if(partition_bits < best_partition_bits) {
3738 best_rice_parameter = rice_parameter;
3739 best_partition_bits = partition_bits;
Josh Coalson352e0f62001-03-20 22:55:50 +00003740 }
3741 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003742#endif
Josh Coalson8395d022001-07-12 21:25:22 +00003743 if(search_for_escapes) {
3744 flat_bits = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN + raw_bits_per_partition[0] * residual_samples;
3745 if(flat_bits <= best_partition_bits) {
3746 raw_bits[0] = raw_bits_per_partition[0];
3747 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
3748 best_partition_bits = flat_bits;
3749 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003750 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003751 parameters[0] = best_rice_parameter;
3752 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003753 }
3754 else {
Josh Coalson4dacd192001-06-06 21:11:44 +00003755 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003756 unsigned partition_samples;
3757 FLAC__uint64 mean, k;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00003758 const unsigned partitions = 1u << partition_order;
Josh Coalson4dacd192001-06-06 21:11:44 +00003759 for(partition = residual_sample = 0; partition < partitions; partition++) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00003760 partition_samples = (residual_samples+predictor_order) >> partition_order;
Josh Coalson034dfab2001-04-27 19:10:23 +00003761 if(partition == 0) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00003762 if(partition_samples <= predictor_order)
3763 return false;
3764 else
3765 partition_samples -= predictor_order;
3766 }
Josh Coalson05d20792001-06-29 23:12:26 +00003767 mean = abs_residual_partition_sums[partition];
Josh Coalsonf81b6df2005-02-04 01:34:35 +00003768 /* we are basically calculating the size in bits of the
3769 * average residual magnitude in the partition:
3770 * rice_parameter = floor(log2(mean/partition_samples))
3771 * 'mean' is not a good name for the variable, it is
3772 * actually the sum of magnitudes of all residual values
3773 * in the partition, so the actual mean is
3774 * mean/partition_samples
3775 */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00003776 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson05d20792001-06-29 23:12:26 +00003777 ;
Josh Coalson8395d022001-07-12 21:25:22 +00003778 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00003779#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00003780 fprintf(stderr, "clipping rice_parameter (%u -> %u) @6\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
3781#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00003782 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00003783 }
Josh Coalson60f77d72001-04-25 02:16:36 +00003784
Josh Coalson034dfab2001-04-27 19:10:23 +00003785#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00003786 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00003787 if(rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00003788 min_rice_parameter = 0;
3789 else
Josh Coalson034dfab2001-04-27 19:10:23 +00003790 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
3791 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00003792 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00003793#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00003794 fprintf(stderr, "clipping rice_parameter (%u -> %u) @7\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
3795#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00003796 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00003797 }
Josh Coalson60f77d72001-04-25 02:16:36 +00003798 }
3799 else
3800 min_rice_parameter = max_rice_parameter = rice_parameter;
Josh Coalson60f77d72001-04-25 02:16:36 +00003801
Josh Coalson034dfab2001-04-27 19:10:23 +00003802 best_partition_bits = 0xffffffff;
3803 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
3804#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00003805#ifdef VARIABLE_RICE_BITS
Josh Coalson034dfab2001-04-27 19:10:23 +00003806 const unsigned rice_parameter_estimate = rice_parameter-1;
3807 partition_bits = (1+rice_parameter) * partition_samples;
Josh Coalson034dfab2001-04-27 19:10:23 +00003808#else
3809 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003810#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00003811 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson4dacd192001-06-06 21:11:44 +00003812 save_residual_sample = residual_sample;
3813 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
Josh Coalson352e0f62001-03-20 22:55:50 +00003814#ifdef VARIABLE_RICE_BITS
Josh Coalson4dacd192001-06-06 21:11:44 +00003815 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00003816#else
Josh Coalson4dacd192001-06-06 21:11:44 +00003817 partition_bits += FLAC__bitbuffer_rice_bits(residual[residual_sample], rice_parameter); /* NOTE: we will need to pass in residual[] instead of abs_residual[] */
Josh Coalson94e02cd2001-01-25 10:41:06 +00003818#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00003819 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003820#ifndef NO_RICE_SEARCH
Josh Coalson4dacd192001-06-06 21:11:44 +00003821 if(rice_parameter != max_rice_parameter)
3822 residual_sample = save_residual_sample;
Josh Coalson034dfab2001-04-27 19:10:23 +00003823 if(partition_bits < best_partition_bits) {
3824 best_rice_parameter = rice_parameter;
3825 best_partition_bits = partition_bits;
3826 }
Josh Coalson2051dd42001-04-12 22:22:34 +00003827 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003828#endif
Josh Coalson8395d022001-07-12 21:25:22 +00003829 if(search_for_escapes) {
3830 flat_bits = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN + raw_bits_per_partition[partition] * partition_samples;
3831 if(flat_bits <= best_partition_bits) {
3832 raw_bits[partition] = raw_bits_per_partition[partition];
3833 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
3834 best_partition_bits = flat_bits;
3835 }
Josh Coalson2051dd42001-04-12 22:22:34 +00003836 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003837 parameters[partition] = best_rice_parameter;
3838 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003839 }
3840 }
3841
3842 *bits = bits_;
3843 return true;
3844}
Josh Coalson859bc542001-03-27 22:22:27 +00003845
Josh Coalsonf1eff452002-07-31 07:05:33 +00003846unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples)
Josh Coalson859bc542001-03-27 22:22:27 +00003847{
3848 unsigned i, shift;
Josh Coalson77e3f312001-06-23 03:03:24 +00003849 FLAC__int32 x = 0;
Josh Coalson859bc542001-03-27 22:22:27 +00003850
3851 for(i = 0; i < samples && !(x&1); i++)
3852 x |= signal[i];
3853
3854 if(x == 0) {
3855 shift = 0;
3856 }
3857 else {
3858 for(shift = 0; !(x&1); shift++)
3859 x >>= 1;
3860 }
3861
3862 if(shift > 0) {
3863 for(i = 0; i < samples; i++)
3864 signal[i] >>= shift;
3865 }
3866
3867 return shift;
3868}
Josh Coalsond86e03b2002-08-03 21:56:15 +00003869
3870void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
3871{
3872 unsigned channel;
3873
3874 for(channel = 0; channel < channels; channel++)
3875 memcpy(&fifo->data[channel][fifo->tail], &input[channel][input_offset], sizeof(FLAC__int32) * wide_samples);
3876
3877 fifo->tail += wide_samples;
3878
3879 FLAC__ASSERT(fifo->tail <= fifo->size);
3880}
3881
3882void append_to_verify_fifo_interleaved_(verify_input_fifo *fifo, const FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
3883{
3884 unsigned channel;
3885 unsigned sample, wide_sample;
3886 unsigned tail = fifo->tail;
3887
3888 sample = input_offset * channels;
3889 for(wide_sample = 0; wide_sample < wide_samples; wide_sample++) {
3890 for(channel = 0; channel < channels; channel++)
3891 fifo->data[channel][tail] = input[sample++];
3892 tail++;
3893 }
3894 fifo->tail = tail;
3895
3896 FLAC__ASSERT(fifo->tail <= fifo->size);
3897}
3898
3899FLAC__StreamDecoderReadStatus verify_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data)
3900{
3901 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
3902 const unsigned encoded_bytes = encoder->private_->verify.output.bytes;
3903 (void)decoder;
3904
3905 if(encoder->private_->verify.needs_magic_hack) {
3906 FLAC__ASSERT(*bytes >= FLAC__STREAM_SYNC_LENGTH);
3907 *bytes = FLAC__STREAM_SYNC_LENGTH;
3908 memcpy(buffer, FLAC__STREAM_SYNC_STRING, *bytes);
3909 encoder->private_->verify.needs_magic_hack = false;
3910 }
3911 else {
3912 if(encoded_bytes == 0) {
Josh Coalsonfc2b7372002-08-16 05:39:34 +00003913 /*
3914 * If we get here, a FIFO underflow has occurred,
3915 * which means there is a bug somewhere.
3916 */
3917 FLAC__ASSERT(0);
Josh Coalsond86e03b2002-08-03 21:56:15 +00003918 return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
3919 }
3920 else if(encoded_bytes < *bytes)
3921 *bytes = encoded_bytes;
3922 memcpy(buffer, encoder->private_->verify.output.data, *bytes);
3923 encoder->private_->verify.output.data += *bytes;
3924 encoder->private_->verify.output.bytes -= *bytes;
3925 }
3926
3927 return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
3928}
3929
3930FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
3931{
3932 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder *)client_data;
3933 unsigned channel;
3934 const unsigned channels = FLAC__stream_decoder_get_channels(decoder);
3935 const unsigned blocksize = frame->header.blocksize;
3936 const unsigned bytes_per_block = sizeof(FLAC__int32) * blocksize;
3937
3938 for(channel = 0; channel < channels; channel++) {
3939 if(0 != memcmp(buffer[channel], encoder->private_->verify.input_fifo.data[channel], bytes_per_block)) {
3940 unsigned i, sample = 0;
3941 FLAC__int32 expect = 0, got = 0;
3942
3943 for(i = 0; i < blocksize; i++) {
3944 if(buffer[channel][i] != encoder->private_->verify.input_fifo.data[channel][i]) {
3945 sample = i;
3946 expect = (FLAC__int32)encoder->private_->verify.input_fifo.data[channel][i];
3947 got = (FLAC__int32)buffer[channel][i];
3948 break;
3949 }
3950 }
3951 FLAC__ASSERT(i < blocksize);
3952 FLAC__ASSERT(frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER);
3953 encoder->private_->verify.error_stats.absolute_sample = frame->header.number.sample_number + sample;
Josh Coalson5f39e9f2002-08-21 05:27:01 +00003954 encoder->private_->verify.error_stats.frame_number = (unsigned)(frame->header.number.sample_number / blocksize);
Josh Coalsond86e03b2002-08-03 21:56:15 +00003955 encoder->private_->verify.error_stats.channel = channel;
3956 encoder->private_->verify.error_stats.sample = sample;
3957 encoder->private_->verify.error_stats.expected = expect;
3958 encoder->private_->verify.error_stats.got = got;
3959 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA;
3960 return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
3961 }
3962 }
3963 /* dequeue the frame from the fifo */
3964 for(channel = 0; channel < channels; channel++) {
3965 memmove(&encoder->private_->verify.input_fifo.data[channel][0], &encoder->private_->verify.input_fifo.data[channel][blocksize], encoder->private_->verify.input_fifo.tail - blocksize);
3966 }
3967 encoder->private_->verify.input_fifo.tail -= blocksize;
3968 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
3969}
3970
3971void verify_metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
3972{
3973 (void)decoder, (void)metadata, (void)client_data;
3974}
3975
3976void verify_error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
3977{
3978 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
3979 (void)decoder, (void)status;
3980 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
3981}
Josh Coalson6b21f662006-09-13 01:42:27 +00003982
3983FLAC__StreamEncoderSeekStatus file_seek_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data)
3984{
3985 (void)client_data;
3986
3987 if(fseeko(encoder->private_->file, (off_t)absolute_byte_offset, SEEK_SET) < 0)
3988 return FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR;
3989 else
3990 return FLAC__STREAM_ENCODER_SEEK_STATUS_OK;
3991}
3992
3993FLAC__StreamEncoderTellStatus file_tell_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
3994{
3995 off_t offset;
3996
3997 (void)client_data;
3998
3999 offset = ftello(encoder->private_->file);
4000
4001 if(offset < 0) {
4002 return FLAC__STREAM_ENCODER_TELL_STATUS_ERROR;
4003 }
4004 else {
4005 *absolute_byte_offset = (FLAC__uint64)offset;
4006 return FLAC__STREAM_ENCODER_TELL_STATUS_OK;
4007 }
4008}
4009
4010#ifdef FLAC__VALGRIND_TESTING
4011static size_t local__fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
4012{
4013 size_t ret = fwrite(ptr, size, nmemb, stream);
4014 if(!ferror(stream))
4015 fflush(stream);
4016 return ret;
4017}
4018#else
4019#define local__fwrite fwrite
4020#endif
4021
4022FLAC__StreamEncoderWriteStatus file_write_callback_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data)
4023{
4024 (void)client_data, (void)samples, (void)current_frame;
4025
4026 if(local__fwrite(buffer, sizeof(FLAC__byte), bytes, encoder->private_->file) == bytes) {
4027 if(0 != encoder->private_->progress_callback && samples > 0)
4028 encoder->private_->progress_callback(encoder, encoder->private_->bytes_written, encoder->private_->samples_written, encoder->private_->frames_written, encoder->private_->total_frames_estimate, encoder->private_->client_data);
4029 return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
4030 }
4031 else
4032 return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
4033}
4034
4035/*
4036 * This will forcibly set stdout to binary mode (for OSes that require it)
4037 */
4038FILE *get_binary_stdout_()
4039{
4040 /* if something breaks here it is probably due to the presence or
4041 * absence of an underscore before the identifiers 'setmode',
4042 * 'fileno', and/or 'O_BINARY'; check your system header files.
4043 */
4044#if defined _MSC_VER || defined __MINGW32__
4045 _setmode(_fileno(stdout), _O_BINARY);
4046#elif defined __CYGWIN__
4047 /* almost certainly not needed for any modern Cygwin, but let's be safe... */
4048 setmode(_fileno(stdout), _O_BINARY);
4049#elif defined __EMX__
4050 setmode(fileno(stdout), O_BINARY);
4051#endif
4052
4053 return stdout;
4054}