blob: 10494145e8dbb5aa75baaf9289975e5a4f4fd013 [file] [log] [blame]
Josh Coalson26560dd2001-02-08 00:38:41 +00001/* libFLAC - Free Lossless Audio Codec library
Josh Coalson95643902004-01-17 04:14:43 +00002 * Copyright (C) 2000,2001,2002,2003,2004 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 Coalsone6b3bbe2002-10-08 06:03:25 +000032#include <limits.h>
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000033#include <stdio.h>
34#include <stdlib.h> /* for malloc() */
35#include <string.h> /* for memcpy() */
Josh Coalson1b689822001-05-31 20:11:02 +000036#include "FLAC/assert.h"
Josh Coalsond86e03b2002-08-03 21:56:15 +000037#include "FLAC/stream_decoder.h"
Josh Coalson0a15c142001-06-13 17:59:57 +000038#include "protected/stream_encoder.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000039#include "private/bitbuffer.h"
Josh Coalsoneef56702001-03-30 00:45:22 +000040#include "private/bitmath.h"
Josh Coalson215af572001-03-27 01:15:58 +000041#include "private/crc.h"
Josh Coalsoncf30f502001-05-23 20:57:44 +000042#include "private/cpu.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000043#include "private/fixed.h"
Josh Coalsonb7023aa2002-08-17 15:23:43 +000044#include "private/format.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000045#include "private/lpc.h"
Josh Coalsonfa37f1c2001-01-12 23:55:11 +000046#include "private/md5.h"
Josh Coalsond98c43d2001-05-13 05:17:01 +000047#include "private/memory.h"
Josh Coalsonb7023aa2002-08-17 15:23:43 +000048#include "private/stream_encoder_framing.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000049
Josh Coalson5e31be12002-12-04 07:07:35 +000050#ifdef HAVE_CONFIG_H
51#include <config.h>
52#endif
53
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000054#ifdef min
55#undef min
56#endif
57#define min(x,y) ((x)<(y)?(x):(y))
58
59#ifdef max
60#undef max
61#endif
62#define max(x,y) ((x)>(y)?(x):(y))
63
Josh Coalsond86e03b2002-08-03 21:56:15 +000064typedef struct {
65 FLAC__int32 *data[FLAC__MAX_CHANNELS];
66 unsigned size; /* of each data[] in samples */
67 unsigned tail;
68} verify_input_fifo;
69
70typedef struct {
71 const FLAC__byte *data;
72 unsigned capacity;
73 unsigned bytes;
74} verify_output;
75
76typedef enum {
77 ENCODER_IN_MAGIC = 0,
78 ENCODER_IN_METADATA = 1,
79 ENCODER_IN_AUDIO = 2
80} EncoderStateHint;
81
Josh Coalson0a15c142001-06-13 17:59:57 +000082/***********************************************************************
83 *
84 * Private class method prototypes
85 *
86 ***********************************************************************/
87
Josh Coalsonf1eff452002-07-31 07:05:33 +000088static void set_defaults_(FLAC__StreamEncoder *encoder);
89static void free_(FLAC__StreamEncoder *encoder);
90static FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size);
Josh Coalsond86e03b2002-08-03 21:56:15 +000091static FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples);
Josh Coalsonf1eff452002-07-31 07:05:33 +000092static FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame);
93static FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame);
Josh Coalson6fe72f72002-08-20 04:01:59 +000094
95static FLAC__bool process_subframe_(
96 FLAC__StreamEncoder *encoder,
97 unsigned min_partition_order,
98 unsigned max_partition_order,
99 FLAC__bool precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +0000100 const FLAC__FrameHeader *frame_header,
101 unsigned subframe_bps,
102 const FLAC__int32 integer_signal[],
103 const FLAC__real real_signal[],
104 FLAC__Subframe *subframe[2],
105 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents[2],
106 FLAC__int32 *residual[2],
107 unsigned *best_subframe,
108 unsigned *best_bits
109);
110
111static FLAC__bool add_subframe_(
112 FLAC__StreamEncoder *encoder,
113 const FLAC__FrameHeader *frame_header,
114 unsigned subframe_bps,
115 const FLAC__Subframe *subframe,
116 FLAC__BitBuffer *frame
117);
118
119static unsigned evaluate_constant_subframe_(
120 const FLAC__int32 signal,
121 unsigned subframe_bps,
122 FLAC__Subframe *subframe
123);
124
125static unsigned evaluate_fixed_subframe_(
126 FLAC__StreamEncoder *encoder,
127 const FLAC__int32 signal[],
128 FLAC__int32 residual[],
129 FLAC__uint32 abs_residual[],
130 FLAC__uint64 abs_residual_partition_sums[],
131 unsigned raw_bits_per_partition[],
132 unsigned blocksize,
133 unsigned subframe_bps,
134 unsigned order,
135 unsigned rice_parameter,
136 unsigned min_partition_order,
137 unsigned max_partition_order,
138 FLAC__bool precompute_partition_sums,
139 FLAC__bool do_escape_coding,
140 unsigned rice_parameter_search_dist,
141 FLAC__Subframe *subframe,
142 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
143);
144
145static unsigned evaluate_lpc_subframe_(
146 FLAC__StreamEncoder *encoder,
147 const FLAC__int32 signal[],
148 FLAC__int32 residual[],
149 FLAC__uint32 abs_residual[],
150 FLAC__uint64 abs_residual_partition_sums[],
151 unsigned raw_bits_per_partition[],
152 const FLAC__real lp_coeff[],
153 unsigned blocksize,
154 unsigned subframe_bps,
155 unsigned order,
156 unsigned qlp_coeff_precision,
157 unsigned rice_parameter,
158 unsigned min_partition_order,
159 unsigned max_partition_order,
160 FLAC__bool precompute_partition_sums,
161 FLAC__bool do_escape_coding,
162 unsigned rice_parameter_search_dist,
163 FLAC__Subframe *subframe,
164 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
165);
166
167static unsigned evaluate_verbatim_subframe_(
168 const FLAC__int32 signal[],
169 unsigned blocksize,
170 unsigned subframe_bps,
171 FLAC__Subframe *subframe
172);
173
174static unsigned find_best_partition_order_(
175 struct FLAC__StreamEncoderPrivate *private_,
176 const FLAC__int32 residual[],
177 FLAC__uint32 abs_residual[],
178 FLAC__uint64 abs_residual_partition_sums[],
179 unsigned raw_bits_per_partition[],
180 unsigned residual_samples,
181 unsigned predictor_order,
182 unsigned rice_parameter,
183 unsigned min_partition_order,
184 unsigned max_partition_order,
185 FLAC__bool precompute_partition_sums,
186 FLAC__bool do_escape_coding,
187 unsigned rice_parameter_search_dist,
188 FLAC__EntropyCodingMethod_PartitionedRice *best_partitioned_rice
189);
190
191static void precompute_partition_info_sums_(
192 const FLAC__uint32 abs_residual[],
193 FLAC__uint64 abs_residual_partition_sums[],
194 unsigned residual_samples,
195 unsigned predictor_order,
196 unsigned min_partition_order,
197 unsigned max_partition_order
198);
199
200static void precompute_partition_info_escapes_(
201 const FLAC__int32 residual[],
202 unsigned raw_bits_per_partition[],
203 unsigned residual_samples,
204 unsigned predictor_order,
205 unsigned min_partition_order,
206 unsigned max_partition_order
207);
208
Josh Coalson8395d022001-07-12 21:25:22 +0000209#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +0000210static FLAC__bool set_partitioned_rice_(
211 const FLAC__uint32 abs_residual[],
212 const FLAC__int32 residual[],
213 const unsigned residual_samples,
214 const unsigned predictor_order,
215 const unsigned suggested_rice_parameter,
216 const unsigned rice_parameter_search_dist,
217 const unsigned partition_order,
218 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
219 unsigned *bits
220);
221
222static FLAC__bool set_partitioned_rice_with_precompute_(
223 const FLAC__int32 residual[],
224 const FLAC__uint64 abs_residual_partition_sums[],
225 const unsigned raw_bits_per_partition[],
226 const unsigned residual_samples,
227 const unsigned predictor_order,
228 const unsigned suggested_rice_parameter,
229 const unsigned rice_parameter_search_dist,
230 const unsigned partition_order,
231 const FLAC__bool search_for_escapes,
232 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
233 unsigned *bits
234);
Josh Coalson8395d022001-07-12 21:25:22 +0000235#else
Josh Coalson6fe72f72002-08-20 04:01:59 +0000236static FLAC__bool set_partitioned_rice_(
237 const FLAC__uint32 abs_residual[],
238 const unsigned residual_samples,
239 const unsigned predictor_order,
240 const unsigned suggested_rice_parameter,
241 const unsigned rice_parameter_search_dist,
242 const unsigned partition_order,
243 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
244 unsigned *bits
245);
246
247static FLAC__bool set_partitioned_rice_with_precompute_(
248 const FLAC__uint32 abs_residual[],
249 const FLAC__uint64 abs_residual_partition_sums[],
250 const unsigned raw_bits_per_partition[],
251 const unsigned residual_samples,
252 const unsigned predictor_order,
253 const unsigned suggested_rice_parameter,
254 const unsigned rice_parameter_search_dist,
255 const unsigned partition_order,
256 const FLAC__bool search_for_escapes,
257 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
258 unsigned *bits
259);
Josh Coalson0a15c142001-06-13 17:59:57 +0000260#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +0000261
Josh Coalsonf1eff452002-07-31 07:05:33 +0000262static unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples);
Josh Coalson6fe72f72002-08-20 04:01:59 +0000263
Josh Coalsond86e03b2002-08-03 21:56:15 +0000264/* verify-related routines: */
Josh Coalson6fe72f72002-08-20 04:01:59 +0000265static void append_to_verify_fifo_(
266 verify_input_fifo *fifo,
267 const FLAC__int32 * const input[],
268 unsigned input_offset,
269 unsigned channels,
270 unsigned wide_samples
271);
272
273static void append_to_verify_fifo_interleaved_(
274 verify_input_fifo *fifo,
275 const FLAC__int32 input[],
276 unsigned input_offset,
277 unsigned channels,
278 unsigned wide_samples
279);
280
281static FLAC__StreamDecoderReadStatus verify_read_callback_(
282 const FLAC__StreamDecoder *decoder,
283 FLAC__byte buffer[],
284 unsigned *bytes,
285 void *client_data
286);
287
288static FLAC__StreamDecoderWriteStatus verify_write_callback_(
289 const FLAC__StreamDecoder *decoder,
290 const FLAC__Frame *frame,
291 const FLAC__int32 * const buffer[],
292 void *client_data
293);
294
295static void verify_metadata_callback_(
296 const FLAC__StreamDecoder *decoder,
297 const FLAC__StreamMetadata *metadata,
298 void *client_data
299);
300
301static void verify_error_callback_(
302 const FLAC__StreamDecoder *decoder,
303 FLAC__StreamDecoderErrorStatus status,
304 void *client_data
305);
306
Josh Coalson0a15c142001-06-13 17:59:57 +0000307
308/***********************************************************************
309 *
310 * Private class data
311 *
312 ***********************************************************************/
313
314typedef struct FLAC__StreamEncoderPrivate {
Josh Coalson8395d022001-07-12 21:25:22 +0000315 unsigned input_capacity; /* current size (in samples) of the signal and residual buffers */
Josh Coalson77e3f312001-06-23 03:03:24 +0000316 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
317 FLAC__int32 *integer_signal_mid_side[2]; /* the integer version of the mid-side input signal (stereo only) */
318 FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* the floating-point version of the input signal */
319 FLAC__real *real_signal_mid_side[2]; /* the floating-point version of the mid-side input signal (stereo only) */
Josh Coalson8395d022001-07-12 21:25:22 +0000320 unsigned subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input signal (stream bps - wasted bits) */
321 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 +0000322 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
323 FLAC__int32 *residual_workspace_mid_side[2][2];
Josh Coalson94e02cd2001-01-25 10:41:06 +0000324 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
325 FLAC__Subframe subframe_workspace_mid_side[2][2];
326 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
327 FLAC__Subframe *subframe_workspace_ptr_mid_side[2][2];
Josh Coalsona37ba462002-08-19 21:36:39 +0000328 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[FLAC__MAX_CHANNELS][2];
329 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[FLAC__MAX_CHANNELS][2];
330 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[FLAC__MAX_CHANNELS][2];
331 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr_mid_side[FLAC__MAX_CHANNELS][2];
Josh Coalson8395d022001-07-12 21:25:22 +0000332 unsigned best_subframe[FLAC__MAX_CHANNELS]; /* index into the above workspaces */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000333 unsigned best_subframe_mid_side[2];
Josh Coalson8395d022001-07-12 21:25:22 +0000334 unsigned best_subframe_bits[FLAC__MAX_CHANNELS]; /* size in bits of the best subframe for each channel */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000335 unsigned best_subframe_bits_mid_side[2];
Josh Coalson77e3f312001-06-23 03:03:24 +0000336 FLAC__uint32 *abs_residual; /* workspace where abs(candidate residual) is stored */
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000337 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 +0000338 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 +0000339 FLAC__BitBuffer *frame; /* the current frame being worked on */
Josh Coalson8395d022001-07-12 21:25:22 +0000340 double loose_mid_side_stereo_frames_exact; /* exact number of frames the encoder will use before trying both independent and mid/side frames again */
341 unsigned loose_mid_side_stereo_frames; /* rounded number of frames the encoder will use before trying both independent and mid/side frames again */
342 unsigned loose_mid_side_stereo_frame_count; /* number of frames using the current channel assignment */
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000343 FLAC__ChannelAssignment last_channel_assignment;
Josh Coalsoncc682512002-06-08 04:53:42 +0000344 FLAC__StreamMetadata metadata;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000345 unsigned current_sample_number;
346 unsigned current_frame_number;
Josh Coalson3e7a96e2004-07-23 05:18:22 +0000347 struct FLAC__MD5Context md5context;
Josh Coalsoncf30f502001-05-23 20:57:44 +0000348 FLAC__CPUInfo cpuinfo;
Josh Coalson77e3f312001-06-23 03:03:24 +0000349 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__real residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
350 void (*local_lpc_compute_autocorrelation)(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
351 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[]);
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000352 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[]);
Josh Coalson77e3f312001-06-23 03:03:24 +0000353 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 Coalson3262b0d2002-08-14 20:58:42 +0000354 FLAC__bool use_wide_by_block; /* use slow 64-bit versions of some functions because of the block size */
355 FLAC__bool use_wide_by_partition; /* use slow 64-bit versions of some functions because of the min partition order and blocksize */
356 FLAC__bool use_wide_by_order; /* use slow 64-bit versions of some functions because of the lpc order */
357 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 +0000358 FLAC__bool disable_constant_subframes;
359 FLAC__bool disable_fixed_subframes;
360 FLAC__bool disable_verbatim_subframes;
Josh Coalson681c2932002-08-01 08:19:37 +0000361 FLAC__StreamEncoderWriteCallback write_callback;
362 FLAC__StreamEncoderMetadataCallback metadata_callback;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000363 void *client_data;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000364 /* unaligned (original) pointers to allocated data */
Josh Coalson77e3f312001-06-23 03:03:24 +0000365 FLAC__int32 *integer_signal_unaligned[FLAC__MAX_CHANNELS];
366 FLAC__int32 *integer_signal_mid_side_unaligned[2];
367 FLAC__real *real_signal_unaligned[FLAC__MAX_CHANNELS];
368 FLAC__real *real_signal_mid_side_unaligned[2];
369 FLAC__int32 *residual_workspace_unaligned[FLAC__MAX_CHANNELS][2];
370 FLAC__int32 *residual_workspace_mid_side_unaligned[2][2];
371 FLAC__uint32 *abs_residual_unaligned;
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000372 FLAC__uint64 *abs_residual_partition_sums_unaligned;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000373 unsigned *raw_bits_per_partition_unaligned;
Josh Coalson8084b052001-11-01 00:27:29 +0000374 /*
375 * These fields have been moved here from private function local
376 * declarations merely to save stack space during encoding.
377 */
Josh Coalsonf1eff452002-07-31 07:05:33 +0000378 FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
Josh Coalsona37ba462002-08-19 21:36:39 +0000379 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_extra[2]; /* from find_best_partition_order_() */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000380 /*
381 * The data for the verify section
382 */
383 struct {
384 FLAC__StreamDecoder *decoder;
385 EncoderStateHint state_hint;
386 FLAC__bool needs_magic_hack;
387 verify_input_fifo input_fifo;
388 verify_output output;
389 struct {
390 FLAC__uint64 absolute_sample;
391 unsigned frame_number;
392 unsigned channel;
393 unsigned sample;
394 FLAC__int32 expected;
395 FLAC__int32 got;
396 } error_stats;
397 } verify;
Josh Coalson3262b0d2002-08-14 20:58:42 +0000398 FLAC__bool is_being_deleted; /* if true, call to ..._finish() from ..._delete() will not call the callbacks */
Josh Coalson0a15c142001-06-13 17:59:57 +0000399} FLAC__StreamEncoderPrivate;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000400
Josh Coalson0a15c142001-06-13 17:59:57 +0000401/***********************************************************************
402 *
403 * Public static class data
404 *
405 ***********************************************************************/
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000406
Josh Coalson6afed9f2002-10-16 22:29:47 +0000407FLAC_API const char * const FLAC__StreamEncoderStateString[] = {
Josh Coalson0a15c142001-06-13 17:59:57 +0000408 "FLAC__STREAM_ENCODER_OK",
Josh Coalsond86e03b2002-08-03 21:56:15 +0000409 "FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR",
410 "FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA",
Josh Coalson00e53872001-06-16 07:32:25 +0000411 "FLAC__STREAM_ENCODER_INVALID_CALLBACK",
Josh Coalson0a15c142001-06-13 17:59:57 +0000412 "FLAC__STREAM_ENCODER_INVALID_NUMBER_OF_CHANNELS",
413 "FLAC__STREAM_ENCODER_INVALID_BITS_PER_SAMPLE",
414 "FLAC__STREAM_ENCODER_INVALID_SAMPLE_RATE",
415 "FLAC__STREAM_ENCODER_INVALID_BLOCK_SIZE",
Josh Coalson20ac2c12002-08-30 05:47:14 +0000416 "FLAC__STREAM_ENCODER_INVALID_MAX_LPC_ORDER",
Josh Coalson0a15c142001-06-13 17:59:57 +0000417 "FLAC__STREAM_ENCODER_INVALID_QLP_COEFF_PRECISION",
418 "FLAC__STREAM_ENCODER_MID_SIDE_CHANNELS_MISMATCH",
419 "FLAC__STREAM_ENCODER_MID_SIDE_SAMPLE_SIZE_MISMATCH",
420 "FLAC__STREAM_ENCODER_ILLEGAL_MID_SIDE_FORCE",
421 "FLAC__STREAM_ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER",
422 "FLAC__STREAM_ENCODER_NOT_STREAMABLE",
423 "FLAC__STREAM_ENCODER_FRAMING_ERROR",
Josh Coalson66075c12002-06-01 05:39:38 +0000424 "FLAC__STREAM_ENCODER_INVALID_METADATA",
Josh Coalson0a15c142001-06-13 17:59:57 +0000425 "FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING",
426 "FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_WRITING",
427 "FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR",
428 "FLAC__STREAM_ENCODER_ALREADY_INITIALIZED",
429 "FLAC__STREAM_ENCODER_UNINITIALIZED"
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000430};
431
Josh Coalson6afed9f2002-10-16 22:29:47 +0000432FLAC_API const char * const FLAC__StreamEncoderWriteStatusString[] = {
Josh Coalson5c491a12002-08-01 06:39:40 +0000433 "FLAC__STREAM_ENCODER_WRITE_STATUS_OK",
434 "FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR"
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000435};
436
Josh Coalson0a15c142001-06-13 17:59:57 +0000437/***********************************************************************
438 *
439 * Class constructor/destructor
440 *
Josh Coalsond86e03b2002-08-03 21:56:15 +0000441 */
Josh Coalson6afed9f2002-10-16 22:29:47 +0000442FLAC_API FLAC__StreamEncoder *FLAC__stream_encoder_new()
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000443{
Josh Coalson0a15c142001-06-13 17:59:57 +0000444 FLAC__StreamEncoder *encoder;
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000445 unsigned i;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000446
Josh Coalson0a15c142001-06-13 17:59:57 +0000447 FLAC__ASSERT(sizeof(int) >= 4); /* we want to die right away if this is not true */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000448
Josh Coalsonea7155f2002-10-18 05:49:19 +0000449 encoder = (FLAC__StreamEncoder*)calloc(1, sizeof(FLAC__StreamEncoder));
Josh Coalson0a15c142001-06-13 17:59:57 +0000450 if(encoder == 0) {
451 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000452 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000453
Josh Coalsonea7155f2002-10-18 05:49:19 +0000454 encoder->protected_ = (FLAC__StreamEncoderProtected*)calloc(1, sizeof(FLAC__StreamEncoderProtected));
Josh Coalsonfa697a92001-08-16 20:07:29 +0000455 if(encoder->protected_ == 0) {
Josh Coalson0a15c142001-06-13 17:59:57 +0000456 free(encoder);
457 return 0;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000458 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000459
Josh Coalsonea7155f2002-10-18 05:49:19 +0000460 encoder->private_ = (FLAC__StreamEncoderPrivate*)calloc(1, sizeof(FLAC__StreamEncoderPrivate));
Josh Coalsonfa697a92001-08-16 20:07:29 +0000461 if(encoder->private_ == 0) {
462 free(encoder->protected_);
Josh Coalson0a15c142001-06-13 17:59:57 +0000463 free(encoder);
464 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000465 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000466
Josh Coalsonaec256b2002-03-12 16:19:54 +0000467 encoder->private_->frame = FLAC__bitbuffer_new();
468 if(encoder->private_->frame == 0) {
469 free(encoder->private_);
470 free(encoder->protected_);
471 free(encoder);
472 return 0;
473 }
Josh Coalsond98c43d2001-05-13 05:17:01 +0000474
Josh Coalsonf1eff452002-07-31 07:05:33 +0000475 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000476
Josh Coalson3262b0d2002-08-14 20:58:42 +0000477 encoder->private_->is_being_deleted = false;
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000478
479 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
480 encoder->private_->subframe_workspace_ptr[i][0] = &encoder->private_->subframe_workspace[i][0];
481 encoder->private_->subframe_workspace_ptr[i][1] = &encoder->private_->subframe_workspace[i][1];
482 }
483 for(i = 0; i < 2; i++) {
484 encoder->private_->subframe_workspace_ptr_mid_side[i][0] = &encoder->private_->subframe_workspace_mid_side[i][0];
485 encoder->private_->subframe_workspace_ptr_mid_side[i][1] = &encoder->private_->subframe_workspace_mid_side[i][1];
486 }
487 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000488 encoder->private_->partitioned_rice_contents_workspace_ptr[i][0] = &encoder->private_->partitioned_rice_contents_workspace[i][0];
489 encoder->private_->partitioned_rice_contents_workspace_ptr[i][1] = &encoder->private_->partitioned_rice_contents_workspace[i][1];
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000490 }
491 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000492 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[i][0] = &encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0];
493 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 +0000494 }
495
496 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000497 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace[i][0]);
498 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000499 }
500 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000501 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0]);
502 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 +0000503 }
504 for(i = 0; i < 2; i++)
Josh Coalsona37ba462002-08-19 21:36:39 +0000505 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_extra[i]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000506
Josh Coalsonfa697a92001-08-16 20:07:29 +0000507 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000508
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000509 return encoder;
510}
511
Josh Coalson6afed9f2002-10-16 22:29:47 +0000512FLAC_API void FLAC__stream_encoder_delete(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000513{
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000514 unsigned i;
515
Josh Coalsonf1eff452002-07-31 07:05:33 +0000516 FLAC__ASSERT(0 != encoder);
517 FLAC__ASSERT(0 != encoder->protected_);
518 FLAC__ASSERT(0 != encoder->private_);
519 FLAC__ASSERT(0 != encoder->private_->frame);
Josh Coalson0a15c142001-06-13 17:59:57 +0000520
Josh Coalson3262b0d2002-08-14 20:58:42 +0000521 encoder->private_->is_being_deleted = true;
522
523 FLAC__stream_encoder_finish(encoder);
524
Josh Coalson4fa90592002-12-04 07:01:37 +0000525 if(0 != encoder->private_->verify.decoder)
Josh Coalsond86e03b2002-08-03 21:56:15 +0000526 FLAC__stream_decoder_delete(encoder->private_->verify.decoder);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000527
528 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000529 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace[i][0]);
530 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000531 }
532 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000533 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0]);
534 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 +0000535 }
536 for(i = 0; i < 2; i++)
Josh Coalsona37ba462002-08-19 21:36:39 +0000537 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_extra[i]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000538
Josh Coalsonaec256b2002-03-12 16:19:54 +0000539 FLAC__bitbuffer_delete(encoder->private_->frame);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000540 free(encoder->private_);
541 free(encoder->protected_);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000542 free(encoder);
543}
544
Josh Coalson0a15c142001-06-13 17:59:57 +0000545/***********************************************************************
546 *
547 * Public class methods
548 *
549 ***********************************************************************/
550
Josh Coalson6afed9f2002-10-16 22:29:47 +0000551FLAC_API FLAC__StreamEncoderState FLAC__stream_encoder_init(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000552{
553 unsigned i;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000554 FLAC__bool metadata_has_seektable, metadata_has_vorbis_comment;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000555
Josh Coalsonf1eff452002-07-31 07:05:33 +0000556 FLAC__ASSERT(0 != encoder);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000557
Josh Coalsonfa697a92001-08-16 20:07:29 +0000558 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
559 return encoder->protected_->state = FLAC__STREAM_ENCODER_ALREADY_INITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000560
Josh Coalsonfa697a92001-08-16 20:07:29 +0000561 encoder->protected_->state = FLAC__STREAM_ENCODER_OK;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000562
Josh Coalsonfa697a92001-08-16 20:07:29 +0000563 if(0 == encoder->private_->write_callback || 0 == encoder->private_->metadata_callback)
564 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_CALLBACK;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000565
Josh Coalsonfa697a92001-08-16 20:07:29 +0000566 if(encoder->protected_->channels == 0 || encoder->protected_->channels > FLAC__MAX_CHANNELS)
567 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_NUMBER_OF_CHANNELS;
Josh Coalson69f1ee02001-01-24 00:54:43 +0000568
Josh Coalsonfa697a92001-08-16 20:07:29 +0000569 if(encoder->protected_->do_mid_side_stereo && encoder->protected_->channels != 2)
570 return encoder->protected_->state = FLAC__STREAM_ENCODER_MID_SIDE_CHANNELS_MISMATCH;
Josh Coalsond37d1352001-05-30 23:09:31 +0000571
Josh Coalsonfa697a92001-08-16 20:07:29 +0000572 if(encoder->protected_->loose_mid_side_stereo && !encoder->protected_->do_mid_side_stereo)
573 return encoder->protected_->state = FLAC__STREAM_ENCODER_ILLEGAL_MID_SIDE_FORCE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000574
Josh Coalsonfa697a92001-08-16 20:07:29 +0000575 if(encoder->protected_->bits_per_sample >= 32)
576 encoder->protected_->do_mid_side_stereo = false; /* since we do 32-bit math, the side channel would have 33 bps and overflow */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000577
Josh Coalson76c68bc2002-05-17 06:22:02 +0000578 if(encoder->protected_->bits_per_sample < FLAC__MIN_BITS_PER_SAMPLE || encoder->protected_->bits_per_sample > FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000579 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_BITS_PER_SAMPLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000580
Josh Coalson0833f342002-07-15 05:31:55 +0000581 if(!FLAC__format_sample_rate_is_valid(encoder->protected_->sample_rate))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000582 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_SAMPLE_RATE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000583
Josh Coalsonfa697a92001-08-16 20:07:29 +0000584 if(encoder->protected_->blocksize < FLAC__MIN_BLOCK_SIZE || encoder->protected_->blocksize > FLAC__MAX_BLOCK_SIZE)
585 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_BLOCK_SIZE;
Josh Coalson0a15c142001-06-13 17:59:57 +0000586
Josh Coalson20ac2c12002-08-30 05:47:14 +0000587 if(encoder->protected_->max_lpc_order > FLAC__MAX_LPC_ORDER)
588 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_MAX_LPC_ORDER;
589
Josh Coalsonfa697a92001-08-16 20:07:29 +0000590 if(encoder->protected_->blocksize < encoder->protected_->max_lpc_order)
591 return encoder->protected_->state = FLAC__STREAM_ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER;
Josh Coalson0a15c142001-06-13 17:59:57 +0000592
Josh Coalsonfa697a92001-08-16 20:07:29 +0000593 if(encoder->protected_->qlp_coeff_precision == 0) {
594 if(encoder->protected_->bits_per_sample < 16) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000595 /* @@@ need some data about how to set this here w.r.t. blocksize and sample rate */
596 /* @@@ until then we'll make a guess */
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000597 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 +0000598 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000599 else if(encoder->protected_->bits_per_sample == 16) {
600 if(encoder->protected_->blocksize <= 192)
601 encoder->protected_->qlp_coeff_precision = 7;
602 else if(encoder->protected_->blocksize <= 384)
603 encoder->protected_->qlp_coeff_precision = 8;
604 else if(encoder->protected_->blocksize <= 576)
605 encoder->protected_->qlp_coeff_precision = 9;
606 else if(encoder->protected_->blocksize <= 1152)
607 encoder->protected_->qlp_coeff_precision = 10;
608 else if(encoder->protected_->blocksize <= 2304)
609 encoder->protected_->qlp_coeff_precision = 11;
610 else if(encoder->protected_->blocksize <= 4608)
611 encoder->protected_->qlp_coeff_precision = 12;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000612 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000613 encoder->protected_->qlp_coeff_precision = 13;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000614 }
615 else {
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000616 if(encoder->protected_->blocksize <= 384)
617 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION-2;
618 else if(encoder->protected_->blocksize <= 1152)
619 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION-1;
620 else
621 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000622 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000623 FLAC__ASSERT(encoder->protected_->qlp_coeff_precision <= FLAC__MAX_QLP_COEFF_PRECISION);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000624 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000625 else if(encoder->protected_->qlp_coeff_precision < FLAC__MIN_QLP_COEFF_PRECISION || encoder->protected_->qlp_coeff_precision > FLAC__MAX_QLP_COEFF_PRECISION)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000626 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000627
Josh Coalsonfa697a92001-08-16 20:07:29 +0000628 if(encoder->protected_->streamable_subset) {
Josh Coalson20ac2c12002-08-30 05:47:14 +0000629 if(
630 encoder->protected_->blocksize != 192 &&
631 encoder->protected_->blocksize != 576 &&
632 encoder->protected_->blocksize != 1152 &&
633 encoder->protected_->blocksize != 2304 &&
634 encoder->protected_->blocksize != 4608 &&
635 encoder->protected_->blocksize != 256 &&
636 encoder->protected_->blocksize != 512 &&
637 encoder->protected_->blocksize != 1024 &&
638 encoder->protected_->blocksize != 2048 &&
639 encoder->protected_->blocksize != 4096 &&
640 encoder->protected_->blocksize != 8192 &&
641 encoder->protected_->blocksize != 16384
642 )
Josh Coalsonfa697a92001-08-16 20:07:29 +0000643 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalson20ac2c12002-08-30 05:47:14 +0000644 if(
645 encoder->protected_->sample_rate != 8000 &&
646 encoder->protected_->sample_rate != 16000 &&
647 encoder->protected_->sample_rate != 22050 &&
648 encoder->protected_->sample_rate != 24000 &&
649 encoder->protected_->sample_rate != 32000 &&
650 encoder->protected_->sample_rate != 44100 &&
651 encoder->protected_->sample_rate != 48000 &&
652 encoder->protected_->sample_rate != 96000
653 )
654 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
655 if(
656 encoder->protected_->bits_per_sample != 8 &&
657 encoder->protected_->bits_per_sample != 12 &&
658 encoder->protected_->bits_per_sample != 16 &&
659 encoder->protected_->bits_per_sample != 20 &&
660 encoder->protected_->bits_per_sample != 24
661 )
662 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalsonc1c8d492002-09-26 04:42:10 +0000663 if(encoder->protected_->max_residual_partition_order > FLAC__SUBSET_MAX_RICE_PARTITION_ORDER)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000664 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000665 }
666
Josh Coalsonfa697a92001-08-16 20:07:29 +0000667 if(encoder->protected_->max_residual_partition_order >= (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN))
668 encoder->protected_->max_residual_partition_order = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN) - 1;
669 if(encoder->protected_->min_residual_partition_order >= encoder->protected_->max_residual_partition_order)
670 encoder->protected_->min_residual_partition_order = encoder->protected_->max_residual_partition_order;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000671
Josh Coalson66075c12002-06-01 05:39:38 +0000672 /* validate metadata */
673 if(0 == encoder->protected_->metadata && encoder->protected_->num_metadata_blocks > 0)
674 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000675 metadata_has_seektable = false;
676 metadata_has_vorbis_comment = false;
Josh Coalson66075c12002-06-01 05:39:38 +0000677 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
Josh Coalsond0609472003-01-10 05:37:13 +0000678 if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_STREAMINFO)
Josh Coalson66075c12002-06-01 05:39:38 +0000679 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
680 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_SEEKTABLE) {
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000681 if(metadata_has_seektable) /* only one is allowed */
682 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
683 metadata_has_seektable = true;
Josh Coalson0833f342002-07-15 05:31:55 +0000684 if(!FLAC__format_seektable_is_legal(&encoder->protected_->metadata[i]->data.seek_table))
Josh Coalson66075c12002-06-01 05:39:38 +0000685 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
686 }
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000687 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_VORBIS_COMMENT) {
688 if(metadata_has_vorbis_comment) /* only one is allowed */
689 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
690 metadata_has_vorbis_comment = true;
691 }
Josh Coalsone4869382002-11-15 05:41:48 +0000692 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_CUESHEET) {
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000693 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 Coalsone4869382002-11-15 05:41:48 +0000694 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
695 }
Josh Coalson66075c12002-06-01 05:39:38 +0000696 }
697
Josh Coalsonfa697a92001-08-16 20:07:29 +0000698 encoder->private_->input_capacity = 0;
699 for(i = 0; i < encoder->protected_->channels; i++) {
700 encoder->private_->integer_signal_unaligned[i] = encoder->private_->integer_signal[i] = 0;
701 encoder->private_->real_signal_unaligned[i] = encoder->private_->real_signal[i] = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000702 }
703 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000704 encoder->private_->integer_signal_mid_side_unaligned[i] = encoder->private_->integer_signal_mid_side[i] = 0;
705 encoder->private_->real_signal_mid_side_unaligned[i] = encoder->private_->real_signal_mid_side[i] = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000706 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000707 for(i = 0; i < encoder->protected_->channels; i++) {
708 encoder->private_->residual_workspace_unaligned[i][0] = encoder->private_->residual_workspace[i][0] = 0;
709 encoder->private_->residual_workspace_unaligned[i][1] = encoder->private_->residual_workspace[i][1] = 0;
710 encoder->private_->best_subframe[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000711 }
712 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000713 encoder->private_->residual_workspace_mid_side_unaligned[i][0] = encoder->private_->residual_workspace_mid_side[i][0] = 0;
714 encoder->private_->residual_workspace_mid_side_unaligned[i][1] = encoder->private_->residual_workspace_mid_side[i][1] = 0;
715 encoder->private_->best_subframe_mid_side[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000716 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000717 encoder->private_->abs_residual_unaligned = encoder->private_->abs_residual = 0;
718 encoder->private_->abs_residual_partition_sums_unaligned = encoder->private_->abs_residual_partition_sums = 0;
719 encoder->private_->raw_bits_per_partition_unaligned = encoder->private_->raw_bits_per_partition = 0;
720 encoder->private_->loose_mid_side_stereo_frames_exact = (double)encoder->protected_->sample_rate * 0.4 / (double)encoder->protected_->blocksize;
721 encoder->private_->loose_mid_side_stereo_frames = (unsigned)(encoder->private_->loose_mid_side_stereo_frames_exact + 0.5);
722 if(encoder->private_->loose_mid_side_stereo_frames == 0)
723 encoder->private_->loose_mid_side_stereo_frames = 1;
724 encoder->private_->loose_mid_side_stereo_frame_count = 0;
725 encoder->private_->current_sample_number = 0;
726 encoder->private_->current_frame_number = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000727
Josh Coalsonfa697a92001-08-16 20:07:29 +0000728 encoder->private_->use_wide_by_block = (encoder->protected_->bits_per_sample + FLAC__bitmath_ilog2(encoder->protected_->blocksize)+1 > 30);
729 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? */
730 encoder->private_->use_wide_by_partition = (false); /*@@@ need to set this */
Josh Coalson8395d022001-07-12 21:25:22 +0000731
Josh Coalsoncf30f502001-05-23 20:57:44 +0000732 /*
733 * get the CPU info and set the function pointers
734 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000735 FLAC__cpu_info(&encoder->private_->cpuinfo);
Josh Coalsoncf30f502001-05-23 20:57:44 +0000736 /* first default to the non-asm routines */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000737 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation;
738 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor;
739 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000740 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 +0000741 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalsoncf30f502001-05-23 20:57:44 +0000742 /* now override with asm where appropriate */
Josh Coalsona3f7c2c2001-05-25 00:04:45 +0000743#ifndef FLAC__NO_ASM
Josh Coalsonfa697a92001-08-16 20:07:29 +0000744 if(encoder->private_->cpuinfo.use_asm) {
Josh Coalsoncf30f502001-05-23 20:57:44 +0000745#ifdef FLAC__CPU_IA32
Josh Coalsonfa697a92001-08-16 20:07:29 +0000746 FLAC__ASSERT(encoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
Josh Coalson034d38e2001-05-24 19:29:30 +0000747#ifdef FLAC__HAS_NASM
Josh Coalson48cbe662002-12-30 23:38:14 +0000748#ifdef FLAC__SSE_OS
749 if(encoder->private_->cpuinfo.data.ia32.sse) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000750 if(encoder->protected_->max_lpc_order < 4)
751 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_4;
752 else if(encoder->protected_->max_lpc_order < 8)
753 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_8;
754 else if(encoder->protected_->max_lpc_order < 12)
755 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_12;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000756 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000757 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000758 }
Josh Coalson48cbe662002-12-30 23:38:14 +0000759 else
760#endif
761 if(encoder->private_->cpuinfo.data.ia32._3dnow)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000762 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_3dnow;
Josh Coalsonaa255362001-05-31 06:17:41 +0000763 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000764 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
765 if(encoder->private_->cpuinfo.data.ia32.mmx && encoder->private_->cpuinfo.data.ia32.cmov)
766 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov;
767 if(encoder->private_->cpuinfo.data.ia32.mmx) {
768 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
769 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 +0000770 }
771 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000772 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
773 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 +0000774 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000775#endif
Josh Coalson034d38e2001-05-24 19:29:30 +0000776#endif
Josh Coalson021ad3b2001-07-18 00:25:52 +0000777 }
Josh Coalsona3f7c2c2001-05-25 00:04:45 +0000778#endif
Josh Coalson8395d022001-07-12 21:25:22 +0000779 /* finally override based on wide-ness if necessary */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000780 if(encoder->private_->use_wide_by_block) {
781 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_wide;
Josh Coalson8395d022001-07-12 21:25:22 +0000782 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000783
Josh Coalson8395d022001-07-12 21:25:22 +0000784 /* we require precompute_partition_sums if do_escape_coding because of their intertwined nature */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000785 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 +0000786
Josh Coalsonf1eff452002-07-31 07:05:33 +0000787 if(!resize_buffers_(encoder, encoder->protected_->blocksize)) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000788 /* the above function sets the state for us in case of an error */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000789 return encoder->protected_->state;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000790 }
Josh Coalsonaec256b2002-03-12 16:19:54 +0000791
792 if(!FLAC__bitbuffer_init(encoder->private_->frame))
793 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000794
795 /*
Josh Coalsond86e03b2002-08-03 21:56:15 +0000796 * Set up the verify stuff if necessary
797 */
798 if(encoder->protected_->verify) {
799 /*
800 * First, set up the fifo which will hold the
801 * original signal to compare against
802 */
803 encoder->private_->verify.input_fifo.size = encoder->protected_->blocksize;
804 for(i = 0; i < encoder->protected_->channels; i++) {
805 if(0 == (encoder->private_->verify.input_fifo.data[i] = (FLAC__int32*)malloc(sizeof(FLAC__int32) * encoder->private_->verify.input_fifo.size)))
806 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
807 }
808 encoder->private_->verify.input_fifo.tail = 0;
809
810 /*
811 * Now set up a stream decoder for verification
812 */
813 encoder->private_->verify.decoder = FLAC__stream_decoder_new();
814 if(0 == encoder->private_->verify.decoder)
815 return encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
816
817 FLAC__stream_decoder_set_read_callback(encoder->private_->verify.decoder, verify_read_callback_);
818 FLAC__stream_decoder_set_write_callback(encoder->private_->verify.decoder, verify_write_callback_);
819 FLAC__stream_decoder_set_metadata_callback(encoder->private_->verify.decoder, verify_metadata_callback_);
820 FLAC__stream_decoder_set_error_callback(encoder->private_->verify.decoder, verify_error_callback_);
821 FLAC__stream_decoder_set_client_data(encoder->private_->verify.decoder, encoder);
822 if(FLAC__stream_decoder_init(encoder->private_->verify.decoder) != FLAC__STREAM_DECODER_SEARCH_FOR_METADATA)
823 return encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
824 }
Josh Coalson589f8c72002-08-07 23:54:55 +0000825 encoder->private_->verify.error_stats.absolute_sample = 0;
826 encoder->private_->verify.error_stats.frame_number = 0;
827 encoder->private_->verify.error_stats.channel = 0;
828 encoder->private_->verify.error_stats.sample = 0;
829 encoder->private_->verify.error_stats.expected = 0;
830 encoder->private_->verify.error_stats.got = 0;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000831
832 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000833 * write the stream header
834 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000835 if(encoder->protected_->verify)
836 encoder->private_->verify.state_hint = ENCODER_IN_MAGIC;
Josh Coalsonaec256b2002-03-12 16:19:54 +0000837 if(!FLAC__bitbuffer_write_raw_uint32(encoder->private_->frame, FLAC__STREAM_SYNC, FLAC__STREAM_SYNC_LEN))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000838 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000839 if(!write_bitbuffer_(encoder, 0)) {
840 /* the above function sets the state for us in case of an error */
841 return encoder->protected_->state;
842 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000843
Josh Coalson5c491a12002-08-01 06:39:40 +0000844 /*
845 * write the STREAMINFO metadata block
846 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000847 if(encoder->protected_->verify)
848 encoder->private_->verify.state_hint = ENCODER_IN_METADATA;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000849 encoder->private_->metadata.type = FLAC__METADATA_TYPE_STREAMINFO;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000850 encoder->private_->metadata.is_last = false; /* we will have at a minimum a VORBIS_COMMENT afterwards */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000851 encoder->private_->metadata.length = FLAC__STREAM_METADATA_STREAMINFO_LENGTH;
852 encoder->private_->metadata.data.stream_info.min_blocksize = encoder->protected_->blocksize; /* this encoder uses the same blocksize for the whole stream */
853 encoder->private_->metadata.data.stream_info.max_blocksize = encoder->protected_->blocksize;
854 encoder->private_->metadata.data.stream_info.min_framesize = 0; /* we don't know this yet; have to fill it in later */
855 encoder->private_->metadata.data.stream_info.max_framesize = 0; /* we don't know this yet; have to fill it in later */
856 encoder->private_->metadata.data.stream_info.sample_rate = encoder->protected_->sample_rate;
857 encoder->private_->metadata.data.stream_info.channels = encoder->protected_->channels;
858 encoder->private_->metadata.data.stream_info.bits_per_sample = encoder->protected_->bits_per_sample;
859 encoder->private_->metadata.data.stream_info.total_samples = encoder->protected_->total_samples_estimate; /* we will replace this later with the real total */
860 memset(encoder->private_->metadata.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 +0000861 FLAC__MD5Init(&encoder->private_->md5context);
Josh Coalson7424d2f2002-11-06 07:10:38 +0000862 if(!FLAC__bitbuffer_clear(encoder->private_->frame))
863 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonaec256b2002-03-12 16:19:54 +0000864 if(!FLAC__add_metadata_block(&encoder->private_->metadata, encoder->private_->frame))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000865 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000866 if(!write_bitbuffer_(encoder, 0)) {
867 /* the above function sets the state for us in case of an error */
868 return encoder->protected_->state;
869 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000870
Josh Coalson5c491a12002-08-01 06:39:40 +0000871 /*
872 * Now that the STREAMINFO block is written, we can init this to an
873 * absurdly-high value...
874 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000875 encoder->private_->metadata.data.stream_info.min_framesize = (1u << FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN) - 1;
Josh Coalsoncbbbb5f2001-01-23 00:41:48 +0000876 /* ... and clear this to 0 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000877 encoder->private_->metadata.data.stream_info.total_samples = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000878
Josh Coalson5c491a12002-08-01 06:39:40 +0000879 /*
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000880 * Check to see if the supplied metadata contains a VORBIS_COMMENT;
881 * if not, we will write an empty one (FLAC__add_metadata_block()
882 * automatically supplies the vendor string).
883 */
884 if(!metadata_has_vorbis_comment) {
885 FLAC__StreamMetadata vorbis_comment;
886 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT;
887 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0);
888 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */
889 vorbis_comment.data.vorbis_comment.vendor_string.length = 0;
890 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0;
891 vorbis_comment.data.vorbis_comment.num_comments = 0;
892 vorbis_comment.data.vorbis_comment.comments = 0;
Josh Coalson7424d2f2002-11-06 07:10:38 +0000893 if(!FLAC__bitbuffer_clear(encoder->private_->frame))
894 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000895 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame))
896 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
897 if(!write_bitbuffer_(encoder, 0)) {
898 /* the above function sets the state for us in case of an error */
899 return encoder->protected_->state;
900 }
901 }
902
903 /*
Josh Coalson5c491a12002-08-01 06:39:40 +0000904 * write the user's metadata blocks
905 */
906 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
907 encoder->protected_->metadata[i]->is_last = (i == encoder->protected_->num_metadata_blocks - 1);
Josh Coalson7424d2f2002-11-06 07:10:38 +0000908 if(!FLAC__bitbuffer_clear(encoder->private_->frame))
909 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson5c491a12002-08-01 06:39:40 +0000910 if(!FLAC__add_metadata_block(encoder->protected_->metadata[i], encoder->private_->frame))
911 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000912 if(!write_bitbuffer_(encoder, 0)) {
913 /* the above function sets the state for us in case of an error */
914 return encoder->protected_->state;
915 }
Josh Coalson5c491a12002-08-01 06:39:40 +0000916 }
917
Josh Coalsond86e03b2002-08-03 21:56:15 +0000918 if(encoder->protected_->verify)
919 encoder->private_->verify.state_hint = ENCODER_IN_AUDIO;
920
Josh Coalsonfa697a92001-08-16 20:07:29 +0000921 return encoder->protected_->state;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000922}
923
Josh Coalson6afed9f2002-10-16 22:29:47 +0000924FLAC_API void FLAC__stream_encoder_finish(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000925{
Josh Coalsonf1eff452002-07-31 07:05:33 +0000926 FLAC__ASSERT(0 != encoder);
Josh Coalson2b245f22002-08-07 17:10:50 +0000927
Josh Coalsonfa697a92001-08-16 20:07:29 +0000928 if(encoder->protected_->state == FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000929 return;
Josh Coalson2b245f22002-08-07 17:10:50 +0000930
Josh Coalson3262b0d2002-08-14 20:58:42 +0000931 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +0000932 if(encoder->private_->current_sample_number != 0) {
933 encoder->protected_->blocksize = encoder->private_->current_sample_number;
934 process_frame_(encoder, true); /* true => is last frame */
935 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000936 }
Josh Coalson2b245f22002-08-07 17:10:50 +0000937
Josh Coalson3e7a96e2004-07-23 05:18:22 +0000938 FLAC__MD5Final(encoder->private_->metadata.data.stream_info.md5sum, &encoder->private_->md5context);
Josh Coalson2b245f22002-08-07 17:10:50 +0000939
Josh Coalson3262b0d2002-08-14 20:58:42 +0000940 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +0000941 encoder->private_->metadata_callback(encoder, &encoder->private_->metadata, encoder->private_->client_data);
942 }
Josh Coalson0a15c142001-06-13 17:59:57 +0000943
Josh Coalsond86e03b2002-08-03 21:56:15 +0000944 if(encoder->protected_->verify && 0 != encoder->private_->verify.decoder)
945 FLAC__stream_decoder_finish(encoder->private_->verify.decoder);
946
Josh Coalsonf1eff452002-07-31 07:05:33 +0000947 free_(encoder);
948 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000949
Josh Coalsonfa697a92001-08-16 20:07:29 +0000950 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000951}
952
Josh Coalson6afed9f2002-10-16 22:29:47 +0000953FLAC_API FLAC__bool FLAC__stream_encoder_set_verify(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsond86e03b2002-08-03 21:56:15 +0000954{
955 FLAC__ASSERT(0 != encoder);
956 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
957 return false;
958 encoder->protected_->verify = value;
959 return true;
960}
961
Josh Coalson6afed9f2002-10-16 22:29:47 +0000962FLAC_API FLAC__bool FLAC__stream_encoder_set_streamable_subset(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000963{
Josh Coalson92031602002-07-24 06:02:11 +0000964 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000965 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000966 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000967 encoder->protected_->streamable_subset = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000968 return true;
969}
970
Josh Coalson6afed9f2002-10-16 22:29:47 +0000971FLAC_API FLAC__bool FLAC__stream_encoder_set_do_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000972{
Josh Coalson92031602002-07-24 06:02:11 +0000973 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000974 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000975 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000976 encoder->protected_->do_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000977 return true;
978}
979
Josh Coalson6afed9f2002-10-16 22:29:47 +0000980FLAC_API FLAC__bool FLAC__stream_encoder_set_loose_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000981{
Josh Coalson92031602002-07-24 06:02:11 +0000982 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000983 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000984 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000985 encoder->protected_->loose_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000986 return true;
987}
988
Josh Coalson6afed9f2002-10-16 22:29:47 +0000989FLAC_API FLAC__bool FLAC__stream_encoder_set_channels(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000990{
Josh Coalson92031602002-07-24 06:02:11 +0000991 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000992 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000993 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000994 encoder->protected_->channels = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000995 return true;
996}
997
Josh Coalson6afed9f2002-10-16 22:29:47 +0000998FLAC_API FLAC__bool FLAC__stream_encoder_set_bits_per_sample(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000999{
Josh Coalson92031602002-07-24 06:02:11 +00001000 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001001 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001002 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001003 encoder->protected_->bits_per_sample = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001004 return true;
1005}
1006
Josh Coalson6afed9f2002-10-16 22:29:47 +00001007FLAC_API FLAC__bool FLAC__stream_encoder_set_sample_rate(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001008{
Josh Coalson92031602002-07-24 06:02:11 +00001009 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001010 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001011 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001012 encoder->protected_->sample_rate = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001013 return true;
1014}
1015
Josh Coalson6afed9f2002-10-16 22:29:47 +00001016FLAC_API FLAC__bool FLAC__stream_encoder_set_blocksize(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001017{
Josh Coalson92031602002-07-24 06:02:11 +00001018 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001019 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001020 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001021 encoder->protected_->blocksize = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001022 return true;
1023}
1024
Josh Coalson6afed9f2002-10-16 22:29:47 +00001025FLAC_API FLAC__bool FLAC__stream_encoder_set_max_lpc_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001026{
Josh Coalson92031602002-07-24 06:02:11 +00001027 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001028 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001029 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001030 encoder->protected_->max_lpc_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001031 return true;
1032}
1033
Josh Coalson6afed9f2002-10-16 22:29:47 +00001034FLAC_API FLAC__bool FLAC__stream_encoder_set_qlp_coeff_precision(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001035{
Josh Coalson92031602002-07-24 06:02:11 +00001036 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001037 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001038 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001039 encoder->protected_->qlp_coeff_precision = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001040 return true;
1041}
1042
Josh Coalson6afed9f2002-10-16 22:29:47 +00001043FLAC_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 +00001044{
Josh Coalson92031602002-07-24 06:02:11 +00001045 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001046 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001047 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001048 encoder->protected_->do_qlp_coeff_prec_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001049 return true;
1050}
1051
Josh Coalson6afed9f2002-10-16 22:29:47 +00001052FLAC_API FLAC__bool FLAC__stream_encoder_set_do_escape_coding(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson8395d022001-07-12 21:25:22 +00001053{
Josh Coalson92031602002-07-24 06:02:11 +00001054 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001055 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson8395d022001-07-12 21:25:22 +00001056 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001057#if 0
1058 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001059 encoder->protected_->do_escape_coding = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001060#else
1061 (void)value;
1062#endif
Josh Coalson8395d022001-07-12 21:25:22 +00001063 return true;
1064}
1065
Josh Coalson6afed9f2002-10-16 22:29:47 +00001066FLAC_API FLAC__bool FLAC__stream_encoder_set_do_exhaustive_model_search(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001067{
Josh Coalson92031602002-07-24 06:02:11 +00001068 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001069 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001070 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001071 encoder->protected_->do_exhaustive_model_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001072 return true;
1073}
1074
Josh Coalson6afed9f2002-10-16 22:29:47 +00001075FLAC_API FLAC__bool FLAC__stream_encoder_set_min_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001076{
Josh Coalson92031602002-07-24 06:02:11 +00001077 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001078 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001079 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001080 encoder->protected_->min_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001081 return true;
1082}
1083
Josh Coalson6afed9f2002-10-16 22:29:47 +00001084FLAC_API FLAC__bool FLAC__stream_encoder_set_max_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001085{
Josh Coalson92031602002-07-24 06:02:11 +00001086 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001087 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001088 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001089 encoder->protected_->max_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001090 return true;
1091}
1092
Josh Coalson6afed9f2002-10-16 22:29:47 +00001093FLAC_API FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001094{
Josh Coalson92031602002-07-24 06:02:11 +00001095 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001096 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001097 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001098#if 0
1099 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001100 encoder->protected_->rice_parameter_search_dist = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001101#else
1102 (void)value;
1103#endif
Josh Coalson00e53872001-06-16 07:32:25 +00001104 return true;
1105}
1106
Josh Coalson6afed9f2002-10-16 22:29:47 +00001107FLAC_API FLAC__bool FLAC__stream_encoder_set_total_samples_estimate(FLAC__StreamEncoder *encoder, FLAC__uint64 value)
Josh Coalson00e53872001-06-16 07:32:25 +00001108{
Josh Coalson92031602002-07-24 06:02:11 +00001109 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001110 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001111 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001112 encoder->protected_->total_samples_estimate = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001113 return true;
1114}
1115
Josh Coalson6afed9f2002-10-16 22:29:47 +00001116FLAC_API FLAC__bool FLAC__stream_encoder_set_metadata(FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, unsigned num_blocks)
Josh Coalson00e53872001-06-16 07:32:25 +00001117{
Josh Coalson92031602002-07-24 06:02:11 +00001118 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001119 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001120 return false;
Josh Coalson66075c12002-06-01 05:39:38 +00001121 encoder->protected_->metadata = metadata;
1122 encoder->protected_->num_metadata_blocks = num_blocks;
Josh Coalson00e53872001-06-16 07:32:25 +00001123 return true;
1124}
1125
Josh Coalson6afed9f2002-10-16 22:29:47 +00001126FLAC_API FLAC__bool FLAC__stream_encoder_set_write_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback value)
Josh Coalson00e53872001-06-16 07:32:25 +00001127{
Josh Coalson92031602002-07-24 06:02:11 +00001128 FLAC__ASSERT(0 != encoder);
1129 FLAC__ASSERT(0 != value);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001130 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001131 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001132 encoder->private_->write_callback = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001133 return true;
1134}
1135
Josh Coalson6afed9f2002-10-16 22:29:47 +00001136FLAC_API FLAC__bool FLAC__stream_encoder_set_metadata_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderMetadataCallback value)
Josh Coalson00e53872001-06-16 07:32:25 +00001137{
Josh Coalson92031602002-07-24 06:02:11 +00001138 FLAC__ASSERT(0 != encoder);
1139 FLAC__ASSERT(0 != value);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001140 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001141 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001142 encoder->private_->metadata_callback = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001143 return true;
1144}
1145
Josh Coalson6afed9f2002-10-16 22:29:47 +00001146FLAC_API FLAC__bool FLAC__stream_encoder_set_client_data(FLAC__StreamEncoder *encoder, void *value)
Josh Coalson00e53872001-06-16 07:32:25 +00001147{
Josh Coalson92031602002-07-24 06:02:11 +00001148 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001149 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001150 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001151 encoder->private_->client_data = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001152 return true;
1153}
1154
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001155/*
1156 * These three functions are not static, but not publically exposed in
1157 * include/FLAC/ either. They are used by the test suite.
1158 */
Josh Coalson6afed9f2002-10-16 22:29:47 +00001159FLAC_API FLAC__bool FLAC__stream_encoder_disable_constant_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001160{
1161 FLAC__ASSERT(0 != encoder);
1162 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1163 return false;
1164 encoder->private_->disable_constant_subframes = value;
1165 return true;
1166}
1167
Josh Coalson6afed9f2002-10-16 22:29:47 +00001168FLAC_API FLAC__bool FLAC__stream_encoder_disable_fixed_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001169{
1170 FLAC__ASSERT(0 != encoder);
1171 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1172 return false;
1173 encoder->private_->disable_fixed_subframes = value;
1174 return true;
1175}
1176
Josh Coalson6afed9f2002-10-16 22:29:47 +00001177FLAC_API FLAC__bool FLAC__stream_encoder_disable_verbatim_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001178{
1179 FLAC__ASSERT(0 != encoder);
1180 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1181 return false;
1182 encoder->private_->disable_verbatim_subframes = value;
1183 return true;
1184}
1185
Josh Coalson6afed9f2002-10-16 22:29:47 +00001186FLAC_API FLAC__StreamEncoderState FLAC__stream_encoder_get_state(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001187{
Josh Coalson92031602002-07-24 06:02:11 +00001188 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001189 return encoder->protected_->state;
Josh Coalson0a15c142001-06-13 17:59:57 +00001190}
1191
Josh Coalson6afed9f2002-10-16 22:29:47 +00001192FLAC_API FLAC__StreamDecoderState FLAC__stream_encoder_get_verify_decoder_state(const FLAC__StreamEncoder *encoder)
Josh Coalsond86e03b2002-08-03 21:56:15 +00001193{
1194 FLAC__ASSERT(0 != encoder);
1195 if(encoder->protected_->verify)
1196 return FLAC__stream_decoder_get_state(encoder->private_->verify.decoder);
1197 else
1198 return FLAC__STREAM_DECODER_UNINITIALIZED;
1199}
1200
Josh Coalson02954222002-11-08 06:16:31 +00001201FLAC_API const char *FLAC__stream_encoder_get_resolved_state_string(const FLAC__StreamEncoder *encoder)
1202{
1203 if(encoder->protected_->state != FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR)
1204 return FLAC__StreamEncoderStateString[encoder->protected_->state];
1205 else
Josh Coalson807140d2003-09-24 22:10:51 +00001206 return FLAC__stream_decoder_get_resolved_state_string(encoder->private_->verify.decoder);
Josh Coalson02954222002-11-08 06:16:31 +00001207}
1208
Josh Coalson6afed9f2002-10-16 22:29:47 +00001209FLAC_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 +00001210{
1211 FLAC__ASSERT(0 != encoder);
1212 if(0 != absolute_sample)
1213 *absolute_sample = encoder->private_->verify.error_stats.absolute_sample;
1214 if(0 != frame_number)
1215 *frame_number = encoder->private_->verify.error_stats.frame_number;
1216 if(0 != channel)
1217 *channel = encoder->private_->verify.error_stats.channel;
1218 if(0 != sample)
1219 *sample = encoder->private_->verify.error_stats.sample;
1220 if(0 != expected)
1221 *expected = encoder->private_->verify.error_stats.expected;
1222 if(0 != got)
1223 *got = encoder->private_->verify.error_stats.got;
1224}
1225
Josh Coalson6afed9f2002-10-16 22:29:47 +00001226FLAC_API FLAC__bool FLAC__stream_encoder_get_verify(const FLAC__StreamEncoder *encoder)
Josh Coalsond86e03b2002-08-03 21:56:15 +00001227{
1228 FLAC__ASSERT(0 != encoder);
1229 return encoder->protected_->verify;
1230}
1231
Josh Coalson6afed9f2002-10-16 22:29:47 +00001232FLAC_API FLAC__bool FLAC__stream_encoder_get_streamable_subset(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001233{
Josh Coalson92031602002-07-24 06:02:11 +00001234 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001235 return encoder->protected_->streamable_subset;
Josh Coalson0a15c142001-06-13 17:59:57 +00001236}
1237
Josh Coalson6afed9f2002-10-16 22:29:47 +00001238FLAC_API FLAC__bool FLAC__stream_encoder_get_do_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001239{
Josh Coalson92031602002-07-24 06:02:11 +00001240 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001241 return encoder->protected_->do_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +00001242}
1243
Josh Coalson6afed9f2002-10-16 22:29:47 +00001244FLAC_API FLAC__bool FLAC__stream_encoder_get_loose_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001245{
Josh Coalson92031602002-07-24 06:02:11 +00001246 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001247 return encoder->protected_->loose_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +00001248}
1249
Josh Coalson6afed9f2002-10-16 22:29:47 +00001250FLAC_API unsigned FLAC__stream_encoder_get_channels(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001251{
Josh Coalson92031602002-07-24 06:02:11 +00001252 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001253 return encoder->protected_->channels;
Josh Coalson0a15c142001-06-13 17:59:57 +00001254}
1255
Josh Coalson6afed9f2002-10-16 22:29:47 +00001256FLAC_API unsigned FLAC__stream_encoder_get_bits_per_sample(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001257{
Josh Coalson92031602002-07-24 06:02:11 +00001258 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001259 return encoder->protected_->bits_per_sample;
Josh Coalson0a15c142001-06-13 17:59:57 +00001260}
1261
Josh Coalson6afed9f2002-10-16 22:29:47 +00001262FLAC_API unsigned FLAC__stream_encoder_get_sample_rate(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001263{
Josh Coalson92031602002-07-24 06:02:11 +00001264 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001265 return encoder->protected_->sample_rate;
Josh Coalson0a15c142001-06-13 17:59:57 +00001266}
1267
Josh Coalson6afed9f2002-10-16 22:29:47 +00001268FLAC_API unsigned FLAC__stream_encoder_get_blocksize(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001269{
Josh Coalson92031602002-07-24 06:02:11 +00001270 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001271 return encoder->protected_->blocksize;
Josh Coalson0a15c142001-06-13 17:59:57 +00001272}
1273
Josh Coalson6afed9f2002-10-16 22:29:47 +00001274FLAC_API unsigned FLAC__stream_encoder_get_max_lpc_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001275{
Josh Coalson92031602002-07-24 06:02:11 +00001276 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001277 return encoder->protected_->max_lpc_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001278}
1279
Josh Coalson6afed9f2002-10-16 22:29:47 +00001280FLAC_API unsigned FLAC__stream_encoder_get_qlp_coeff_precision(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001281{
Josh Coalson92031602002-07-24 06:02:11 +00001282 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001283 return encoder->protected_->qlp_coeff_precision;
Josh Coalson0a15c142001-06-13 17:59:57 +00001284}
1285
Josh Coalson6afed9f2002-10-16 22:29:47 +00001286FLAC_API FLAC__bool FLAC__stream_encoder_get_do_qlp_coeff_prec_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001287{
Josh Coalson92031602002-07-24 06:02:11 +00001288 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001289 return encoder->protected_->do_qlp_coeff_prec_search;
Josh Coalson0a15c142001-06-13 17:59:57 +00001290}
1291
Josh Coalson6afed9f2002-10-16 22:29:47 +00001292FLAC_API FLAC__bool FLAC__stream_encoder_get_do_escape_coding(const FLAC__StreamEncoder *encoder)
Josh Coalson8395d022001-07-12 21:25:22 +00001293{
Josh Coalson92031602002-07-24 06:02:11 +00001294 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001295 return encoder->protected_->do_escape_coding;
Josh Coalson8395d022001-07-12 21:25:22 +00001296}
1297
Josh Coalson6afed9f2002-10-16 22:29:47 +00001298FLAC_API FLAC__bool FLAC__stream_encoder_get_do_exhaustive_model_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001299{
Josh Coalson92031602002-07-24 06:02:11 +00001300 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001301 return encoder->protected_->do_exhaustive_model_search;
Josh Coalson0a15c142001-06-13 17:59:57 +00001302}
1303
Josh Coalson6afed9f2002-10-16 22:29:47 +00001304FLAC_API unsigned FLAC__stream_encoder_get_min_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001305{
Josh Coalson92031602002-07-24 06:02:11 +00001306 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001307 return encoder->protected_->min_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001308}
1309
Josh Coalson6afed9f2002-10-16 22:29:47 +00001310FLAC_API unsigned FLAC__stream_encoder_get_max_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001311{
Josh Coalson92031602002-07-24 06:02:11 +00001312 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001313 return encoder->protected_->max_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001314}
1315
Josh Coalson6afed9f2002-10-16 22:29:47 +00001316FLAC_API unsigned FLAC__stream_encoder_get_rice_parameter_search_dist(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001317{
Josh Coalson92031602002-07-24 06:02:11 +00001318 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001319 return encoder->protected_->rice_parameter_search_dist;
Josh Coalson0a15c142001-06-13 17:59:57 +00001320}
1321
Josh Coalson6afed9f2002-10-16 22:29:47 +00001322FLAC_API FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate(const FLAC__StreamEncoder *encoder)
Josh Coalson3a7b2c92002-08-02 07:38:20 +00001323{
1324 FLAC__ASSERT(0 != encoder);
1325 return encoder->protected_->total_samples_estimate;
1326}
1327
Josh Coalson6afed9f2002-10-16 22:29:47 +00001328FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * const buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001329{
1330 unsigned i, j, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001331 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001332 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001333
Josh Coalsonf1eff452002-07-31 07:05:33 +00001334 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001335 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001336
1337 j = 0;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001338 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001339 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001340 if(encoder->protected_->verify)
1341 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1342
Josh Coalsonfa697a92001-08-16 20:07:29 +00001343 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001344 x = mid = side = buffer[0][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001345 encoder->private_->integer_signal[0][i] = x;
1346 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001347 x = buffer[1][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001348 encoder->private_->integer_signal[1][i] = x;
1349 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001350 mid += x;
1351 side -= x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001352 mid >>= 1; /* NOTE: not the same as 'mid = (buffer[0][j] + buffer[1][j]) / 2' ! */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001353 encoder->private_->integer_signal_mid_side[1][i] = side;
1354 encoder->private_->integer_signal_mid_side[0][i] = mid;
1355 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1356 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
1357 encoder->private_->current_sample_number++;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001358 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001359 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001360 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001361 return false;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001362 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001363 } while(j < samples);
1364 }
1365 else {
1366 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001367 if(encoder->protected_->verify)
1368 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1369
Josh Coalsonfa697a92001-08-16 20:07:29 +00001370 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001371 for(channel = 0; channel < channels; channel++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001372 x = buffer[channel][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001373 encoder->private_->integer_signal[channel][i] = x;
1374 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001375 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001376 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001377 }
1378 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001379 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001380 return false;
1381 }
1382 } while(j < samples);
1383 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001384
1385 return true;
1386}
1387
Josh Coalson6afed9f2002-10-16 22:29:47 +00001388FLAC_API FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001389{
1390 unsigned i, j, k, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001391 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001392 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001393
Josh Coalsonf1eff452002-07-31 07:05:33 +00001394 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001395 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001396
1397 j = k = 0;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001398 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001399 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001400 if(encoder->protected_->verify)
1401 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1402
Josh Coalsonfa697a92001-08-16 20:07:29 +00001403 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001404 x = mid = side = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001405 encoder->private_->integer_signal[0][i] = x;
1406 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001407 x = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001408 encoder->private_->integer_signal[1][i] = x;
1409 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001410 mid += x;
1411 side -= x;
1412 mid >>= 1; /* NOTE: not the same as 'mid = (left + right) / 2' ! */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001413 encoder->private_->integer_signal_mid_side[1][i] = side;
1414 encoder->private_->integer_signal_mid_side[0][i] = mid;
1415 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1416 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
1417 encoder->private_->current_sample_number++;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001418 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001419 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001420 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001421 return false;
1422 }
1423 } while(j < samples);
1424 }
1425 else {
1426 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001427 if(encoder->protected_->verify)
1428 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1429
Josh Coalsonfa697a92001-08-16 20:07:29 +00001430 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001431 for(channel = 0; channel < channels; channel++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001432 x = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001433 encoder->private_->integer_signal[channel][i] = x;
1434 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001435 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001436 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001437 }
1438 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001439 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001440 return false;
1441 }
1442 } while(j < samples);
1443 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001444
1445 return true;
1446}
1447
Josh Coalsonf1eff452002-07-31 07:05:33 +00001448/***********************************************************************
1449 *
1450 * Private class methods
1451 *
1452 ***********************************************************************/
1453
1454void set_defaults_(FLAC__StreamEncoder *encoder)
Josh Coalson92031602002-07-24 06:02:11 +00001455{
1456 FLAC__ASSERT(0 != encoder);
1457
Josh Coalsond86e03b2002-08-03 21:56:15 +00001458 encoder->protected_->verify = false;
Josh Coalson92031602002-07-24 06:02:11 +00001459 encoder->protected_->streamable_subset = true;
1460 encoder->protected_->do_mid_side_stereo = false;
1461 encoder->protected_->loose_mid_side_stereo = false;
1462 encoder->protected_->channels = 2;
1463 encoder->protected_->bits_per_sample = 16;
1464 encoder->protected_->sample_rate = 44100;
1465 encoder->protected_->blocksize = 1152;
1466 encoder->protected_->max_lpc_order = 0;
1467 encoder->protected_->qlp_coeff_precision = 0;
1468 encoder->protected_->do_qlp_coeff_prec_search = false;
1469 encoder->protected_->do_exhaustive_model_search = false;
1470 encoder->protected_->do_escape_coding = false;
1471 encoder->protected_->min_residual_partition_order = 0;
1472 encoder->protected_->max_residual_partition_order = 0;
1473 encoder->protected_->rice_parameter_search_dist = 0;
1474 encoder->protected_->total_samples_estimate = 0;
1475 encoder->protected_->metadata = 0;
1476 encoder->protected_->num_metadata_blocks = 0;
1477
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001478 encoder->private_->disable_constant_subframes = false;
1479 encoder->private_->disable_fixed_subframes = false;
1480 encoder->private_->disable_verbatim_subframes = false;
Josh Coalson92031602002-07-24 06:02:11 +00001481 encoder->private_->write_callback = 0;
1482 encoder->private_->metadata_callback = 0;
1483 encoder->private_->client_data = 0;
1484}
1485
Josh Coalsonf1eff452002-07-31 07:05:33 +00001486void free_(FLAC__StreamEncoder *encoder)
Josh Coalson639aeb02002-07-25 05:38:23 +00001487{
1488 unsigned i, channel;
1489
Josh Coalsonf1eff452002-07-31 07:05:33 +00001490 FLAC__ASSERT(0 != encoder);
Josh Coalson639aeb02002-07-25 05:38:23 +00001491 for(i = 0; i < encoder->protected_->channels; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001492 if(0 != encoder->private_->integer_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001493 free(encoder->private_->integer_signal_unaligned[i]);
1494 encoder->private_->integer_signal_unaligned[i] = 0;
1495 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001496 if(0 != encoder->private_->real_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001497 free(encoder->private_->real_signal_unaligned[i]);
1498 encoder->private_->real_signal_unaligned[i] = 0;
1499 }
1500 }
1501 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001502 if(0 != encoder->private_->integer_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001503 free(encoder->private_->integer_signal_mid_side_unaligned[i]);
1504 encoder->private_->integer_signal_mid_side_unaligned[i] = 0;
1505 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001506 if(0 != encoder->private_->real_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001507 free(encoder->private_->real_signal_mid_side_unaligned[i]);
1508 encoder->private_->real_signal_mid_side_unaligned[i] = 0;
1509 }
1510 }
1511 for(channel = 0; channel < encoder->protected_->channels; channel++) {
1512 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001513 if(0 != encoder->private_->residual_workspace_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001514 free(encoder->private_->residual_workspace_unaligned[channel][i]);
1515 encoder->private_->residual_workspace_unaligned[channel][i] = 0;
1516 }
1517 }
1518 }
1519 for(channel = 0; channel < 2; channel++) {
1520 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001521 if(0 != encoder->private_->residual_workspace_mid_side_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001522 free(encoder->private_->residual_workspace_mid_side_unaligned[channel][i]);
1523 encoder->private_->residual_workspace_mid_side_unaligned[channel][i] = 0;
1524 }
1525 }
1526 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001527 if(0 != encoder->private_->abs_residual_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001528 free(encoder->private_->abs_residual_unaligned);
1529 encoder->private_->abs_residual_unaligned = 0;
1530 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001531 if(0 != encoder->private_->abs_residual_partition_sums_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001532 free(encoder->private_->abs_residual_partition_sums_unaligned);
1533 encoder->private_->abs_residual_partition_sums_unaligned = 0;
1534 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001535 if(0 != encoder->private_->raw_bits_per_partition_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001536 free(encoder->private_->raw_bits_per_partition_unaligned);
1537 encoder->private_->raw_bits_per_partition_unaligned = 0;
1538 }
Josh Coalsond86e03b2002-08-03 21:56:15 +00001539 if(encoder->protected_->verify) {
1540 for(i = 0; i < encoder->protected_->channels; i++) {
1541 if(0 != encoder->private_->verify.input_fifo.data[i]) {
1542 free(encoder->private_->verify.input_fifo.data[i]);
1543 encoder->private_->verify.input_fifo.data[i] = 0;
1544 }
1545 }
1546 }
Josh Coalson639aeb02002-07-25 05:38:23 +00001547 FLAC__bitbuffer_free(encoder->private_->frame);
1548}
1549
Josh Coalsonf1eff452002-07-31 07:05:33 +00001550FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001551{
Josh Coalson77e3f312001-06-23 03:03:24 +00001552 FLAC__bool ok;
Josh Coalson0a15c142001-06-13 17:59:57 +00001553 unsigned i, channel;
1554
1555 FLAC__ASSERT(new_size > 0);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001556 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
1557 FLAC__ASSERT(encoder->private_->current_sample_number == 0);
Josh Coalson0a15c142001-06-13 17:59:57 +00001558
1559 /* To avoid excessive malloc'ing, we only grow the buffer; no shrinking. */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001560 if(new_size <= encoder->private_->input_capacity)
Josh Coalson0a15c142001-06-13 17:59:57 +00001561 return true;
1562
1563 ok = true;
Josh Coalson8395d022001-07-12 21:25:22 +00001564
Josh Coalsonc9c0d132002-10-04 05:29:05 +00001565 /* WATCHOUT: FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx()
1566 * requires that the input arrays (in our case the integer signals)
1567 * have a buffer of up to 3 zeroes in front (at negative indices) for
1568 * alignment purposes; we use 4 to keep the data well-aligned.
1569 */
Josh Coalson8395d022001-07-12 21:25:22 +00001570
Josh Coalsonfa697a92001-08-16 20:07:29 +00001571 for(i = 0; ok && i < encoder->protected_->channels; i++) {
1572 ok = ok && FLAC__memory_alloc_aligned_int32_array(new_size+4, &encoder->private_->integer_signal_unaligned[i], &encoder->private_->integer_signal[i]);
1573 ok = ok && FLAC__memory_alloc_aligned_real_array(new_size, &encoder->private_->real_signal_unaligned[i], &encoder->private_->real_signal[i]);
1574 memset(encoder->private_->integer_signal[i], 0, sizeof(FLAC__int32)*4);
1575 encoder->private_->integer_signal[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00001576 }
1577 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001578 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]);
1579 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]);
1580 memset(encoder->private_->integer_signal_mid_side[i], 0, sizeof(FLAC__int32)*4);
1581 encoder->private_->integer_signal_mid_side[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00001582 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001583 for(channel = 0; ok && channel < encoder->protected_->channels; channel++) {
Josh Coalson0a15c142001-06-13 17:59:57 +00001584 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001585 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 +00001586 }
1587 }
1588 for(channel = 0; ok && channel < 2; channel++) {
1589 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001590 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 +00001591 }
1592 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001593 ok = ok && FLAC__memory_alloc_aligned_uint32_array(new_size, &encoder->private_->abs_residual_unaligned, &encoder->private_->abs_residual);
1594 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 */
1595 ok = ok && FLAC__memory_alloc_aligned_uint64_array(new_size * 2, &encoder->private_->abs_residual_partition_sums_unaligned, &encoder->private_->abs_residual_partition_sums);
1596 if(encoder->protected_->do_escape_coding)
1597 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 +00001598
1599 if(ok)
Josh Coalsonfa697a92001-08-16 20:07:29 +00001600 encoder->private_->input_capacity = new_size;
Josh Coalson0a15c142001-06-13 17:59:57 +00001601 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00001602 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson0a15c142001-06-13 17:59:57 +00001603
1604 return ok;
1605}
1606
Josh Coalsond86e03b2002-08-03 21:56:15 +00001607FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples)
Josh Coalson5c491a12002-08-01 06:39:40 +00001608{
1609 const FLAC__byte *buffer;
1610 unsigned bytes;
1611
1612 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
1613
1614 FLAC__bitbuffer_get_buffer(encoder->private_->frame, &buffer, &bytes);
1615
Josh Coalsond86e03b2002-08-03 21:56:15 +00001616 if(encoder->protected_->verify) {
1617 encoder->private_->verify.output.data = buffer;
1618 encoder->private_->verify.output.bytes = bytes;
1619 if(encoder->private_->verify.state_hint == ENCODER_IN_MAGIC) {
1620 encoder->private_->verify.needs_magic_hack = true;
1621 }
1622 else {
1623 if(!FLAC__stream_decoder_process_single(encoder->private_->verify.decoder)) {
1624 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
1625 if(encoder->protected_->state != FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA)
1626 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
1627 return false;
1628 }
1629 }
1630 }
1631
1632 if(encoder->private_->write_callback(encoder, buffer, bytes, samples, encoder->private_->current_frame_number, encoder->private_->client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
Josh Coalsondd190232002-12-29 09:30:23 +00001633 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
Josh Coalsond86e03b2002-08-03 21:56:15 +00001634 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_WRITING;
Josh Coalson5c491a12002-08-01 06:39:40 +00001635 return false;
Josh Coalsond86e03b2002-08-03 21:56:15 +00001636 }
Josh Coalson5c491a12002-08-01 06:39:40 +00001637
1638 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
1639
Josh Coalsond86e03b2002-08-03 21:56:15 +00001640 if(samples > 0) {
1641 encoder->private_->metadata.data.stream_info.min_framesize = min(bytes, encoder->private_->metadata.data.stream_info.min_framesize);
1642 encoder->private_->metadata.data.stream_info.max_framesize = max(bytes, encoder->private_->metadata.data.stream_info.max_framesize);
1643 }
1644
Josh Coalson5c491a12002-08-01 06:39:40 +00001645 return true;
1646}
1647
Josh Coalsonf1eff452002-07-31 07:05:33 +00001648FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson0a15c142001-06-13 17:59:57 +00001649{
Josh Coalsonfa697a92001-08-16 20:07:29 +00001650 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001651
1652 /*
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00001653 * Accumulate raw signal to the MD5 signature
1654 */
Josh Coalson57ba6f42002-06-07 05:27:37 +00001655 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 +00001656 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00001657 return false;
1658 }
1659
1660 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00001661 * Process the frame header and subframes into the frame bitbuffer
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001662 */
Josh Coalsonf1eff452002-07-31 07:05:33 +00001663 if(!process_subframes_(encoder, is_last_frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001664 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001665 return false;
1666 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001667
1668 /*
1669 * Zero-pad the frame to a byte_boundary
1670 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001671 if(!FLAC__bitbuffer_zero_pad_to_byte_boundary(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001672 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001673 return false;
1674 }
1675
1676 /*
Josh Coalson215af572001-03-27 01:15:58 +00001677 * CRC-16 the whole thing
1678 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001679 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
1680 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 +00001681
1682 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001683 * Write it
1684 */
Josh Coalsond86e03b2002-08-03 21:56:15 +00001685 if(!write_bitbuffer_(encoder, encoder->protected_->blocksize)) {
1686 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001687 return false;
1688 }
1689
1690 /*
1691 * Get ready for the next frame
1692 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001693 encoder->private_->current_sample_number = 0;
1694 encoder->private_->current_frame_number++;
1695 encoder->private_->metadata.data.stream_info.total_samples += (FLAC__uint64)encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001696
1697 return true;
1698}
1699
Josh Coalsonf1eff452002-07-31 07:05:33 +00001700FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001701{
1702 FLAC__FrameHeader frame_header;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001703 unsigned channel, min_partition_order = encoder->protected_->min_residual_partition_order, max_partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00001704 FLAC__bool do_independent, do_mid_side, precompute_partition_sums;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001705
1706 /*
Josh Coalson60f77d72001-04-25 02:16:36 +00001707 * Calculate the min,max Rice partition orders
Josh Coalson94e02cd2001-01-25 10:41:06 +00001708 */
1709 if(is_last_frame) {
1710 max_partition_order = 0;
1711 }
1712 else {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001713 max_partition_order = FLAC__format_get_max_rice_partition_order_from_blocksize(encoder->protected_->blocksize);
1714 max_partition_order = min(max_partition_order, encoder->protected_->max_residual_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001715 }
Josh Coalson60f77d72001-04-25 02:16:36 +00001716 min_partition_order = min(min_partition_order, max_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001717
Josh Coalsonfa697a92001-08-16 20:07:29 +00001718 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 +00001719
Josh Coalson94e02cd2001-01-25 10:41:06 +00001720 /*
1721 * Setup the frame
1722 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001723 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001724 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001725 return false;
1726 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001727 frame_header.blocksize = encoder->protected_->blocksize;
1728 frame_header.sample_rate = encoder->protected_->sample_rate;
1729 frame_header.channels = encoder->protected_->channels;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001730 frame_header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT; /* the default unless the encoder determines otherwise */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001731 frame_header.bits_per_sample = encoder->protected_->bits_per_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001732 frame_header.number_type = FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001733 frame_header.number.frame_number = encoder->private_->current_frame_number;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001734
1735 /*
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001736 * Figure out what channel assignments to try
1737 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001738 if(encoder->protected_->do_mid_side_stereo) {
1739 if(encoder->protected_->loose_mid_side_stereo) {
1740 if(encoder->private_->loose_mid_side_stereo_frame_count == 0) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001741 do_independent = true;
1742 do_mid_side = true;
1743 }
1744 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001745 do_independent = (encoder->private_->last_channel_assignment == FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001746 do_mid_side = !do_independent;
1747 }
1748 }
1749 else {
1750 do_independent = true;
1751 do_mid_side = true;
1752 }
1753 }
1754 else {
1755 do_independent = true;
1756 do_mid_side = false;
1757 }
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001758
Josh Coalson1b689822001-05-31 20:11:02 +00001759 FLAC__ASSERT(do_independent || do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001760
1761 /*
Josh Coalson82b73242001-03-28 22:17:05 +00001762 * Check for wasted bits; set effective bps for each subframe
Josh Coalson859bc542001-03-27 22:22:27 +00001763 */
1764 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001765 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001766 const unsigned w = get_wasted_bits_(encoder->private_->integer_signal[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001767 encoder->private_->subframe_workspace[channel][0].wasted_bits = encoder->private_->subframe_workspace[channel][1].wasted_bits = w;
1768 encoder->private_->subframe_bps[channel] = encoder->protected_->bits_per_sample - w;
Josh Coalson82b73242001-03-28 22:17:05 +00001769 }
Josh Coalson859bc542001-03-27 22:22:27 +00001770 }
1771 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001772 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson82b73242001-03-28 22:17:05 +00001773 for(channel = 0; channel < 2; channel++) {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001774 const unsigned w = get_wasted_bits_(encoder->private_->integer_signal_mid_side[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001775 encoder->private_->subframe_workspace_mid_side[channel][0].wasted_bits = encoder->private_->subframe_workspace_mid_side[channel][1].wasted_bits = w;
1776 encoder->private_->subframe_bps_mid_side[channel] = encoder->protected_->bits_per_sample - w + (channel==0? 0:1);
Josh Coalson82b73242001-03-28 22:17:05 +00001777 }
Josh Coalson859bc542001-03-27 22:22:27 +00001778 }
1779
1780 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00001781 * First do a normal encoding pass of each independent channel
1782 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001783 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001784 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00001785 if(!
1786 process_subframe_(
1787 encoder,
1788 min_partition_order,
1789 max_partition_order,
1790 precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001791 &frame_header,
1792 encoder->private_->subframe_bps[channel],
1793 encoder->private_->integer_signal[channel],
1794 encoder->private_->real_signal[channel],
1795 encoder->private_->subframe_workspace_ptr[channel],
1796 encoder->private_->partitioned_rice_contents_workspace_ptr[channel],
1797 encoder->private_->residual_workspace[channel],
1798 encoder->private_->best_subframe+channel,
1799 encoder->private_->best_subframe_bits+channel
1800 )
1801 )
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001802 return false;
1803 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001804 }
1805
1806 /*
1807 * Now do mid and side channels if requested
1808 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001809 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001810 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001811
1812 for(channel = 0; channel < 2; channel++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00001813 if(!
1814 process_subframe_(
1815 encoder,
1816 min_partition_order,
1817 max_partition_order,
1818 precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001819 &frame_header,
1820 encoder->private_->subframe_bps_mid_side[channel],
1821 encoder->private_->integer_signal_mid_side[channel],
1822 encoder->private_->real_signal_mid_side[channel],
1823 encoder->private_->subframe_workspace_ptr_mid_side[channel],
1824 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[channel],
1825 encoder->private_->residual_workspace_mid_side[channel],
1826 encoder->private_->best_subframe_mid_side+channel,
1827 encoder->private_->best_subframe_bits_mid_side+channel
1828 )
1829 )
Josh Coalson94e02cd2001-01-25 10:41:06 +00001830 return false;
1831 }
1832 }
1833
1834 /*
1835 * Compose the frame bitbuffer
1836 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001837 if(do_mid_side) {
Josh Coalson82b73242001-03-28 22:17:05 +00001838 unsigned left_bps = 0, right_bps = 0; /* initialized only to prevent superfluous compiler warning */
1839 FLAC__Subframe *left_subframe = 0, *right_subframe = 0; /* initialized only to prevent superfluous compiler warning */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001840 FLAC__ChannelAssignment channel_assignment;
1841
Josh Coalsonfa697a92001-08-16 20:07:29 +00001842 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001843
Josh Coalsonfa697a92001-08-16 20:07:29 +00001844 if(encoder->protected_->loose_mid_side_stereo && encoder->private_->loose_mid_side_stereo_frame_count > 0) {
1845 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 +00001846 }
1847 else {
1848 unsigned bits[4]; /* WATCHOUT - indexed by FLAC__ChannelAssignment */
1849 unsigned min_bits;
1850 FLAC__ChannelAssignment ca;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001851
Josh Coalson1b689822001-05-31 20:11:02 +00001852 FLAC__ASSERT(do_independent && do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001853
1854 /* We have to figure out which channel assignent results in the smallest frame */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001855 bits[FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits [1];
1856 bits[FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE ] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits_mid_side[1];
1857 bits[FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE ] = encoder->private_->best_subframe_bits [1] + encoder->private_->best_subframe_bits_mid_side[1];
1858 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 +00001859
Josh Coalson7424d2f2002-11-06 07:10:38 +00001860 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 +00001861 if(bits[ca] < min_bits) {
1862 min_bits = bits[ca];
1863 channel_assignment = ca;
1864 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001865 }
1866 }
1867
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001868 frame_header.channel_assignment = channel_assignment;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001869
Josh Coalson3e7a96e2004-07-23 05:18:22 +00001870 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001871 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001872 return false;
1873 }
1874
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001875 switch(channel_assignment) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001876 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001877 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
1878 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001879 break;
1880 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001881 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
1882 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001883 break;
1884 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001885 left_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
1886 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001887 break;
1888 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001889 left_subframe = &encoder->private_->subframe_workspace_mid_side[0][encoder->private_->best_subframe_mid_side[0]];
1890 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001891 break;
1892 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001893 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001894 }
Josh Coalson82b73242001-03-28 22:17:05 +00001895
1896 switch(channel_assignment) {
1897 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001898 left_bps = encoder->private_->subframe_bps [0];
1899 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00001900 break;
1901 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001902 left_bps = encoder->private_->subframe_bps [0];
1903 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00001904 break;
1905 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001906 left_bps = encoder->private_->subframe_bps_mid_side[1];
1907 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00001908 break;
1909 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001910 left_bps = encoder->private_->subframe_bps_mid_side[0];
1911 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00001912 break;
1913 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001914 FLAC__ASSERT(0);
Josh Coalson82b73242001-03-28 22:17:05 +00001915 }
1916
1917 /* note that encoder_add_subframe_ sets the state for us in case of an error */
Josh Coalsonf1eff452002-07-31 07:05:33 +00001918 if(!add_subframe_(encoder, &frame_header, left_bps , left_subframe , encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00001919 return false;
Josh Coalsonf1eff452002-07-31 07:05:33 +00001920 if(!add_subframe_(encoder, &frame_header, right_bps, right_subframe, encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00001921 return false;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001922 }
1923 else {
Josh Coalson3e7a96e2004-07-23 05:18:22 +00001924 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001925 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001926 return false;
1927 }
1928
Josh Coalsonfa697a92001-08-16 20:07:29 +00001929 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001930 if(!add_subframe_(encoder, &frame_header, encoder->private_->subframe_bps[channel], &encoder->private_->subframe_workspace[channel][encoder->private_->best_subframe[channel]], encoder->private_->frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001931 /* the above function sets the state for us in case of an error */
1932 return false;
1933 }
1934 }
1935 }
1936
Josh Coalsonfa697a92001-08-16 20:07:29 +00001937 if(encoder->protected_->loose_mid_side_stereo) {
1938 encoder->private_->loose_mid_side_stereo_frame_count++;
1939 if(encoder->private_->loose_mid_side_stereo_frame_count >= encoder->private_->loose_mid_side_stereo_frames)
1940 encoder->private_->loose_mid_side_stereo_frame_count = 0;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001941 }
1942
Josh Coalsonfa697a92001-08-16 20:07:29 +00001943 encoder->private_->last_channel_assignment = frame_header.channel_assignment;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001944
Josh Coalson94e02cd2001-01-25 10:41:06 +00001945 return true;
1946}
1947
Josh Coalson6fe72f72002-08-20 04:01:59 +00001948FLAC__bool process_subframe_(
1949 FLAC__StreamEncoder *encoder,
1950 unsigned min_partition_order,
1951 unsigned max_partition_order,
1952 FLAC__bool precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001953 const FLAC__FrameHeader *frame_header,
1954 unsigned subframe_bps,
1955 const FLAC__int32 integer_signal[],
1956 const FLAC__real real_signal[],
1957 FLAC__Subframe *subframe[2],
1958 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents[2],
1959 FLAC__int32 *residual[2],
1960 unsigned *best_subframe,
1961 unsigned *best_bits
1962)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001963{
Josh Coalson77e3f312001-06-23 03:03:24 +00001964 FLAC__real fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1];
1965 FLAC__real lpc_residual_bits_per_sample;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001966 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 Coalson77e3f312001-06-23 03:03:24 +00001967 FLAC__real lpc_error[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001968 unsigned min_lpc_order, max_lpc_order, lpc_order;
1969 unsigned min_fixed_order, max_fixed_order, guess_fixed_order, fixed_order;
1970 unsigned min_qlp_coeff_precision, max_qlp_coeff_precision, qlp_coeff_precision;
1971 unsigned rice_parameter;
1972 unsigned _candidate_bits, _best_bits;
1973 unsigned _best_subframe;
1974
1975 /* verbatim subframe is the baseline against which we measure other compressed subframes */
1976 _best_subframe = 0;
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001977 if(encoder->private_->disable_verbatim_subframes && frame_header->blocksize >= FLAC__MAX_FIXED_ORDER)
1978 _best_bits = UINT_MAX;
1979 else
1980 _best_bits = evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, subframe_bps, subframe[_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001981
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001982 if(frame_header->blocksize >= FLAC__MAX_FIXED_ORDER) {
1983 unsigned signal_is_constant = false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001984 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 +00001985 /* check for constant subframe */
1986 if(!encoder->private_->disable_constant_subframes && fixed_residual_bits_per_sample[1] == 0.0) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001987 /* the above means integer_signal+FLAC__MAX_FIXED_ORDER is constant, now we just have to check the warmup samples */
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001988 unsigned i;
1989 signal_is_constant = true;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001990 for(i = 1; i <= FLAC__MAX_FIXED_ORDER; i++) {
1991 if(integer_signal[0] != integer_signal[i]) {
1992 signal_is_constant = false;
1993 break;
1994 }
1995 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001996 }
1997 if(signal_is_constant) {
1998 _candidate_bits = evaluate_constant_subframe_(integer_signal[0], subframe_bps, subframe[!_best_subframe]);
1999 if(_candidate_bits < _best_bits) {
2000 _best_subframe = !_best_subframe;
2001 _best_bits = _candidate_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002002 }
2003 }
2004 else {
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002005 if(!encoder->private_->disable_fixed_subframes || (encoder->protected_->max_lpc_order == 0 && _best_bits == UINT_MAX)) {
2006 /* encode fixed */
2007 if(encoder->protected_->do_exhaustive_model_search) {
2008 min_fixed_order = 0;
2009 max_fixed_order = FLAC__MAX_FIXED_ORDER;
Josh Coalson8395d022001-07-12 21:25:22 +00002010 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002011 else {
2012 min_fixed_order = max_fixed_order = guess_fixed_order;
2013 }
2014 for(fixed_order = min_fixed_order; fixed_order <= max_fixed_order; fixed_order++) {
2015 if(fixed_residual_bits_per_sample[fixed_order] >= (FLAC__real)subframe_bps)
2016 continue; /* don't even try */
2017 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 */
2018#ifndef FLAC__SYMMETRIC_RICE
2019 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
2020#endif
2021 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
2022#ifdef DEBUG_VERBOSE
2023 fprintf(stderr, "clipping rice_parameter (%u -> %u) @0\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2024#endif
2025 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2026 }
2027 _candidate_bits =
2028 evaluate_fixed_subframe_(
2029 encoder,
2030 integer_signal,
2031 residual[!_best_subframe],
2032 encoder->private_->abs_residual,
2033 encoder->private_->abs_residual_partition_sums,
2034 encoder->private_->raw_bits_per_partition,
2035 frame_header->blocksize,
2036 subframe_bps,
2037 fixed_order,
2038 rice_parameter,
2039 min_partition_order,
2040 max_partition_order,
2041 precompute_partition_sums,
2042 encoder->protected_->do_escape_coding,
2043 encoder->protected_->rice_parameter_search_dist,
2044 subframe[!_best_subframe],
2045 partitioned_rice_contents[!_best_subframe]
2046 );
2047 if(_candidate_bits < _best_bits) {
2048 _best_subframe = !_best_subframe;
2049 _best_bits = _candidate_bits;
2050 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002051 }
2052 }
2053
2054 /* encode lpc */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002055 if(encoder->protected_->max_lpc_order > 0) {
2056 if(encoder->protected_->max_lpc_order >= frame_header->blocksize)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002057 max_lpc_order = frame_header->blocksize-1;
2058 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00002059 max_lpc_order = encoder->protected_->max_lpc_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002060 if(max_lpc_order > 0) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002061 encoder->private_->local_lpc_compute_autocorrelation(real_signal, frame_header->blocksize, max_lpc_order+1, autoc);
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002062 /* if autoc[0] == 0.0, the signal is constant and we usually won't get here, but it can happen */
2063 if(autoc[0] != 0.0) {
Josh Coalson8084b052001-11-01 00:27:29 +00002064 FLAC__lpc_compute_lp_coefficients(autoc, max_lpc_order, encoder->private_->lp_coeff, lpc_error);
Josh Coalsonfa697a92001-08-16 20:07:29 +00002065 if(encoder->protected_->do_exhaustive_model_search) {
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002066 min_lpc_order = 1;
2067 }
2068 else {
Josh Coalson82b73242001-03-28 22:17:05 +00002069 unsigned guess_lpc_order = FLAC__lpc_compute_best_order(lpc_error, max_lpc_order, frame_header->blocksize, subframe_bps);
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002070 min_lpc_order = max_lpc_order = guess_lpc_order;
2071 }
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002072 for(lpc_order = min_lpc_order; lpc_order <= max_lpc_order; lpc_order++) {
2073 lpc_residual_bits_per_sample = FLAC__lpc_compute_expected_bits_per_residual_sample(lpc_error[lpc_order-1], frame_header->blocksize-lpc_order);
Josh Coalson77e3f312001-06-23 03:03:24 +00002074 if(lpc_residual_bits_per_sample >= (FLAC__real)subframe_bps)
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002075 continue; /* don't even try */
2076 rice_parameter = (lpc_residual_bits_per_sample > 0.0)? (unsigned)(lpc_residual_bits_per_sample+0.5) : 0; /* 0.5 is for rounding */
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002077#ifndef FLAC__SYMMETRIC_RICE
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002078 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
Josh Coalsonb9433f92001-03-17 01:07:00 +00002079#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002080 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002081#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002082 fprintf(stderr, "clipping rice_parameter (%u -> %u) @1\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2083#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002084 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002085 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002086 if(encoder->protected_->do_qlp_coeff_prec_search) {
2087 min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
2088 /* ensure a 32-bit datapath throughout for 16bps or less */
2089 if(subframe_bps <= 16)
2090 max_qlp_coeff_precision = min(32 - subframe_bps - lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
2091 else
2092 max_qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION;
2093 }
2094 else {
2095 min_qlp_coeff_precision = max_qlp_coeff_precision = encoder->protected_->qlp_coeff_precision;
2096 }
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002097 for(qlp_coeff_precision = min_qlp_coeff_precision; qlp_coeff_precision <= max_qlp_coeff_precision; qlp_coeff_precision++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00002098 _candidate_bits =
2099 evaluate_lpc_subframe_(
2100 encoder,
2101 integer_signal,
2102 residual[!_best_subframe],
2103 encoder->private_->abs_residual,
2104 encoder->private_->abs_residual_partition_sums,
2105 encoder->private_->raw_bits_per_partition,
2106 encoder->private_->lp_coeff[lpc_order-1],
2107 frame_header->blocksize,
2108 subframe_bps,
2109 lpc_order,
2110 qlp_coeff_precision,
2111 rice_parameter,
2112 min_partition_order,
2113 max_partition_order,
2114 precompute_partition_sums,
2115 encoder->protected_->do_escape_coding,
2116 encoder->protected_->rice_parameter_search_dist,
2117 subframe[!_best_subframe],
2118 partitioned_rice_contents[!_best_subframe]
2119 );
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002120 if(_candidate_bits > 0) { /* if == 0, there was a problem quantizing the lpcoeffs */
2121 if(_candidate_bits < _best_bits) {
2122 _best_subframe = !_best_subframe;
2123 _best_bits = _candidate_bits;
2124 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002125 }
2126 }
2127 }
2128 }
2129 }
2130 }
2131 }
2132 }
2133
Josh Coalson72695802002-10-11 06:25:16 +00002134 /* under rare circumstances this can happen when all but lpc subframe types are disabled: */
2135 if(_best_bits == UINT_MAX) {
2136 FLAC__ASSERT(_best_subframe == 0);
2137 _best_bits = evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, subframe_bps, subframe[_best_subframe]);
2138 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002139
Josh Coalson94e02cd2001-01-25 10:41:06 +00002140 *best_subframe = _best_subframe;
2141 *best_bits = _best_bits;
2142
2143 return true;
2144}
2145
Josh Coalson6fe72f72002-08-20 04:01:59 +00002146FLAC__bool add_subframe_(
2147 FLAC__StreamEncoder *encoder,
2148 const FLAC__FrameHeader *frame_header,
2149 unsigned subframe_bps,
2150 const FLAC__Subframe *subframe,
2151 FLAC__BitBuffer *frame
2152)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002153{
2154 switch(subframe->type) {
2155 case FLAC__SUBFRAME_TYPE_CONSTANT:
Josh Coalson82b73242001-03-28 22:17:05 +00002156 if(!FLAC__subframe_add_constant(&(subframe->data.constant), subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002157 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002158 return false;
2159 }
2160 break;
2161 case FLAC__SUBFRAME_TYPE_FIXED:
Josh Coalson82b73242001-03-28 22:17:05 +00002162 if(!FLAC__subframe_add_fixed(&(subframe->data.fixed), frame_header->blocksize - subframe->data.fixed.order, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002163 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002164 return false;
2165 }
2166 break;
2167 case FLAC__SUBFRAME_TYPE_LPC:
Josh Coalson82b73242001-03-28 22:17:05 +00002168 if(!FLAC__subframe_add_lpc(&(subframe->data.lpc), frame_header->blocksize - subframe->data.lpc.order, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002169 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002170 return false;
2171 }
2172 break;
2173 case FLAC__SUBFRAME_TYPE_VERBATIM:
Josh Coalson82b73242001-03-28 22:17:05 +00002174 if(!FLAC__subframe_add_verbatim(&(subframe->data.verbatim), frame_header->blocksize, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002175 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002176 return false;
2177 }
2178 break;
2179 default:
Josh Coalson1b689822001-05-31 20:11:02 +00002180 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002181 }
2182
2183 return true;
2184}
2185
Josh Coalson6fe72f72002-08-20 04:01:59 +00002186unsigned evaluate_constant_subframe_(
2187 const FLAC__int32 signal,
2188 unsigned subframe_bps,
2189 FLAC__Subframe *subframe
2190)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002191{
2192 subframe->type = FLAC__SUBFRAME_TYPE_CONSTANT;
2193 subframe->data.constant.value = signal;
2194
Josh Coalson82b73242001-03-28 22:17:05 +00002195 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 +00002196}
2197
Josh Coalson6fe72f72002-08-20 04:01:59 +00002198unsigned evaluate_fixed_subframe_(
2199 FLAC__StreamEncoder *encoder,
2200 const FLAC__int32 signal[],
2201 FLAC__int32 residual[],
2202 FLAC__uint32 abs_residual[],
2203 FLAC__uint64 abs_residual_partition_sums[],
2204 unsigned raw_bits_per_partition[],
2205 unsigned blocksize,
2206 unsigned subframe_bps,
2207 unsigned order,
2208 unsigned rice_parameter,
2209 unsigned min_partition_order,
2210 unsigned max_partition_order,
2211 FLAC__bool precompute_partition_sums,
2212 FLAC__bool do_escape_coding,
2213 unsigned rice_parameter_search_dist,
2214 FLAC__Subframe *subframe,
2215 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
2216)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002217{
2218 unsigned i, residual_bits;
2219 const unsigned residual_samples = blocksize - order;
2220
2221 FLAC__fixed_compute_residual(signal+order, residual_samples, order, residual);
2222
2223 subframe->type = FLAC__SUBFRAME_TYPE_FIXED;
2224
2225 subframe->data.fixed.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
Josh Coalsona37ba462002-08-19 21:36:39 +00002226 subframe->data.fixed.entropy_coding_method.data.partitioned_rice.contents = partitioned_rice_contents;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002227 subframe->data.fixed.residual = residual;
2228
Josh Coalson6fe72f72002-08-20 04:01:59 +00002229 residual_bits =
2230 find_best_partition_order_(
2231 encoder->private_,
2232 residual,
2233 abs_residual,
2234 abs_residual_partition_sums,
2235 raw_bits_per_partition,
2236 residual_samples,
2237 order,
2238 rice_parameter,
2239 min_partition_order,
2240 max_partition_order,
2241 precompute_partition_sums,
2242 do_escape_coding,
2243 rice_parameter_search_dist,
2244 &subframe->data.fixed.entropy_coding_method.data.partitioned_rice
2245 );
Josh Coalson94e02cd2001-01-25 10:41:06 +00002246
2247 subframe->data.fixed.order = order;
2248 for(i = 0; i < order; i++)
2249 subframe->data.fixed.warmup[i] = signal[i];
2250
Josh Coalson82b73242001-03-28 22:17:05 +00002251 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 +00002252}
2253
Josh Coalson6fe72f72002-08-20 04:01:59 +00002254unsigned evaluate_lpc_subframe_(
2255 FLAC__StreamEncoder *encoder,
2256 const FLAC__int32 signal[],
2257 FLAC__int32 residual[],
2258 FLAC__uint32 abs_residual[],
2259 FLAC__uint64 abs_residual_partition_sums[],
2260 unsigned raw_bits_per_partition[],
2261 const FLAC__real lp_coeff[],
2262 unsigned blocksize,
2263 unsigned subframe_bps,
2264 unsigned order,
2265 unsigned qlp_coeff_precision,
2266 unsigned rice_parameter,
2267 unsigned min_partition_order,
2268 unsigned max_partition_order,
2269 FLAC__bool precompute_partition_sums,
2270 FLAC__bool do_escape_coding,
2271 unsigned rice_parameter_search_dist,
2272 FLAC__Subframe *subframe,
2273 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
2274)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002275{
Josh Coalson77e3f312001-06-23 03:03:24 +00002276 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00002277 unsigned i, residual_bits;
2278 int quantization, ret;
2279 const unsigned residual_samples = blocksize - order;
2280
Josh Coalson20ac2c12002-08-30 05:47:14 +00002281 /* try to keep qlp coeff precision such that only 32-bit math is required for decode of <=16bps streams */
2282 if(subframe_bps <= 16) {
2283 FLAC__ASSERT(order > 0);
2284 FLAC__ASSERT(order <= FLAC__MAX_LPC_ORDER);
2285 qlp_coeff_precision = min(qlp_coeff_precision, 32 - subframe_bps - FLAC__bitmath_ilog2(order));
2286 }
2287
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002288 ret = FLAC__lpc_quantize_coefficients(lp_coeff, order, qlp_coeff_precision, qlp_coeff, &quantization);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002289 if(ret != 0)
2290 return 0; /* this is a hack to indicate to the caller that we can't do lp at this order on this subframe */
2291
Josh Coalsonfb9d18f2002-10-21 07:04:07 +00002292 if(subframe_bps + qlp_coeff_precision + FLAC__bitmath_ilog2(order) <= 32)
2293 if(subframe_bps <= 16 && qlp_coeff_precision <= 16)
2294 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit(signal+order, residual_samples, qlp_coeff, order, quantization, residual);
2295 else
2296 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 +00002297 else
2298 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 +00002299
2300 subframe->type = FLAC__SUBFRAME_TYPE_LPC;
2301
2302 subframe->data.lpc.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
Josh Coalsona37ba462002-08-19 21:36:39 +00002303 subframe->data.lpc.entropy_coding_method.data.partitioned_rice.contents = partitioned_rice_contents;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002304 subframe->data.lpc.residual = residual;
2305
Josh Coalson6fe72f72002-08-20 04:01:59 +00002306 residual_bits =
2307 find_best_partition_order_(
2308 encoder->private_,
2309 residual,
2310 abs_residual,
2311 abs_residual_partition_sums,
2312 raw_bits_per_partition,
2313 residual_samples,
2314 order,
2315 rice_parameter,
2316 min_partition_order,
2317 max_partition_order,
2318 precompute_partition_sums,
2319 do_escape_coding,
2320 rice_parameter_search_dist,
2321 &subframe->data.fixed.entropy_coding_method.data.partitioned_rice
2322 );
Josh Coalson94e02cd2001-01-25 10:41:06 +00002323
2324 subframe->data.lpc.order = order;
2325 subframe->data.lpc.qlp_coeff_precision = qlp_coeff_precision;
2326 subframe->data.lpc.quantization_level = quantization;
Josh Coalson77e3f312001-06-23 03:03:24 +00002327 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002328 for(i = 0; i < order; i++)
2329 subframe->data.lpc.warmup[i] = signal[i];
2330
Josh Coalson82b73242001-03-28 22:17:05 +00002331 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 +00002332}
2333
Josh Coalson6fe72f72002-08-20 04:01:59 +00002334unsigned evaluate_verbatim_subframe_(
2335 const FLAC__int32 signal[],
2336 unsigned blocksize,
2337 unsigned subframe_bps,
2338 FLAC__Subframe *subframe
2339)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002340{
2341 subframe->type = FLAC__SUBFRAME_TYPE_VERBATIM;
2342
2343 subframe->data.verbatim.data = signal;
2344
Josh Coalson82b73242001-03-28 22:17:05 +00002345 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 +00002346}
2347
Josh Coalson6fe72f72002-08-20 04:01:59 +00002348unsigned find_best_partition_order_(
2349 FLAC__StreamEncoderPrivate *private_,
2350 const FLAC__int32 residual[],
2351 FLAC__uint32 abs_residual[],
2352 FLAC__uint64 abs_residual_partition_sums[],
2353 unsigned raw_bits_per_partition[],
2354 unsigned residual_samples,
2355 unsigned predictor_order,
2356 unsigned rice_parameter,
2357 unsigned min_partition_order,
2358 unsigned max_partition_order,
2359 FLAC__bool precompute_partition_sums,
2360 FLAC__bool do_escape_coding,
2361 unsigned rice_parameter_search_dist,
2362 FLAC__EntropyCodingMethod_PartitionedRice *best_partitioned_rice
2363)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002364{
Josh Coalson77e3f312001-06-23 03:03:24 +00002365 FLAC__int32 r;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002366 unsigned residual_bits, best_residual_bits = 0;
Josh Coalsonafcd8772001-04-18 22:59:25 +00002367 unsigned residual_sample;
Josh Coalson8084b052001-11-01 00:27:29 +00002368 unsigned best_parameters_index = 0;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002369 const unsigned blocksize = residual_samples + predictor_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002370
Josh Coalson2051dd42001-04-12 22:22:34 +00002371 /* compute abs(residual) for use later */
2372 for(residual_sample = 0; residual_sample < residual_samples; residual_sample++) {
2373 r = residual[residual_sample];
Josh Coalson77e3f312001-06-23 03:03:24 +00002374 abs_residual[residual_sample] = (FLAC__uint32)(r<0? -r : r);
Josh Coalson2051dd42001-04-12 22:22:34 +00002375 }
2376
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002377 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 +00002378 min_partition_order = min(min_partition_order, max_partition_order);
2379
Josh Coalson8395d022001-07-12 21:25:22 +00002380 if(precompute_partition_sums) {
2381 int partition_order;
2382 unsigned sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002383
Josh Coalsonf1eff452002-07-31 07:05:33 +00002384 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 +00002385
2386 if(do_escape_coding)
Josh Coalsonf1eff452002-07-31 07:05:33 +00002387 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 +00002388
2389 for(partition_order = (int)max_partition_order, sum = 0; partition_order >= (int)min_partition_order; partition_order--) {
2390#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002391 if(!
2392 set_partitioned_rice_with_precompute_(
2393 residual,
2394 abs_residual_partition_sums+sum,
2395 raw_bits_per_partition+sum,
2396 residual_samples,
2397 predictor_order,
2398 rice_parameter,
2399 rice_parameter_search_dist,
2400 (unsigned)partition_order,
2401 do_escape_coding,
2402 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2403 &residual_bits
2404 )
2405 )
Josh Coalsonafcd8772001-04-18 22:59:25 +00002406#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002407 if(!
2408 set_partitioned_rice_with_precompute_(
2409 abs_residual,
2410 abs_residual_partition_sums+sum,
2411 raw_bits_per_partition+sum,
2412 residual_samples,
2413 predictor_order,
2414 rice_parameter,
2415 rice_parameter_search_dist,
2416 (unsigned)partition_order,
2417 do_escape_coding,
2418 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2419 &residual_bits
2420 )
2421 )
Josh Coalson8395d022001-07-12 21:25:22 +00002422#endif
2423 {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002424 FLAC__ASSERT(best_residual_bits != 0);
2425 break;
Josh Coalson8395d022001-07-12 21:25:22 +00002426 }
2427 sum += 1u << partition_order;
2428 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
2429 best_residual_bits = residual_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002430 best_parameters_index = !best_parameters_index;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002431 best_partitioned_rice->order = partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00002432 }
Josh Coalsonafcd8772001-04-18 22:59:25 +00002433 }
2434 }
Josh Coalson8395d022001-07-12 21:25:22 +00002435 else {
2436 unsigned partition_order;
2437 for(partition_order = min_partition_order; partition_order <= max_partition_order; partition_order++) {
2438#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002439 if(!
2440 set_partitioned_rice_(
2441 abs_residual,
2442 residual,
2443 residual_samples,
2444 predictor_order,
2445 rice_parameter,
2446 rice_parameter_search_dist,
2447 partition_order,
2448 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2449 &residual_bits
2450 )
2451 )
Josh Coalson8395d022001-07-12 21:25:22 +00002452#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002453 if(!
2454 set_partitioned_rice_(
2455 abs_residual,
2456 residual_samples,
2457 predictor_order,
2458 rice_parameter,
2459 rice_parameter_search_dist,
2460 partition_order,
2461 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2462 &residual_bits
2463 )
2464 )
Josh Coalsonafcd8772001-04-18 22:59:25 +00002465#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002466 {
2467 FLAC__ASSERT(best_residual_bits != 0);
2468 break;
2469 }
2470 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
2471 best_residual_bits = residual_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002472 best_parameters_index = !best_parameters_index;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002473 best_partitioned_rice->order = partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00002474 }
2475 }
2476 }
2477
Josh Coalsona37ba462002-08-19 21:36:39 +00002478 /*
Josh Coalson20ac2c12002-08-30 05:47:14 +00002479 * We are allowed to de-const the pointer based on our special knowledge;
Josh Coalsona37ba462002-08-19 21:36:39 +00002480 * it is const to the outside world.
2481 */
2482 {
2483 FLAC__EntropyCodingMethod_PartitionedRiceContents* best_partitioned_rice_contents = (FLAC__EntropyCodingMethod_PartitionedRiceContents*)best_partitioned_rice->contents;
2484 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(best_partitioned_rice_contents, max(6, best_partitioned_rice->order));
2485 memcpy(best_partitioned_rice_contents->parameters, private_->partitioned_rice_contents_extra[best_parameters_index].parameters, sizeof(unsigned)*(1<<(best_partitioned_rice->order)));
2486 memcpy(best_partitioned_rice_contents->raw_bits, private_->partitioned_rice_contents_extra[best_parameters_index].raw_bits, sizeof(unsigned)*(1<<(best_partitioned_rice->order)));
2487 }
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002488
2489 return best_residual_bits;
2490}
2491
Josh Coalson6fe72f72002-08-20 04:01:59 +00002492void precompute_partition_info_sums_(
2493 const FLAC__uint32 abs_residual[],
2494 FLAC__uint64 abs_residual_partition_sums[],
2495 unsigned residual_samples,
2496 unsigned predictor_order,
2497 unsigned min_partition_order,
2498 unsigned max_partition_order
2499)
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002500{
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002501 int partition_order;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002502 unsigned from_partition, to_partition = 0;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002503 const unsigned blocksize = residual_samples + predictor_order;
2504
Josh Coalsonaef013c2001-04-24 01:25:42 +00002505 /* first do max_partition_order */
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002506 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002507 FLAC__uint64 abs_residual_partition_sum;
Josh Coalson77e3f312001-06-23 03:03:24 +00002508 FLAC__uint32 abs_r;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002509 unsigned partition, partition_sample, partition_samples, residual_sample;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002510 const unsigned partitions = 1u << partition_order;
2511 const unsigned default_partition_samples = blocksize >> partition_order;
2512
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002513 FLAC__ASSERT(default_partition_samples > predictor_order);
2514
2515 for(partition = residual_sample = 0; partition < partitions; partition++) {
2516 partition_samples = default_partition_samples;
2517 if(partition == 0)
2518 partition_samples -= predictor_order;
2519 abs_residual_partition_sum = 0;
2520 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
2521 abs_r = abs_residual[residual_sample];
2522 abs_residual_partition_sum += abs_r;
2523 residual_sample++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002524 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002525 abs_residual_partition_sums[partition] = abs_residual_partition_sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002526 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002527 to_partition = partitions;
2528 break;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002529 }
Josh Coalsonf76a3612001-04-18 02:28:11 +00002530
Josh Coalson8395d022001-07-12 21:25:22 +00002531 /* now merge partitions for lower orders */
Josh Coalson6bd17572001-05-25 19:02:01 +00002532 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002533 FLAC__uint64 s;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002534 unsigned i;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002535 const unsigned partitions = 1u << partition_order;
2536 for(i = 0; i < partitions; i++) {
Josh Coalsonaef013c2001-04-24 01:25:42 +00002537 s = abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00002538 from_partition++;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002539 abs_residual_partition_sums[to_partition] = s + abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00002540 from_partition++;
2541 to_partition++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002542 }
2543 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002544}
Josh Coalson8395d022001-07-12 21:25:22 +00002545
Josh Coalson6fe72f72002-08-20 04:01:59 +00002546void precompute_partition_info_escapes_(
2547 const FLAC__int32 residual[],
2548 unsigned raw_bits_per_partition[],
2549 unsigned residual_samples,
2550 unsigned predictor_order,
2551 unsigned min_partition_order,
2552 unsigned max_partition_order
2553)
Josh Coalson8395d022001-07-12 21:25:22 +00002554{
2555 int partition_order;
2556 unsigned from_partition, to_partition = 0;
2557 const unsigned blocksize = residual_samples + predictor_order;
2558
2559 /* first do max_partition_order */
2560 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
2561 FLAC__int32 r, residual_partition_min, residual_partition_max;
2562 unsigned silog2_min, silog2_max;
2563 unsigned partition, partition_sample, partition_samples, residual_sample;
2564 const unsigned partitions = 1u << partition_order;
2565 const unsigned default_partition_samples = blocksize >> partition_order;
2566
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002567 FLAC__ASSERT(default_partition_samples > predictor_order);
2568
2569 for(partition = residual_sample = 0; partition < partitions; partition++) {
2570 partition_samples = default_partition_samples;
2571 if(partition == 0)
2572 partition_samples -= predictor_order;
2573 residual_partition_min = residual_partition_max = 0;
2574 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
2575 r = residual[residual_sample];
2576 if(r < residual_partition_min)
2577 residual_partition_min = r;
2578 else if(r > residual_partition_max)
2579 residual_partition_max = r;
2580 residual_sample++;
Josh Coalson8395d022001-07-12 21:25:22 +00002581 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002582 silog2_min = FLAC__bitmath_silog2(residual_partition_min);
2583 silog2_max = FLAC__bitmath_silog2(residual_partition_max);
2584 raw_bits_per_partition[partition] = max(silog2_min, silog2_max);
Josh Coalson8395d022001-07-12 21:25:22 +00002585 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002586 to_partition = partitions;
2587 break;
Josh Coalson8395d022001-07-12 21:25:22 +00002588 }
2589
2590 /* now merge partitions for lower orders */
2591 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
2592 unsigned m;
2593 unsigned i;
2594 const unsigned partitions = 1u << partition_order;
2595 for(i = 0; i < partitions; i++) {
2596 m = raw_bits_per_partition[from_partition];
2597 from_partition++;
2598 raw_bits_per_partition[to_partition] = max(m, raw_bits_per_partition[from_partition]);
2599 from_partition++;
2600 to_partition++;
2601 }
2602 }
2603}
Josh Coalson94e02cd2001-01-25 10:41:06 +00002604
Josh Coalson352e0f62001-03-20 22:55:50 +00002605#ifdef VARIABLE_RICE_BITS
2606#undef VARIABLE_RICE_BITS
2607#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002608#ifndef DONT_ESTIMATE_RICE_BITS
Josh Coalson352e0f62001-03-20 22:55:50 +00002609#define VARIABLE_RICE_BITS(value, parameter) ((value) >> (parameter))
Josh Coalson8395d022001-07-12 21:25:22 +00002610#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002611
Josh Coalson8395d022001-07-12 21:25:22 +00002612#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002613FLAC__bool set_partitioned_rice_(
2614 const FLAC__uint32 abs_residual[],
2615 const FLAC__int32 residual[],
2616 const unsigned residual_samples,
2617 const unsigned predictor_order,
2618 const unsigned suggested_rice_parameter,
2619 const unsigned rice_parameter_search_dist,
2620 const unsigned partition_order,
2621 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2622 unsigned *bits
2623)
Josh Coalson8395d022001-07-12 21:25:22 +00002624#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002625FLAC__bool set_partitioned_rice_(
2626 const FLAC__uint32 abs_residual[],
2627 const unsigned residual_samples,
2628 const unsigned predictor_order,
2629 const unsigned suggested_rice_parameter,
2630 const unsigned rice_parameter_search_dist,
2631 const unsigned partition_order,
2632 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2633 unsigned *bits
2634)
Josh Coalson8395d022001-07-12 21:25:22 +00002635#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002636{
Josh Coalson034dfab2001-04-27 19:10:23 +00002637 unsigned rice_parameter, partition_bits;
2638#ifndef NO_RICE_SEARCH
2639 unsigned best_partition_bits;
2640 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
2641#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002642 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002643 unsigned *parameters;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002644
Josh Coalson1b689822001-05-31 20:11:02 +00002645 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
Josh Coalson2051dd42001-04-12 22:22:34 +00002646
Josh Coalsona37ba462002-08-19 21:36:39 +00002647 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order));
2648 parameters = partitioned_rice_contents->parameters;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002649
Josh Coalson94e02cd2001-01-25 10:41:06 +00002650 if(partition_order == 0) {
2651 unsigned i;
Josh Coalson352e0f62001-03-20 22:55:50 +00002652
Josh Coalson034dfab2001-04-27 19:10:23 +00002653#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00002654 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002655 if(suggested_rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00002656 min_rice_parameter = 0;
2657 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002658 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
2659 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00002660 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002661#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002662 fprintf(stderr, "clipping rice_parameter (%u -> %u) @2\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2663#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00002664 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002665 }
2666 }
2667 else
2668 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
2669
2670 best_partition_bits = 0xffffffff;
2671 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2672#endif
2673#ifdef VARIABLE_RICE_BITS
2674#ifdef FLAC__SYMMETRIC_RICE
2675 partition_bits = (2+rice_parameter) * residual_samples;
2676#else
2677 const unsigned rice_parameter_estimate = rice_parameter-1;
2678 partition_bits = (1+rice_parameter) * residual_samples;
2679#endif
2680#else
2681 partition_bits = 0;
2682#endif
2683 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
2684 for(i = 0; i < residual_samples; i++) {
2685#ifdef VARIABLE_RICE_BITS
2686#ifdef FLAC__SYMMETRIC_RICE
2687 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
2688#else
2689 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
2690#endif
2691#else
2692 partition_bits += FLAC__bitbuffer_rice_bits(residual[i], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
2693#endif
2694 }
2695#ifndef NO_RICE_SEARCH
2696 if(partition_bits < best_partition_bits) {
2697 best_rice_parameter = rice_parameter;
2698 best_partition_bits = partition_bits;
2699 }
2700 }
2701#endif
2702 parameters[0] = best_rice_parameter;
2703 bits_ += best_partition_bits;
2704 }
2705 else {
2706 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002707 unsigned partition_samples;
2708 FLAC__uint64 mean, k;
Josh Coalson8395d022001-07-12 21:25:22 +00002709 const unsigned partitions = 1u << partition_order;
2710 for(partition = residual_sample = 0; partition < partitions; partition++) {
2711 partition_samples = (residual_samples+predictor_order) >> partition_order;
2712 if(partition == 0) {
2713 if(partition_samples <= predictor_order)
2714 return false;
2715 else
2716 partition_samples -= predictor_order;
2717 }
2718 mean = 0;
2719 save_residual_sample = residual_sample;
2720 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++)
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002721 mean += abs_residual[residual_sample];
Josh Coalson8395d022001-07-12 21:25:22 +00002722 residual_sample = save_residual_sample;
2723#ifdef FLAC__SYMMETRIC_RICE
2724 mean += partition_samples >> 1; /* for rounding effect */
2725 mean /= partition_samples;
2726
2727 /* calc rice_parameter = floor(log2(mean)) */
2728 rice_parameter = 0;
2729 mean>>=1;
2730 while(mean) {
2731 rice_parameter++;
2732 mean >>= 1;
2733 }
2734#else
2735 /* calc rice_parameter ala LOCO-I */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002736 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson8395d022001-07-12 21:25:22 +00002737 ;
2738#endif
2739 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002740#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002741 fprintf(stderr, "clipping rice_parameter (%u -> %u) @3\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2742#endif
2743 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2744 }
2745
2746#ifndef NO_RICE_SEARCH
2747 if(rice_parameter_search_dist) {
2748 if(rice_parameter < rice_parameter_search_dist)
2749 min_rice_parameter = 0;
2750 else
2751 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
2752 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
2753 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002754#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002755 fprintf(stderr, "clipping rice_parameter (%u -> %u) @4\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2756#endif
2757 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2758 }
2759 }
2760 else
2761 min_rice_parameter = max_rice_parameter = rice_parameter;
2762
2763 best_partition_bits = 0xffffffff;
2764 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2765#endif
2766#ifdef VARIABLE_RICE_BITS
2767#ifdef FLAC__SYMMETRIC_RICE
2768 partition_bits = (2+rice_parameter) * partition_samples;
2769#else
2770 const unsigned rice_parameter_estimate = rice_parameter-1;
2771 partition_bits = (1+rice_parameter) * partition_samples;
2772#endif
2773#else
2774 partition_bits = 0;
2775#endif
2776 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
2777 save_residual_sample = residual_sample;
2778 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
2779#ifdef VARIABLE_RICE_BITS
2780#ifdef FLAC__SYMMETRIC_RICE
2781 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter);
2782#else
2783 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
2784#endif
2785#else
2786 partition_bits += FLAC__bitbuffer_rice_bits(residual[residual_sample], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
2787#endif
2788 }
2789#ifndef NO_RICE_SEARCH
2790 if(rice_parameter != max_rice_parameter)
2791 residual_sample = save_residual_sample;
2792 if(partition_bits < best_partition_bits) {
2793 best_rice_parameter = rice_parameter;
2794 best_partition_bits = partition_bits;
2795 }
2796 }
2797#endif
2798 parameters[partition] = best_rice_parameter;
2799 bits_ += best_partition_bits;
2800 }
2801 }
2802
2803 *bits = bits_;
2804 return true;
2805}
2806
2807#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002808FLAC__bool set_partitioned_rice_with_precompute_(
2809 const FLAC__int32 residual[],
2810 const FLAC__uint64 abs_residual_partition_sums[],
2811 const unsigned raw_bits_per_partition[],
2812 const unsigned residual_samples,
2813 const unsigned predictor_order,
2814 const unsigned suggested_rice_parameter,
2815 const unsigned rice_parameter_search_dist,
2816 const unsigned partition_order,
2817 const FLAC__bool search_for_escapes,
2818 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2819 unsigned *bits
2820)
Josh Coalson8395d022001-07-12 21:25:22 +00002821#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002822FLAC__bool set_partitioned_rice_with_precompute_(
2823 const FLAC__uint32 abs_residual[],
2824 const FLAC__uint64 abs_residual_partition_sums[],
2825 const unsigned raw_bits_per_partition[],
2826 const unsigned residual_samples,
2827 const unsigned predictor_order,
2828 const unsigned suggested_rice_parameter,
2829 const unsigned rice_parameter_search_dist,
2830 const unsigned partition_order,
2831 const FLAC__bool search_for_escapes,
2832 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2833 unsigned *bits
2834)
Josh Coalson8395d022001-07-12 21:25:22 +00002835#endif
2836{
2837 unsigned rice_parameter, partition_bits;
2838#ifndef NO_RICE_SEARCH
2839 unsigned best_partition_bits;
2840 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
2841#endif
2842 unsigned flat_bits;
2843 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002844 unsigned *parameters, *raw_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002845
2846 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
2847
Josh Coalsona37ba462002-08-19 21:36:39 +00002848 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order));
2849 parameters = partitioned_rice_contents->parameters;
2850 raw_bits = partitioned_rice_contents->raw_bits;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002851
Josh Coalson8395d022001-07-12 21:25:22 +00002852 if(partition_order == 0) {
2853 unsigned i;
2854
2855#ifndef NO_RICE_SEARCH
2856 if(rice_parameter_search_dist) {
2857 if(suggested_rice_parameter < rice_parameter_search_dist)
2858 min_rice_parameter = 0;
2859 else
2860 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
2861 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
2862 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002863#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002864 fprintf(stderr, "clipping rice_parameter (%u -> %u) @5\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2865#endif
2866 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2867 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002868 }
2869 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002870 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
Josh Coalson2051dd42001-04-12 22:22:34 +00002871
Josh Coalson034dfab2001-04-27 19:10:23 +00002872 best_partition_bits = 0xffffffff;
2873 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2874#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002875#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002876#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson034dfab2001-04-27 19:10:23 +00002877 partition_bits = (2+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002878#else
Josh Coalson352e0f62001-03-20 22:55:50 +00002879 const unsigned rice_parameter_estimate = rice_parameter-1;
Josh Coalson034dfab2001-04-27 19:10:23 +00002880 partition_bits = (1+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002881#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002882#else
2883 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002884#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00002885 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson352e0f62001-03-20 22:55:50 +00002886 for(i = 0; i < residual_samples; i++) {
2887#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002888#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson2051dd42001-04-12 22:22:34 +00002889 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002890#else
Josh Coalson2051dd42001-04-12 22:22:34 +00002891 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00002892#endif
2893#else
Josh Coalson2051dd42001-04-12 22:22:34 +00002894 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 +00002895#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00002896 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002897#ifndef NO_RICE_SEARCH
2898 if(partition_bits < best_partition_bits) {
2899 best_rice_parameter = rice_parameter;
2900 best_partition_bits = partition_bits;
Josh Coalson352e0f62001-03-20 22:55:50 +00002901 }
2902 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002903#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002904 if(search_for_escapes) {
2905 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;
2906 if(flat_bits <= best_partition_bits) {
2907 raw_bits[0] = raw_bits_per_partition[0];
2908 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
2909 best_partition_bits = flat_bits;
2910 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002911 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002912 parameters[0] = best_rice_parameter;
2913 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002914 }
2915 else {
Josh Coalson4dacd192001-06-06 21:11:44 +00002916 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002917 unsigned partition_samples;
2918 FLAC__uint64 mean, k;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002919 const unsigned partitions = 1u << partition_order;
Josh Coalson4dacd192001-06-06 21:11:44 +00002920 for(partition = residual_sample = 0; partition < partitions; partition++) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002921 partition_samples = (residual_samples+predictor_order) >> partition_order;
Josh Coalson034dfab2001-04-27 19:10:23 +00002922 if(partition == 0) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002923 if(partition_samples <= predictor_order)
2924 return false;
2925 else
2926 partition_samples -= predictor_order;
2927 }
Josh Coalson05d20792001-06-29 23:12:26 +00002928 mean = abs_residual_partition_sums[partition];
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002929#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson05d20792001-06-29 23:12:26 +00002930 mean += partition_samples >> 1; /* for rounding effect */
2931 mean /= partition_samples;
2932
Josh Coalson034dfab2001-04-27 19:10:23 +00002933 /* calc rice_parameter = floor(log2(mean)) */
2934 rice_parameter = 0;
2935 mean>>=1;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002936 while(mean) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002937 rice_parameter++;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002938 mean >>= 1;
2939 }
Josh Coalsonb9433f92001-03-17 01:07:00 +00002940#else
Josh Coalson05d20792001-06-29 23:12:26 +00002941 /* calc rice_parameter ala LOCO-I */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002942 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson05d20792001-06-29 23:12:26 +00002943 ;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002944#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002945 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002946#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002947 fprintf(stderr, "clipping rice_parameter (%u -> %u) @6\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2948#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002949 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002950 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002951
Josh Coalson034dfab2001-04-27 19:10:23 +00002952#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00002953 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002954 if(rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00002955 min_rice_parameter = 0;
2956 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002957 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
2958 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00002959 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002960#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002961 fprintf(stderr, "clipping rice_parameter (%u -> %u) @7\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2962#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00002963 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002964 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002965 }
2966 else
2967 min_rice_parameter = max_rice_parameter = rice_parameter;
Josh Coalson60f77d72001-04-25 02:16:36 +00002968
Josh Coalson034dfab2001-04-27 19:10:23 +00002969 best_partition_bits = 0xffffffff;
2970 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2971#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002972#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002973#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson034dfab2001-04-27 19:10:23 +00002974 partition_bits = (2+rice_parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002975#else
Josh Coalson034dfab2001-04-27 19:10:23 +00002976 const unsigned rice_parameter_estimate = rice_parameter-1;
2977 partition_bits = (1+rice_parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002978#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002979#else
2980 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002981#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002982 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson4dacd192001-06-06 21:11:44 +00002983 save_residual_sample = residual_sample;
2984 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
Josh Coalson352e0f62001-03-20 22:55:50 +00002985#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002986#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson4dacd192001-06-06 21:11:44 +00002987 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002988#else
Josh Coalson4dacd192001-06-06 21:11:44 +00002989 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00002990#endif
2991#else
Josh Coalson4dacd192001-06-06 21:11:44 +00002992 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 +00002993#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002994 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002995#ifndef NO_RICE_SEARCH
Josh Coalson4dacd192001-06-06 21:11:44 +00002996 if(rice_parameter != max_rice_parameter)
2997 residual_sample = save_residual_sample;
Josh Coalson034dfab2001-04-27 19:10:23 +00002998 if(partition_bits < best_partition_bits) {
2999 best_rice_parameter = rice_parameter;
3000 best_partition_bits = partition_bits;
3001 }
Josh Coalson2051dd42001-04-12 22:22:34 +00003002 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003003#endif
Josh Coalson8395d022001-07-12 21:25:22 +00003004 if(search_for_escapes) {
3005 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;
3006 if(flat_bits <= best_partition_bits) {
3007 raw_bits[partition] = raw_bits_per_partition[partition];
3008 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
3009 best_partition_bits = flat_bits;
3010 }
Josh Coalson2051dd42001-04-12 22:22:34 +00003011 }
Josh Coalson034dfab2001-04-27 19:10:23 +00003012 parameters[partition] = best_rice_parameter;
3013 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00003014 }
3015 }
3016
3017 *bits = bits_;
3018 return true;
3019}
Josh Coalson859bc542001-03-27 22:22:27 +00003020
Josh Coalsonf1eff452002-07-31 07:05:33 +00003021unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples)
Josh Coalson859bc542001-03-27 22:22:27 +00003022{
3023 unsigned i, shift;
Josh Coalson77e3f312001-06-23 03:03:24 +00003024 FLAC__int32 x = 0;
Josh Coalson859bc542001-03-27 22:22:27 +00003025
3026 for(i = 0; i < samples && !(x&1); i++)
3027 x |= signal[i];
3028
3029 if(x == 0) {
3030 shift = 0;
3031 }
3032 else {
3033 for(shift = 0; !(x&1); shift++)
3034 x >>= 1;
3035 }
3036
3037 if(shift > 0) {
3038 for(i = 0; i < samples; i++)
3039 signal[i] >>= shift;
3040 }
3041
3042 return shift;
3043}
Josh Coalsond86e03b2002-08-03 21:56:15 +00003044
3045void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
3046{
3047 unsigned channel;
3048
3049 for(channel = 0; channel < channels; channel++)
3050 memcpy(&fifo->data[channel][fifo->tail], &input[channel][input_offset], sizeof(FLAC__int32) * wide_samples);
3051
3052 fifo->tail += wide_samples;
3053
3054 FLAC__ASSERT(fifo->tail <= fifo->size);
3055}
3056
3057void append_to_verify_fifo_interleaved_(verify_input_fifo *fifo, const FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
3058{
3059 unsigned channel;
3060 unsigned sample, wide_sample;
3061 unsigned tail = fifo->tail;
3062
3063 sample = input_offset * channels;
3064 for(wide_sample = 0; wide_sample < wide_samples; wide_sample++) {
3065 for(channel = 0; channel < channels; channel++)
3066 fifo->data[channel][tail] = input[sample++];
3067 tail++;
3068 }
3069 fifo->tail = tail;
3070
3071 FLAC__ASSERT(fifo->tail <= fifo->size);
3072}
3073
3074FLAC__StreamDecoderReadStatus verify_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data)
3075{
3076 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
3077 const unsigned encoded_bytes = encoder->private_->verify.output.bytes;
3078 (void)decoder;
3079
3080 if(encoder->private_->verify.needs_magic_hack) {
3081 FLAC__ASSERT(*bytes >= FLAC__STREAM_SYNC_LENGTH);
3082 *bytes = FLAC__STREAM_SYNC_LENGTH;
3083 memcpy(buffer, FLAC__STREAM_SYNC_STRING, *bytes);
3084 encoder->private_->verify.needs_magic_hack = false;
3085 }
3086 else {
3087 if(encoded_bytes == 0) {
Josh Coalsonfc2b7372002-08-16 05:39:34 +00003088 /*
3089 * If we get here, a FIFO underflow has occurred,
3090 * which means there is a bug somewhere.
3091 */
3092 FLAC__ASSERT(0);
Josh Coalsond86e03b2002-08-03 21:56:15 +00003093 return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
3094 }
3095 else if(encoded_bytes < *bytes)
3096 *bytes = encoded_bytes;
3097 memcpy(buffer, encoder->private_->verify.output.data, *bytes);
3098 encoder->private_->verify.output.data += *bytes;
3099 encoder->private_->verify.output.bytes -= *bytes;
3100 }
3101
3102 return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
3103}
3104
3105FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
3106{
3107 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder *)client_data;
3108 unsigned channel;
3109 const unsigned channels = FLAC__stream_decoder_get_channels(decoder);
3110 const unsigned blocksize = frame->header.blocksize;
3111 const unsigned bytes_per_block = sizeof(FLAC__int32) * blocksize;
3112
3113 for(channel = 0; channel < channels; channel++) {
3114 if(0 != memcmp(buffer[channel], encoder->private_->verify.input_fifo.data[channel], bytes_per_block)) {
3115 unsigned i, sample = 0;
3116 FLAC__int32 expect = 0, got = 0;
3117
3118 for(i = 0; i < blocksize; i++) {
3119 if(buffer[channel][i] != encoder->private_->verify.input_fifo.data[channel][i]) {
3120 sample = i;
3121 expect = (FLAC__int32)encoder->private_->verify.input_fifo.data[channel][i];
3122 got = (FLAC__int32)buffer[channel][i];
3123 break;
3124 }
3125 }
3126 FLAC__ASSERT(i < blocksize);
3127 FLAC__ASSERT(frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER);
3128 encoder->private_->verify.error_stats.absolute_sample = frame->header.number.sample_number + sample;
Josh Coalson5f39e9f2002-08-21 05:27:01 +00003129 encoder->private_->verify.error_stats.frame_number = (unsigned)(frame->header.number.sample_number / blocksize);
Josh Coalsond86e03b2002-08-03 21:56:15 +00003130 encoder->private_->verify.error_stats.channel = channel;
3131 encoder->private_->verify.error_stats.sample = sample;
3132 encoder->private_->verify.error_stats.expected = expect;
3133 encoder->private_->verify.error_stats.got = got;
3134 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA;
3135 return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
3136 }
3137 }
3138 /* dequeue the frame from the fifo */
3139 for(channel = 0; channel < channels; channel++) {
3140 memmove(&encoder->private_->verify.input_fifo.data[channel][0], &encoder->private_->verify.input_fifo.data[channel][blocksize], encoder->private_->verify.input_fifo.tail - blocksize);
3141 }
3142 encoder->private_->verify.input_fifo.tail -= blocksize;
3143 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
3144}
3145
3146void verify_metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
3147{
3148 (void)decoder, (void)metadata, (void)client_data;
3149}
3150
3151void verify_error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
3152{
3153 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
3154 (void)decoder, (void)status;
3155 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
3156}