blob: dfeb82245ceb45a60927c1acdb06e80c76422077 [file] [log] [blame]
Josh Coalson26560dd2001-02-08 00:38:41 +00001/* libFLAC - Free Lossless Audio Codec library
Josh Coalson305ae2e2002-01-26 17:36:39 +00002 * Copyright (C) 2000,2001,2002 Josh Coalson
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00003 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 */
19
Josh Coalsone6b3bbe2002-10-08 06:03:25 +000020#include <limits.h>
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000021#include <stdio.h>
22#include <stdlib.h> /* for malloc() */
23#include <string.h> /* for memcpy() */
Josh Coalson1b689822001-05-31 20:11:02 +000024#include "FLAC/assert.h"
Josh Coalsond86e03b2002-08-03 21:56:15 +000025#include "FLAC/stream_decoder.h"
Josh Coalson0a15c142001-06-13 17:59:57 +000026#include "protected/stream_encoder.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000027#include "private/bitbuffer.h"
Josh Coalsoneef56702001-03-30 00:45:22 +000028#include "private/bitmath.h"
Josh Coalson215af572001-03-27 01:15:58 +000029#include "private/crc.h"
Josh Coalsoncf30f502001-05-23 20:57:44 +000030#include "private/cpu.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000031#include "private/fixed.h"
Josh Coalsonb7023aa2002-08-17 15:23:43 +000032#include "private/format.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000033#include "private/lpc.h"
Josh Coalsonfa37f1c2001-01-12 23:55:11 +000034#include "private/md5.h"
Josh Coalsond98c43d2001-05-13 05:17:01 +000035#include "private/memory.h"
Josh Coalsonb7023aa2002-08-17 15:23:43 +000036#include "private/stream_encoder_framing.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000037
38#ifdef min
39#undef min
40#endif
41#define min(x,y) ((x)<(y)?(x):(y))
42
43#ifdef max
44#undef max
45#endif
46#define max(x,y) ((x)>(y)?(x):(y))
47
Josh Coalsond86e03b2002-08-03 21:56:15 +000048typedef struct {
49 FLAC__int32 *data[FLAC__MAX_CHANNELS];
50 unsigned size; /* of each data[] in samples */
51 unsigned tail;
52} verify_input_fifo;
53
54typedef struct {
55 const FLAC__byte *data;
56 unsigned capacity;
57 unsigned bytes;
58} verify_output;
59
60typedef enum {
61 ENCODER_IN_MAGIC = 0,
62 ENCODER_IN_METADATA = 1,
63 ENCODER_IN_AUDIO = 2
64} EncoderStateHint;
65
Josh Coalson0a15c142001-06-13 17:59:57 +000066/***********************************************************************
67 *
68 * Private class method prototypes
69 *
70 ***********************************************************************/
71
Josh Coalsonf1eff452002-07-31 07:05:33 +000072static void set_defaults_(FLAC__StreamEncoder *encoder);
73static void free_(FLAC__StreamEncoder *encoder);
74static FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size);
Josh Coalsond86e03b2002-08-03 21:56:15 +000075static FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples);
Josh Coalsonf1eff452002-07-31 07:05:33 +000076static FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame);
77static FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame);
Josh Coalson6fe72f72002-08-20 04:01:59 +000078
79static FLAC__bool process_subframe_(
80 FLAC__StreamEncoder *encoder,
81 unsigned min_partition_order,
82 unsigned max_partition_order,
83 FLAC__bool precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +000084 const FLAC__FrameHeader *frame_header,
85 unsigned subframe_bps,
86 const FLAC__int32 integer_signal[],
87 const FLAC__real real_signal[],
88 FLAC__Subframe *subframe[2],
89 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents[2],
90 FLAC__int32 *residual[2],
91 unsigned *best_subframe,
92 unsigned *best_bits
93);
94
95static FLAC__bool add_subframe_(
96 FLAC__StreamEncoder *encoder,
97 const FLAC__FrameHeader *frame_header,
98 unsigned subframe_bps,
99 const FLAC__Subframe *subframe,
100 FLAC__BitBuffer *frame
101);
102
103static unsigned evaluate_constant_subframe_(
104 const FLAC__int32 signal,
105 unsigned subframe_bps,
106 FLAC__Subframe *subframe
107);
108
109static unsigned evaluate_fixed_subframe_(
110 FLAC__StreamEncoder *encoder,
111 const FLAC__int32 signal[],
112 FLAC__int32 residual[],
113 FLAC__uint32 abs_residual[],
114 FLAC__uint64 abs_residual_partition_sums[],
115 unsigned raw_bits_per_partition[],
116 unsigned blocksize,
117 unsigned subframe_bps,
118 unsigned order,
119 unsigned rice_parameter,
120 unsigned min_partition_order,
121 unsigned max_partition_order,
122 FLAC__bool precompute_partition_sums,
123 FLAC__bool do_escape_coding,
124 unsigned rice_parameter_search_dist,
125 FLAC__Subframe *subframe,
126 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
127);
128
129static unsigned evaluate_lpc_subframe_(
130 FLAC__StreamEncoder *encoder,
131 const FLAC__int32 signal[],
132 FLAC__int32 residual[],
133 FLAC__uint32 abs_residual[],
134 FLAC__uint64 abs_residual_partition_sums[],
135 unsigned raw_bits_per_partition[],
136 const FLAC__real lp_coeff[],
137 unsigned blocksize,
138 unsigned subframe_bps,
139 unsigned order,
140 unsigned qlp_coeff_precision,
141 unsigned rice_parameter,
142 unsigned min_partition_order,
143 unsigned max_partition_order,
144 FLAC__bool precompute_partition_sums,
145 FLAC__bool do_escape_coding,
146 unsigned rice_parameter_search_dist,
147 FLAC__Subframe *subframe,
148 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
149);
150
151static unsigned evaluate_verbatim_subframe_(
152 const FLAC__int32 signal[],
153 unsigned blocksize,
154 unsigned subframe_bps,
155 FLAC__Subframe *subframe
156);
157
158static unsigned find_best_partition_order_(
159 struct FLAC__StreamEncoderPrivate *private_,
160 const FLAC__int32 residual[],
161 FLAC__uint32 abs_residual[],
162 FLAC__uint64 abs_residual_partition_sums[],
163 unsigned raw_bits_per_partition[],
164 unsigned residual_samples,
165 unsigned predictor_order,
166 unsigned rice_parameter,
167 unsigned min_partition_order,
168 unsigned max_partition_order,
169 FLAC__bool precompute_partition_sums,
170 FLAC__bool do_escape_coding,
171 unsigned rice_parameter_search_dist,
172 FLAC__EntropyCodingMethod_PartitionedRice *best_partitioned_rice
173);
174
175static void precompute_partition_info_sums_(
176 const FLAC__uint32 abs_residual[],
177 FLAC__uint64 abs_residual_partition_sums[],
178 unsigned residual_samples,
179 unsigned predictor_order,
180 unsigned min_partition_order,
181 unsigned max_partition_order
182);
183
184static void precompute_partition_info_escapes_(
185 const FLAC__int32 residual[],
186 unsigned raw_bits_per_partition[],
187 unsigned residual_samples,
188 unsigned predictor_order,
189 unsigned min_partition_order,
190 unsigned max_partition_order
191);
192
Josh Coalson8395d022001-07-12 21:25:22 +0000193#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +0000194static FLAC__bool set_partitioned_rice_(
195 const FLAC__uint32 abs_residual[],
196 const FLAC__int32 residual[],
197 const unsigned residual_samples,
198 const unsigned predictor_order,
199 const unsigned suggested_rice_parameter,
200 const unsigned rice_parameter_search_dist,
201 const unsigned partition_order,
202 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
203 unsigned *bits
204);
205
206static FLAC__bool set_partitioned_rice_with_precompute_(
207 const FLAC__int32 residual[],
208 const FLAC__uint64 abs_residual_partition_sums[],
209 const unsigned raw_bits_per_partition[],
210 const unsigned residual_samples,
211 const unsigned predictor_order,
212 const unsigned suggested_rice_parameter,
213 const unsigned rice_parameter_search_dist,
214 const unsigned partition_order,
215 const FLAC__bool search_for_escapes,
216 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
217 unsigned *bits
218);
Josh Coalson8395d022001-07-12 21:25:22 +0000219#else
Josh Coalson6fe72f72002-08-20 04:01:59 +0000220static FLAC__bool set_partitioned_rice_(
221 const FLAC__uint32 abs_residual[],
222 const unsigned residual_samples,
223 const unsigned predictor_order,
224 const unsigned suggested_rice_parameter,
225 const unsigned rice_parameter_search_dist,
226 const unsigned partition_order,
227 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
228 unsigned *bits
229);
230
231static FLAC__bool set_partitioned_rice_with_precompute_(
232 const FLAC__uint32 abs_residual[],
233 const FLAC__uint64 abs_residual_partition_sums[],
234 const unsigned raw_bits_per_partition[],
235 const unsigned residual_samples,
236 const unsigned predictor_order,
237 const unsigned suggested_rice_parameter,
238 const unsigned rice_parameter_search_dist,
239 const unsigned partition_order,
240 const FLAC__bool search_for_escapes,
241 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
242 unsigned *bits
243);
Josh Coalson0a15c142001-06-13 17:59:57 +0000244#endif
Josh Coalson6fe72f72002-08-20 04:01:59 +0000245
Josh Coalsonf1eff452002-07-31 07:05:33 +0000246static unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples);
Josh Coalson6fe72f72002-08-20 04:01:59 +0000247
Josh Coalsond86e03b2002-08-03 21:56:15 +0000248/* verify-related routines: */
Josh Coalson6fe72f72002-08-20 04:01:59 +0000249static void append_to_verify_fifo_(
250 verify_input_fifo *fifo,
251 const FLAC__int32 * const input[],
252 unsigned input_offset,
253 unsigned channels,
254 unsigned wide_samples
255);
256
257static void append_to_verify_fifo_interleaved_(
258 verify_input_fifo *fifo,
259 const FLAC__int32 input[],
260 unsigned input_offset,
261 unsigned channels,
262 unsigned wide_samples
263);
264
265static FLAC__StreamDecoderReadStatus verify_read_callback_(
266 const FLAC__StreamDecoder *decoder,
267 FLAC__byte buffer[],
268 unsigned *bytes,
269 void *client_data
270);
271
272static FLAC__StreamDecoderWriteStatus verify_write_callback_(
273 const FLAC__StreamDecoder *decoder,
274 const FLAC__Frame *frame,
275 const FLAC__int32 * const buffer[],
276 void *client_data
277);
278
279static void verify_metadata_callback_(
280 const FLAC__StreamDecoder *decoder,
281 const FLAC__StreamMetadata *metadata,
282 void *client_data
283);
284
285static void verify_error_callback_(
286 const FLAC__StreamDecoder *decoder,
287 FLAC__StreamDecoderErrorStatus status,
288 void *client_data
289);
290
Josh Coalson0a15c142001-06-13 17:59:57 +0000291
292/***********************************************************************
293 *
294 * Private class data
295 *
296 ***********************************************************************/
297
298typedef struct FLAC__StreamEncoderPrivate {
Josh Coalson8395d022001-07-12 21:25:22 +0000299 unsigned input_capacity; /* current size (in samples) of the signal and residual buffers */
Josh Coalson77e3f312001-06-23 03:03:24 +0000300 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
301 FLAC__int32 *integer_signal_mid_side[2]; /* the integer version of the mid-side input signal (stereo only) */
302 FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* the floating-point version of the input signal */
303 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 +0000304 unsigned subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input signal (stream bps - wasted bits) */
305 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 +0000306 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
307 FLAC__int32 *residual_workspace_mid_side[2][2];
Josh Coalson94e02cd2001-01-25 10:41:06 +0000308 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
309 FLAC__Subframe subframe_workspace_mid_side[2][2];
310 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
311 FLAC__Subframe *subframe_workspace_ptr_mid_side[2][2];
Josh Coalsona37ba462002-08-19 21:36:39 +0000312 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace[FLAC__MAX_CHANNELS][2];
313 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_workspace_mid_side[FLAC__MAX_CHANNELS][2];
314 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr[FLAC__MAX_CHANNELS][2];
315 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents_workspace_ptr_mid_side[FLAC__MAX_CHANNELS][2];
Josh Coalson8395d022001-07-12 21:25:22 +0000316 unsigned best_subframe[FLAC__MAX_CHANNELS]; /* index into the above workspaces */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000317 unsigned best_subframe_mid_side[2];
Josh Coalson8395d022001-07-12 21:25:22 +0000318 unsigned best_subframe_bits[FLAC__MAX_CHANNELS]; /* size in bits of the best subframe for each channel */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000319 unsigned best_subframe_bits_mid_side[2];
Josh Coalson77e3f312001-06-23 03:03:24 +0000320 FLAC__uint32 *abs_residual; /* workspace where abs(candidate residual) is stored */
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000321 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 +0000322 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 +0000323 FLAC__BitBuffer *frame; /* the current frame being worked on */
Josh Coalson8395d022001-07-12 21:25:22 +0000324 double loose_mid_side_stereo_frames_exact; /* exact number of frames the encoder will use before trying both independent and mid/side frames again */
325 unsigned loose_mid_side_stereo_frames; /* rounded number of frames the encoder will use before trying both independent and mid/side frames again */
326 unsigned loose_mid_side_stereo_frame_count; /* number of frames using the current channel assignment */
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000327 FLAC__ChannelAssignment last_channel_assignment;
Josh Coalsoncc682512002-06-08 04:53:42 +0000328 FLAC__StreamMetadata metadata;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000329 unsigned current_sample_number;
330 unsigned current_frame_number;
Josh Coalsonfa37f1c2001-01-12 23:55:11 +0000331 struct MD5Context md5context;
Josh Coalsoncf30f502001-05-23 20:57:44 +0000332 FLAC__CPUInfo cpuinfo;
Josh Coalson77e3f312001-06-23 03:03:24 +0000333 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__real residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
334 void (*local_lpc_compute_autocorrelation)(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
335 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 +0000336 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 +0000337 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 +0000338 FLAC__bool use_wide_by_block; /* use slow 64-bit versions of some functions because of the block size */
339 FLAC__bool use_wide_by_partition; /* use slow 64-bit versions of some functions because of the min partition order and blocksize */
340 FLAC__bool use_wide_by_order; /* use slow 64-bit versions of some functions because of the lpc order */
341 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 +0000342 FLAC__bool disable_constant_subframes;
343 FLAC__bool disable_fixed_subframes;
344 FLAC__bool disable_verbatim_subframes;
Josh Coalson681c2932002-08-01 08:19:37 +0000345 FLAC__StreamEncoderWriteCallback write_callback;
346 FLAC__StreamEncoderMetadataCallback metadata_callback;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000347 void *client_data;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000348 /* unaligned (original) pointers to allocated data */
Josh Coalson77e3f312001-06-23 03:03:24 +0000349 FLAC__int32 *integer_signal_unaligned[FLAC__MAX_CHANNELS];
350 FLAC__int32 *integer_signal_mid_side_unaligned[2];
351 FLAC__real *real_signal_unaligned[FLAC__MAX_CHANNELS];
352 FLAC__real *real_signal_mid_side_unaligned[2];
353 FLAC__int32 *residual_workspace_unaligned[FLAC__MAX_CHANNELS][2];
354 FLAC__int32 *residual_workspace_mid_side_unaligned[2][2];
355 FLAC__uint32 *abs_residual_unaligned;
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000356 FLAC__uint64 *abs_residual_partition_sums_unaligned;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000357 unsigned *raw_bits_per_partition_unaligned;
Josh Coalson8084b052001-11-01 00:27:29 +0000358 /*
359 * These fields have been moved here from private function local
360 * declarations merely to save stack space during encoding.
361 */
Josh Coalsonf1eff452002-07-31 07:05:33 +0000362 FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
Josh Coalsona37ba462002-08-19 21:36:39 +0000363 FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents_extra[2]; /* from find_best_partition_order_() */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000364 /*
365 * The data for the verify section
366 */
367 struct {
368 FLAC__StreamDecoder *decoder;
369 EncoderStateHint state_hint;
370 FLAC__bool needs_magic_hack;
371 verify_input_fifo input_fifo;
372 verify_output output;
373 struct {
374 FLAC__uint64 absolute_sample;
375 unsigned frame_number;
376 unsigned channel;
377 unsigned sample;
378 FLAC__int32 expected;
379 FLAC__int32 got;
380 } error_stats;
381 } verify;
Josh Coalson3262b0d2002-08-14 20:58:42 +0000382 FLAC__bool is_being_deleted; /* if true, call to ..._finish() from ..._delete() will not call the callbacks */
Josh Coalson0a15c142001-06-13 17:59:57 +0000383} FLAC__StreamEncoderPrivate;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000384
Josh Coalson0a15c142001-06-13 17:59:57 +0000385/***********************************************************************
386 *
387 * Public static class data
388 *
389 ***********************************************************************/
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000390
Josh Coalson6afed9f2002-10-16 22:29:47 +0000391FLAC_API const char * const FLAC__StreamEncoderStateString[] = {
Josh Coalson0a15c142001-06-13 17:59:57 +0000392 "FLAC__STREAM_ENCODER_OK",
Josh Coalsond86e03b2002-08-03 21:56:15 +0000393 "FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR",
394 "FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA",
Josh Coalson00e53872001-06-16 07:32:25 +0000395 "FLAC__STREAM_ENCODER_INVALID_CALLBACK",
Josh Coalson0a15c142001-06-13 17:59:57 +0000396 "FLAC__STREAM_ENCODER_INVALID_NUMBER_OF_CHANNELS",
397 "FLAC__STREAM_ENCODER_INVALID_BITS_PER_SAMPLE",
398 "FLAC__STREAM_ENCODER_INVALID_SAMPLE_RATE",
399 "FLAC__STREAM_ENCODER_INVALID_BLOCK_SIZE",
Josh Coalson20ac2c12002-08-30 05:47:14 +0000400 "FLAC__STREAM_ENCODER_INVALID_MAX_LPC_ORDER",
Josh Coalson0a15c142001-06-13 17:59:57 +0000401 "FLAC__STREAM_ENCODER_INVALID_QLP_COEFF_PRECISION",
402 "FLAC__STREAM_ENCODER_MID_SIDE_CHANNELS_MISMATCH",
403 "FLAC__STREAM_ENCODER_MID_SIDE_SAMPLE_SIZE_MISMATCH",
404 "FLAC__STREAM_ENCODER_ILLEGAL_MID_SIDE_FORCE",
405 "FLAC__STREAM_ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER",
406 "FLAC__STREAM_ENCODER_NOT_STREAMABLE",
407 "FLAC__STREAM_ENCODER_FRAMING_ERROR",
Josh Coalson66075c12002-06-01 05:39:38 +0000408 "FLAC__STREAM_ENCODER_INVALID_METADATA",
Josh Coalson0a15c142001-06-13 17:59:57 +0000409 "FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING",
410 "FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_WRITING",
411 "FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR",
412 "FLAC__STREAM_ENCODER_ALREADY_INITIALIZED",
413 "FLAC__STREAM_ENCODER_UNINITIALIZED"
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000414};
415
Josh Coalson6afed9f2002-10-16 22:29:47 +0000416FLAC_API const char * const FLAC__StreamEncoderWriteStatusString[] = {
Josh Coalson5c491a12002-08-01 06:39:40 +0000417 "FLAC__STREAM_ENCODER_WRITE_STATUS_OK",
418 "FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR"
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000419};
420
Josh Coalson0a15c142001-06-13 17:59:57 +0000421/***********************************************************************
422 *
423 * Class constructor/destructor
424 *
Josh Coalsond86e03b2002-08-03 21:56:15 +0000425 */
Josh Coalson6afed9f2002-10-16 22:29:47 +0000426FLAC_API FLAC__StreamEncoder *FLAC__stream_encoder_new()
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000427{
Josh Coalson0a15c142001-06-13 17:59:57 +0000428 FLAC__StreamEncoder *encoder;
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000429 unsigned i;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000430
Josh Coalson0a15c142001-06-13 17:59:57 +0000431 FLAC__ASSERT(sizeof(int) >= 4); /* we want to die right away if this is not true */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000432
Josh Coalsonea7155f2002-10-18 05:49:19 +0000433 encoder = (FLAC__StreamEncoder*)calloc(1, sizeof(FLAC__StreamEncoder));
Josh Coalson0a15c142001-06-13 17:59:57 +0000434 if(encoder == 0) {
435 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000436 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000437
Josh Coalsonea7155f2002-10-18 05:49:19 +0000438 encoder->protected_ = (FLAC__StreamEncoderProtected*)calloc(1, sizeof(FLAC__StreamEncoderProtected));
Josh Coalsonfa697a92001-08-16 20:07:29 +0000439 if(encoder->protected_ == 0) {
Josh Coalson0a15c142001-06-13 17:59:57 +0000440 free(encoder);
441 return 0;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000442 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000443
Josh Coalsonea7155f2002-10-18 05:49:19 +0000444 encoder->private_ = (FLAC__StreamEncoderPrivate*)calloc(1, sizeof(FLAC__StreamEncoderPrivate));
Josh Coalsonfa697a92001-08-16 20:07:29 +0000445 if(encoder->private_ == 0) {
446 free(encoder->protected_);
Josh Coalson0a15c142001-06-13 17:59:57 +0000447 free(encoder);
448 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000449 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000450
Josh Coalsonaec256b2002-03-12 16:19:54 +0000451 encoder->private_->frame = FLAC__bitbuffer_new();
452 if(encoder->private_->frame == 0) {
453 free(encoder->private_);
454 free(encoder->protected_);
455 free(encoder);
456 return 0;
457 }
Josh Coalsond98c43d2001-05-13 05:17:01 +0000458
Josh Coalsonf1eff452002-07-31 07:05:33 +0000459 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000460
Josh Coalson3262b0d2002-08-14 20:58:42 +0000461 encoder->private_->is_being_deleted = false;
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000462
463 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
464 encoder->private_->subframe_workspace_ptr[i][0] = &encoder->private_->subframe_workspace[i][0];
465 encoder->private_->subframe_workspace_ptr[i][1] = &encoder->private_->subframe_workspace[i][1];
466 }
467 for(i = 0; i < 2; i++) {
468 encoder->private_->subframe_workspace_ptr_mid_side[i][0] = &encoder->private_->subframe_workspace_mid_side[i][0];
469 encoder->private_->subframe_workspace_ptr_mid_side[i][1] = &encoder->private_->subframe_workspace_mid_side[i][1];
470 }
471 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000472 encoder->private_->partitioned_rice_contents_workspace_ptr[i][0] = &encoder->private_->partitioned_rice_contents_workspace[i][0];
473 encoder->private_->partitioned_rice_contents_workspace_ptr[i][1] = &encoder->private_->partitioned_rice_contents_workspace[i][1];
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000474 }
475 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000476 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[i][0] = &encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0];
477 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 +0000478 }
479
480 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000481 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace[i][0]);
482 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000483 }
484 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000485 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0]);
486 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 +0000487 }
488 for(i = 0; i < 2; i++)
Josh Coalsona37ba462002-08-19 21:36:39 +0000489 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_extra[i]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000490
Josh Coalsonfa697a92001-08-16 20:07:29 +0000491 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000492
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000493 return encoder;
494}
495
Josh Coalson6afed9f2002-10-16 22:29:47 +0000496FLAC_API void FLAC__stream_encoder_delete(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000497{
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000498 unsigned i;
499
Josh Coalsonf1eff452002-07-31 07:05:33 +0000500 FLAC__ASSERT(0 != encoder);
501 FLAC__ASSERT(0 != encoder->protected_);
502 FLAC__ASSERT(0 != encoder->private_);
503 FLAC__ASSERT(0 != encoder->private_->frame);
Josh Coalson0a15c142001-06-13 17:59:57 +0000504
Josh Coalson3262b0d2002-08-14 20:58:42 +0000505 encoder->private_->is_being_deleted = true;
506
507 FLAC__stream_encoder_finish(encoder);
508
Josh Coalsond86e03b2002-08-03 21:56:15 +0000509 if(encoder->protected_->verify && 0 != encoder->private_->verify.decoder)
510 FLAC__stream_decoder_delete(encoder->private_->verify.decoder);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000511
512 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000513 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace[i][0]);
514 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000515 }
516 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000517 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0]);
518 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 +0000519 }
520 for(i = 0; i < 2; i++)
Josh Coalsona37ba462002-08-19 21:36:39 +0000521 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_extra[i]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000522
Josh Coalsonaec256b2002-03-12 16:19:54 +0000523 FLAC__bitbuffer_delete(encoder->private_->frame);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000524 free(encoder->private_);
525 free(encoder->protected_);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000526 free(encoder);
527}
528
Josh Coalson0a15c142001-06-13 17:59:57 +0000529/***********************************************************************
530 *
531 * Public class methods
532 *
533 ***********************************************************************/
534
Josh Coalson6afed9f2002-10-16 22:29:47 +0000535FLAC_API FLAC__StreamEncoderState FLAC__stream_encoder_init(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000536{
537 unsigned i;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000538 FLAC__bool metadata_has_seektable, metadata_has_vorbis_comment;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000539
Josh Coalsonf1eff452002-07-31 07:05:33 +0000540 FLAC__ASSERT(0 != encoder);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000541
Josh Coalsonfa697a92001-08-16 20:07:29 +0000542 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
543 return encoder->protected_->state = FLAC__STREAM_ENCODER_ALREADY_INITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000544
Josh Coalsonfa697a92001-08-16 20:07:29 +0000545 encoder->protected_->state = FLAC__STREAM_ENCODER_OK;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000546
Josh Coalsonfa697a92001-08-16 20:07:29 +0000547 if(0 == encoder->private_->write_callback || 0 == encoder->private_->metadata_callback)
548 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_CALLBACK;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000549
Josh Coalsonfa697a92001-08-16 20:07:29 +0000550 if(encoder->protected_->channels == 0 || encoder->protected_->channels > FLAC__MAX_CHANNELS)
551 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_NUMBER_OF_CHANNELS;
Josh Coalson69f1ee02001-01-24 00:54:43 +0000552
Josh Coalsonfa697a92001-08-16 20:07:29 +0000553 if(encoder->protected_->do_mid_side_stereo && encoder->protected_->channels != 2)
554 return encoder->protected_->state = FLAC__STREAM_ENCODER_MID_SIDE_CHANNELS_MISMATCH;
Josh Coalsond37d1352001-05-30 23:09:31 +0000555
Josh Coalsonfa697a92001-08-16 20:07:29 +0000556 if(encoder->protected_->loose_mid_side_stereo && !encoder->protected_->do_mid_side_stereo)
557 return encoder->protected_->state = FLAC__STREAM_ENCODER_ILLEGAL_MID_SIDE_FORCE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000558
Josh Coalsonfa697a92001-08-16 20:07:29 +0000559 if(encoder->protected_->bits_per_sample >= 32)
560 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 +0000561
Josh Coalson76c68bc2002-05-17 06:22:02 +0000562 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 +0000563 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_BITS_PER_SAMPLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000564
Josh Coalson0833f342002-07-15 05:31:55 +0000565 if(!FLAC__format_sample_rate_is_valid(encoder->protected_->sample_rate))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000566 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_SAMPLE_RATE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000567
Josh Coalsonfa697a92001-08-16 20:07:29 +0000568 if(encoder->protected_->blocksize < FLAC__MIN_BLOCK_SIZE || encoder->protected_->blocksize > FLAC__MAX_BLOCK_SIZE)
569 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_BLOCK_SIZE;
Josh Coalson0a15c142001-06-13 17:59:57 +0000570
Josh Coalson20ac2c12002-08-30 05:47:14 +0000571 if(encoder->protected_->max_lpc_order > FLAC__MAX_LPC_ORDER)
572 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_MAX_LPC_ORDER;
573
Josh Coalsonfa697a92001-08-16 20:07:29 +0000574 if(encoder->protected_->blocksize < encoder->protected_->max_lpc_order)
575 return encoder->protected_->state = FLAC__STREAM_ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER;
Josh Coalson0a15c142001-06-13 17:59:57 +0000576
Josh Coalsonfa697a92001-08-16 20:07:29 +0000577 if(encoder->protected_->qlp_coeff_precision == 0) {
578 if(encoder->protected_->bits_per_sample < 16) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000579 /* @@@ need some data about how to set this here w.r.t. blocksize and sample rate */
580 /* @@@ until then we'll make a guess */
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000581 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 +0000582 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000583 else if(encoder->protected_->bits_per_sample == 16) {
584 if(encoder->protected_->blocksize <= 192)
585 encoder->protected_->qlp_coeff_precision = 7;
586 else if(encoder->protected_->blocksize <= 384)
587 encoder->protected_->qlp_coeff_precision = 8;
588 else if(encoder->protected_->blocksize <= 576)
589 encoder->protected_->qlp_coeff_precision = 9;
590 else if(encoder->protected_->blocksize <= 1152)
591 encoder->protected_->qlp_coeff_precision = 10;
592 else if(encoder->protected_->blocksize <= 2304)
593 encoder->protected_->qlp_coeff_precision = 11;
594 else if(encoder->protected_->blocksize <= 4608)
595 encoder->protected_->qlp_coeff_precision = 12;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000596 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000597 encoder->protected_->qlp_coeff_precision = 13;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000598 }
599 else {
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000600 if(encoder->protected_->blocksize <= 384)
601 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION-2;
602 else if(encoder->protected_->blocksize <= 1152)
603 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION-1;
604 else
605 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000606 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000607 FLAC__ASSERT(encoder->protected_->qlp_coeff_precision <= FLAC__MAX_QLP_COEFF_PRECISION);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000608 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000609 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 +0000610 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000611
Josh Coalsonfa697a92001-08-16 20:07:29 +0000612 if(encoder->protected_->streamable_subset) {
Josh Coalson20ac2c12002-08-30 05:47:14 +0000613 if(
614 encoder->protected_->blocksize != 192 &&
615 encoder->protected_->blocksize != 576 &&
616 encoder->protected_->blocksize != 1152 &&
617 encoder->protected_->blocksize != 2304 &&
618 encoder->protected_->blocksize != 4608 &&
619 encoder->protected_->blocksize != 256 &&
620 encoder->protected_->blocksize != 512 &&
621 encoder->protected_->blocksize != 1024 &&
622 encoder->protected_->blocksize != 2048 &&
623 encoder->protected_->blocksize != 4096 &&
624 encoder->protected_->blocksize != 8192 &&
625 encoder->protected_->blocksize != 16384
626 )
Josh Coalsonfa697a92001-08-16 20:07:29 +0000627 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalson20ac2c12002-08-30 05:47:14 +0000628 if(
629 encoder->protected_->sample_rate != 8000 &&
630 encoder->protected_->sample_rate != 16000 &&
631 encoder->protected_->sample_rate != 22050 &&
632 encoder->protected_->sample_rate != 24000 &&
633 encoder->protected_->sample_rate != 32000 &&
634 encoder->protected_->sample_rate != 44100 &&
635 encoder->protected_->sample_rate != 48000 &&
636 encoder->protected_->sample_rate != 96000
637 )
638 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
639 if(
640 encoder->protected_->bits_per_sample != 8 &&
641 encoder->protected_->bits_per_sample != 12 &&
642 encoder->protected_->bits_per_sample != 16 &&
643 encoder->protected_->bits_per_sample != 20 &&
644 encoder->protected_->bits_per_sample != 24
645 )
646 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalsonc1c8d492002-09-26 04:42:10 +0000647 if(encoder->protected_->max_residual_partition_order > FLAC__SUBSET_MAX_RICE_PARTITION_ORDER)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000648 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000649 }
650
Josh Coalsonfa697a92001-08-16 20:07:29 +0000651 if(encoder->protected_->max_residual_partition_order >= (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN))
652 encoder->protected_->max_residual_partition_order = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN) - 1;
653 if(encoder->protected_->min_residual_partition_order >= encoder->protected_->max_residual_partition_order)
654 encoder->protected_->min_residual_partition_order = encoder->protected_->max_residual_partition_order;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000655
Josh Coalson66075c12002-06-01 05:39:38 +0000656 /* validate metadata */
657 if(0 == encoder->protected_->metadata && encoder->protected_->num_metadata_blocks > 0)
658 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000659 metadata_has_seektable = false;
660 metadata_has_vorbis_comment = false;
Josh Coalson66075c12002-06-01 05:39:38 +0000661 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
662 if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_STREAMINFO)
663 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
664 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_SEEKTABLE) {
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000665 if(metadata_has_seektable) /* only one is allowed */
666 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
667 metadata_has_seektable = true;
Josh Coalson0833f342002-07-15 05:31:55 +0000668 if(!FLAC__format_seektable_is_legal(&encoder->protected_->metadata[i]->data.seek_table))
Josh Coalson66075c12002-06-01 05:39:38 +0000669 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
670 }
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000671 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_VORBIS_COMMENT) {
672 if(metadata_has_vorbis_comment) /* only one is allowed */
673 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
674 metadata_has_vorbis_comment = true;
675 }
Josh Coalson66075c12002-06-01 05:39:38 +0000676 }
677
Josh Coalsonfa697a92001-08-16 20:07:29 +0000678 encoder->private_->input_capacity = 0;
679 for(i = 0; i < encoder->protected_->channels; i++) {
680 encoder->private_->integer_signal_unaligned[i] = encoder->private_->integer_signal[i] = 0;
681 encoder->private_->real_signal_unaligned[i] = encoder->private_->real_signal[i] = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000682 }
683 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000684 encoder->private_->integer_signal_mid_side_unaligned[i] = encoder->private_->integer_signal_mid_side[i] = 0;
685 encoder->private_->real_signal_mid_side_unaligned[i] = encoder->private_->real_signal_mid_side[i] = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000686 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000687 for(i = 0; i < encoder->protected_->channels; i++) {
688 encoder->private_->residual_workspace_unaligned[i][0] = encoder->private_->residual_workspace[i][0] = 0;
689 encoder->private_->residual_workspace_unaligned[i][1] = encoder->private_->residual_workspace[i][1] = 0;
690 encoder->private_->best_subframe[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000691 }
692 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000693 encoder->private_->residual_workspace_mid_side_unaligned[i][0] = encoder->private_->residual_workspace_mid_side[i][0] = 0;
694 encoder->private_->residual_workspace_mid_side_unaligned[i][1] = encoder->private_->residual_workspace_mid_side[i][1] = 0;
695 encoder->private_->best_subframe_mid_side[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000696 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000697 encoder->private_->abs_residual_unaligned = encoder->private_->abs_residual = 0;
698 encoder->private_->abs_residual_partition_sums_unaligned = encoder->private_->abs_residual_partition_sums = 0;
699 encoder->private_->raw_bits_per_partition_unaligned = encoder->private_->raw_bits_per_partition = 0;
700 encoder->private_->loose_mid_side_stereo_frames_exact = (double)encoder->protected_->sample_rate * 0.4 / (double)encoder->protected_->blocksize;
701 encoder->private_->loose_mid_side_stereo_frames = (unsigned)(encoder->private_->loose_mid_side_stereo_frames_exact + 0.5);
702 if(encoder->private_->loose_mid_side_stereo_frames == 0)
703 encoder->private_->loose_mid_side_stereo_frames = 1;
704 encoder->private_->loose_mid_side_stereo_frame_count = 0;
705 encoder->private_->current_sample_number = 0;
706 encoder->private_->current_frame_number = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000707
Josh Coalsonfa697a92001-08-16 20:07:29 +0000708 encoder->private_->use_wide_by_block = (encoder->protected_->bits_per_sample + FLAC__bitmath_ilog2(encoder->protected_->blocksize)+1 > 30);
709 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? */
710 encoder->private_->use_wide_by_partition = (false); /*@@@ need to set this */
Josh Coalson8395d022001-07-12 21:25:22 +0000711
Josh Coalsoncf30f502001-05-23 20:57:44 +0000712 /*
713 * get the CPU info and set the function pointers
714 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000715 FLAC__cpu_info(&encoder->private_->cpuinfo);
Josh Coalsoncf30f502001-05-23 20:57:44 +0000716 /* first default to the non-asm routines */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000717 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation;
718 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor;
719 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000720 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 +0000721 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalsoncf30f502001-05-23 20:57:44 +0000722 /* now override with asm where appropriate */
Josh Coalsona3f7c2c2001-05-25 00:04:45 +0000723#ifndef FLAC__NO_ASM
Josh Coalsonfa697a92001-08-16 20:07:29 +0000724 if(encoder->private_->cpuinfo.use_asm) {
Josh Coalsoncf30f502001-05-23 20:57:44 +0000725#ifdef FLAC__CPU_IA32
Josh Coalsonfa697a92001-08-16 20:07:29 +0000726 FLAC__ASSERT(encoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
Josh Coalson034d38e2001-05-24 19:29:30 +0000727#ifdef FLAC__HAS_NASM
Josh Coalsonfa697a92001-08-16 20:07:29 +0000728 if(0 && encoder->private_->cpuinfo.data.ia32.sse) {
729 if(encoder->protected_->max_lpc_order < 4)
730 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_4;
731 else if(encoder->protected_->max_lpc_order < 8)
732 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_8;
733 else if(encoder->protected_->max_lpc_order < 12)
734 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_12;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000735 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000736 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000737 }
Josh Coalson395938e2001-11-15 21:53:25 +0000738 else if(encoder->private_->cpuinfo.data.ia32._3dnow)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000739 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_3dnow;
Josh Coalsonaa255362001-05-31 06:17:41 +0000740 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000741 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
742 if(encoder->private_->cpuinfo.data.ia32.mmx && encoder->private_->cpuinfo.data.ia32.cmov)
743 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov;
744 if(encoder->private_->cpuinfo.data.ia32.mmx) {
745 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
746 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 +0000747 }
748 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000749 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
750 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 +0000751 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000752#endif
Josh Coalson034d38e2001-05-24 19:29:30 +0000753#endif
Josh Coalson021ad3b2001-07-18 00:25:52 +0000754 }
Josh Coalsona3f7c2c2001-05-25 00:04:45 +0000755#endif
Josh Coalson8395d022001-07-12 21:25:22 +0000756 /* finally override based on wide-ness if necessary */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000757 if(encoder->private_->use_wide_by_block) {
758 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_wide;
Josh Coalson8395d022001-07-12 21:25:22 +0000759 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000760
Josh Coalson8395d022001-07-12 21:25:22 +0000761 /* we require precompute_partition_sums if do_escape_coding because of their intertwined nature */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000762 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 +0000763
Josh Coalsonf1eff452002-07-31 07:05:33 +0000764 if(!resize_buffers_(encoder, encoder->protected_->blocksize)) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000765 /* the above function sets the state for us in case of an error */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000766 return encoder->protected_->state;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000767 }
Josh Coalsonaec256b2002-03-12 16:19:54 +0000768
769 if(!FLAC__bitbuffer_init(encoder->private_->frame))
770 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000771
772 /*
Josh Coalsond86e03b2002-08-03 21:56:15 +0000773 * Set up the verify stuff if necessary
774 */
775 if(encoder->protected_->verify) {
776 /*
777 * First, set up the fifo which will hold the
778 * original signal to compare against
779 */
780 encoder->private_->verify.input_fifo.size = encoder->protected_->blocksize;
781 for(i = 0; i < encoder->protected_->channels; i++) {
782 if(0 == (encoder->private_->verify.input_fifo.data[i] = (FLAC__int32*)malloc(sizeof(FLAC__int32) * encoder->private_->verify.input_fifo.size)))
783 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
784 }
785 encoder->private_->verify.input_fifo.tail = 0;
786
787 /*
788 * Now set up a stream decoder for verification
789 */
790 encoder->private_->verify.decoder = FLAC__stream_decoder_new();
791 if(0 == encoder->private_->verify.decoder)
792 return encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
793
794 FLAC__stream_decoder_set_read_callback(encoder->private_->verify.decoder, verify_read_callback_);
795 FLAC__stream_decoder_set_write_callback(encoder->private_->verify.decoder, verify_write_callback_);
796 FLAC__stream_decoder_set_metadata_callback(encoder->private_->verify.decoder, verify_metadata_callback_);
797 FLAC__stream_decoder_set_error_callback(encoder->private_->verify.decoder, verify_error_callback_);
798 FLAC__stream_decoder_set_client_data(encoder->private_->verify.decoder, encoder);
799 if(FLAC__stream_decoder_init(encoder->private_->verify.decoder) != FLAC__STREAM_DECODER_SEARCH_FOR_METADATA)
800 return encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
801 }
Josh Coalson589f8c72002-08-07 23:54:55 +0000802 encoder->private_->verify.error_stats.absolute_sample = 0;
803 encoder->private_->verify.error_stats.frame_number = 0;
804 encoder->private_->verify.error_stats.channel = 0;
805 encoder->private_->verify.error_stats.sample = 0;
806 encoder->private_->verify.error_stats.expected = 0;
807 encoder->private_->verify.error_stats.got = 0;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000808
809 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000810 * write the stream header
811 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000812 if(encoder->protected_->verify)
813 encoder->private_->verify.state_hint = ENCODER_IN_MAGIC;
Josh Coalsonaec256b2002-03-12 16:19:54 +0000814 if(!FLAC__bitbuffer_write_raw_uint32(encoder->private_->frame, FLAC__STREAM_SYNC, FLAC__STREAM_SYNC_LEN))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000815 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000816 if(!write_bitbuffer_(encoder, 0)) {
817 /* the above function sets the state for us in case of an error */
818 return encoder->protected_->state;
819 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000820
Josh Coalson5c491a12002-08-01 06:39:40 +0000821 /*
822 * write the STREAMINFO metadata block
823 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000824 if(encoder->protected_->verify)
825 encoder->private_->verify.state_hint = ENCODER_IN_METADATA;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000826 encoder->private_->metadata.type = FLAC__METADATA_TYPE_STREAMINFO;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000827 encoder->private_->metadata.is_last = false; /* we will have at a minimum a VORBIS_COMMENT afterwards */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000828 encoder->private_->metadata.length = FLAC__STREAM_METADATA_STREAMINFO_LENGTH;
829 encoder->private_->metadata.data.stream_info.min_blocksize = encoder->protected_->blocksize; /* this encoder uses the same blocksize for the whole stream */
830 encoder->private_->metadata.data.stream_info.max_blocksize = encoder->protected_->blocksize;
831 encoder->private_->metadata.data.stream_info.min_framesize = 0; /* we don't know this yet; have to fill it in later */
832 encoder->private_->metadata.data.stream_info.max_framesize = 0; /* we don't know this yet; have to fill it in later */
833 encoder->private_->metadata.data.stream_info.sample_rate = encoder->protected_->sample_rate;
834 encoder->private_->metadata.data.stream_info.channels = encoder->protected_->channels;
835 encoder->private_->metadata.data.stream_info.bits_per_sample = encoder->protected_->bits_per_sample;
836 encoder->private_->metadata.data.stream_info.total_samples = encoder->protected_->total_samples_estimate; /* we will replace this later with the real total */
837 memset(encoder->private_->metadata.data.stream_info.md5sum, 0, 16); /* we don't know this yet; have to fill it in later */
838 MD5Init(&encoder->private_->md5context);
Josh Coalson5c491a12002-08-01 06:39:40 +0000839 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
840 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
841 return false;
842 }
Josh Coalsonaec256b2002-03-12 16:19:54 +0000843 if(!FLAC__add_metadata_block(&encoder->private_->metadata, encoder->private_->frame))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000844 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000845 if(!write_bitbuffer_(encoder, 0)) {
846 /* the above function sets the state for us in case of an error */
847 return encoder->protected_->state;
848 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000849
Josh Coalson5c491a12002-08-01 06:39:40 +0000850 /*
851 * Now that the STREAMINFO block is written, we can init this to an
852 * absurdly-high value...
853 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000854 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 +0000855 /* ... and clear this to 0 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000856 encoder->private_->metadata.data.stream_info.total_samples = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000857
Josh Coalson5c491a12002-08-01 06:39:40 +0000858 /*
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000859 * Check to see if the supplied metadata contains a VORBIS_COMMENT;
860 * if not, we will write an empty one (FLAC__add_metadata_block()
861 * automatically supplies the vendor string).
862 */
863 if(!metadata_has_vorbis_comment) {
864 FLAC__StreamMetadata vorbis_comment;
865 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT;
866 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0);
867 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */
868 vorbis_comment.data.vorbis_comment.vendor_string.length = 0;
869 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0;
870 vorbis_comment.data.vorbis_comment.num_comments = 0;
871 vorbis_comment.data.vorbis_comment.comments = 0;
872 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
873 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
874 return false;
875 }
876 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame))
877 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
878 if(!write_bitbuffer_(encoder, 0)) {
879 /* the above function sets the state for us in case of an error */
880 return encoder->protected_->state;
881 }
882 }
883
884 /*
Josh Coalson5c491a12002-08-01 06:39:40 +0000885 * write the user's metadata blocks
886 */
887 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
888 encoder->protected_->metadata[i]->is_last = (i == encoder->protected_->num_metadata_blocks - 1);
889 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
890 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
891 return false;
892 }
893 if(!FLAC__add_metadata_block(encoder->protected_->metadata[i], encoder->private_->frame))
894 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000895 if(!write_bitbuffer_(encoder, 0)) {
896 /* the above function sets the state for us in case of an error */
897 return encoder->protected_->state;
898 }
Josh Coalson5c491a12002-08-01 06:39:40 +0000899 }
900
Josh Coalsond86e03b2002-08-03 21:56:15 +0000901 if(encoder->protected_->verify)
902 encoder->private_->verify.state_hint = ENCODER_IN_AUDIO;
903
Josh Coalsonfa697a92001-08-16 20:07:29 +0000904 return encoder->protected_->state;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000905}
906
Josh Coalson6afed9f2002-10-16 22:29:47 +0000907FLAC_API void FLAC__stream_encoder_finish(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000908{
Josh Coalsonf1eff452002-07-31 07:05:33 +0000909 FLAC__ASSERT(0 != encoder);
Josh Coalson2b245f22002-08-07 17:10:50 +0000910
Josh Coalsonfa697a92001-08-16 20:07:29 +0000911 if(encoder->protected_->state == FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000912 return;
Josh Coalson2b245f22002-08-07 17:10:50 +0000913
Josh Coalson3262b0d2002-08-14 20:58:42 +0000914 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +0000915 if(encoder->private_->current_sample_number != 0) {
916 encoder->protected_->blocksize = encoder->private_->current_sample_number;
917 process_frame_(encoder, true); /* true => is last frame */
918 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000919 }
Josh Coalson2b245f22002-08-07 17:10:50 +0000920
Josh Coalsonfa697a92001-08-16 20:07:29 +0000921 MD5Final(encoder->private_->metadata.data.stream_info.md5sum, &encoder->private_->md5context);
Josh Coalson2b245f22002-08-07 17:10:50 +0000922
Josh Coalson3262b0d2002-08-14 20:58:42 +0000923 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +0000924 encoder->private_->metadata_callback(encoder, &encoder->private_->metadata, encoder->private_->client_data);
925 }
Josh Coalson0a15c142001-06-13 17:59:57 +0000926
Josh Coalsond86e03b2002-08-03 21:56:15 +0000927 if(encoder->protected_->verify && 0 != encoder->private_->verify.decoder)
928 FLAC__stream_decoder_finish(encoder->private_->verify.decoder);
929
Josh Coalsonf1eff452002-07-31 07:05:33 +0000930 free_(encoder);
931 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000932
Josh Coalsonfa697a92001-08-16 20:07:29 +0000933 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000934}
935
Josh Coalson6afed9f2002-10-16 22:29:47 +0000936FLAC_API FLAC__bool FLAC__stream_encoder_set_verify(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsond86e03b2002-08-03 21:56:15 +0000937{
938 FLAC__ASSERT(0 != encoder);
939 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
940 return false;
941 encoder->protected_->verify = value;
942 return true;
943}
944
Josh Coalson6afed9f2002-10-16 22:29:47 +0000945FLAC_API FLAC__bool FLAC__stream_encoder_set_streamable_subset(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000946{
Josh Coalson92031602002-07-24 06:02:11 +0000947 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000948 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000949 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000950 encoder->protected_->streamable_subset = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000951 return true;
952}
953
Josh Coalson6afed9f2002-10-16 22:29:47 +0000954FLAC_API FLAC__bool FLAC__stream_encoder_set_do_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000955{
Josh Coalson92031602002-07-24 06:02:11 +0000956 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000957 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000958 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000959 encoder->protected_->do_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000960 return true;
961}
962
Josh Coalson6afed9f2002-10-16 22:29:47 +0000963FLAC_API FLAC__bool FLAC__stream_encoder_set_loose_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000964{
Josh Coalson92031602002-07-24 06:02:11 +0000965 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000966 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000967 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000968 encoder->protected_->loose_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000969 return true;
970}
971
Josh Coalson6afed9f2002-10-16 22:29:47 +0000972FLAC_API FLAC__bool FLAC__stream_encoder_set_channels(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000973{
Josh Coalson92031602002-07-24 06:02:11 +0000974 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000975 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000976 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000977 encoder->protected_->channels = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000978 return true;
979}
980
Josh Coalson6afed9f2002-10-16 22:29:47 +0000981FLAC_API FLAC__bool FLAC__stream_encoder_set_bits_per_sample(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000982{
Josh Coalson92031602002-07-24 06:02:11 +0000983 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000984 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000985 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000986 encoder->protected_->bits_per_sample = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000987 return true;
988}
989
Josh Coalson6afed9f2002-10-16 22:29:47 +0000990FLAC_API FLAC__bool FLAC__stream_encoder_set_sample_rate(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000991{
Josh Coalson92031602002-07-24 06:02:11 +0000992 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000993 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000994 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000995 encoder->protected_->sample_rate = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000996 return true;
997}
998
Josh Coalson6afed9f2002-10-16 22:29:47 +0000999FLAC_API FLAC__bool FLAC__stream_encoder_set_blocksize(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001000{
Josh Coalson92031602002-07-24 06:02:11 +00001001 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001002 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001003 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001004 encoder->protected_->blocksize = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001005 return true;
1006}
1007
Josh Coalson6afed9f2002-10-16 22:29:47 +00001008FLAC_API FLAC__bool FLAC__stream_encoder_set_max_lpc_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001009{
Josh Coalson92031602002-07-24 06:02:11 +00001010 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001011 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001012 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001013 encoder->protected_->max_lpc_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001014 return true;
1015}
1016
Josh Coalson6afed9f2002-10-16 22:29:47 +00001017FLAC_API FLAC__bool FLAC__stream_encoder_set_qlp_coeff_precision(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001018{
Josh Coalson92031602002-07-24 06:02:11 +00001019 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001020 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001021 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001022 encoder->protected_->qlp_coeff_precision = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001023 return true;
1024}
1025
Josh Coalson6afed9f2002-10-16 22:29:47 +00001026FLAC_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 +00001027{
Josh Coalson92031602002-07-24 06:02:11 +00001028 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001029 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001030 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001031 encoder->protected_->do_qlp_coeff_prec_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001032 return true;
1033}
1034
Josh Coalson6afed9f2002-10-16 22:29:47 +00001035FLAC_API FLAC__bool FLAC__stream_encoder_set_do_escape_coding(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson8395d022001-07-12 21:25:22 +00001036{
Josh Coalson92031602002-07-24 06:02:11 +00001037 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001038 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson8395d022001-07-12 21:25:22 +00001039 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001040#if 0
1041 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001042 encoder->protected_->do_escape_coding = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001043#else
1044 (void)value;
1045#endif
Josh Coalson8395d022001-07-12 21:25:22 +00001046 return true;
1047}
1048
Josh Coalson6afed9f2002-10-16 22:29:47 +00001049FLAC_API FLAC__bool FLAC__stream_encoder_set_do_exhaustive_model_search(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001050{
Josh Coalson92031602002-07-24 06:02:11 +00001051 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001052 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001053 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001054 encoder->protected_->do_exhaustive_model_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001055 return true;
1056}
1057
Josh Coalson6afed9f2002-10-16 22:29:47 +00001058FLAC_API FLAC__bool FLAC__stream_encoder_set_min_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001059{
Josh Coalson92031602002-07-24 06:02:11 +00001060 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001061 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001062 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001063 encoder->protected_->min_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001064 return true;
1065}
1066
Josh Coalson6afed9f2002-10-16 22:29:47 +00001067FLAC_API FLAC__bool FLAC__stream_encoder_set_max_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001068{
Josh Coalson92031602002-07-24 06:02:11 +00001069 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001070 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001071 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001072 encoder->protected_->max_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001073 return true;
1074}
1075
Josh Coalson6afed9f2002-10-16 22:29:47 +00001076FLAC_API FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001077{
Josh Coalson92031602002-07-24 06:02:11 +00001078 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001079 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001080 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001081#if 0
1082 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001083 encoder->protected_->rice_parameter_search_dist = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001084#else
1085 (void)value;
1086#endif
Josh Coalson00e53872001-06-16 07:32:25 +00001087 return true;
1088}
1089
Josh Coalson6afed9f2002-10-16 22:29:47 +00001090FLAC_API FLAC__bool FLAC__stream_encoder_set_total_samples_estimate(FLAC__StreamEncoder *encoder, FLAC__uint64 value)
Josh Coalson00e53872001-06-16 07:32:25 +00001091{
Josh Coalson92031602002-07-24 06:02:11 +00001092 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001093 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001094 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001095 encoder->protected_->total_samples_estimate = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001096 return true;
1097}
1098
Josh Coalson6afed9f2002-10-16 22:29:47 +00001099FLAC_API FLAC__bool FLAC__stream_encoder_set_metadata(FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, unsigned num_blocks)
Josh Coalson00e53872001-06-16 07:32:25 +00001100{
Josh Coalson92031602002-07-24 06:02:11 +00001101 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001102 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001103 return false;
Josh Coalson66075c12002-06-01 05:39:38 +00001104 encoder->protected_->metadata = metadata;
1105 encoder->protected_->num_metadata_blocks = num_blocks;
Josh Coalson00e53872001-06-16 07:32:25 +00001106 return true;
1107}
1108
Josh Coalson6afed9f2002-10-16 22:29:47 +00001109FLAC_API FLAC__bool FLAC__stream_encoder_set_write_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback value)
Josh Coalson00e53872001-06-16 07:32:25 +00001110{
Josh Coalson92031602002-07-24 06:02:11 +00001111 FLAC__ASSERT(0 != encoder);
1112 FLAC__ASSERT(0 != value);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001113 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001114 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001115 encoder->private_->write_callback = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001116 return true;
1117}
1118
Josh Coalson6afed9f2002-10-16 22:29:47 +00001119FLAC_API FLAC__bool FLAC__stream_encoder_set_metadata_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderMetadataCallback value)
Josh Coalson00e53872001-06-16 07:32:25 +00001120{
Josh Coalson92031602002-07-24 06:02:11 +00001121 FLAC__ASSERT(0 != encoder);
1122 FLAC__ASSERT(0 != value);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001123 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001124 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001125 encoder->private_->metadata_callback = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001126 return true;
1127}
1128
Josh Coalson6afed9f2002-10-16 22:29:47 +00001129FLAC_API FLAC__bool FLAC__stream_encoder_set_client_data(FLAC__StreamEncoder *encoder, void *value)
Josh Coalson00e53872001-06-16 07:32:25 +00001130{
Josh Coalson92031602002-07-24 06:02:11 +00001131 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001132 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001133 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001134 encoder->private_->client_data = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001135 return true;
1136}
1137
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001138/*
1139 * These three functions are not static, but not publically exposed in
1140 * include/FLAC/ either. They are used by the test suite.
1141 */
Josh Coalson6afed9f2002-10-16 22:29:47 +00001142FLAC_API FLAC__bool FLAC__stream_encoder_disable_constant_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001143{
1144 FLAC__ASSERT(0 != encoder);
1145 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1146 return false;
1147 encoder->private_->disable_constant_subframes = value;
1148 return true;
1149}
1150
Josh Coalson6afed9f2002-10-16 22:29:47 +00001151FLAC_API FLAC__bool FLAC__stream_encoder_disable_fixed_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001152{
1153 FLAC__ASSERT(0 != encoder);
1154 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1155 return false;
1156 encoder->private_->disable_fixed_subframes = value;
1157 return true;
1158}
1159
Josh Coalson6afed9f2002-10-16 22:29:47 +00001160FLAC_API FLAC__bool FLAC__stream_encoder_disable_verbatim_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001161{
1162 FLAC__ASSERT(0 != encoder);
1163 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1164 return false;
1165 encoder->private_->disable_verbatim_subframes = value;
1166 return true;
1167}
1168
Josh Coalson6afed9f2002-10-16 22:29:47 +00001169FLAC_API FLAC__StreamEncoderState FLAC__stream_encoder_get_state(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001170{
Josh Coalson92031602002-07-24 06:02:11 +00001171 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001172 return encoder->protected_->state;
Josh Coalson0a15c142001-06-13 17:59:57 +00001173}
1174
Josh Coalson6afed9f2002-10-16 22:29:47 +00001175FLAC_API FLAC__StreamDecoderState FLAC__stream_encoder_get_verify_decoder_state(const FLAC__StreamEncoder *encoder)
Josh Coalsond86e03b2002-08-03 21:56:15 +00001176{
1177 FLAC__ASSERT(0 != encoder);
1178 if(encoder->protected_->verify)
1179 return FLAC__stream_decoder_get_state(encoder->private_->verify.decoder);
1180 else
1181 return FLAC__STREAM_DECODER_UNINITIALIZED;
1182}
1183
Josh Coalson6afed9f2002-10-16 22:29:47 +00001184FLAC_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 +00001185{
1186 FLAC__ASSERT(0 != encoder);
1187 if(0 != absolute_sample)
1188 *absolute_sample = encoder->private_->verify.error_stats.absolute_sample;
1189 if(0 != frame_number)
1190 *frame_number = encoder->private_->verify.error_stats.frame_number;
1191 if(0 != channel)
1192 *channel = encoder->private_->verify.error_stats.channel;
1193 if(0 != sample)
1194 *sample = encoder->private_->verify.error_stats.sample;
1195 if(0 != expected)
1196 *expected = encoder->private_->verify.error_stats.expected;
1197 if(0 != got)
1198 *got = encoder->private_->verify.error_stats.got;
1199}
1200
Josh Coalson6afed9f2002-10-16 22:29:47 +00001201FLAC_API FLAC__bool FLAC__stream_encoder_get_verify(const FLAC__StreamEncoder *encoder)
Josh Coalsond86e03b2002-08-03 21:56:15 +00001202{
1203 FLAC__ASSERT(0 != encoder);
1204 return encoder->protected_->verify;
1205}
1206
Josh Coalson6afed9f2002-10-16 22:29:47 +00001207FLAC_API FLAC__bool FLAC__stream_encoder_get_streamable_subset(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001208{
Josh Coalson92031602002-07-24 06:02:11 +00001209 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001210 return encoder->protected_->streamable_subset;
Josh Coalson0a15c142001-06-13 17:59:57 +00001211}
1212
Josh Coalson6afed9f2002-10-16 22:29:47 +00001213FLAC_API FLAC__bool FLAC__stream_encoder_get_do_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001214{
Josh Coalson92031602002-07-24 06:02:11 +00001215 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001216 return encoder->protected_->do_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +00001217}
1218
Josh Coalson6afed9f2002-10-16 22:29:47 +00001219FLAC_API FLAC__bool FLAC__stream_encoder_get_loose_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001220{
Josh Coalson92031602002-07-24 06:02:11 +00001221 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001222 return encoder->protected_->loose_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +00001223}
1224
Josh Coalson6afed9f2002-10-16 22:29:47 +00001225FLAC_API unsigned FLAC__stream_encoder_get_channels(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001226{
Josh Coalson92031602002-07-24 06:02:11 +00001227 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001228 return encoder->protected_->channels;
Josh Coalson0a15c142001-06-13 17:59:57 +00001229}
1230
Josh Coalson6afed9f2002-10-16 22:29:47 +00001231FLAC_API unsigned FLAC__stream_encoder_get_bits_per_sample(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001232{
Josh Coalson92031602002-07-24 06:02:11 +00001233 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001234 return encoder->protected_->bits_per_sample;
Josh Coalson0a15c142001-06-13 17:59:57 +00001235}
1236
Josh Coalson6afed9f2002-10-16 22:29:47 +00001237FLAC_API unsigned FLAC__stream_encoder_get_sample_rate(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001238{
Josh Coalson92031602002-07-24 06:02:11 +00001239 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001240 return encoder->protected_->sample_rate;
Josh Coalson0a15c142001-06-13 17:59:57 +00001241}
1242
Josh Coalson6afed9f2002-10-16 22:29:47 +00001243FLAC_API unsigned FLAC__stream_encoder_get_blocksize(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001244{
Josh Coalson92031602002-07-24 06:02:11 +00001245 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001246 return encoder->protected_->blocksize;
Josh Coalson0a15c142001-06-13 17:59:57 +00001247}
1248
Josh Coalson6afed9f2002-10-16 22:29:47 +00001249FLAC_API unsigned FLAC__stream_encoder_get_max_lpc_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001250{
Josh Coalson92031602002-07-24 06:02:11 +00001251 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001252 return encoder->protected_->max_lpc_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001253}
1254
Josh Coalson6afed9f2002-10-16 22:29:47 +00001255FLAC_API unsigned FLAC__stream_encoder_get_qlp_coeff_precision(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001256{
Josh Coalson92031602002-07-24 06:02:11 +00001257 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001258 return encoder->protected_->qlp_coeff_precision;
Josh Coalson0a15c142001-06-13 17:59:57 +00001259}
1260
Josh Coalson6afed9f2002-10-16 22:29:47 +00001261FLAC_API FLAC__bool FLAC__stream_encoder_get_do_qlp_coeff_prec_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001262{
Josh Coalson92031602002-07-24 06:02:11 +00001263 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001264 return encoder->protected_->do_qlp_coeff_prec_search;
Josh Coalson0a15c142001-06-13 17:59:57 +00001265}
1266
Josh Coalson6afed9f2002-10-16 22:29:47 +00001267FLAC_API FLAC__bool FLAC__stream_encoder_get_do_escape_coding(const FLAC__StreamEncoder *encoder)
Josh Coalson8395d022001-07-12 21:25:22 +00001268{
Josh Coalson92031602002-07-24 06:02:11 +00001269 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001270 return encoder->protected_->do_escape_coding;
Josh Coalson8395d022001-07-12 21:25:22 +00001271}
1272
Josh Coalson6afed9f2002-10-16 22:29:47 +00001273FLAC_API FLAC__bool FLAC__stream_encoder_get_do_exhaustive_model_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001274{
Josh Coalson92031602002-07-24 06:02:11 +00001275 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001276 return encoder->protected_->do_exhaustive_model_search;
Josh Coalson0a15c142001-06-13 17:59:57 +00001277}
1278
Josh Coalson6afed9f2002-10-16 22:29:47 +00001279FLAC_API unsigned FLAC__stream_encoder_get_min_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001280{
Josh Coalson92031602002-07-24 06:02:11 +00001281 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001282 return encoder->protected_->min_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001283}
1284
Josh Coalson6afed9f2002-10-16 22:29:47 +00001285FLAC_API unsigned FLAC__stream_encoder_get_max_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001286{
Josh Coalson92031602002-07-24 06:02:11 +00001287 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001288 return encoder->protected_->max_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001289}
1290
Josh Coalson6afed9f2002-10-16 22:29:47 +00001291FLAC_API unsigned FLAC__stream_encoder_get_rice_parameter_search_dist(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001292{
Josh Coalson92031602002-07-24 06:02:11 +00001293 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001294 return encoder->protected_->rice_parameter_search_dist;
Josh Coalson0a15c142001-06-13 17:59:57 +00001295}
1296
Josh Coalson6afed9f2002-10-16 22:29:47 +00001297FLAC_API FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate(const FLAC__StreamEncoder *encoder)
Josh Coalson3a7b2c92002-08-02 07:38:20 +00001298{
1299 FLAC__ASSERT(0 != encoder);
1300 return encoder->protected_->total_samples_estimate;
1301}
1302
Josh Coalson6afed9f2002-10-16 22:29:47 +00001303FLAC_API FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * const buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001304{
1305 unsigned i, j, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001306 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001307 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001308
Josh Coalsonf1eff452002-07-31 07:05:33 +00001309 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001310 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001311
1312 j = 0;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001313 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001314 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001315 if(encoder->protected_->verify)
1316 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1317
Josh Coalsonfa697a92001-08-16 20:07:29 +00001318 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001319 x = mid = side = buffer[0][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001320 encoder->private_->integer_signal[0][i] = x;
1321 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001322 x = buffer[1][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001323 encoder->private_->integer_signal[1][i] = x;
1324 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001325 mid += x;
1326 side -= x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001327 mid >>= 1; /* NOTE: not the same as 'mid = (buffer[0][j] + buffer[1][j]) / 2' ! */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001328 encoder->private_->integer_signal_mid_side[1][i] = side;
1329 encoder->private_->integer_signal_mid_side[0][i] = mid;
1330 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1331 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
1332 encoder->private_->current_sample_number++;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001333 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001334 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001335 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001336 return false;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001337 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001338 } while(j < samples);
1339 }
1340 else {
1341 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001342 if(encoder->protected_->verify)
1343 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1344
Josh Coalsonfa697a92001-08-16 20:07:29 +00001345 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001346 for(channel = 0; channel < channels; channel++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001347 x = buffer[channel][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001348 encoder->private_->integer_signal[channel][i] = x;
1349 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001350 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001351 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001352 }
1353 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001354 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001355 return false;
1356 }
1357 } while(j < samples);
1358 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001359
1360 return true;
1361}
1362
Josh Coalson6afed9f2002-10-16 22:29:47 +00001363FLAC_API FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001364{
1365 unsigned i, j, k, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001366 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001367 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001368
Josh Coalsonf1eff452002-07-31 07:05:33 +00001369 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001370 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001371
1372 j = k = 0;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001373 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001374 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001375 if(encoder->protected_->verify)
1376 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1377
Josh Coalsonfa697a92001-08-16 20:07:29 +00001378 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001379 x = mid = side = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001380 encoder->private_->integer_signal[0][i] = x;
1381 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001382 x = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001383 encoder->private_->integer_signal[1][i] = x;
1384 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001385 mid += x;
1386 side -= x;
1387 mid >>= 1; /* NOTE: not the same as 'mid = (left + right) / 2' ! */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001388 encoder->private_->integer_signal_mid_side[1][i] = side;
1389 encoder->private_->integer_signal_mid_side[0][i] = mid;
1390 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1391 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
1392 encoder->private_->current_sample_number++;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001393 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001394 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001395 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001396 return false;
1397 }
1398 } while(j < samples);
1399 }
1400 else {
1401 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001402 if(encoder->protected_->verify)
1403 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1404
Josh Coalsonfa697a92001-08-16 20:07:29 +00001405 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001406 for(channel = 0; channel < channels; channel++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001407 x = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001408 encoder->private_->integer_signal[channel][i] = x;
1409 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001410 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001411 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001412 }
1413 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001414 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001415 return false;
1416 }
1417 } while(j < samples);
1418 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001419
1420 return true;
1421}
1422
Josh Coalsonf1eff452002-07-31 07:05:33 +00001423/***********************************************************************
1424 *
1425 * Private class methods
1426 *
1427 ***********************************************************************/
1428
1429void set_defaults_(FLAC__StreamEncoder *encoder)
Josh Coalson92031602002-07-24 06:02:11 +00001430{
1431 FLAC__ASSERT(0 != encoder);
1432
Josh Coalsond86e03b2002-08-03 21:56:15 +00001433 encoder->protected_->verify = false;
Josh Coalson92031602002-07-24 06:02:11 +00001434 encoder->protected_->streamable_subset = true;
1435 encoder->protected_->do_mid_side_stereo = false;
1436 encoder->protected_->loose_mid_side_stereo = false;
1437 encoder->protected_->channels = 2;
1438 encoder->protected_->bits_per_sample = 16;
1439 encoder->protected_->sample_rate = 44100;
1440 encoder->protected_->blocksize = 1152;
1441 encoder->protected_->max_lpc_order = 0;
1442 encoder->protected_->qlp_coeff_precision = 0;
1443 encoder->protected_->do_qlp_coeff_prec_search = false;
1444 encoder->protected_->do_exhaustive_model_search = false;
1445 encoder->protected_->do_escape_coding = false;
1446 encoder->protected_->min_residual_partition_order = 0;
1447 encoder->protected_->max_residual_partition_order = 0;
1448 encoder->protected_->rice_parameter_search_dist = 0;
1449 encoder->protected_->total_samples_estimate = 0;
1450 encoder->protected_->metadata = 0;
1451 encoder->protected_->num_metadata_blocks = 0;
1452
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001453 encoder->private_->disable_constant_subframes = false;
1454 encoder->private_->disable_fixed_subframes = false;
1455 encoder->private_->disable_verbatim_subframes = false;
Josh Coalson92031602002-07-24 06:02:11 +00001456 encoder->private_->write_callback = 0;
1457 encoder->private_->metadata_callback = 0;
1458 encoder->private_->client_data = 0;
1459}
1460
Josh Coalsonf1eff452002-07-31 07:05:33 +00001461void free_(FLAC__StreamEncoder *encoder)
Josh Coalson639aeb02002-07-25 05:38:23 +00001462{
1463 unsigned i, channel;
1464
Josh Coalsonf1eff452002-07-31 07:05:33 +00001465 FLAC__ASSERT(0 != encoder);
Josh Coalson639aeb02002-07-25 05:38:23 +00001466 for(i = 0; i < encoder->protected_->channels; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001467 if(0 != encoder->private_->integer_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001468 free(encoder->private_->integer_signal_unaligned[i]);
1469 encoder->private_->integer_signal_unaligned[i] = 0;
1470 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001471 if(0 != encoder->private_->real_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001472 free(encoder->private_->real_signal_unaligned[i]);
1473 encoder->private_->real_signal_unaligned[i] = 0;
1474 }
1475 }
1476 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001477 if(0 != encoder->private_->integer_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001478 free(encoder->private_->integer_signal_mid_side_unaligned[i]);
1479 encoder->private_->integer_signal_mid_side_unaligned[i] = 0;
1480 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001481 if(0 != encoder->private_->real_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001482 free(encoder->private_->real_signal_mid_side_unaligned[i]);
1483 encoder->private_->real_signal_mid_side_unaligned[i] = 0;
1484 }
1485 }
1486 for(channel = 0; channel < encoder->protected_->channels; channel++) {
1487 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001488 if(0 != encoder->private_->residual_workspace_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001489 free(encoder->private_->residual_workspace_unaligned[channel][i]);
1490 encoder->private_->residual_workspace_unaligned[channel][i] = 0;
1491 }
1492 }
1493 }
1494 for(channel = 0; channel < 2; channel++) {
1495 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001496 if(0 != encoder->private_->residual_workspace_mid_side_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001497 free(encoder->private_->residual_workspace_mid_side_unaligned[channel][i]);
1498 encoder->private_->residual_workspace_mid_side_unaligned[channel][i] = 0;
1499 }
1500 }
1501 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001502 if(0 != encoder->private_->abs_residual_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001503 free(encoder->private_->abs_residual_unaligned);
1504 encoder->private_->abs_residual_unaligned = 0;
1505 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001506 if(0 != encoder->private_->abs_residual_partition_sums_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001507 free(encoder->private_->abs_residual_partition_sums_unaligned);
1508 encoder->private_->abs_residual_partition_sums_unaligned = 0;
1509 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001510 if(0 != encoder->private_->raw_bits_per_partition_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001511 free(encoder->private_->raw_bits_per_partition_unaligned);
1512 encoder->private_->raw_bits_per_partition_unaligned = 0;
1513 }
Josh Coalsond86e03b2002-08-03 21:56:15 +00001514 if(encoder->protected_->verify) {
1515 for(i = 0; i < encoder->protected_->channels; i++) {
1516 if(0 != encoder->private_->verify.input_fifo.data[i]) {
1517 free(encoder->private_->verify.input_fifo.data[i]);
1518 encoder->private_->verify.input_fifo.data[i] = 0;
1519 }
1520 }
1521 }
Josh Coalson639aeb02002-07-25 05:38:23 +00001522 FLAC__bitbuffer_free(encoder->private_->frame);
1523}
1524
Josh Coalsonf1eff452002-07-31 07:05:33 +00001525FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001526{
Josh Coalson77e3f312001-06-23 03:03:24 +00001527 FLAC__bool ok;
Josh Coalson0a15c142001-06-13 17:59:57 +00001528 unsigned i, channel;
1529
1530 FLAC__ASSERT(new_size > 0);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001531 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
1532 FLAC__ASSERT(encoder->private_->current_sample_number == 0);
Josh Coalson0a15c142001-06-13 17:59:57 +00001533
1534 /* To avoid excessive malloc'ing, we only grow the buffer; no shrinking. */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001535 if(new_size <= encoder->private_->input_capacity)
Josh Coalson0a15c142001-06-13 17:59:57 +00001536 return true;
1537
1538 ok = true;
Josh Coalson8395d022001-07-12 21:25:22 +00001539
Josh Coalsonc9c0d132002-10-04 05:29:05 +00001540 /* WATCHOUT: FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx()
1541 * requires that the input arrays (in our case the integer signals)
1542 * have a buffer of up to 3 zeroes in front (at negative indices) for
1543 * alignment purposes; we use 4 to keep the data well-aligned.
1544 */
Josh Coalson8395d022001-07-12 21:25:22 +00001545
Josh Coalsonfa697a92001-08-16 20:07:29 +00001546 for(i = 0; ok && i < encoder->protected_->channels; i++) {
1547 ok = ok && FLAC__memory_alloc_aligned_int32_array(new_size+4, &encoder->private_->integer_signal_unaligned[i], &encoder->private_->integer_signal[i]);
1548 ok = ok && FLAC__memory_alloc_aligned_real_array(new_size, &encoder->private_->real_signal_unaligned[i], &encoder->private_->real_signal[i]);
1549 memset(encoder->private_->integer_signal[i], 0, sizeof(FLAC__int32)*4);
1550 encoder->private_->integer_signal[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00001551 }
1552 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001553 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]);
1554 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]);
1555 memset(encoder->private_->integer_signal_mid_side[i], 0, sizeof(FLAC__int32)*4);
1556 encoder->private_->integer_signal_mid_side[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00001557 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001558 for(channel = 0; ok && channel < encoder->protected_->channels; channel++) {
Josh Coalson0a15c142001-06-13 17:59:57 +00001559 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001560 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 +00001561 }
1562 }
1563 for(channel = 0; ok && channel < 2; channel++) {
1564 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001565 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 +00001566 }
1567 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001568 ok = ok && FLAC__memory_alloc_aligned_uint32_array(new_size, &encoder->private_->abs_residual_unaligned, &encoder->private_->abs_residual);
1569 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 */
1570 ok = ok && FLAC__memory_alloc_aligned_uint64_array(new_size * 2, &encoder->private_->abs_residual_partition_sums_unaligned, &encoder->private_->abs_residual_partition_sums);
1571 if(encoder->protected_->do_escape_coding)
1572 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 +00001573
1574 if(ok)
Josh Coalsonfa697a92001-08-16 20:07:29 +00001575 encoder->private_->input_capacity = new_size;
Josh Coalson0a15c142001-06-13 17:59:57 +00001576 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00001577 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson0a15c142001-06-13 17:59:57 +00001578
1579 return ok;
1580}
1581
Josh Coalsond86e03b2002-08-03 21:56:15 +00001582FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples)
Josh Coalson5c491a12002-08-01 06:39:40 +00001583{
1584 const FLAC__byte *buffer;
1585 unsigned bytes;
1586
1587 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
1588
1589 FLAC__bitbuffer_get_buffer(encoder->private_->frame, &buffer, &bytes);
1590
Josh Coalsond86e03b2002-08-03 21:56:15 +00001591 if(encoder->protected_->verify) {
1592 encoder->private_->verify.output.data = buffer;
1593 encoder->private_->verify.output.bytes = bytes;
1594 if(encoder->private_->verify.state_hint == ENCODER_IN_MAGIC) {
1595 encoder->private_->verify.needs_magic_hack = true;
1596 }
1597 else {
1598 if(!FLAC__stream_decoder_process_single(encoder->private_->verify.decoder)) {
1599 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
1600 if(encoder->protected_->state != FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA)
1601 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
1602 return false;
1603 }
1604 }
1605 }
1606
1607 if(encoder->private_->write_callback(encoder, buffer, bytes, samples, encoder->private_->current_frame_number, encoder->private_->client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
1608 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_WRITING;
Josh Coalson5c491a12002-08-01 06:39:40 +00001609 return false;
Josh Coalsond86e03b2002-08-03 21:56:15 +00001610 }
Josh Coalson5c491a12002-08-01 06:39:40 +00001611
1612 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
1613
Josh Coalsond86e03b2002-08-03 21:56:15 +00001614 if(samples > 0) {
1615 encoder->private_->metadata.data.stream_info.min_framesize = min(bytes, encoder->private_->metadata.data.stream_info.min_framesize);
1616 encoder->private_->metadata.data.stream_info.max_framesize = max(bytes, encoder->private_->metadata.data.stream_info.max_framesize);
1617 }
1618
Josh Coalson5c491a12002-08-01 06:39:40 +00001619 return true;
1620}
1621
Josh Coalsonf1eff452002-07-31 07:05:33 +00001622FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson0a15c142001-06-13 17:59:57 +00001623{
Josh Coalsonfa697a92001-08-16 20:07:29 +00001624 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001625
1626 /*
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00001627 * Accumulate raw signal to the MD5 signature
1628 */
Josh Coalson57ba6f42002-06-07 05:27:37 +00001629 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 +00001630 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00001631 return false;
1632 }
1633
1634 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00001635 * Process the frame header and subframes into the frame bitbuffer
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001636 */
Josh Coalsonf1eff452002-07-31 07:05:33 +00001637 if(!process_subframes_(encoder, is_last_frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001638 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001639 return false;
1640 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001641
1642 /*
1643 * Zero-pad the frame to a byte_boundary
1644 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001645 if(!FLAC__bitbuffer_zero_pad_to_byte_boundary(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001646 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001647 return false;
1648 }
1649
1650 /*
Josh Coalson215af572001-03-27 01:15:58 +00001651 * CRC-16 the whole thing
1652 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001653 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
1654 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 +00001655
1656 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001657 * Write it
1658 */
Josh Coalsond86e03b2002-08-03 21:56:15 +00001659 if(!write_bitbuffer_(encoder, encoder->protected_->blocksize)) {
1660 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001661 return false;
1662 }
1663
1664 /*
1665 * Get ready for the next frame
1666 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001667 encoder->private_->current_sample_number = 0;
1668 encoder->private_->current_frame_number++;
1669 encoder->private_->metadata.data.stream_info.total_samples += (FLAC__uint64)encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001670
1671 return true;
1672}
1673
Josh Coalsonf1eff452002-07-31 07:05:33 +00001674FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001675{
1676 FLAC__FrameHeader frame_header;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001677 unsigned channel, min_partition_order = encoder->protected_->min_residual_partition_order, max_partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00001678 FLAC__bool do_independent, do_mid_side, precompute_partition_sums;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001679
1680 /*
Josh Coalson60f77d72001-04-25 02:16:36 +00001681 * Calculate the min,max Rice partition orders
Josh Coalson94e02cd2001-01-25 10:41:06 +00001682 */
1683 if(is_last_frame) {
1684 max_partition_order = 0;
1685 }
1686 else {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001687 max_partition_order = FLAC__format_get_max_rice_partition_order_from_blocksize(encoder->protected_->blocksize);
1688 max_partition_order = min(max_partition_order, encoder->protected_->max_residual_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001689 }
Josh Coalson60f77d72001-04-25 02:16:36 +00001690 min_partition_order = min(min_partition_order, max_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001691
Josh Coalsonfa697a92001-08-16 20:07:29 +00001692 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 +00001693
Josh Coalson94e02cd2001-01-25 10:41:06 +00001694 /*
1695 * Setup the frame
1696 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001697 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001698 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001699 return false;
1700 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001701 frame_header.blocksize = encoder->protected_->blocksize;
1702 frame_header.sample_rate = encoder->protected_->sample_rate;
1703 frame_header.channels = encoder->protected_->channels;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001704 frame_header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT; /* the default unless the encoder determines otherwise */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001705 frame_header.bits_per_sample = encoder->protected_->bits_per_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001706 frame_header.number_type = FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001707 frame_header.number.frame_number = encoder->private_->current_frame_number;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001708
1709 /*
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001710 * Figure out what channel assignments to try
1711 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001712 if(encoder->protected_->do_mid_side_stereo) {
1713 if(encoder->protected_->loose_mid_side_stereo) {
1714 if(encoder->private_->loose_mid_side_stereo_frame_count == 0) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001715 do_independent = true;
1716 do_mid_side = true;
1717 }
1718 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001719 do_independent = (encoder->private_->last_channel_assignment == FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001720 do_mid_side = !do_independent;
1721 }
1722 }
1723 else {
1724 do_independent = true;
1725 do_mid_side = true;
1726 }
1727 }
1728 else {
1729 do_independent = true;
1730 do_mid_side = false;
1731 }
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001732
Josh Coalson1b689822001-05-31 20:11:02 +00001733 FLAC__ASSERT(do_independent || do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001734
1735 /*
Josh Coalson82b73242001-03-28 22:17:05 +00001736 * Check for wasted bits; set effective bps for each subframe
Josh Coalson859bc542001-03-27 22:22:27 +00001737 */
1738 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001739 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001740 const unsigned w = get_wasted_bits_(encoder->private_->integer_signal[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001741 encoder->private_->subframe_workspace[channel][0].wasted_bits = encoder->private_->subframe_workspace[channel][1].wasted_bits = w;
1742 encoder->private_->subframe_bps[channel] = encoder->protected_->bits_per_sample - w;
Josh Coalson82b73242001-03-28 22:17:05 +00001743 }
Josh Coalson859bc542001-03-27 22:22:27 +00001744 }
1745 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001746 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson82b73242001-03-28 22:17:05 +00001747 for(channel = 0; channel < 2; channel++) {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001748 const unsigned w = get_wasted_bits_(encoder->private_->integer_signal_mid_side[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001749 encoder->private_->subframe_workspace_mid_side[channel][0].wasted_bits = encoder->private_->subframe_workspace_mid_side[channel][1].wasted_bits = w;
1750 encoder->private_->subframe_bps_mid_side[channel] = encoder->protected_->bits_per_sample - w + (channel==0? 0:1);
Josh Coalson82b73242001-03-28 22:17:05 +00001751 }
Josh Coalson859bc542001-03-27 22:22:27 +00001752 }
1753
1754 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00001755 * First do a normal encoding pass of each independent channel
1756 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001757 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001758 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00001759 if(!
1760 process_subframe_(
1761 encoder,
1762 min_partition_order,
1763 max_partition_order,
1764 precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001765 &frame_header,
1766 encoder->private_->subframe_bps[channel],
1767 encoder->private_->integer_signal[channel],
1768 encoder->private_->real_signal[channel],
1769 encoder->private_->subframe_workspace_ptr[channel],
1770 encoder->private_->partitioned_rice_contents_workspace_ptr[channel],
1771 encoder->private_->residual_workspace[channel],
1772 encoder->private_->best_subframe+channel,
1773 encoder->private_->best_subframe_bits+channel
1774 )
1775 )
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001776 return false;
1777 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001778 }
1779
1780 /*
1781 * Now do mid and side channels if requested
1782 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001783 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001784 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001785
1786 for(channel = 0; channel < 2; channel++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00001787 if(!
1788 process_subframe_(
1789 encoder,
1790 min_partition_order,
1791 max_partition_order,
1792 precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001793 &frame_header,
1794 encoder->private_->subframe_bps_mid_side[channel],
1795 encoder->private_->integer_signal_mid_side[channel],
1796 encoder->private_->real_signal_mid_side[channel],
1797 encoder->private_->subframe_workspace_ptr_mid_side[channel],
1798 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[channel],
1799 encoder->private_->residual_workspace_mid_side[channel],
1800 encoder->private_->best_subframe_mid_side+channel,
1801 encoder->private_->best_subframe_bits_mid_side+channel
1802 )
1803 )
Josh Coalson94e02cd2001-01-25 10:41:06 +00001804 return false;
1805 }
1806 }
1807
1808 /*
1809 * Compose the frame bitbuffer
1810 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001811 if(do_mid_side) {
Josh Coalson82b73242001-03-28 22:17:05 +00001812 unsigned left_bps = 0, right_bps = 0; /* initialized only to prevent superfluous compiler warning */
1813 FLAC__Subframe *left_subframe = 0, *right_subframe = 0; /* initialized only to prevent superfluous compiler warning */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001814 FLAC__ChannelAssignment channel_assignment;
1815
Josh Coalsonfa697a92001-08-16 20:07:29 +00001816 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001817
Josh Coalsonfa697a92001-08-16 20:07:29 +00001818 if(encoder->protected_->loose_mid_side_stereo && encoder->private_->loose_mid_side_stereo_frame_count > 0) {
1819 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 +00001820 }
1821 else {
1822 unsigned bits[4]; /* WATCHOUT - indexed by FLAC__ChannelAssignment */
1823 unsigned min_bits;
1824 FLAC__ChannelAssignment ca;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001825
Josh Coalson1b689822001-05-31 20:11:02 +00001826 FLAC__ASSERT(do_independent && do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001827
1828 /* We have to figure out which channel assignent results in the smallest frame */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001829 bits[FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits [1];
1830 bits[FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE ] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits_mid_side[1];
1831 bits[FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE ] = encoder->private_->best_subframe_bits [1] + encoder->private_->best_subframe_bits_mid_side[1];
1832 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 +00001833
1834 for(channel_assignment = 0, min_bits = bits[0], ca = 1; ca <= 3; ca++) {
1835 if(bits[ca] < min_bits) {
1836 min_bits = bits[ca];
1837 channel_assignment = ca;
1838 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001839 }
1840 }
1841
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001842 frame_header.channel_assignment = channel_assignment;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001843
Josh Coalsonaec256b2002-03-12 16:19:54 +00001844 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, is_last_frame, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001845 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001846 return false;
1847 }
1848
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001849 switch(channel_assignment) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001850 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001851 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
1852 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001853 break;
1854 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001855 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
1856 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001857 break;
1858 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001859 left_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
1860 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001861 break;
1862 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001863 left_subframe = &encoder->private_->subframe_workspace_mid_side[0][encoder->private_->best_subframe_mid_side[0]];
1864 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001865 break;
1866 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001867 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001868 }
Josh Coalson82b73242001-03-28 22:17:05 +00001869
1870 switch(channel_assignment) {
1871 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001872 left_bps = encoder->private_->subframe_bps [0];
1873 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00001874 break;
1875 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001876 left_bps = encoder->private_->subframe_bps [0];
1877 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00001878 break;
1879 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001880 left_bps = encoder->private_->subframe_bps_mid_side[1];
1881 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00001882 break;
1883 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001884 left_bps = encoder->private_->subframe_bps_mid_side[0];
1885 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00001886 break;
1887 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001888 FLAC__ASSERT(0);
Josh Coalson82b73242001-03-28 22:17:05 +00001889 }
1890
1891 /* note that encoder_add_subframe_ sets the state for us in case of an error */
Josh Coalsonf1eff452002-07-31 07:05:33 +00001892 if(!add_subframe_(encoder, &frame_header, left_bps , left_subframe , encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00001893 return false;
Josh Coalsonf1eff452002-07-31 07:05:33 +00001894 if(!add_subframe_(encoder, &frame_header, right_bps, right_subframe, encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00001895 return false;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001896 }
1897 else {
Josh Coalsonaec256b2002-03-12 16:19:54 +00001898 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, is_last_frame, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001899 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001900 return false;
1901 }
1902
Josh Coalsonfa697a92001-08-16 20:07:29 +00001903 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001904 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 +00001905 /* the above function sets the state for us in case of an error */
1906 return false;
1907 }
1908 }
1909 }
1910
Josh Coalsonfa697a92001-08-16 20:07:29 +00001911 if(encoder->protected_->loose_mid_side_stereo) {
1912 encoder->private_->loose_mid_side_stereo_frame_count++;
1913 if(encoder->private_->loose_mid_side_stereo_frame_count >= encoder->private_->loose_mid_side_stereo_frames)
1914 encoder->private_->loose_mid_side_stereo_frame_count = 0;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001915 }
1916
Josh Coalsonfa697a92001-08-16 20:07:29 +00001917 encoder->private_->last_channel_assignment = frame_header.channel_assignment;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001918
Josh Coalson94e02cd2001-01-25 10:41:06 +00001919 return true;
1920}
1921
Josh Coalson6fe72f72002-08-20 04:01:59 +00001922FLAC__bool process_subframe_(
1923 FLAC__StreamEncoder *encoder,
1924 unsigned min_partition_order,
1925 unsigned max_partition_order,
1926 FLAC__bool precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001927 const FLAC__FrameHeader *frame_header,
1928 unsigned subframe_bps,
1929 const FLAC__int32 integer_signal[],
1930 const FLAC__real real_signal[],
1931 FLAC__Subframe *subframe[2],
1932 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents[2],
1933 FLAC__int32 *residual[2],
1934 unsigned *best_subframe,
1935 unsigned *best_bits
1936)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001937{
Josh Coalson77e3f312001-06-23 03:03:24 +00001938 FLAC__real fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1];
1939 FLAC__real lpc_residual_bits_per_sample;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001940 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 +00001941 FLAC__real lpc_error[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001942 unsigned min_lpc_order, max_lpc_order, lpc_order;
1943 unsigned min_fixed_order, max_fixed_order, guess_fixed_order, fixed_order;
1944 unsigned min_qlp_coeff_precision, max_qlp_coeff_precision, qlp_coeff_precision;
1945 unsigned rice_parameter;
1946 unsigned _candidate_bits, _best_bits;
1947 unsigned _best_subframe;
1948
1949 /* verbatim subframe is the baseline against which we measure other compressed subframes */
1950 _best_subframe = 0;
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001951 if(encoder->private_->disable_verbatim_subframes && frame_header->blocksize >= FLAC__MAX_FIXED_ORDER)
1952 _best_bits = UINT_MAX;
1953 else
1954 _best_bits = evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, subframe_bps, subframe[_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001955
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001956 if(frame_header->blocksize >= FLAC__MAX_FIXED_ORDER) {
1957 unsigned signal_is_constant = false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001958 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 +00001959 /* check for constant subframe */
1960 if(!encoder->private_->disable_constant_subframes && fixed_residual_bits_per_sample[1] == 0.0) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001961 /* 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 +00001962 unsigned i;
1963 signal_is_constant = true;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001964 for(i = 1; i <= FLAC__MAX_FIXED_ORDER; i++) {
1965 if(integer_signal[0] != integer_signal[i]) {
1966 signal_is_constant = false;
1967 break;
1968 }
1969 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001970 }
1971 if(signal_is_constant) {
1972 _candidate_bits = evaluate_constant_subframe_(integer_signal[0], subframe_bps, subframe[!_best_subframe]);
1973 if(_candidate_bits < _best_bits) {
1974 _best_subframe = !_best_subframe;
1975 _best_bits = _candidate_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001976 }
1977 }
1978 else {
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001979 if(!encoder->private_->disable_fixed_subframes || (encoder->protected_->max_lpc_order == 0 && _best_bits == UINT_MAX)) {
1980 /* encode fixed */
1981 if(encoder->protected_->do_exhaustive_model_search) {
1982 min_fixed_order = 0;
1983 max_fixed_order = FLAC__MAX_FIXED_ORDER;
Josh Coalson8395d022001-07-12 21:25:22 +00001984 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001985 else {
1986 min_fixed_order = max_fixed_order = guess_fixed_order;
1987 }
1988 for(fixed_order = min_fixed_order; fixed_order <= max_fixed_order; fixed_order++) {
1989 if(fixed_residual_bits_per_sample[fixed_order] >= (FLAC__real)subframe_bps)
1990 continue; /* don't even try */
1991 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 */
1992#ifndef FLAC__SYMMETRIC_RICE
1993 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
1994#endif
1995 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
1996#ifdef DEBUG_VERBOSE
1997 fprintf(stderr, "clipping rice_parameter (%u -> %u) @0\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
1998#endif
1999 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2000 }
2001 _candidate_bits =
2002 evaluate_fixed_subframe_(
2003 encoder,
2004 integer_signal,
2005 residual[!_best_subframe],
2006 encoder->private_->abs_residual,
2007 encoder->private_->abs_residual_partition_sums,
2008 encoder->private_->raw_bits_per_partition,
2009 frame_header->blocksize,
2010 subframe_bps,
2011 fixed_order,
2012 rice_parameter,
2013 min_partition_order,
2014 max_partition_order,
2015 precompute_partition_sums,
2016 encoder->protected_->do_escape_coding,
2017 encoder->protected_->rice_parameter_search_dist,
2018 subframe[!_best_subframe],
2019 partitioned_rice_contents[!_best_subframe]
2020 );
2021 if(_candidate_bits < _best_bits) {
2022 _best_subframe = !_best_subframe;
2023 _best_bits = _candidate_bits;
2024 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002025 }
2026 }
2027
2028 /* encode lpc */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002029 if(encoder->protected_->max_lpc_order > 0) {
2030 if(encoder->protected_->max_lpc_order >= frame_header->blocksize)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002031 max_lpc_order = frame_header->blocksize-1;
2032 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00002033 max_lpc_order = encoder->protected_->max_lpc_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002034 if(max_lpc_order > 0) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002035 encoder->private_->local_lpc_compute_autocorrelation(real_signal, frame_header->blocksize, max_lpc_order+1, autoc);
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002036 /* if autoc[0] == 0.0, the signal is constant and we usually won't get here, but it can happen */
2037 if(autoc[0] != 0.0) {
Josh Coalson8084b052001-11-01 00:27:29 +00002038 FLAC__lpc_compute_lp_coefficients(autoc, max_lpc_order, encoder->private_->lp_coeff, lpc_error);
Josh Coalsonfa697a92001-08-16 20:07:29 +00002039 if(encoder->protected_->do_exhaustive_model_search) {
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002040 min_lpc_order = 1;
2041 }
2042 else {
Josh Coalson82b73242001-03-28 22:17:05 +00002043 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 +00002044 min_lpc_order = max_lpc_order = guess_lpc_order;
2045 }
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002046 for(lpc_order = min_lpc_order; lpc_order <= max_lpc_order; lpc_order++) {
2047 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 +00002048 if(lpc_residual_bits_per_sample >= (FLAC__real)subframe_bps)
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002049 continue; /* don't even try */
2050 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 +00002051#ifndef FLAC__SYMMETRIC_RICE
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002052 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
Josh Coalsonb9433f92001-03-17 01:07:00 +00002053#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002054 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002055#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002056 fprintf(stderr, "clipping rice_parameter (%u -> %u) @1\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2057#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002058 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002059 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002060 if(encoder->protected_->do_qlp_coeff_prec_search) {
2061 min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
2062 /* ensure a 32-bit datapath throughout for 16bps or less */
2063 if(subframe_bps <= 16)
2064 max_qlp_coeff_precision = min(32 - subframe_bps - lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
2065 else
2066 max_qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION;
2067 }
2068 else {
2069 min_qlp_coeff_precision = max_qlp_coeff_precision = encoder->protected_->qlp_coeff_precision;
2070 }
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002071 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 +00002072 _candidate_bits =
2073 evaluate_lpc_subframe_(
2074 encoder,
2075 integer_signal,
2076 residual[!_best_subframe],
2077 encoder->private_->abs_residual,
2078 encoder->private_->abs_residual_partition_sums,
2079 encoder->private_->raw_bits_per_partition,
2080 encoder->private_->lp_coeff[lpc_order-1],
2081 frame_header->blocksize,
2082 subframe_bps,
2083 lpc_order,
2084 qlp_coeff_precision,
2085 rice_parameter,
2086 min_partition_order,
2087 max_partition_order,
2088 precompute_partition_sums,
2089 encoder->protected_->do_escape_coding,
2090 encoder->protected_->rice_parameter_search_dist,
2091 subframe[!_best_subframe],
2092 partitioned_rice_contents[!_best_subframe]
2093 );
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002094 if(_candidate_bits > 0) { /* if == 0, there was a problem quantizing the lpcoeffs */
2095 if(_candidate_bits < _best_bits) {
2096 _best_subframe = !_best_subframe;
2097 _best_bits = _candidate_bits;
2098 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002099 }
2100 }
2101 }
2102 }
2103 }
2104 }
2105 }
2106 }
2107
Josh Coalson72695802002-10-11 06:25:16 +00002108 /* under rare circumstances this can happen when all but lpc subframe types are disabled: */
2109 if(_best_bits == UINT_MAX) {
2110 FLAC__ASSERT(_best_subframe == 0);
2111 _best_bits = evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, subframe_bps, subframe[_best_subframe]);
2112 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002113
Josh Coalson94e02cd2001-01-25 10:41:06 +00002114 *best_subframe = _best_subframe;
2115 *best_bits = _best_bits;
2116
2117 return true;
2118}
2119
Josh Coalson6fe72f72002-08-20 04:01:59 +00002120FLAC__bool add_subframe_(
2121 FLAC__StreamEncoder *encoder,
2122 const FLAC__FrameHeader *frame_header,
2123 unsigned subframe_bps,
2124 const FLAC__Subframe *subframe,
2125 FLAC__BitBuffer *frame
2126)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002127{
2128 switch(subframe->type) {
2129 case FLAC__SUBFRAME_TYPE_CONSTANT:
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002130//@@@@fprintf(stderr,"@@@@ add CONSTANT, bps=%u\n",subframe_bps);
Josh Coalson82b73242001-03-28 22:17:05 +00002131 if(!FLAC__subframe_add_constant(&(subframe->data.constant), subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002132 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002133 return false;
2134 }
2135 break;
2136 case FLAC__SUBFRAME_TYPE_FIXED:
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002137//@@@@fprintf(stderr,"@@@@ add FIXED, bps=%u, order=%u\n",subframe_bps,subframe->data.fixed.order);
Josh Coalson82b73242001-03-28 22:17:05 +00002138 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 +00002139 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002140 return false;
2141 }
2142 break;
2143 case FLAC__SUBFRAME_TYPE_LPC:
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002144//@@@@fprintf(stderr,"@@@@ add LPC, bps=%u, order=%u, prec=%u, shift=%d\n",subframe_bps,subframe->data.lpc.order,subframe->data.lpc.qlp_coeff_precision,subframe->data.lpc.quantization_level);
Josh Coalson82b73242001-03-28 22:17:05 +00002145 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 +00002146 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002147 return false;
2148 }
2149 break;
2150 case FLAC__SUBFRAME_TYPE_VERBATIM:
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002151//@@@@fprintf(stderr,"@@@@ add VERBATIM, bps=%u\n",subframe_bps);
Josh Coalson82b73242001-03-28 22:17:05 +00002152 if(!FLAC__subframe_add_verbatim(&(subframe->data.verbatim), frame_header->blocksize, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002153 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002154 return false;
2155 }
2156 break;
2157 default:
Josh Coalson1b689822001-05-31 20:11:02 +00002158 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002159 }
2160
2161 return true;
2162}
2163
Josh Coalson6fe72f72002-08-20 04:01:59 +00002164unsigned evaluate_constant_subframe_(
2165 const FLAC__int32 signal,
2166 unsigned subframe_bps,
2167 FLAC__Subframe *subframe
2168)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002169{
2170 subframe->type = FLAC__SUBFRAME_TYPE_CONSTANT;
2171 subframe->data.constant.value = signal;
2172
Josh Coalson82b73242001-03-28 22:17:05 +00002173 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 +00002174}
2175
Josh Coalson6fe72f72002-08-20 04:01:59 +00002176unsigned evaluate_fixed_subframe_(
2177 FLAC__StreamEncoder *encoder,
2178 const FLAC__int32 signal[],
2179 FLAC__int32 residual[],
2180 FLAC__uint32 abs_residual[],
2181 FLAC__uint64 abs_residual_partition_sums[],
2182 unsigned raw_bits_per_partition[],
2183 unsigned blocksize,
2184 unsigned subframe_bps,
2185 unsigned order,
2186 unsigned rice_parameter,
2187 unsigned min_partition_order,
2188 unsigned max_partition_order,
2189 FLAC__bool precompute_partition_sums,
2190 FLAC__bool do_escape_coding,
2191 unsigned rice_parameter_search_dist,
2192 FLAC__Subframe *subframe,
2193 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
2194)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002195{
2196 unsigned i, residual_bits;
2197 const unsigned residual_samples = blocksize - order;
2198
2199 FLAC__fixed_compute_residual(signal+order, residual_samples, order, residual);
2200
2201 subframe->type = FLAC__SUBFRAME_TYPE_FIXED;
2202
2203 subframe->data.fixed.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
Josh Coalsona37ba462002-08-19 21:36:39 +00002204 subframe->data.fixed.entropy_coding_method.data.partitioned_rice.contents = partitioned_rice_contents;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002205 subframe->data.fixed.residual = residual;
2206
Josh Coalson6fe72f72002-08-20 04:01:59 +00002207 residual_bits =
2208 find_best_partition_order_(
2209 encoder->private_,
2210 residual,
2211 abs_residual,
2212 abs_residual_partition_sums,
2213 raw_bits_per_partition,
2214 residual_samples,
2215 order,
2216 rice_parameter,
2217 min_partition_order,
2218 max_partition_order,
2219 precompute_partition_sums,
2220 do_escape_coding,
2221 rice_parameter_search_dist,
2222 &subframe->data.fixed.entropy_coding_method.data.partitioned_rice
2223 );
Josh Coalson94e02cd2001-01-25 10:41:06 +00002224
2225 subframe->data.fixed.order = order;
2226 for(i = 0; i < order; i++)
2227 subframe->data.fixed.warmup[i] = signal[i];
2228
Josh Coalson82b73242001-03-28 22:17:05 +00002229 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 +00002230}
2231
Josh Coalson6fe72f72002-08-20 04:01:59 +00002232unsigned evaluate_lpc_subframe_(
2233 FLAC__StreamEncoder *encoder,
2234 const FLAC__int32 signal[],
2235 FLAC__int32 residual[],
2236 FLAC__uint32 abs_residual[],
2237 FLAC__uint64 abs_residual_partition_sums[],
2238 unsigned raw_bits_per_partition[],
2239 const FLAC__real lp_coeff[],
2240 unsigned blocksize,
2241 unsigned subframe_bps,
2242 unsigned order,
2243 unsigned qlp_coeff_precision,
2244 unsigned rice_parameter,
2245 unsigned min_partition_order,
2246 unsigned max_partition_order,
2247 FLAC__bool precompute_partition_sums,
2248 FLAC__bool do_escape_coding,
2249 unsigned rice_parameter_search_dist,
2250 FLAC__Subframe *subframe,
2251 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
2252)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002253{
Josh Coalson77e3f312001-06-23 03:03:24 +00002254 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00002255 unsigned i, residual_bits;
2256 int quantization, ret;
2257 const unsigned residual_samples = blocksize - order;
2258
Josh Coalson20ac2c12002-08-30 05:47:14 +00002259 /* try to keep qlp coeff precision such that only 32-bit math is required for decode of <=16bps streams */
2260 if(subframe_bps <= 16) {
2261 FLAC__ASSERT(order > 0);
2262 FLAC__ASSERT(order <= FLAC__MAX_LPC_ORDER);
2263 qlp_coeff_precision = min(qlp_coeff_precision, 32 - subframe_bps - FLAC__bitmath_ilog2(order));
2264 }
2265
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002266 ret = FLAC__lpc_quantize_coefficients(lp_coeff, order, qlp_coeff_precision, qlp_coeff, &quantization);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002267 if(ret != 0)
2268 return 0; /* this is a hack to indicate to the caller that we can't do lp at this order on this subframe */
2269
Josh Coalson92d42402001-05-31 20:53:19 +00002270 if(subframe_bps <= 16 && qlp_coeff_precision <= 16)
Josh Coalsonfa697a92001-08-16 20:07:29 +00002271 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit(signal+order, residual_samples, qlp_coeff, order, quantization, residual);
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002272 else if(subframe_bps + qlp_coeff_precision + order <= 32)
Josh Coalsonfa697a92001-08-16 20:07:29 +00002273 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 +00002274 else
2275 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 +00002276
2277 subframe->type = FLAC__SUBFRAME_TYPE_LPC;
2278
2279 subframe->data.lpc.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
Josh Coalsona37ba462002-08-19 21:36:39 +00002280 subframe->data.lpc.entropy_coding_method.data.partitioned_rice.contents = partitioned_rice_contents;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002281 subframe->data.lpc.residual = residual;
2282
Josh Coalson6fe72f72002-08-20 04:01:59 +00002283 residual_bits =
2284 find_best_partition_order_(
2285 encoder->private_,
2286 residual,
2287 abs_residual,
2288 abs_residual_partition_sums,
2289 raw_bits_per_partition,
2290 residual_samples,
2291 order,
2292 rice_parameter,
2293 min_partition_order,
2294 max_partition_order,
2295 precompute_partition_sums,
2296 do_escape_coding,
2297 rice_parameter_search_dist,
2298 &subframe->data.fixed.entropy_coding_method.data.partitioned_rice
2299 );
Josh Coalson94e02cd2001-01-25 10:41:06 +00002300
2301 subframe->data.lpc.order = order;
2302 subframe->data.lpc.qlp_coeff_precision = qlp_coeff_precision;
2303 subframe->data.lpc.quantization_level = quantization;
Josh Coalson77e3f312001-06-23 03:03:24 +00002304 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002305 for(i = 0; i < order; i++)
2306 subframe->data.lpc.warmup[i] = signal[i];
2307
Josh Coalson82b73242001-03-28 22:17:05 +00002308 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 +00002309}
2310
Josh Coalson6fe72f72002-08-20 04:01:59 +00002311unsigned evaluate_verbatim_subframe_(
2312 const FLAC__int32 signal[],
2313 unsigned blocksize,
2314 unsigned subframe_bps,
2315 FLAC__Subframe *subframe
2316)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002317{
2318 subframe->type = FLAC__SUBFRAME_TYPE_VERBATIM;
2319
2320 subframe->data.verbatim.data = signal;
2321
Josh Coalson82b73242001-03-28 22:17:05 +00002322 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 +00002323}
2324
Josh Coalson6fe72f72002-08-20 04:01:59 +00002325unsigned find_best_partition_order_(
2326 FLAC__StreamEncoderPrivate *private_,
2327 const FLAC__int32 residual[],
2328 FLAC__uint32 abs_residual[],
2329 FLAC__uint64 abs_residual_partition_sums[],
2330 unsigned raw_bits_per_partition[],
2331 unsigned residual_samples,
2332 unsigned predictor_order,
2333 unsigned rice_parameter,
2334 unsigned min_partition_order,
2335 unsigned max_partition_order,
2336 FLAC__bool precompute_partition_sums,
2337 FLAC__bool do_escape_coding,
2338 unsigned rice_parameter_search_dist,
2339 FLAC__EntropyCodingMethod_PartitionedRice *best_partitioned_rice
2340)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002341{
Josh Coalson77e3f312001-06-23 03:03:24 +00002342 FLAC__int32 r;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002343 unsigned residual_bits, best_residual_bits = 0;
Josh Coalsonafcd8772001-04-18 22:59:25 +00002344 unsigned residual_sample;
Josh Coalson8084b052001-11-01 00:27:29 +00002345 unsigned best_parameters_index = 0;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002346 const unsigned blocksize = residual_samples + predictor_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002347
Josh Coalson2051dd42001-04-12 22:22:34 +00002348 /* compute abs(residual) for use later */
2349 for(residual_sample = 0; residual_sample < residual_samples; residual_sample++) {
2350 r = residual[residual_sample];
Josh Coalson77e3f312001-06-23 03:03:24 +00002351 abs_residual[residual_sample] = (FLAC__uint32)(r<0? -r : r);
Josh Coalson2051dd42001-04-12 22:22:34 +00002352 }
2353
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002354 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 +00002355 min_partition_order = min(min_partition_order, max_partition_order);
2356
Josh Coalson8395d022001-07-12 21:25:22 +00002357 if(precompute_partition_sums) {
2358 int partition_order;
2359 unsigned sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002360
Josh Coalsonf1eff452002-07-31 07:05:33 +00002361 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 +00002362
2363 if(do_escape_coding)
Josh Coalsonf1eff452002-07-31 07:05:33 +00002364 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 +00002365
2366 for(partition_order = (int)max_partition_order, sum = 0; partition_order >= (int)min_partition_order; partition_order--) {
2367#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002368 if(!
2369 set_partitioned_rice_with_precompute_(
2370 residual,
2371 abs_residual_partition_sums+sum,
2372 raw_bits_per_partition+sum,
2373 residual_samples,
2374 predictor_order,
2375 rice_parameter,
2376 rice_parameter_search_dist,
2377 (unsigned)partition_order,
2378 do_escape_coding,
2379 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2380 &residual_bits
2381 )
2382 )
Josh Coalsonafcd8772001-04-18 22:59:25 +00002383#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002384 if(!
2385 set_partitioned_rice_with_precompute_(
2386 abs_residual,
2387 abs_residual_partition_sums+sum,
2388 raw_bits_per_partition+sum,
2389 residual_samples,
2390 predictor_order,
2391 rice_parameter,
2392 rice_parameter_search_dist,
2393 (unsigned)partition_order,
2394 do_escape_coding,
2395 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2396 &residual_bits
2397 )
2398 )
Josh Coalson8395d022001-07-12 21:25:22 +00002399#endif
2400 {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002401 FLAC__ASSERT(best_residual_bits != 0);
2402 break;
Josh Coalson8395d022001-07-12 21:25:22 +00002403 }
2404 sum += 1u << partition_order;
2405 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
2406 best_residual_bits = residual_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002407 best_parameters_index = !best_parameters_index;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002408 best_partitioned_rice->order = partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00002409 }
Josh Coalsonafcd8772001-04-18 22:59:25 +00002410 }
2411 }
Josh Coalson8395d022001-07-12 21:25:22 +00002412 else {
2413 unsigned partition_order;
2414 for(partition_order = min_partition_order; partition_order <= max_partition_order; partition_order++) {
2415#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002416 if(!
2417 set_partitioned_rice_(
2418 abs_residual,
2419 residual,
2420 residual_samples,
2421 predictor_order,
2422 rice_parameter,
2423 rice_parameter_search_dist,
2424 partition_order,
2425 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2426 &residual_bits
2427 )
2428 )
Josh Coalson8395d022001-07-12 21:25:22 +00002429#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002430 if(!
2431 set_partitioned_rice_(
2432 abs_residual,
2433 residual_samples,
2434 predictor_order,
2435 rice_parameter,
2436 rice_parameter_search_dist,
2437 partition_order,
2438 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2439 &residual_bits
2440 )
2441 )
Josh Coalsonafcd8772001-04-18 22:59:25 +00002442#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002443 {
2444 FLAC__ASSERT(best_residual_bits != 0);
2445 break;
2446 }
2447 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
2448 best_residual_bits = residual_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002449 best_parameters_index = !best_parameters_index;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002450 best_partitioned_rice->order = partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00002451 }
2452 }
2453 }
2454
Josh Coalsona37ba462002-08-19 21:36:39 +00002455 /*
Josh Coalson20ac2c12002-08-30 05:47:14 +00002456 * We are allowed to de-const the pointer based on our special knowledge;
Josh Coalsona37ba462002-08-19 21:36:39 +00002457 * it is const to the outside world.
2458 */
2459 {
2460 FLAC__EntropyCodingMethod_PartitionedRiceContents* best_partitioned_rice_contents = (FLAC__EntropyCodingMethod_PartitionedRiceContents*)best_partitioned_rice->contents;
2461 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(best_partitioned_rice_contents, max(6, best_partitioned_rice->order));
2462 memcpy(best_partitioned_rice_contents->parameters, private_->partitioned_rice_contents_extra[best_parameters_index].parameters, sizeof(unsigned)*(1<<(best_partitioned_rice->order)));
2463 memcpy(best_partitioned_rice_contents->raw_bits, private_->partitioned_rice_contents_extra[best_parameters_index].raw_bits, sizeof(unsigned)*(1<<(best_partitioned_rice->order)));
2464 }
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002465
2466 return best_residual_bits;
2467}
2468
Josh Coalson6fe72f72002-08-20 04:01:59 +00002469void precompute_partition_info_sums_(
2470 const FLAC__uint32 abs_residual[],
2471 FLAC__uint64 abs_residual_partition_sums[],
2472 unsigned residual_samples,
2473 unsigned predictor_order,
2474 unsigned min_partition_order,
2475 unsigned max_partition_order
2476)
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002477{
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002478 int partition_order;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002479 unsigned from_partition, to_partition = 0;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002480 const unsigned blocksize = residual_samples + predictor_order;
2481
Josh Coalsonaef013c2001-04-24 01:25:42 +00002482 /* first do max_partition_order */
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002483 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002484 FLAC__uint64 abs_residual_partition_sum;
Josh Coalson77e3f312001-06-23 03:03:24 +00002485 FLAC__uint32 abs_r;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002486 unsigned partition, partition_sample, partition_samples, residual_sample;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002487 const unsigned partitions = 1u << partition_order;
2488 const unsigned default_partition_samples = blocksize >> partition_order;
2489
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002490 FLAC__ASSERT(default_partition_samples > predictor_order);
2491
2492 for(partition = residual_sample = 0; partition < partitions; partition++) {
2493 partition_samples = default_partition_samples;
2494 if(partition == 0)
2495 partition_samples -= predictor_order;
2496 abs_residual_partition_sum = 0;
2497 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
2498 abs_r = abs_residual[residual_sample];
2499 abs_residual_partition_sum += abs_r;
2500 residual_sample++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002501 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002502 abs_residual_partition_sums[partition] = abs_residual_partition_sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002503 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002504 to_partition = partitions;
2505 break;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002506 }
Josh Coalsonf76a3612001-04-18 02:28:11 +00002507
Josh Coalson8395d022001-07-12 21:25:22 +00002508 /* now merge partitions for lower orders */
Josh Coalson6bd17572001-05-25 19:02:01 +00002509 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002510 FLAC__uint64 s;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002511 unsigned i;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002512 const unsigned partitions = 1u << partition_order;
2513 for(i = 0; i < partitions; i++) {
Josh Coalsonaef013c2001-04-24 01:25:42 +00002514 s = abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00002515 from_partition++;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002516 abs_residual_partition_sums[to_partition] = s + abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00002517 from_partition++;
2518 to_partition++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002519 }
2520 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002521}
Josh Coalson8395d022001-07-12 21:25:22 +00002522
Josh Coalson6fe72f72002-08-20 04:01:59 +00002523void precompute_partition_info_escapes_(
2524 const FLAC__int32 residual[],
2525 unsigned raw_bits_per_partition[],
2526 unsigned residual_samples,
2527 unsigned predictor_order,
2528 unsigned min_partition_order,
2529 unsigned max_partition_order
2530)
Josh Coalson8395d022001-07-12 21:25:22 +00002531{
2532 int partition_order;
2533 unsigned from_partition, to_partition = 0;
2534 const unsigned blocksize = residual_samples + predictor_order;
2535
2536 /* first do max_partition_order */
2537 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
2538 FLAC__int32 r, residual_partition_min, residual_partition_max;
2539 unsigned silog2_min, silog2_max;
2540 unsigned partition, partition_sample, partition_samples, residual_sample;
2541 const unsigned partitions = 1u << partition_order;
2542 const unsigned default_partition_samples = blocksize >> partition_order;
2543
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002544 FLAC__ASSERT(default_partition_samples > predictor_order);
2545
2546 for(partition = residual_sample = 0; partition < partitions; partition++) {
2547 partition_samples = default_partition_samples;
2548 if(partition == 0)
2549 partition_samples -= predictor_order;
2550 residual_partition_min = residual_partition_max = 0;
2551 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
2552 r = residual[residual_sample];
2553 if(r < residual_partition_min)
2554 residual_partition_min = r;
2555 else if(r > residual_partition_max)
2556 residual_partition_max = r;
2557 residual_sample++;
Josh Coalson8395d022001-07-12 21:25:22 +00002558 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002559 silog2_min = FLAC__bitmath_silog2(residual_partition_min);
2560 silog2_max = FLAC__bitmath_silog2(residual_partition_max);
2561 raw_bits_per_partition[partition] = max(silog2_min, silog2_max);
Josh Coalson8395d022001-07-12 21:25:22 +00002562 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002563 to_partition = partitions;
2564 break;
Josh Coalson8395d022001-07-12 21:25:22 +00002565 }
2566
2567 /* now merge partitions for lower orders */
2568 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
2569 unsigned m;
2570 unsigned i;
2571 const unsigned partitions = 1u << partition_order;
2572 for(i = 0; i < partitions; i++) {
2573 m = raw_bits_per_partition[from_partition];
2574 from_partition++;
2575 raw_bits_per_partition[to_partition] = max(m, raw_bits_per_partition[from_partition]);
2576 from_partition++;
2577 to_partition++;
2578 }
2579 }
2580}
Josh Coalson94e02cd2001-01-25 10:41:06 +00002581
Josh Coalson352e0f62001-03-20 22:55:50 +00002582#ifdef VARIABLE_RICE_BITS
2583#undef VARIABLE_RICE_BITS
2584#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002585#ifndef DONT_ESTIMATE_RICE_BITS
Josh Coalson352e0f62001-03-20 22:55:50 +00002586#define VARIABLE_RICE_BITS(value, parameter) ((value) >> (parameter))
Josh Coalson8395d022001-07-12 21:25:22 +00002587#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002588
Josh Coalson8395d022001-07-12 21:25:22 +00002589#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002590FLAC__bool set_partitioned_rice_(
2591 const FLAC__uint32 abs_residual[],
2592 const FLAC__int32 residual[],
2593 const unsigned residual_samples,
2594 const unsigned predictor_order,
2595 const unsigned suggested_rice_parameter,
2596 const unsigned rice_parameter_search_dist,
2597 const unsigned partition_order,
2598 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2599 unsigned *bits
2600)
Josh Coalson8395d022001-07-12 21:25:22 +00002601#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002602FLAC__bool set_partitioned_rice_(
2603 const FLAC__uint32 abs_residual[],
2604 const unsigned residual_samples,
2605 const unsigned predictor_order,
2606 const unsigned suggested_rice_parameter,
2607 const unsigned rice_parameter_search_dist,
2608 const unsigned partition_order,
2609 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2610 unsigned *bits
2611)
Josh Coalson8395d022001-07-12 21:25:22 +00002612#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002613{
Josh Coalson034dfab2001-04-27 19:10:23 +00002614 unsigned rice_parameter, partition_bits;
2615#ifndef NO_RICE_SEARCH
2616 unsigned best_partition_bits;
2617 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
2618#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002619 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002620 unsigned *parameters;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002621
Josh Coalson1b689822001-05-31 20:11:02 +00002622 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
Josh Coalson2051dd42001-04-12 22:22:34 +00002623
Josh Coalsona37ba462002-08-19 21:36:39 +00002624 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order));
2625 parameters = partitioned_rice_contents->parameters;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002626
Josh Coalson94e02cd2001-01-25 10:41:06 +00002627 if(partition_order == 0) {
2628 unsigned i;
Josh Coalson352e0f62001-03-20 22:55:50 +00002629
Josh Coalson034dfab2001-04-27 19:10:23 +00002630#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00002631 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002632 if(suggested_rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00002633 min_rice_parameter = 0;
2634 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002635 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
2636 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00002637 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002638#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002639 fprintf(stderr, "clipping rice_parameter (%u -> %u) @2\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2640#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00002641 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002642 }
2643 }
2644 else
2645 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
2646
2647 best_partition_bits = 0xffffffff;
2648 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2649#endif
2650#ifdef VARIABLE_RICE_BITS
2651#ifdef FLAC__SYMMETRIC_RICE
2652 partition_bits = (2+rice_parameter) * residual_samples;
2653#else
2654 const unsigned rice_parameter_estimate = rice_parameter-1;
2655 partition_bits = (1+rice_parameter) * residual_samples;
2656#endif
2657#else
2658 partition_bits = 0;
2659#endif
2660 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
2661 for(i = 0; i < residual_samples; i++) {
2662#ifdef VARIABLE_RICE_BITS
2663#ifdef FLAC__SYMMETRIC_RICE
2664 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
2665#else
2666 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
2667#endif
2668#else
2669 partition_bits += FLAC__bitbuffer_rice_bits(residual[i], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
2670#endif
2671 }
2672#ifndef NO_RICE_SEARCH
2673 if(partition_bits < best_partition_bits) {
2674 best_rice_parameter = rice_parameter;
2675 best_partition_bits = partition_bits;
2676 }
2677 }
2678#endif
2679 parameters[0] = best_rice_parameter;
2680 bits_ += best_partition_bits;
2681 }
2682 else {
2683 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002684 unsigned partition_samples;
2685 FLAC__uint64 mean, k;
Josh Coalson8395d022001-07-12 21:25:22 +00002686 const unsigned partitions = 1u << partition_order;
2687 for(partition = residual_sample = 0; partition < partitions; partition++) {
2688 partition_samples = (residual_samples+predictor_order) >> partition_order;
2689 if(partition == 0) {
2690 if(partition_samples <= predictor_order)
2691 return false;
2692 else
2693 partition_samples -= predictor_order;
2694 }
2695 mean = 0;
2696 save_residual_sample = residual_sample;
2697 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++)
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002698 mean += abs_residual[residual_sample];
Josh Coalson8395d022001-07-12 21:25:22 +00002699 residual_sample = save_residual_sample;
2700#ifdef FLAC__SYMMETRIC_RICE
2701 mean += partition_samples >> 1; /* for rounding effect */
2702 mean /= partition_samples;
2703
2704 /* calc rice_parameter = floor(log2(mean)) */
2705 rice_parameter = 0;
2706 mean>>=1;
2707 while(mean) {
2708 rice_parameter++;
2709 mean >>= 1;
2710 }
2711#else
2712 /* calc rice_parameter ala LOCO-I */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002713 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson8395d022001-07-12 21:25:22 +00002714 ;
2715#endif
2716 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002717#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002718 fprintf(stderr, "clipping rice_parameter (%u -> %u) @3\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2719#endif
2720 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2721 }
2722
2723#ifndef NO_RICE_SEARCH
2724 if(rice_parameter_search_dist) {
2725 if(rice_parameter < rice_parameter_search_dist)
2726 min_rice_parameter = 0;
2727 else
2728 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
2729 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
2730 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002731#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002732 fprintf(stderr, "clipping rice_parameter (%u -> %u) @4\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2733#endif
2734 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2735 }
2736 }
2737 else
2738 min_rice_parameter = max_rice_parameter = rice_parameter;
2739
2740 best_partition_bits = 0xffffffff;
2741 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2742#endif
2743#ifdef VARIABLE_RICE_BITS
2744#ifdef FLAC__SYMMETRIC_RICE
2745 partition_bits = (2+rice_parameter) * partition_samples;
2746#else
2747 const unsigned rice_parameter_estimate = rice_parameter-1;
2748 partition_bits = (1+rice_parameter) * partition_samples;
2749#endif
2750#else
2751 partition_bits = 0;
2752#endif
2753 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
2754 save_residual_sample = residual_sample;
2755 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
2756#ifdef VARIABLE_RICE_BITS
2757#ifdef FLAC__SYMMETRIC_RICE
2758 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter);
2759#else
2760 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
2761#endif
2762#else
2763 partition_bits += FLAC__bitbuffer_rice_bits(residual[residual_sample], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
2764#endif
2765 }
2766#ifndef NO_RICE_SEARCH
2767 if(rice_parameter != max_rice_parameter)
2768 residual_sample = save_residual_sample;
2769 if(partition_bits < best_partition_bits) {
2770 best_rice_parameter = rice_parameter;
2771 best_partition_bits = partition_bits;
2772 }
2773 }
2774#endif
2775 parameters[partition] = best_rice_parameter;
2776 bits_ += best_partition_bits;
2777 }
2778 }
2779
2780 *bits = bits_;
2781 return true;
2782}
2783
2784#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002785FLAC__bool set_partitioned_rice_with_precompute_(
2786 const FLAC__int32 residual[],
2787 const FLAC__uint64 abs_residual_partition_sums[],
2788 const unsigned raw_bits_per_partition[],
2789 const unsigned residual_samples,
2790 const unsigned predictor_order,
2791 const unsigned suggested_rice_parameter,
2792 const unsigned rice_parameter_search_dist,
2793 const unsigned partition_order,
2794 const FLAC__bool search_for_escapes,
2795 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2796 unsigned *bits
2797)
Josh Coalson8395d022001-07-12 21:25:22 +00002798#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002799FLAC__bool set_partitioned_rice_with_precompute_(
2800 const FLAC__uint32 abs_residual[],
2801 const FLAC__uint64 abs_residual_partition_sums[],
2802 const unsigned raw_bits_per_partition[],
2803 const unsigned residual_samples,
2804 const unsigned predictor_order,
2805 const unsigned suggested_rice_parameter,
2806 const unsigned rice_parameter_search_dist,
2807 const unsigned partition_order,
2808 const FLAC__bool search_for_escapes,
2809 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2810 unsigned *bits
2811)
Josh Coalson8395d022001-07-12 21:25:22 +00002812#endif
2813{
2814 unsigned rice_parameter, partition_bits;
2815#ifndef NO_RICE_SEARCH
2816 unsigned best_partition_bits;
2817 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
2818#endif
2819 unsigned flat_bits;
2820 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002821 unsigned *parameters, *raw_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002822
2823 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
2824
Josh Coalsona37ba462002-08-19 21:36:39 +00002825 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order));
2826 parameters = partitioned_rice_contents->parameters;
2827 raw_bits = partitioned_rice_contents->raw_bits;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002828
Josh Coalson8395d022001-07-12 21:25:22 +00002829 if(partition_order == 0) {
2830 unsigned i;
2831
2832#ifndef NO_RICE_SEARCH
2833 if(rice_parameter_search_dist) {
2834 if(suggested_rice_parameter < rice_parameter_search_dist)
2835 min_rice_parameter = 0;
2836 else
2837 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
2838 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
2839 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002840#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002841 fprintf(stderr, "clipping rice_parameter (%u -> %u) @5\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2842#endif
2843 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2844 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002845 }
2846 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002847 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
Josh Coalson2051dd42001-04-12 22:22:34 +00002848
Josh Coalson034dfab2001-04-27 19:10:23 +00002849 best_partition_bits = 0xffffffff;
2850 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2851#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002852#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002853#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson034dfab2001-04-27 19:10:23 +00002854 partition_bits = (2+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002855#else
Josh Coalson352e0f62001-03-20 22:55:50 +00002856 const unsigned rice_parameter_estimate = rice_parameter-1;
Josh Coalson034dfab2001-04-27 19:10:23 +00002857 partition_bits = (1+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002858#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002859#else
2860 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002861#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00002862 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson352e0f62001-03-20 22:55:50 +00002863 for(i = 0; i < residual_samples; i++) {
2864#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002865#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson2051dd42001-04-12 22:22:34 +00002866 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002867#else
Josh Coalson2051dd42001-04-12 22:22:34 +00002868 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00002869#endif
2870#else
Josh Coalson2051dd42001-04-12 22:22:34 +00002871 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 +00002872#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00002873 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002874#ifndef NO_RICE_SEARCH
2875 if(partition_bits < best_partition_bits) {
2876 best_rice_parameter = rice_parameter;
2877 best_partition_bits = partition_bits;
Josh Coalson352e0f62001-03-20 22:55:50 +00002878 }
2879 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002880#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002881 if(search_for_escapes) {
2882 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;
2883 if(flat_bits <= best_partition_bits) {
2884 raw_bits[0] = raw_bits_per_partition[0];
2885 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
2886 best_partition_bits = flat_bits;
2887 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002888 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002889 parameters[0] = best_rice_parameter;
2890 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002891 }
2892 else {
Josh Coalson4dacd192001-06-06 21:11:44 +00002893 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002894 unsigned partition_samples;
2895 FLAC__uint64 mean, k;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002896 const unsigned partitions = 1u << partition_order;
Josh Coalson4dacd192001-06-06 21:11:44 +00002897 for(partition = residual_sample = 0; partition < partitions; partition++) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002898 partition_samples = (residual_samples+predictor_order) >> partition_order;
Josh Coalson034dfab2001-04-27 19:10:23 +00002899 if(partition == 0) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002900 if(partition_samples <= predictor_order)
2901 return false;
2902 else
2903 partition_samples -= predictor_order;
2904 }
Josh Coalson05d20792001-06-29 23:12:26 +00002905 mean = abs_residual_partition_sums[partition];
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002906#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson05d20792001-06-29 23:12:26 +00002907 mean += partition_samples >> 1; /* for rounding effect */
2908 mean /= partition_samples;
2909
Josh Coalson034dfab2001-04-27 19:10:23 +00002910 /* calc rice_parameter = floor(log2(mean)) */
2911 rice_parameter = 0;
2912 mean>>=1;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002913 while(mean) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002914 rice_parameter++;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002915 mean >>= 1;
2916 }
Josh Coalsonb9433f92001-03-17 01:07:00 +00002917#else
Josh Coalson05d20792001-06-29 23:12:26 +00002918 /* calc rice_parameter ala LOCO-I */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002919 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson05d20792001-06-29 23:12:26 +00002920 ;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002921#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002922 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002923#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002924 fprintf(stderr, "clipping rice_parameter (%u -> %u) @6\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2925#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002926 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002927 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002928
Josh Coalson034dfab2001-04-27 19:10:23 +00002929#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00002930 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002931 if(rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00002932 min_rice_parameter = 0;
2933 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002934 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
2935 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00002936 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002937#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002938 fprintf(stderr, "clipping rice_parameter (%u -> %u) @7\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2939#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00002940 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002941 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002942 }
2943 else
2944 min_rice_parameter = max_rice_parameter = rice_parameter;
Josh Coalson60f77d72001-04-25 02:16:36 +00002945
Josh Coalson034dfab2001-04-27 19:10:23 +00002946 best_partition_bits = 0xffffffff;
2947 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2948#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002949#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002950#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson034dfab2001-04-27 19:10:23 +00002951 partition_bits = (2+rice_parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002952#else
Josh Coalson034dfab2001-04-27 19:10:23 +00002953 const unsigned rice_parameter_estimate = rice_parameter-1;
2954 partition_bits = (1+rice_parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002955#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002956#else
2957 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002958#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002959 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson4dacd192001-06-06 21:11:44 +00002960 save_residual_sample = residual_sample;
2961 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
Josh Coalson352e0f62001-03-20 22:55:50 +00002962#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002963#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson4dacd192001-06-06 21:11:44 +00002964 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002965#else
Josh Coalson4dacd192001-06-06 21:11:44 +00002966 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00002967#endif
2968#else
Josh Coalson4dacd192001-06-06 21:11:44 +00002969 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 +00002970#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002971 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002972#ifndef NO_RICE_SEARCH
Josh Coalson4dacd192001-06-06 21:11:44 +00002973 if(rice_parameter != max_rice_parameter)
2974 residual_sample = save_residual_sample;
Josh Coalson034dfab2001-04-27 19:10:23 +00002975 if(partition_bits < best_partition_bits) {
2976 best_rice_parameter = rice_parameter;
2977 best_partition_bits = partition_bits;
2978 }
Josh Coalson2051dd42001-04-12 22:22:34 +00002979 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002980#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002981 if(search_for_escapes) {
2982 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;
2983 if(flat_bits <= best_partition_bits) {
2984 raw_bits[partition] = raw_bits_per_partition[partition];
2985 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
2986 best_partition_bits = flat_bits;
2987 }
Josh Coalson2051dd42001-04-12 22:22:34 +00002988 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002989 parameters[partition] = best_rice_parameter;
2990 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002991 }
2992 }
2993
2994 *bits = bits_;
2995 return true;
2996}
Josh Coalson859bc542001-03-27 22:22:27 +00002997
Josh Coalsonf1eff452002-07-31 07:05:33 +00002998unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples)
Josh Coalson859bc542001-03-27 22:22:27 +00002999{
3000 unsigned i, shift;
Josh Coalson77e3f312001-06-23 03:03:24 +00003001 FLAC__int32 x = 0;
Josh Coalson859bc542001-03-27 22:22:27 +00003002
3003 for(i = 0; i < samples && !(x&1); i++)
3004 x |= signal[i];
3005
3006 if(x == 0) {
3007 shift = 0;
3008 }
3009 else {
3010 for(shift = 0; !(x&1); shift++)
3011 x >>= 1;
3012 }
3013
3014 if(shift > 0) {
3015 for(i = 0; i < samples; i++)
3016 signal[i] >>= shift;
3017 }
3018
3019 return shift;
3020}
Josh Coalsond86e03b2002-08-03 21:56:15 +00003021
3022void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
3023{
3024 unsigned channel;
3025
3026 for(channel = 0; channel < channels; channel++)
3027 memcpy(&fifo->data[channel][fifo->tail], &input[channel][input_offset], sizeof(FLAC__int32) * wide_samples);
3028
3029 fifo->tail += wide_samples;
3030
3031 FLAC__ASSERT(fifo->tail <= fifo->size);
3032}
3033
3034void append_to_verify_fifo_interleaved_(verify_input_fifo *fifo, const FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
3035{
3036 unsigned channel;
3037 unsigned sample, wide_sample;
3038 unsigned tail = fifo->tail;
3039
3040 sample = input_offset * channels;
3041 for(wide_sample = 0; wide_sample < wide_samples; wide_sample++) {
3042 for(channel = 0; channel < channels; channel++)
3043 fifo->data[channel][tail] = input[sample++];
3044 tail++;
3045 }
3046 fifo->tail = tail;
3047
3048 FLAC__ASSERT(fifo->tail <= fifo->size);
3049}
3050
3051FLAC__StreamDecoderReadStatus verify_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data)
3052{
3053 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
3054 const unsigned encoded_bytes = encoder->private_->verify.output.bytes;
3055 (void)decoder;
3056
3057 if(encoder->private_->verify.needs_magic_hack) {
3058 FLAC__ASSERT(*bytes >= FLAC__STREAM_SYNC_LENGTH);
3059 *bytes = FLAC__STREAM_SYNC_LENGTH;
3060 memcpy(buffer, FLAC__STREAM_SYNC_STRING, *bytes);
3061 encoder->private_->verify.needs_magic_hack = false;
3062 }
3063 else {
3064 if(encoded_bytes == 0) {
Josh Coalsonfc2b7372002-08-16 05:39:34 +00003065 /*
3066 * If we get here, a FIFO underflow has occurred,
3067 * which means there is a bug somewhere.
3068 */
3069 FLAC__ASSERT(0);
Josh Coalsond86e03b2002-08-03 21:56:15 +00003070 return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
3071 }
3072 else if(encoded_bytes < *bytes)
3073 *bytes = encoded_bytes;
3074 memcpy(buffer, encoder->private_->verify.output.data, *bytes);
3075 encoder->private_->verify.output.data += *bytes;
3076 encoder->private_->verify.output.bytes -= *bytes;
3077 }
3078
3079 return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
3080}
3081
3082FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
3083{
3084 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder *)client_data;
3085 unsigned channel;
3086 const unsigned channels = FLAC__stream_decoder_get_channels(decoder);
3087 const unsigned blocksize = frame->header.blocksize;
3088 const unsigned bytes_per_block = sizeof(FLAC__int32) * blocksize;
3089
3090 for(channel = 0; channel < channels; channel++) {
3091 if(0 != memcmp(buffer[channel], encoder->private_->verify.input_fifo.data[channel], bytes_per_block)) {
3092 unsigned i, sample = 0;
3093 FLAC__int32 expect = 0, got = 0;
3094
3095 for(i = 0; i < blocksize; i++) {
3096 if(buffer[channel][i] != encoder->private_->verify.input_fifo.data[channel][i]) {
3097 sample = i;
3098 expect = (FLAC__int32)encoder->private_->verify.input_fifo.data[channel][i];
3099 got = (FLAC__int32)buffer[channel][i];
3100 break;
3101 }
3102 }
3103 FLAC__ASSERT(i < blocksize);
3104 FLAC__ASSERT(frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER);
3105 encoder->private_->verify.error_stats.absolute_sample = frame->header.number.sample_number + sample;
Josh Coalson5f39e9f2002-08-21 05:27:01 +00003106 encoder->private_->verify.error_stats.frame_number = (unsigned)(frame->header.number.sample_number / blocksize);
Josh Coalsond86e03b2002-08-03 21:56:15 +00003107 encoder->private_->verify.error_stats.channel = channel;
3108 encoder->private_->verify.error_stats.sample = sample;
3109 encoder->private_->verify.error_stats.expected = expect;
3110 encoder->private_->verify.error_stats.got = got;
3111 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA;
3112 return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
3113 }
3114 }
3115 /* dequeue the frame from the fifo */
3116 for(channel = 0; channel < channels; channel++) {
3117 memmove(&encoder->private_->verify.input_fifo.data[channel][0], &encoder->private_->verify.input_fifo.data[channel][blocksize], encoder->private_->verify.input_fifo.tail - blocksize);
3118 }
3119 encoder->private_->verify.input_fifo.tail -= blocksize;
3120 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
3121}
3122
3123void verify_metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
3124{
3125 (void)decoder, (void)metadata, (void)client_data;
3126}
3127
3128void verify_error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
3129{
3130 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
3131 (void)decoder, (void)status;
3132 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
3133}