blob: 871e61fd24efa83ced4ce155a7fa6f879163f785 [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 Coalson57ba6f42002-06-07 05:27:37 +0000391const 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 Coalson57ba6f42002-06-07 05:27:37 +0000416const 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 Coalson0a15c142001-06-13 17:59:57 +0000426FLAC__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 Coalson0a15c142001-06-13 17:59:57 +0000433 encoder = (FLAC__StreamEncoder*)malloc(sizeof(FLAC__StreamEncoder));
434 if(encoder == 0) {
435 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000436 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000437 memset(encoder, 0, sizeof(FLAC__StreamEncoder));
438
Josh Coalsonfa697a92001-08-16 20:07:29 +0000439 encoder->protected_ = (FLAC__StreamEncoderProtected*)malloc(sizeof(FLAC__StreamEncoderProtected));
440 if(encoder->protected_ == 0) {
Josh Coalson0a15c142001-06-13 17:59:57 +0000441 free(encoder);
442 return 0;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000443 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000444 memset(encoder->protected_, 0, sizeof(FLAC__StreamEncoderProtected));
445
Josh Coalsonfa697a92001-08-16 20:07:29 +0000446 encoder->private_ = (FLAC__StreamEncoderPrivate*)malloc(sizeof(FLAC__StreamEncoderPrivate));
447 if(encoder->private_ == 0) {
448 free(encoder->protected_);
Josh Coalson0a15c142001-06-13 17:59:57 +0000449 free(encoder);
450 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000451 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000452 memset(encoder->private_, 0, sizeof(FLAC__StreamEncoderPrivate));
453
Josh Coalsonaec256b2002-03-12 16:19:54 +0000454 encoder->private_->frame = FLAC__bitbuffer_new();
455 if(encoder->private_->frame == 0) {
456 free(encoder->private_);
457 free(encoder->protected_);
458 free(encoder);
459 return 0;
460 }
Josh Coalsond98c43d2001-05-13 05:17:01 +0000461
Josh Coalsonf1eff452002-07-31 07:05:33 +0000462 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000463
Josh Coalson3262b0d2002-08-14 20:58:42 +0000464 encoder->private_->is_being_deleted = false;
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000465
466 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
467 encoder->private_->subframe_workspace_ptr[i][0] = &encoder->private_->subframe_workspace[i][0];
468 encoder->private_->subframe_workspace_ptr[i][1] = &encoder->private_->subframe_workspace[i][1];
469 }
470 for(i = 0; i < 2; i++) {
471 encoder->private_->subframe_workspace_ptr_mid_side[i][0] = &encoder->private_->subframe_workspace_mid_side[i][0];
472 encoder->private_->subframe_workspace_ptr_mid_side[i][1] = &encoder->private_->subframe_workspace_mid_side[i][1];
473 }
474 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000475 encoder->private_->partitioned_rice_contents_workspace_ptr[i][0] = &encoder->private_->partitioned_rice_contents_workspace[i][0];
476 encoder->private_->partitioned_rice_contents_workspace_ptr[i][1] = &encoder->private_->partitioned_rice_contents_workspace[i][1];
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000477 }
478 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000479 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[i][0] = &encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0];
480 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 +0000481 }
482
483 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000484 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace[i][0]);
485 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000486 }
487 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000488 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0]);
489 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 +0000490 }
491 for(i = 0; i < 2; i++)
Josh Coalsona37ba462002-08-19 21:36:39 +0000492 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(&encoder->private_->partitioned_rice_contents_extra[i]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000493
Josh Coalsonfa697a92001-08-16 20:07:29 +0000494 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000495
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000496 return encoder;
497}
498
Josh Coalson0a15c142001-06-13 17:59:57 +0000499void FLAC__stream_encoder_delete(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000500{
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000501 unsigned i;
502
Josh Coalsonf1eff452002-07-31 07:05:33 +0000503 FLAC__ASSERT(0 != encoder);
504 FLAC__ASSERT(0 != encoder->protected_);
505 FLAC__ASSERT(0 != encoder->private_);
506 FLAC__ASSERT(0 != encoder->private_->frame);
Josh Coalson0a15c142001-06-13 17:59:57 +0000507
Josh Coalson3262b0d2002-08-14 20:58:42 +0000508 encoder->private_->is_being_deleted = true;
509
510 FLAC__stream_encoder_finish(encoder);
511
Josh Coalsond86e03b2002-08-03 21:56:15 +0000512 if(encoder->protected_->verify && 0 != encoder->private_->verify.decoder)
513 FLAC__stream_decoder_delete(encoder->private_->verify.decoder);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000514
515 for(i = 0; i < FLAC__MAX_CHANNELS; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000516 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace[i][0]);
517 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace[i][1]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000518 }
519 for(i = 0; i < 2; i++) {
Josh Coalsona37ba462002-08-19 21:36:39 +0000520 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_workspace_mid_side[i][0]);
521 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 +0000522 }
523 for(i = 0; i < 2; i++)
Josh Coalsona37ba462002-08-19 21:36:39 +0000524 FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(&encoder->private_->partitioned_rice_contents_extra[i]);
Josh Coalsonb7023aa2002-08-17 15:23:43 +0000525
Josh Coalsonaec256b2002-03-12 16:19:54 +0000526 FLAC__bitbuffer_delete(encoder->private_->frame);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000527 free(encoder->private_);
528 free(encoder->protected_);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000529 free(encoder);
530}
531
Josh Coalson0a15c142001-06-13 17:59:57 +0000532/***********************************************************************
533 *
534 * Public class methods
535 *
536 ***********************************************************************/
537
Josh Coalson00e53872001-06-16 07:32:25 +0000538FLAC__StreamEncoderState FLAC__stream_encoder_init(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000539{
540 unsigned i;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000541 FLAC__bool metadata_has_seektable, metadata_has_vorbis_comment;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000542
Josh Coalsonf1eff452002-07-31 07:05:33 +0000543 FLAC__ASSERT(0 != encoder);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000544
Josh Coalsonfa697a92001-08-16 20:07:29 +0000545 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
546 return encoder->protected_->state = FLAC__STREAM_ENCODER_ALREADY_INITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000547
Josh Coalsonfa697a92001-08-16 20:07:29 +0000548 encoder->protected_->state = FLAC__STREAM_ENCODER_OK;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000549
Josh Coalsonfa697a92001-08-16 20:07:29 +0000550 if(0 == encoder->private_->write_callback || 0 == encoder->private_->metadata_callback)
551 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_CALLBACK;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000552
Josh Coalsonfa697a92001-08-16 20:07:29 +0000553 if(encoder->protected_->channels == 0 || encoder->protected_->channels > FLAC__MAX_CHANNELS)
554 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_NUMBER_OF_CHANNELS;
Josh Coalson69f1ee02001-01-24 00:54:43 +0000555
Josh Coalsonfa697a92001-08-16 20:07:29 +0000556 if(encoder->protected_->do_mid_side_stereo && encoder->protected_->channels != 2)
557 return encoder->protected_->state = FLAC__STREAM_ENCODER_MID_SIDE_CHANNELS_MISMATCH;
Josh Coalsond37d1352001-05-30 23:09:31 +0000558
Josh Coalsonfa697a92001-08-16 20:07:29 +0000559 if(encoder->protected_->loose_mid_side_stereo && !encoder->protected_->do_mid_side_stereo)
560 return encoder->protected_->state = FLAC__STREAM_ENCODER_ILLEGAL_MID_SIDE_FORCE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000561
Josh Coalsonfa697a92001-08-16 20:07:29 +0000562 if(encoder->protected_->bits_per_sample >= 32)
563 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 +0000564
Josh Coalson76c68bc2002-05-17 06:22:02 +0000565 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 +0000566 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_BITS_PER_SAMPLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000567
Josh Coalson0833f342002-07-15 05:31:55 +0000568 if(!FLAC__format_sample_rate_is_valid(encoder->protected_->sample_rate))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000569 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_SAMPLE_RATE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000570
Josh Coalsonfa697a92001-08-16 20:07:29 +0000571 if(encoder->protected_->blocksize < FLAC__MIN_BLOCK_SIZE || encoder->protected_->blocksize > FLAC__MAX_BLOCK_SIZE)
572 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_BLOCK_SIZE;
Josh Coalson0a15c142001-06-13 17:59:57 +0000573
Josh Coalson20ac2c12002-08-30 05:47:14 +0000574 if(encoder->protected_->max_lpc_order > FLAC__MAX_LPC_ORDER)
575 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_MAX_LPC_ORDER;
576
Josh Coalsonfa697a92001-08-16 20:07:29 +0000577 if(encoder->protected_->blocksize < encoder->protected_->max_lpc_order)
578 return encoder->protected_->state = FLAC__STREAM_ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER;
Josh Coalson0a15c142001-06-13 17:59:57 +0000579
Josh Coalsonfa697a92001-08-16 20:07:29 +0000580 if(encoder->protected_->qlp_coeff_precision == 0) {
581 if(encoder->protected_->bits_per_sample < 16) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000582 /* @@@ need some data about how to set this here w.r.t. blocksize and sample rate */
583 /* @@@ until then we'll make a guess */
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000584 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 +0000585 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000586 else if(encoder->protected_->bits_per_sample == 16) {
587 if(encoder->protected_->blocksize <= 192)
588 encoder->protected_->qlp_coeff_precision = 7;
589 else if(encoder->protected_->blocksize <= 384)
590 encoder->protected_->qlp_coeff_precision = 8;
591 else if(encoder->protected_->blocksize <= 576)
592 encoder->protected_->qlp_coeff_precision = 9;
593 else if(encoder->protected_->blocksize <= 1152)
594 encoder->protected_->qlp_coeff_precision = 10;
595 else if(encoder->protected_->blocksize <= 2304)
596 encoder->protected_->qlp_coeff_precision = 11;
597 else if(encoder->protected_->blocksize <= 4608)
598 encoder->protected_->qlp_coeff_precision = 12;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000599 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000600 encoder->protected_->qlp_coeff_precision = 13;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000601 }
602 else {
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000603 if(encoder->protected_->blocksize <= 384)
604 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION-2;
605 else if(encoder->protected_->blocksize <= 1152)
606 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION-1;
607 else
608 encoder->protected_->qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000609 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000610 FLAC__ASSERT(encoder->protected_->qlp_coeff_precision <= FLAC__MAX_QLP_COEFF_PRECISION);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000611 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000612 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 +0000613 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000614
Josh Coalsonfa697a92001-08-16 20:07:29 +0000615 if(encoder->protected_->streamable_subset) {
Josh Coalson20ac2c12002-08-30 05:47:14 +0000616 if(
617 encoder->protected_->blocksize != 192 &&
618 encoder->protected_->blocksize != 576 &&
619 encoder->protected_->blocksize != 1152 &&
620 encoder->protected_->blocksize != 2304 &&
621 encoder->protected_->blocksize != 4608 &&
622 encoder->protected_->blocksize != 256 &&
623 encoder->protected_->blocksize != 512 &&
624 encoder->protected_->blocksize != 1024 &&
625 encoder->protected_->blocksize != 2048 &&
626 encoder->protected_->blocksize != 4096 &&
627 encoder->protected_->blocksize != 8192 &&
628 encoder->protected_->blocksize != 16384
629 )
Josh Coalsonfa697a92001-08-16 20:07:29 +0000630 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalson20ac2c12002-08-30 05:47:14 +0000631 if(
632 encoder->protected_->sample_rate != 8000 &&
633 encoder->protected_->sample_rate != 16000 &&
634 encoder->protected_->sample_rate != 22050 &&
635 encoder->protected_->sample_rate != 24000 &&
636 encoder->protected_->sample_rate != 32000 &&
637 encoder->protected_->sample_rate != 44100 &&
638 encoder->protected_->sample_rate != 48000 &&
639 encoder->protected_->sample_rate != 96000
640 )
641 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
642 if(
643 encoder->protected_->bits_per_sample != 8 &&
644 encoder->protected_->bits_per_sample != 12 &&
645 encoder->protected_->bits_per_sample != 16 &&
646 encoder->protected_->bits_per_sample != 20 &&
647 encoder->protected_->bits_per_sample != 24
648 )
649 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalsonc1c8d492002-09-26 04:42:10 +0000650 if(encoder->protected_->max_residual_partition_order > FLAC__SUBSET_MAX_RICE_PARTITION_ORDER)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000651 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000652 }
653
Josh Coalsonfa697a92001-08-16 20:07:29 +0000654 if(encoder->protected_->max_residual_partition_order >= (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN))
655 encoder->protected_->max_residual_partition_order = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN) - 1;
656 if(encoder->protected_->min_residual_partition_order >= encoder->protected_->max_residual_partition_order)
657 encoder->protected_->min_residual_partition_order = encoder->protected_->max_residual_partition_order;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000658
Josh Coalson66075c12002-06-01 05:39:38 +0000659 /* validate metadata */
660 if(0 == encoder->protected_->metadata && encoder->protected_->num_metadata_blocks > 0)
661 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000662 metadata_has_seektable = false;
663 metadata_has_vorbis_comment = false;
Josh Coalson66075c12002-06-01 05:39:38 +0000664 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
665 if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_STREAMINFO)
666 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
667 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_SEEKTABLE) {
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000668 if(metadata_has_seektable) /* only one is allowed */
669 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
670 metadata_has_seektable = true;
Josh Coalson0833f342002-07-15 05:31:55 +0000671 if(!FLAC__format_seektable_is_legal(&encoder->protected_->metadata[i]->data.seek_table))
Josh Coalson66075c12002-06-01 05:39:38 +0000672 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
673 }
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000674 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_VORBIS_COMMENT) {
675 if(metadata_has_vorbis_comment) /* only one is allowed */
676 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
677 metadata_has_vorbis_comment = true;
678 }
Josh Coalson66075c12002-06-01 05:39:38 +0000679 }
680
Josh Coalsonfa697a92001-08-16 20:07:29 +0000681 encoder->private_->input_capacity = 0;
682 for(i = 0; i < encoder->protected_->channels; i++) {
683 encoder->private_->integer_signal_unaligned[i] = encoder->private_->integer_signal[i] = 0;
684 encoder->private_->real_signal_unaligned[i] = encoder->private_->real_signal[i] = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000685 }
686 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000687 encoder->private_->integer_signal_mid_side_unaligned[i] = encoder->private_->integer_signal_mid_side[i] = 0;
688 encoder->private_->real_signal_mid_side_unaligned[i] = encoder->private_->real_signal_mid_side[i] = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000689 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000690 for(i = 0; i < encoder->protected_->channels; i++) {
691 encoder->private_->residual_workspace_unaligned[i][0] = encoder->private_->residual_workspace[i][0] = 0;
692 encoder->private_->residual_workspace_unaligned[i][1] = encoder->private_->residual_workspace[i][1] = 0;
693 encoder->private_->best_subframe[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000694 }
695 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000696 encoder->private_->residual_workspace_mid_side_unaligned[i][0] = encoder->private_->residual_workspace_mid_side[i][0] = 0;
697 encoder->private_->residual_workspace_mid_side_unaligned[i][1] = encoder->private_->residual_workspace_mid_side[i][1] = 0;
698 encoder->private_->best_subframe_mid_side[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000699 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000700 encoder->private_->abs_residual_unaligned = encoder->private_->abs_residual = 0;
701 encoder->private_->abs_residual_partition_sums_unaligned = encoder->private_->abs_residual_partition_sums = 0;
702 encoder->private_->raw_bits_per_partition_unaligned = encoder->private_->raw_bits_per_partition = 0;
703 encoder->private_->loose_mid_side_stereo_frames_exact = (double)encoder->protected_->sample_rate * 0.4 / (double)encoder->protected_->blocksize;
704 encoder->private_->loose_mid_side_stereo_frames = (unsigned)(encoder->private_->loose_mid_side_stereo_frames_exact + 0.5);
705 if(encoder->private_->loose_mid_side_stereo_frames == 0)
706 encoder->private_->loose_mid_side_stereo_frames = 1;
707 encoder->private_->loose_mid_side_stereo_frame_count = 0;
708 encoder->private_->current_sample_number = 0;
709 encoder->private_->current_frame_number = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000710
Josh Coalsonfa697a92001-08-16 20:07:29 +0000711 encoder->private_->use_wide_by_block = (encoder->protected_->bits_per_sample + FLAC__bitmath_ilog2(encoder->protected_->blocksize)+1 > 30);
712 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? */
713 encoder->private_->use_wide_by_partition = (false); /*@@@ need to set this */
Josh Coalson8395d022001-07-12 21:25:22 +0000714
Josh Coalsoncf30f502001-05-23 20:57:44 +0000715 /*
716 * get the CPU info and set the function pointers
717 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000718 FLAC__cpu_info(&encoder->private_->cpuinfo);
Josh Coalsoncf30f502001-05-23 20:57:44 +0000719 /* first default to the non-asm routines */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000720 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation;
721 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor;
722 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalsonc9c0d132002-10-04 05:29:05 +0000723 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 +0000724 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalsoncf30f502001-05-23 20:57:44 +0000725 /* now override with asm where appropriate */
Josh Coalsona3f7c2c2001-05-25 00:04:45 +0000726#ifndef FLAC__NO_ASM
Josh Coalsonfa697a92001-08-16 20:07:29 +0000727 if(encoder->private_->cpuinfo.use_asm) {
Josh Coalsoncf30f502001-05-23 20:57:44 +0000728#ifdef FLAC__CPU_IA32
Josh Coalsonfa697a92001-08-16 20:07:29 +0000729 FLAC__ASSERT(encoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
Josh Coalson034d38e2001-05-24 19:29:30 +0000730#ifdef FLAC__HAS_NASM
Josh Coalsonfa697a92001-08-16 20:07:29 +0000731 if(0 && encoder->private_->cpuinfo.data.ia32.sse) {
732 if(encoder->protected_->max_lpc_order < 4)
733 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_4;
734 else if(encoder->protected_->max_lpc_order < 8)
735 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_8;
736 else if(encoder->protected_->max_lpc_order < 12)
737 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_12;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000738 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000739 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000740 }
Josh Coalson395938e2001-11-15 21:53:25 +0000741 else if(encoder->private_->cpuinfo.data.ia32._3dnow)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000742 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_3dnow;
Josh Coalsonaa255362001-05-31 06:17:41 +0000743 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000744 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
745 if(encoder->private_->cpuinfo.data.ia32.mmx && encoder->private_->cpuinfo.data.ia32.cmov)
746 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov;
747 if(encoder->private_->cpuinfo.data.ia32.mmx) {
748 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
749 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 +0000750 }
751 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000752 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
753 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 +0000754 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000755#endif
Josh Coalson034d38e2001-05-24 19:29:30 +0000756#endif
Josh Coalson021ad3b2001-07-18 00:25:52 +0000757 }
Josh Coalsona3f7c2c2001-05-25 00:04:45 +0000758#endif
Josh Coalson8395d022001-07-12 21:25:22 +0000759 /* finally override based on wide-ness if necessary */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000760 if(encoder->private_->use_wide_by_block) {
761 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_wide;
Josh Coalson8395d022001-07-12 21:25:22 +0000762 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000763
Josh Coalson8395d022001-07-12 21:25:22 +0000764 /* we require precompute_partition_sums if do_escape_coding because of their intertwined nature */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000765 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 +0000766
Josh Coalsonf1eff452002-07-31 07:05:33 +0000767 if(!resize_buffers_(encoder, encoder->protected_->blocksize)) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000768 /* the above function sets the state for us in case of an error */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000769 return encoder->protected_->state;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000770 }
Josh Coalsonaec256b2002-03-12 16:19:54 +0000771
772 if(!FLAC__bitbuffer_init(encoder->private_->frame))
773 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000774
775 /*
Josh Coalsond86e03b2002-08-03 21:56:15 +0000776 * Set up the verify stuff if necessary
777 */
778 if(encoder->protected_->verify) {
779 /*
780 * First, set up the fifo which will hold the
781 * original signal to compare against
782 */
783 encoder->private_->verify.input_fifo.size = encoder->protected_->blocksize;
784 for(i = 0; i < encoder->protected_->channels; i++) {
785 if(0 == (encoder->private_->verify.input_fifo.data[i] = (FLAC__int32*)malloc(sizeof(FLAC__int32) * encoder->private_->verify.input_fifo.size)))
786 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
787 }
788 encoder->private_->verify.input_fifo.tail = 0;
789
790 /*
791 * Now set up a stream decoder for verification
792 */
793 encoder->private_->verify.decoder = FLAC__stream_decoder_new();
794 if(0 == encoder->private_->verify.decoder)
795 return encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
796
797 FLAC__stream_decoder_set_read_callback(encoder->private_->verify.decoder, verify_read_callback_);
798 FLAC__stream_decoder_set_write_callback(encoder->private_->verify.decoder, verify_write_callback_);
799 FLAC__stream_decoder_set_metadata_callback(encoder->private_->verify.decoder, verify_metadata_callback_);
800 FLAC__stream_decoder_set_error_callback(encoder->private_->verify.decoder, verify_error_callback_);
801 FLAC__stream_decoder_set_client_data(encoder->private_->verify.decoder, encoder);
802 if(FLAC__stream_decoder_init(encoder->private_->verify.decoder) != FLAC__STREAM_DECODER_SEARCH_FOR_METADATA)
803 return encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
804 }
Josh Coalson589f8c72002-08-07 23:54:55 +0000805 encoder->private_->verify.error_stats.absolute_sample = 0;
806 encoder->private_->verify.error_stats.frame_number = 0;
807 encoder->private_->verify.error_stats.channel = 0;
808 encoder->private_->verify.error_stats.sample = 0;
809 encoder->private_->verify.error_stats.expected = 0;
810 encoder->private_->verify.error_stats.got = 0;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000811
812 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000813 * write the stream header
814 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000815 if(encoder->protected_->verify)
816 encoder->private_->verify.state_hint = ENCODER_IN_MAGIC;
Josh Coalsonaec256b2002-03-12 16:19:54 +0000817 if(!FLAC__bitbuffer_write_raw_uint32(encoder->private_->frame, FLAC__STREAM_SYNC, FLAC__STREAM_SYNC_LEN))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000818 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000819 if(!write_bitbuffer_(encoder, 0)) {
820 /* the above function sets the state for us in case of an error */
821 return encoder->protected_->state;
822 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000823
Josh Coalson5c491a12002-08-01 06:39:40 +0000824 /*
825 * write the STREAMINFO metadata block
826 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000827 if(encoder->protected_->verify)
828 encoder->private_->verify.state_hint = ENCODER_IN_METADATA;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000829 encoder->private_->metadata.type = FLAC__METADATA_TYPE_STREAMINFO;
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000830 encoder->private_->metadata.is_last = false; /* we will have at a minimum a VORBIS_COMMENT afterwards */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000831 encoder->private_->metadata.length = FLAC__STREAM_METADATA_STREAMINFO_LENGTH;
832 encoder->private_->metadata.data.stream_info.min_blocksize = encoder->protected_->blocksize; /* this encoder uses the same blocksize for the whole stream */
833 encoder->private_->metadata.data.stream_info.max_blocksize = encoder->protected_->blocksize;
834 encoder->private_->metadata.data.stream_info.min_framesize = 0; /* we don't know this yet; have to fill it in later */
835 encoder->private_->metadata.data.stream_info.max_framesize = 0; /* we don't know this yet; have to fill it in later */
836 encoder->private_->metadata.data.stream_info.sample_rate = encoder->protected_->sample_rate;
837 encoder->private_->metadata.data.stream_info.channels = encoder->protected_->channels;
838 encoder->private_->metadata.data.stream_info.bits_per_sample = encoder->protected_->bits_per_sample;
839 encoder->private_->metadata.data.stream_info.total_samples = encoder->protected_->total_samples_estimate; /* we will replace this later with the real total */
840 memset(encoder->private_->metadata.data.stream_info.md5sum, 0, 16); /* we don't know this yet; have to fill it in later */
841 MD5Init(&encoder->private_->md5context);
Josh Coalson5c491a12002-08-01 06:39:40 +0000842 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
843 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
844 return false;
845 }
Josh Coalsonaec256b2002-03-12 16:19:54 +0000846 if(!FLAC__add_metadata_block(&encoder->private_->metadata, encoder->private_->frame))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000847 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000848 if(!write_bitbuffer_(encoder, 0)) {
849 /* the above function sets the state for us in case of an error */
850 return encoder->protected_->state;
851 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000852
Josh Coalson5c491a12002-08-01 06:39:40 +0000853 /*
854 * Now that the STREAMINFO block is written, we can init this to an
855 * absurdly-high value...
856 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000857 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 +0000858 /* ... and clear this to 0 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000859 encoder->private_->metadata.data.stream_info.total_samples = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000860
Josh Coalson5c491a12002-08-01 06:39:40 +0000861 /*
Josh Coalsoncb9d93a2002-08-25 05:27:15 +0000862 * Check to see if the supplied metadata contains a VORBIS_COMMENT;
863 * if not, we will write an empty one (FLAC__add_metadata_block()
864 * automatically supplies the vendor string).
865 */
866 if(!metadata_has_vorbis_comment) {
867 FLAC__StreamMetadata vorbis_comment;
868 vorbis_comment.type = FLAC__METADATA_TYPE_VORBIS_COMMENT;
869 vorbis_comment.is_last = (encoder->protected_->num_metadata_blocks == 0);
870 vorbis_comment.length = 4 + 4; /* MAGIC NUMBER */
871 vorbis_comment.data.vorbis_comment.vendor_string.length = 0;
872 vorbis_comment.data.vorbis_comment.vendor_string.entry = 0;
873 vorbis_comment.data.vorbis_comment.num_comments = 0;
874 vorbis_comment.data.vorbis_comment.comments = 0;
875 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
876 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
877 return false;
878 }
879 if(!FLAC__add_metadata_block(&vorbis_comment, encoder->private_->frame))
880 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
881 if(!write_bitbuffer_(encoder, 0)) {
882 /* the above function sets the state for us in case of an error */
883 return encoder->protected_->state;
884 }
885 }
886
887 /*
Josh Coalson5c491a12002-08-01 06:39:40 +0000888 * write the user's metadata blocks
889 */
890 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
891 encoder->protected_->metadata[i]->is_last = (i == encoder->protected_->num_metadata_blocks - 1);
892 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
893 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
894 return false;
895 }
896 if(!FLAC__add_metadata_block(encoder->protected_->metadata[i], encoder->private_->frame))
897 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000898 if(!write_bitbuffer_(encoder, 0)) {
899 /* the above function sets the state for us in case of an error */
900 return encoder->protected_->state;
901 }
Josh Coalson5c491a12002-08-01 06:39:40 +0000902 }
903
Josh Coalsond86e03b2002-08-03 21:56:15 +0000904 if(encoder->protected_->verify)
905 encoder->private_->verify.state_hint = ENCODER_IN_AUDIO;
906
Josh Coalsonfa697a92001-08-16 20:07:29 +0000907 return encoder->protected_->state;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000908}
909
Josh Coalson0a15c142001-06-13 17:59:57 +0000910void FLAC__stream_encoder_finish(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000911{
Josh Coalsonf1eff452002-07-31 07:05:33 +0000912 FLAC__ASSERT(0 != encoder);
Josh Coalson2b245f22002-08-07 17:10:50 +0000913
Josh Coalsonfa697a92001-08-16 20:07:29 +0000914 if(encoder->protected_->state == FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000915 return;
Josh Coalson2b245f22002-08-07 17:10:50 +0000916
Josh Coalson3262b0d2002-08-14 20:58:42 +0000917 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +0000918 if(encoder->private_->current_sample_number != 0) {
919 encoder->protected_->blocksize = encoder->private_->current_sample_number;
920 process_frame_(encoder, true); /* true => is last frame */
921 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000922 }
Josh Coalson2b245f22002-08-07 17:10:50 +0000923
Josh Coalsonfa697a92001-08-16 20:07:29 +0000924 MD5Final(encoder->private_->metadata.data.stream_info.md5sum, &encoder->private_->md5context);
Josh Coalson2b245f22002-08-07 17:10:50 +0000925
Josh Coalson3262b0d2002-08-14 20:58:42 +0000926 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +0000927 encoder->private_->metadata_callback(encoder, &encoder->private_->metadata, encoder->private_->client_data);
928 }
Josh Coalson0a15c142001-06-13 17:59:57 +0000929
Josh Coalsond86e03b2002-08-03 21:56:15 +0000930 if(encoder->protected_->verify && 0 != encoder->private_->verify.decoder)
931 FLAC__stream_decoder_finish(encoder->private_->verify.decoder);
932
Josh Coalsonf1eff452002-07-31 07:05:33 +0000933 free_(encoder);
934 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000935
Josh Coalsonfa697a92001-08-16 20:07:29 +0000936 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000937}
938
Josh Coalsond86e03b2002-08-03 21:56:15 +0000939FLAC__bool FLAC__stream_encoder_set_verify(FLAC__StreamEncoder *encoder, FLAC__bool value)
940{
941 FLAC__ASSERT(0 != encoder);
942 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
943 return false;
944 encoder->protected_->verify = value;
945 return true;
946}
947
Josh Coalson16556042002-05-29 05:51:24 +0000948FLAC__bool FLAC__stream_encoder_set_streamable_subset(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000949{
Josh Coalson92031602002-07-24 06:02:11 +0000950 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000951 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000952 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000953 encoder->protected_->streamable_subset = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000954 return true;
955}
956
Josh Coalson16556042002-05-29 05:51:24 +0000957FLAC__bool FLAC__stream_encoder_set_do_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000958{
Josh Coalson92031602002-07-24 06:02:11 +0000959 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000960 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000961 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000962 encoder->protected_->do_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000963 return true;
964}
965
Josh Coalson16556042002-05-29 05:51:24 +0000966FLAC__bool FLAC__stream_encoder_set_loose_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000967{
Josh Coalson92031602002-07-24 06:02:11 +0000968 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000969 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000970 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000971 encoder->protected_->loose_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000972 return true;
973}
974
Josh Coalson16556042002-05-29 05:51:24 +0000975FLAC__bool FLAC__stream_encoder_set_channels(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000976{
Josh Coalson92031602002-07-24 06:02:11 +0000977 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000978 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000979 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000980 encoder->protected_->channels = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000981 return true;
982}
983
Josh Coalson16556042002-05-29 05:51:24 +0000984FLAC__bool FLAC__stream_encoder_set_bits_per_sample(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000985{
Josh Coalson92031602002-07-24 06:02:11 +0000986 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000987 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000988 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000989 encoder->protected_->bits_per_sample = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000990 return true;
991}
992
Josh Coalson16556042002-05-29 05:51:24 +0000993FLAC__bool FLAC__stream_encoder_set_sample_rate(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000994{
Josh Coalson92031602002-07-24 06:02:11 +0000995 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000996 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000997 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000998 encoder->protected_->sample_rate = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000999 return true;
1000}
1001
Josh Coalson16556042002-05-29 05:51:24 +00001002FLAC__bool FLAC__stream_encoder_set_blocksize(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001003{
Josh Coalson92031602002-07-24 06:02:11 +00001004 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001005 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001006 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001007 encoder->protected_->blocksize = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001008 return true;
1009}
1010
Josh Coalson16556042002-05-29 05:51:24 +00001011FLAC__bool FLAC__stream_encoder_set_max_lpc_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001012{
Josh Coalson92031602002-07-24 06:02:11 +00001013 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001014 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001015 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001016 encoder->protected_->max_lpc_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001017 return true;
1018}
1019
Josh Coalson16556042002-05-29 05:51:24 +00001020FLAC__bool FLAC__stream_encoder_set_qlp_coeff_precision(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001021{
Josh Coalson92031602002-07-24 06:02:11 +00001022 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001023 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001024 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001025 encoder->protected_->qlp_coeff_precision = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001026 return true;
1027}
1028
Josh Coalson16556042002-05-29 05:51:24 +00001029FLAC__bool FLAC__stream_encoder_set_do_qlp_coeff_prec_search(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001030{
Josh Coalson92031602002-07-24 06:02:11 +00001031 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001032 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001033 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001034 encoder->protected_->do_qlp_coeff_prec_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001035 return true;
1036}
1037
Josh Coalson16556042002-05-29 05:51:24 +00001038FLAC__bool FLAC__stream_encoder_set_do_escape_coding(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson8395d022001-07-12 21:25:22 +00001039{
Josh Coalson92031602002-07-24 06:02:11 +00001040 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001041 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson8395d022001-07-12 21:25:22 +00001042 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001043#if 0
1044 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001045 encoder->protected_->do_escape_coding = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001046#else
1047 (void)value;
1048#endif
Josh Coalson8395d022001-07-12 21:25:22 +00001049 return true;
1050}
1051
Josh Coalson16556042002-05-29 05:51:24 +00001052FLAC__bool FLAC__stream_encoder_set_do_exhaustive_model_search(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +00001053{
Josh Coalson92031602002-07-24 06:02:11 +00001054 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001055 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001056 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001057 encoder->protected_->do_exhaustive_model_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001058 return true;
1059}
1060
Josh Coalson16556042002-05-29 05:51:24 +00001061FLAC__bool FLAC__stream_encoder_set_min_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001062{
Josh Coalson92031602002-07-24 06:02:11 +00001063 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001064 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001065 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001066 encoder->protected_->min_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001067 return true;
1068}
1069
Josh Coalson16556042002-05-29 05:51:24 +00001070FLAC__bool FLAC__stream_encoder_set_max_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001071{
Josh Coalson92031602002-07-24 06:02:11 +00001072 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001073 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001074 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001075 encoder->protected_->max_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001076 return true;
1077}
1078
Josh Coalson16556042002-05-29 05:51:24 +00001079FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +00001080{
Josh Coalson92031602002-07-24 06:02:11 +00001081 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001082 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001083 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001084#if 0
1085 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001086 encoder->protected_->rice_parameter_search_dist = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +00001087#else
1088 (void)value;
1089#endif
Josh Coalson00e53872001-06-16 07:32:25 +00001090 return true;
1091}
1092
Josh Coalson16556042002-05-29 05:51:24 +00001093FLAC__bool FLAC__stream_encoder_set_total_samples_estimate(FLAC__StreamEncoder *encoder, FLAC__uint64 value)
Josh Coalson00e53872001-06-16 07:32:25 +00001094{
Josh Coalson92031602002-07-24 06:02:11 +00001095 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001096 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001097 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001098 encoder->protected_->total_samples_estimate = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001099 return true;
1100}
1101
Josh Coalsoncc682512002-06-08 04:53:42 +00001102FLAC__bool FLAC__stream_encoder_set_metadata(FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, unsigned num_blocks)
Josh Coalson00e53872001-06-16 07:32:25 +00001103{
Josh Coalson92031602002-07-24 06:02:11 +00001104 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001105 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001106 return false;
Josh Coalson66075c12002-06-01 05:39:38 +00001107 encoder->protected_->metadata = metadata;
1108 encoder->protected_->num_metadata_blocks = num_blocks;
Josh Coalson00e53872001-06-16 07:32:25 +00001109 return true;
1110}
1111
Josh Coalson681c2932002-08-01 08:19:37 +00001112FLAC__bool FLAC__stream_encoder_set_write_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback value)
Josh Coalson00e53872001-06-16 07:32:25 +00001113{
Josh Coalson92031602002-07-24 06:02:11 +00001114 FLAC__ASSERT(0 != encoder);
1115 FLAC__ASSERT(0 != value);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001116 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001117 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001118 encoder->private_->write_callback = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001119 return true;
1120}
1121
Josh Coalson681c2932002-08-01 08:19:37 +00001122FLAC__bool FLAC__stream_encoder_set_metadata_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderMetadataCallback value)
Josh Coalson00e53872001-06-16 07:32:25 +00001123{
Josh Coalson92031602002-07-24 06:02:11 +00001124 FLAC__ASSERT(0 != encoder);
1125 FLAC__ASSERT(0 != value);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001126 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001127 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001128 encoder->private_->metadata_callback = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001129 return true;
1130}
1131
Josh Coalson16556042002-05-29 05:51:24 +00001132FLAC__bool FLAC__stream_encoder_set_client_data(FLAC__StreamEncoder *encoder, void *value)
Josh Coalson00e53872001-06-16 07:32:25 +00001133{
Josh Coalson92031602002-07-24 06:02:11 +00001134 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001135 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +00001136 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001137 encoder->private_->client_data = value;
Josh Coalson00e53872001-06-16 07:32:25 +00001138 return true;
1139}
1140
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001141/*
1142 * These three functions are not static, but not publically exposed in
1143 * include/FLAC/ either. They are used by the test suite.
1144 */
1145FLAC__bool FLAC__stream_encoder_disable_constant_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
1146{
1147 FLAC__ASSERT(0 != encoder);
1148 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1149 return false;
1150 encoder->private_->disable_constant_subframes = value;
1151 return true;
1152}
1153
1154FLAC__bool FLAC__stream_encoder_disable_fixed_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
1155{
1156 FLAC__ASSERT(0 != encoder);
1157 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1158 return false;
1159 encoder->private_->disable_fixed_subframes = value;
1160 return true;
1161}
1162
1163FLAC__bool FLAC__stream_encoder_disable_verbatim_subframes(FLAC__StreamEncoder *encoder, FLAC__bool value)
1164{
1165 FLAC__ASSERT(0 != encoder);
1166 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
1167 return false;
1168 encoder->private_->disable_verbatim_subframes = value;
1169 return true;
1170}
1171
Josh Coalson00e53872001-06-16 07:32:25 +00001172FLAC__StreamEncoderState FLAC__stream_encoder_get_state(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001173{
Josh Coalson92031602002-07-24 06:02:11 +00001174 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001175 return encoder->protected_->state;
Josh Coalson0a15c142001-06-13 17:59:57 +00001176}
1177
Josh Coalsond86e03b2002-08-03 21:56:15 +00001178FLAC__StreamDecoderState FLAC__stream_encoder_get_verify_decoder_state(const FLAC__StreamEncoder *encoder)
1179{
1180 FLAC__ASSERT(0 != encoder);
1181 if(encoder->protected_->verify)
1182 return FLAC__stream_decoder_get_state(encoder->private_->verify.decoder);
1183 else
1184 return FLAC__STREAM_DECODER_UNINITIALIZED;
1185}
1186
Josh Coalson589f8c72002-08-07 23:54:55 +00001187void 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)
1188{
1189 FLAC__ASSERT(0 != encoder);
1190 if(0 != absolute_sample)
1191 *absolute_sample = encoder->private_->verify.error_stats.absolute_sample;
1192 if(0 != frame_number)
1193 *frame_number = encoder->private_->verify.error_stats.frame_number;
1194 if(0 != channel)
1195 *channel = encoder->private_->verify.error_stats.channel;
1196 if(0 != sample)
1197 *sample = encoder->private_->verify.error_stats.sample;
1198 if(0 != expected)
1199 *expected = encoder->private_->verify.error_stats.expected;
1200 if(0 != got)
1201 *got = encoder->private_->verify.error_stats.got;
1202}
1203
Josh Coalsond86e03b2002-08-03 21:56:15 +00001204FLAC__bool FLAC__stream_encoder_get_verify(const FLAC__StreamEncoder *encoder)
1205{
1206 FLAC__ASSERT(0 != encoder);
1207 return encoder->protected_->verify;
1208}
1209
Josh Coalson77e3f312001-06-23 03:03:24 +00001210FLAC__bool FLAC__stream_encoder_get_streamable_subset(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001211{
Josh Coalson92031602002-07-24 06:02:11 +00001212 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001213 return encoder->protected_->streamable_subset;
Josh Coalson0a15c142001-06-13 17:59:57 +00001214}
1215
Josh Coalson77e3f312001-06-23 03:03:24 +00001216FLAC__bool FLAC__stream_encoder_get_do_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001217{
Josh Coalson92031602002-07-24 06:02:11 +00001218 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001219 return encoder->protected_->do_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +00001220}
1221
Josh Coalson77e3f312001-06-23 03:03:24 +00001222FLAC__bool FLAC__stream_encoder_get_loose_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001223{
Josh Coalson92031602002-07-24 06:02:11 +00001224 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001225 return encoder->protected_->loose_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +00001226}
1227
Josh Coalson00e53872001-06-16 07:32:25 +00001228unsigned FLAC__stream_encoder_get_channels(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001229{
Josh Coalson92031602002-07-24 06:02:11 +00001230 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001231 return encoder->protected_->channels;
Josh Coalson0a15c142001-06-13 17:59:57 +00001232}
1233
Josh Coalson00e53872001-06-16 07:32:25 +00001234unsigned FLAC__stream_encoder_get_bits_per_sample(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001235{
Josh Coalson92031602002-07-24 06:02:11 +00001236 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001237 return encoder->protected_->bits_per_sample;
Josh Coalson0a15c142001-06-13 17:59:57 +00001238}
1239
Josh Coalson00e53872001-06-16 07:32:25 +00001240unsigned FLAC__stream_encoder_get_sample_rate(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001241{
Josh Coalson92031602002-07-24 06:02:11 +00001242 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001243 return encoder->protected_->sample_rate;
Josh Coalson0a15c142001-06-13 17:59:57 +00001244}
1245
Josh Coalson00e53872001-06-16 07:32:25 +00001246unsigned FLAC__stream_encoder_get_blocksize(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001247{
Josh Coalson92031602002-07-24 06:02:11 +00001248 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001249 return encoder->protected_->blocksize;
Josh Coalson0a15c142001-06-13 17:59:57 +00001250}
1251
Josh Coalson00e53872001-06-16 07:32:25 +00001252unsigned FLAC__stream_encoder_get_max_lpc_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001253{
Josh Coalson92031602002-07-24 06:02:11 +00001254 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001255 return encoder->protected_->max_lpc_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001256}
1257
Josh Coalson00e53872001-06-16 07:32:25 +00001258unsigned FLAC__stream_encoder_get_qlp_coeff_precision(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001259{
Josh Coalson92031602002-07-24 06:02:11 +00001260 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001261 return encoder->protected_->qlp_coeff_precision;
Josh Coalson0a15c142001-06-13 17:59:57 +00001262}
1263
Josh Coalson77e3f312001-06-23 03:03:24 +00001264FLAC__bool FLAC__stream_encoder_get_do_qlp_coeff_prec_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001265{
Josh Coalson92031602002-07-24 06:02:11 +00001266 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001267 return encoder->protected_->do_qlp_coeff_prec_search;
Josh Coalson0a15c142001-06-13 17:59:57 +00001268}
1269
Josh Coalson8395d022001-07-12 21:25:22 +00001270FLAC__bool FLAC__stream_encoder_get_do_escape_coding(const FLAC__StreamEncoder *encoder)
1271{
Josh Coalson92031602002-07-24 06:02:11 +00001272 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001273 return encoder->protected_->do_escape_coding;
Josh Coalson8395d022001-07-12 21:25:22 +00001274}
1275
Josh Coalson77e3f312001-06-23 03:03:24 +00001276FLAC__bool FLAC__stream_encoder_get_do_exhaustive_model_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001277{
Josh Coalson92031602002-07-24 06:02:11 +00001278 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001279 return encoder->protected_->do_exhaustive_model_search;
Josh Coalson0a15c142001-06-13 17:59:57 +00001280}
1281
Josh Coalson00e53872001-06-16 07:32:25 +00001282unsigned FLAC__stream_encoder_get_min_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001283{
Josh Coalson92031602002-07-24 06:02:11 +00001284 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001285 return encoder->protected_->min_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001286}
1287
Josh Coalson00e53872001-06-16 07:32:25 +00001288unsigned FLAC__stream_encoder_get_max_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001289{
Josh Coalson92031602002-07-24 06:02:11 +00001290 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001291 return encoder->protected_->max_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +00001292}
1293
Josh Coalson00e53872001-06-16 07:32:25 +00001294unsigned FLAC__stream_encoder_get_rice_parameter_search_dist(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +00001295{
Josh Coalson92031602002-07-24 06:02:11 +00001296 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001297 return encoder->protected_->rice_parameter_search_dist;
Josh Coalson0a15c142001-06-13 17:59:57 +00001298}
1299
Josh Coalson3a7b2c92002-08-02 07:38:20 +00001300FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate(const FLAC__StreamEncoder *encoder)
1301{
1302 FLAC__ASSERT(0 != encoder);
1303 return encoder->protected_->total_samples_estimate;
1304}
1305
Josh Coalson57ba6f42002-06-07 05:27:37 +00001306FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * const buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001307{
1308 unsigned i, j, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001309 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001310 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001311
Josh Coalsonf1eff452002-07-31 07:05:33 +00001312 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001313 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001314
1315 j = 0;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001316 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001317 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001318 if(encoder->protected_->verify)
1319 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1320
Josh Coalsonfa697a92001-08-16 20:07:29 +00001321 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001322 x = mid = side = buffer[0][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001323 encoder->private_->integer_signal[0][i] = x;
1324 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001325 x = buffer[1][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001326 encoder->private_->integer_signal[1][i] = x;
1327 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001328 mid += x;
1329 side -= x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001330 mid >>= 1; /* NOTE: not the same as 'mid = (buffer[0][j] + buffer[1][j]) / 2' ! */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001331 encoder->private_->integer_signal_mid_side[1][i] = side;
1332 encoder->private_->integer_signal_mid_side[0][i] = mid;
1333 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1334 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
1335 encoder->private_->current_sample_number++;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001336 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001337 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001338 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001339 return false;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001340 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001341 } while(j < samples);
1342 }
1343 else {
1344 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001345 if(encoder->protected_->verify)
1346 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1347
Josh Coalsonfa697a92001-08-16 20:07:29 +00001348 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001349 for(channel = 0; channel < channels; channel++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001350 x = buffer[channel][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001351 encoder->private_->integer_signal[channel][i] = x;
1352 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001353 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001354 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001355 }
1356 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001357 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001358 return false;
1359 }
1360 } while(j < samples);
1361 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001362
1363 return true;
1364}
1365
Josh Coalson57ba6f42002-06-07 05:27:37 +00001366FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001367{
1368 unsigned i, j, k, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001369 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001370 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001371
Josh Coalsonf1eff452002-07-31 07:05:33 +00001372 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001373 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001374
1375 j = k = 0;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001376 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001377 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001378 if(encoder->protected_->verify)
1379 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1380
Josh Coalsonfa697a92001-08-16 20:07:29 +00001381 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001382 x = mid = side = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001383 encoder->private_->integer_signal[0][i] = x;
1384 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001385 x = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001386 encoder->private_->integer_signal[1][i] = x;
1387 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001388 mid += x;
1389 side -= x;
1390 mid >>= 1; /* NOTE: not the same as 'mid = (left + right) / 2' ! */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001391 encoder->private_->integer_signal_mid_side[1][i] = side;
1392 encoder->private_->integer_signal_mid_side[0][i] = mid;
1393 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1394 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
1395 encoder->private_->current_sample_number++;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001396 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001397 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001398 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001399 return false;
1400 }
1401 } while(j < samples);
1402 }
1403 else {
1404 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001405 if(encoder->protected_->verify)
1406 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1407
Josh Coalsonfa697a92001-08-16 20:07:29 +00001408 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001409 for(channel = 0; channel < channels; channel++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001410 x = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001411 encoder->private_->integer_signal[channel][i] = x;
1412 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001413 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001414 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001415 }
1416 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001417 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001418 return false;
1419 }
1420 } while(j < samples);
1421 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001422
1423 return true;
1424}
1425
Josh Coalsonf1eff452002-07-31 07:05:33 +00001426/***********************************************************************
1427 *
1428 * Private class methods
1429 *
1430 ***********************************************************************/
1431
1432void set_defaults_(FLAC__StreamEncoder *encoder)
Josh Coalson92031602002-07-24 06:02:11 +00001433{
1434 FLAC__ASSERT(0 != encoder);
1435
Josh Coalsond86e03b2002-08-03 21:56:15 +00001436 encoder->protected_->verify = false;
Josh Coalson92031602002-07-24 06:02:11 +00001437 encoder->protected_->streamable_subset = true;
1438 encoder->protected_->do_mid_side_stereo = false;
1439 encoder->protected_->loose_mid_side_stereo = false;
1440 encoder->protected_->channels = 2;
1441 encoder->protected_->bits_per_sample = 16;
1442 encoder->protected_->sample_rate = 44100;
1443 encoder->protected_->blocksize = 1152;
1444 encoder->protected_->max_lpc_order = 0;
1445 encoder->protected_->qlp_coeff_precision = 0;
1446 encoder->protected_->do_qlp_coeff_prec_search = false;
1447 encoder->protected_->do_exhaustive_model_search = false;
1448 encoder->protected_->do_escape_coding = false;
1449 encoder->protected_->min_residual_partition_order = 0;
1450 encoder->protected_->max_residual_partition_order = 0;
1451 encoder->protected_->rice_parameter_search_dist = 0;
1452 encoder->protected_->total_samples_estimate = 0;
1453 encoder->protected_->metadata = 0;
1454 encoder->protected_->num_metadata_blocks = 0;
1455
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001456 encoder->private_->disable_constant_subframes = false;
1457 encoder->private_->disable_fixed_subframes = false;
1458 encoder->private_->disable_verbatim_subframes = false;
Josh Coalson92031602002-07-24 06:02:11 +00001459 encoder->private_->write_callback = 0;
1460 encoder->private_->metadata_callback = 0;
1461 encoder->private_->client_data = 0;
1462}
1463
Josh Coalsonf1eff452002-07-31 07:05:33 +00001464void free_(FLAC__StreamEncoder *encoder)
Josh Coalson639aeb02002-07-25 05:38:23 +00001465{
1466 unsigned i, channel;
1467
Josh Coalsonf1eff452002-07-31 07:05:33 +00001468 FLAC__ASSERT(0 != encoder);
Josh Coalson639aeb02002-07-25 05:38:23 +00001469 for(i = 0; i < encoder->protected_->channels; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001470 if(0 != encoder->private_->integer_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001471 free(encoder->private_->integer_signal_unaligned[i]);
1472 encoder->private_->integer_signal_unaligned[i] = 0;
1473 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001474 if(0 != encoder->private_->real_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001475 free(encoder->private_->real_signal_unaligned[i]);
1476 encoder->private_->real_signal_unaligned[i] = 0;
1477 }
1478 }
1479 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001480 if(0 != encoder->private_->integer_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001481 free(encoder->private_->integer_signal_mid_side_unaligned[i]);
1482 encoder->private_->integer_signal_mid_side_unaligned[i] = 0;
1483 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001484 if(0 != encoder->private_->real_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001485 free(encoder->private_->real_signal_mid_side_unaligned[i]);
1486 encoder->private_->real_signal_mid_side_unaligned[i] = 0;
1487 }
1488 }
1489 for(channel = 0; channel < encoder->protected_->channels; channel++) {
1490 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001491 if(0 != encoder->private_->residual_workspace_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001492 free(encoder->private_->residual_workspace_unaligned[channel][i]);
1493 encoder->private_->residual_workspace_unaligned[channel][i] = 0;
1494 }
1495 }
1496 }
1497 for(channel = 0; channel < 2; channel++) {
1498 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001499 if(0 != encoder->private_->residual_workspace_mid_side_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001500 free(encoder->private_->residual_workspace_mid_side_unaligned[channel][i]);
1501 encoder->private_->residual_workspace_mid_side_unaligned[channel][i] = 0;
1502 }
1503 }
1504 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001505 if(0 != encoder->private_->abs_residual_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001506 free(encoder->private_->abs_residual_unaligned);
1507 encoder->private_->abs_residual_unaligned = 0;
1508 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001509 if(0 != encoder->private_->abs_residual_partition_sums_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001510 free(encoder->private_->abs_residual_partition_sums_unaligned);
1511 encoder->private_->abs_residual_partition_sums_unaligned = 0;
1512 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001513 if(0 != encoder->private_->raw_bits_per_partition_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001514 free(encoder->private_->raw_bits_per_partition_unaligned);
1515 encoder->private_->raw_bits_per_partition_unaligned = 0;
1516 }
Josh Coalsond86e03b2002-08-03 21:56:15 +00001517 if(encoder->protected_->verify) {
1518 for(i = 0; i < encoder->protected_->channels; i++) {
1519 if(0 != encoder->private_->verify.input_fifo.data[i]) {
1520 free(encoder->private_->verify.input_fifo.data[i]);
1521 encoder->private_->verify.input_fifo.data[i] = 0;
1522 }
1523 }
1524 }
Josh Coalson639aeb02002-07-25 05:38:23 +00001525 FLAC__bitbuffer_free(encoder->private_->frame);
1526}
1527
Josh Coalsonf1eff452002-07-31 07:05:33 +00001528FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001529{
Josh Coalson77e3f312001-06-23 03:03:24 +00001530 FLAC__bool ok;
Josh Coalson0a15c142001-06-13 17:59:57 +00001531 unsigned i, channel;
1532
1533 FLAC__ASSERT(new_size > 0);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001534 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
1535 FLAC__ASSERT(encoder->private_->current_sample_number == 0);
Josh Coalson0a15c142001-06-13 17:59:57 +00001536
1537 /* To avoid excessive malloc'ing, we only grow the buffer; no shrinking. */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001538 if(new_size <= encoder->private_->input_capacity)
Josh Coalson0a15c142001-06-13 17:59:57 +00001539 return true;
1540
1541 ok = true;
Josh Coalson8395d022001-07-12 21:25:22 +00001542
Josh Coalsonc9c0d132002-10-04 05:29:05 +00001543 /* WATCHOUT: FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx()
1544 * requires that the input arrays (in our case the integer signals)
1545 * have a buffer of up to 3 zeroes in front (at negative indices) for
1546 * alignment purposes; we use 4 to keep the data well-aligned.
1547 */
Josh Coalson8395d022001-07-12 21:25:22 +00001548
Josh Coalsonfa697a92001-08-16 20:07:29 +00001549 for(i = 0; ok && i < encoder->protected_->channels; i++) {
1550 ok = ok && FLAC__memory_alloc_aligned_int32_array(new_size+4, &encoder->private_->integer_signal_unaligned[i], &encoder->private_->integer_signal[i]);
1551 ok = ok && FLAC__memory_alloc_aligned_real_array(new_size, &encoder->private_->real_signal_unaligned[i], &encoder->private_->real_signal[i]);
1552 memset(encoder->private_->integer_signal[i], 0, sizeof(FLAC__int32)*4);
1553 encoder->private_->integer_signal[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00001554 }
1555 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001556 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]);
1557 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]);
1558 memset(encoder->private_->integer_signal_mid_side[i], 0, sizeof(FLAC__int32)*4);
1559 encoder->private_->integer_signal_mid_side[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00001560 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001561 for(channel = 0; ok && channel < encoder->protected_->channels; channel++) {
Josh Coalson0a15c142001-06-13 17:59:57 +00001562 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001563 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 +00001564 }
1565 }
1566 for(channel = 0; ok && channel < 2; channel++) {
1567 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001568 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 +00001569 }
1570 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001571 ok = ok && FLAC__memory_alloc_aligned_uint32_array(new_size, &encoder->private_->abs_residual_unaligned, &encoder->private_->abs_residual);
1572 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 */
1573 ok = ok && FLAC__memory_alloc_aligned_uint64_array(new_size * 2, &encoder->private_->abs_residual_partition_sums_unaligned, &encoder->private_->abs_residual_partition_sums);
1574 if(encoder->protected_->do_escape_coding)
1575 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 +00001576
1577 if(ok)
Josh Coalsonfa697a92001-08-16 20:07:29 +00001578 encoder->private_->input_capacity = new_size;
Josh Coalson0a15c142001-06-13 17:59:57 +00001579 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00001580 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson0a15c142001-06-13 17:59:57 +00001581
1582 return ok;
1583}
1584
Josh Coalsond86e03b2002-08-03 21:56:15 +00001585FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples)
Josh Coalson5c491a12002-08-01 06:39:40 +00001586{
1587 const FLAC__byte *buffer;
1588 unsigned bytes;
1589
1590 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
1591
1592 FLAC__bitbuffer_get_buffer(encoder->private_->frame, &buffer, &bytes);
1593
Josh Coalsond86e03b2002-08-03 21:56:15 +00001594 if(encoder->protected_->verify) {
1595 encoder->private_->verify.output.data = buffer;
1596 encoder->private_->verify.output.bytes = bytes;
1597 if(encoder->private_->verify.state_hint == ENCODER_IN_MAGIC) {
1598 encoder->private_->verify.needs_magic_hack = true;
1599 }
1600 else {
1601 if(!FLAC__stream_decoder_process_single(encoder->private_->verify.decoder)) {
1602 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
1603 if(encoder->protected_->state != FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA)
1604 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
1605 return false;
1606 }
1607 }
1608 }
1609
1610 if(encoder->private_->write_callback(encoder, buffer, bytes, samples, encoder->private_->current_frame_number, encoder->private_->client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
1611 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_WRITING;
Josh Coalson5c491a12002-08-01 06:39:40 +00001612 return false;
Josh Coalsond86e03b2002-08-03 21:56:15 +00001613 }
Josh Coalson5c491a12002-08-01 06:39:40 +00001614
1615 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
1616
Josh Coalsond86e03b2002-08-03 21:56:15 +00001617 if(samples > 0) {
1618 encoder->private_->metadata.data.stream_info.min_framesize = min(bytes, encoder->private_->metadata.data.stream_info.min_framesize);
1619 encoder->private_->metadata.data.stream_info.max_framesize = max(bytes, encoder->private_->metadata.data.stream_info.max_framesize);
1620 }
1621
Josh Coalson5c491a12002-08-01 06:39:40 +00001622 return true;
1623}
1624
Josh Coalsonf1eff452002-07-31 07:05:33 +00001625FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson0a15c142001-06-13 17:59:57 +00001626{
Josh Coalsonfa697a92001-08-16 20:07:29 +00001627 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001628
1629 /*
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00001630 * Accumulate raw signal to the MD5 signature
1631 */
Josh Coalson57ba6f42002-06-07 05:27:37 +00001632 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 +00001633 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00001634 return false;
1635 }
1636
1637 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00001638 * Process the frame header and subframes into the frame bitbuffer
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001639 */
Josh Coalsonf1eff452002-07-31 07:05:33 +00001640 if(!process_subframes_(encoder, is_last_frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001641 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001642 return false;
1643 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001644
1645 /*
1646 * Zero-pad the frame to a byte_boundary
1647 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001648 if(!FLAC__bitbuffer_zero_pad_to_byte_boundary(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001649 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001650 return false;
1651 }
1652
1653 /*
Josh Coalson215af572001-03-27 01:15:58 +00001654 * CRC-16 the whole thing
1655 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001656 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
1657 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 +00001658
1659 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001660 * Write it
1661 */
Josh Coalsond86e03b2002-08-03 21:56:15 +00001662 if(!write_bitbuffer_(encoder, encoder->protected_->blocksize)) {
1663 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001664 return false;
1665 }
1666
1667 /*
1668 * Get ready for the next frame
1669 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001670 encoder->private_->current_sample_number = 0;
1671 encoder->private_->current_frame_number++;
1672 encoder->private_->metadata.data.stream_info.total_samples += (FLAC__uint64)encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001673
1674 return true;
1675}
1676
Josh Coalsonf1eff452002-07-31 07:05:33 +00001677FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001678{
1679 FLAC__FrameHeader frame_header;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001680 unsigned channel, min_partition_order = encoder->protected_->min_residual_partition_order, max_partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00001681 FLAC__bool do_independent, do_mid_side, precompute_partition_sums;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001682
1683 /*
Josh Coalson60f77d72001-04-25 02:16:36 +00001684 * Calculate the min,max Rice partition orders
Josh Coalson94e02cd2001-01-25 10:41:06 +00001685 */
1686 if(is_last_frame) {
1687 max_partition_order = 0;
1688 }
1689 else {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001690 max_partition_order = FLAC__format_get_max_rice_partition_order_from_blocksize(encoder->protected_->blocksize);
1691 max_partition_order = min(max_partition_order, encoder->protected_->max_residual_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001692 }
Josh Coalson60f77d72001-04-25 02:16:36 +00001693 min_partition_order = min(min_partition_order, max_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001694
Josh Coalsonfa697a92001-08-16 20:07:29 +00001695 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 +00001696
Josh Coalson94e02cd2001-01-25 10:41:06 +00001697 /*
1698 * Setup the frame
1699 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001700 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001701 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001702 return false;
1703 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001704 frame_header.blocksize = encoder->protected_->blocksize;
1705 frame_header.sample_rate = encoder->protected_->sample_rate;
1706 frame_header.channels = encoder->protected_->channels;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001707 frame_header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT; /* the default unless the encoder determines otherwise */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001708 frame_header.bits_per_sample = encoder->protected_->bits_per_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001709 frame_header.number_type = FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001710 frame_header.number.frame_number = encoder->private_->current_frame_number;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001711
1712 /*
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001713 * Figure out what channel assignments to try
1714 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001715 if(encoder->protected_->do_mid_side_stereo) {
1716 if(encoder->protected_->loose_mid_side_stereo) {
1717 if(encoder->private_->loose_mid_side_stereo_frame_count == 0) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001718 do_independent = true;
1719 do_mid_side = true;
1720 }
1721 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001722 do_independent = (encoder->private_->last_channel_assignment == FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001723 do_mid_side = !do_independent;
1724 }
1725 }
1726 else {
1727 do_independent = true;
1728 do_mid_side = true;
1729 }
1730 }
1731 else {
1732 do_independent = true;
1733 do_mid_side = false;
1734 }
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001735
Josh Coalson1b689822001-05-31 20:11:02 +00001736 FLAC__ASSERT(do_independent || do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001737
1738 /*
Josh Coalson82b73242001-03-28 22:17:05 +00001739 * Check for wasted bits; set effective bps for each subframe
Josh Coalson859bc542001-03-27 22:22:27 +00001740 */
1741 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001742 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001743 const unsigned w = get_wasted_bits_(encoder->private_->integer_signal[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001744 encoder->private_->subframe_workspace[channel][0].wasted_bits = encoder->private_->subframe_workspace[channel][1].wasted_bits = w;
1745 encoder->private_->subframe_bps[channel] = encoder->protected_->bits_per_sample - w;
Josh Coalson82b73242001-03-28 22:17:05 +00001746 }
Josh Coalson859bc542001-03-27 22:22:27 +00001747 }
1748 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001749 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson82b73242001-03-28 22:17:05 +00001750 for(channel = 0; channel < 2; channel++) {
Josh Coalsonb7023aa2002-08-17 15:23:43 +00001751 const unsigned w = get_wasted_bits_(encoder->private_->integer_signal_mid_side[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001752 encoder->private_->subframe_workspace_mid_side[channel][0].wasted_bits = encoder->private_->subframe_workspace_mid_side[channel][1].wasted_bits = w;
1753 encoder->private_->subframe_bps_mid_side[channel] = encoder->protected_->bits_per_sample - w + (channel==0? 0:1);
Josh Coalson82b73242001-03-28 22:17:05 +00001754 }
Josh Coalson859bc542001-03-27 22:22:27 +00001755 }
1756
1757 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00001758 * First do a normal encoding pass of each independent channel
1759 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001760 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001761 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00001762 if(!
1763 process_subframe_(
1764 encoder,
1765 min_partition_order,
1766 max_partition_order,
1767 precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001768 &frame_header,
1769 encoder->private_->subframe_bps[channel],
1770 encoder->private_->integer_signal[channel],
1771 encoder->private_->real_signal[channel],
1772 encoder->private_->subframe_workspace_ptr[channel],
1773 encoder->private_->partitioned_rice_contents_workspace_ptr[channel],
1774 encoder->private_->residual_workspace[channel],
1775 encoder->private_->best_subframe+channel,
1776 encoder->private_->best_subframe_bits+channel
1777 )
1778 )
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001779 return false;
1780 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001781 }
1782
1783 /*
1784 * Now do mid and side channels if requested
1785 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001786 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001787 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001788
1789 for(channel = 0; channel < 2; channel++) {
Josh Coalson6fe72f72002-08-20 04:01:59 +00001790 if(!
1791 process_subframe_(
1792 encoder,
1793 min_partition_order,
1794 max_partition_order,
1795 precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001796 &frame_header,
1797 encoder->private_->subframe_bps_mid_side[channel],
1798 encoder->private_->integer_signal_mid_side[channel],
1799 encoder->private_->real_signal_mid_side[channel],
1800 encoder->private_->subframe_workspace_ptr_mid_side[channel],
1801 encoder->private_->partitioned_rice_contents_workspace_ptr_mid_side[channel],
1802 encoder->private_->residual_workspace_mid_side[channel],
1803 encoder->private_->best_subframe_mid_side+channel,
1804 encoder->private_->best_subframe_bits_mid_side+channel
1805 )
1806 )
Josh Coalson94e02cd2001-01-25 10:41:06 +00001807 return false;
1808 }
1809 }
1810
1811 /*
1812 * Compose the frame bitbuffer
1813 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001814 if(do_mid_side) {
Josh Coalson82b73242001-03-28 22:17:05 +00001815 unsigned left_bps = 0, right_bps = 0; /* initialized only to prevent superfluous compiler warning */
1816 FLAC__Subframe *left_subframe = 0, *right_subframe = 0; /* initialized only to prevent superfluous compiler warning */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001817 FLAC__ChannelAssignment channel_assignment;
1818
Josh Coalsonfa697a92001-08-16 20:07:29 +00001819 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001820
Josh Coalsonfa697a92001-08-16 20:07:29 +00001821 if(encoder->protected_->loose_mid_side_stereo && encoder->private_->loose_mid_side_stereo_frame_count > 0) {
1822 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 +00001823 }
1824 else {
1825 unsigned bits[4]; /* WATCHOUT - indexed by FLAC__ChannelAssignment */
1826 unsigned min_bits;
1827 FLAC__ChannelAssignment ca;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001828
Josh Coalson1b689822001-05-31 20:11:02 +00001829 FLAC__ASSERT(do_independent && do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001830
1831 /* We have to figure out which channel assignent results in the smallest frame */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001832 bits[FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits [1];
1833 bits[FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE ] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits_mid_side[1];
1834 bits[FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE ] = encoder->private_->best_subframe_bits [1] + encoder->private_->best_subframe_bits_mid_side[1];
1835 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 +00001836
1837 for(channel_assignment = 0, min_bits = bits[0], ca = 1; ca <= 3; ca++) {
1838 if(bits[ca] < min_bits) {
1839 min_bits = bits[ca];
1840 channel_assignment = ca;
1841 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001842 }
1843 }
1844
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001845 frame_header.channel_assignment = channel_assignment;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001846
Josh Coalsonaec256b2002-03-12 16:19:54 +00001847 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, is_last_frame, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001848 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001849 return false;
1850 }
1851
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001852 switch(channel_assignment) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001853 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001854 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
1855 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001856 break;
1857 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001858 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
1859 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001860 break;
1861 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001862 left_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
1863 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001864 break;
1865 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001866 left_subframe = &encoder->private_->subframe_workspace_mid_side[0][encoder->private_->best_subframe_mid_side[0]];
1867 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001868 break;
1869 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001870 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001871 }
Josh Coalson82b73242001-03-28 22:17:05 +00001872
1873 switch(channel_assignment) {
1874 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001875 left_bps = encoder->private_->subframe_bps [0];
1876 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00001877 break;
1878 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001879 left_bps = encoder->private_->subframe_bps [0];
1880 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00001881 break;
1882 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001883 left_bps = encoder->private_->subframe_bps_mid_side[1];
1884 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00001885 break;
1886 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001887 left_bps = encoder->private_->subframe_bps_mid_side[0];
1888 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00001889 break;
1890 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001891 FLAC__ASSERT(0);
Josh Coalson82b73242001-03-28 22:17:05 +00001892 }
1893
1894 /* note that encoder_add_subframe_ sets the state for us in case of an error */
Josh Coalsonf1eff452002-07-31 07:05:33 +00001895 if(!add_subframe_(encoder, &frame_header, left_bps , left_subframe , encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00001896 return false;
Josh Coalsonf1eff452002-07-31 07:05:33 +00001897 if(!add_subframe_(encoder, &frame_header, right_bps, right_subframe, encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00001898 return false;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001899 }
1900 else {
Josh Coalsonaec256b2002-03-12 16:19:54 +00001901 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, is_last_frame, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001902 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001903 return false;
1904 }
1905
Josh Coalsonfa697a92001-08-16 20:07:29 +00001906 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001907 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 +00001908 /* the above function sets the state for us in case of an error */
1909 return false;
1910 }
1911 }
1912 }
1913
Josh Coalsonfa697a92001-08-16 20:07:29 +00001914 if(encoder->protected_->loose_mid_side_stereo) {
1915 encoder->private_->loose_mid_side_stereo_frame_count++;
1916 if(encoder->private_->loose_mid_side_stereo_frame_count >= encoder->private_->loose_mid_side_stereo_frames)
1917 encoder->private_->loose_mid_side_stereo_frame_count = 0;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001918 }
1919
Josh Coalsonfa697a92001-08-16 20:07:29 +00001920 encoder->private_->last_channel_assignment = frame_header.channel_assignment;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001921
Josh Coalson94e02cd2001-01-25 10:41:06 +00001922 return true;
1923}
1924
Josh Coalson6fe72f72002-08-20 04:01:59 +00001925FLAC__bool process_subframe_(
1926 FLAC__StreamEncoder *encoder,
1927 unsigned min_partition_order,
1928 unsigned max_partition_order,
1929 FLAC__bool precompute_partition_sums,
Josh Coalson6fe72f72002-08-20 04:01:59 +00001930 const FLAC__FrameHeader *frame_header,
1931 unsigned subframe_bps,
1932 const FLAC__int32 integer_signal[],
1933 const FLAC__real real_signal[],
1934 FLAC__Subframe *subframe[2],
1935 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents[2],
1936 FLAC__int32 *residual[2],
1937 unsigned *best_subframe,
1938 unsigned *best_bits
1939)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001940{
Josh Coalson77e3f312001-06-23 03:03:24 +00001941 FLAC__real fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1];
1942 FLAC__real lpc_residual_bits_per_sample;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001943 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 +00001944 FLAC__real lpc_error[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001945 unsigned min_lpc_order, max_lpc_order, lpc_order;
1946 unsigned min_fixed_order, max_fixed_order, guess_fixed_order, fixed_order;
1947 unsigned min_qlp_coeff_precision, max_qlp_coeff_precision, qlp_coeff_precision;
1948 unsigned rice_parameter;
1949 unsigned _candidate_bits, _best_bits;
1950 unsigned _best_subframe;
1951
1952 /* verbatim subframe is the baseline against which we measure other compressed subframes */
1953 _best_subframe = 0;
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001954 if(encoder->private_->disable_verbatim_subframes && frame_header->blocksize >= FLAC__MAX_FIXED_ORDER)
1955 _best_bits = UINT_MAX;
1956 else
1957 _best_bits = evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, subframe_bps, subframe[_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001958
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001959 if(frame_header->blocksize >= FLAC__MAX_FIXED_ORDER) {
1960 unsigned signal_is_constant = false;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001961 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 +00001962 /* check for constant subframe */
1963 if(!encoder->private_->disable_constant_subframes && fixed_residual_bits_per_sample[1] == 0.0) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001964 /* 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 +00001965 unsigned i;
1966 signal_is_constant = true;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001967 for(i = 1; i <= FLAC__MAX_FIXED_ORDER; i++) {
1968 if(integer_signal[0] != integer_signal[i]) {
1969 signal_is_constant = false;
1970 break;
1971 }
1972 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001973 }
1974 if(signal_is_constant) {
1975 _candidate_bits = evaluate_constant_subframe_(integer_signal[0], subframe_bps, subframe[!_best_subframe]);
1976 if(_candidate_bits < _best_bits) {
1977 _best_subframe = !_best_subframe;
1978 _best_bits = _candidate_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001979 }
1980 }
1981 else {
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001982 if(!encoder->private_->disable_fixed_subframes || (encoder->protected_->max_lpc_order == 0 && _best_bits == UINT_MAX)) {
1983 /* encode fixed */
1984 if(encoder->protected_->do_exhaustive_model_search) {
1985 min_fixed_order = 0;
1986 max_fixed_order = FLAC__MAX_FIXED_ORDER;
Josh Coalson8395d022001-07-12 21:25:22 +00001987 }
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00001988 else {
1989 min_fixed_order = max_fixed_order = guess_fixed_order;
1990 }
1991 for(fixed_order = min_fixed_order; fixed_order <= max_fixed_order; fixed_order++) {
1992 if(fixed_residual_bits_per_sample[fixed_order] >= (FLAC__real)subframe_bps)
1993 continue; /* don't even try */
1994 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 */
1995#ifndef FLAC__SYMMETRIC_RICE
1996 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
1997#endif
1998 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
1999#ifdef DEBUG_VERBOSE
2000 fprintf(stderr, "clipping rice_parameter (%u -> %u) @0\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2001#endif
2002 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2003 }
2004 _candidate_bits =
2005 evaluate_fixed_subframe_(
2006 encoder,
2007 integer_signal,
2008 residual[!_best_subframe],
2009 encoder->private_->abs_residual,
2010 encoder->private_->abs_residual_partition_sums,
2011 encoder->private_->raw_bits_per_partition,
2012 frame_header->blocksize,
2013 subframe_bps,
2014 fixed_order,
2015 rice_parameter,
2016 min_partition_order,
2017 max_partition_order,
2018 precompute_partition_sums,
2019 encoder->protected_->do_escape_coding,
2020 encoder->protected_->rice_parameter_search_dist,
2021 subframe[!_best_subframe],
2022 partitioned_rice_contents[!_best_subframe]
2023 );
2024 if(_candidate_bits < _best_bits) {
2025 _best_subframe = !_best_subframe;
2026 _best_bits = _candidate_bits;
2027 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002028 }
2029 }
2030
2031 /* encode lpc */
Josh Coalsonfa697a92001-08-16 20:07:29 +00002032 if(encoder->protected_->max_lpc_order > 0) {
2033 if(encoder->protected_->max_lpc_order >= frame_header->blocksize)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002034 max_lpc_order = frame_header->blocksize-1;
2035 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00002036 max_lpc_order = encoder->protected_->max_lpc_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002037 if(max_lpc_order > 0) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002038 encoder->private_->local_lpc_compute_autocorrelation(real_signal, frame_header->blocksize, max_lpc_order+1, autoc);
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002039 /* if autoc[0] == 0.0, the signal is constant and we usually won't get here, but it can happen */
2040 if(autoc[0] != 0.0) {
Josh Coalson8084b052001-11-01 00:27:29 +00002041 FLAC__lpc_compute_lp_coefficients(autoc, max_lpc_order, encoder->private_->lp_coeff, lpc_error);
Josh Coalsonfa697a92001-08-16 20:07:29 +00002042 if(encoder->protected_->do_exhaustive_model_search) {
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002043 min_lpc_order = 1;
2044 }
2045 else {
Josh Coalson82b73242001-03-28 22:17:05 +00002046 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 +00002047 min_lpc_order = max_lpc_order = guess_lpc_order;
2048 }
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002049 for(lpc_order = min_lpc_order; lpc_order <= max_lpc_order; lpc_order++) {
2050 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 +00002051 if(lpc_residual_bits_per_sample >= (FLAC__real)subframe_bps)
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002052 continue; /* don't even try */
2053 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 +00002054#ifndef FLAC__SYMMETRIC_RICE
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002055 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
Josh Coalsonb9433f92001-03-17 01:07:00 +00002056#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002057 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002058#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002059 fprintf(stderr, "clipping rice_parameter (%u -> %u) @1\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2060#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002061 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002062 }
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002063 if(encoder->protected_->do_qlp_coeff_prec_search) {
2064 min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
2065 /* ensure a 32-bit datapath throughout for 16bps or less */
2066 if(subframe_bps <= 16)
2067 max_qlp_coeff_precision = min(32 - subframe_bps - lpc_order, FLAC__MAX_QLP_COEFF_PRECISION);
2068 else
2069 max_qlp_coeff_precision = FLAC__MAX_QLP_COEFF_PRECISION;
2070 }
2071 else {
2072 min_qlp_coeff_precision = max_qlp_coeff_precision = encoder->protected_->qlp_coeff_precision;
2073 }
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002074 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 +00002075 _candidate_bits =
2076 evaluate_lpc_subframe_(
2077 encoder,
2078 integer_signal,
2079 residual[!_best_subframe],
2080 encoder->private_->abs_residual,
2081 encoder->private_->abs_residual_partition_sums,
2082 encoder->private_->raw_bits_per_partition,
2083 encoder->private_->lp_coeff[lpc_order-1],
2084 frame_header->blocksize,
2085 subframe_bps,
2086 lpc_order,
2087 qlp_coeff_precision,
2088 rice_parameter,
2089 min_partition_order,
2090 max_partition_order,
2091 precompute_partition_sums,
2092 encoder->protected_->do_escape_coding,
2093 encoder->protected_->rice_parameter_search_dist,
2094 subframe[!_best_subframe],
2095 partitioned_rice_contents[!_best_subframe]
2096 );
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00002097 if(_candidate_bits > 0) { /* if == 0, there was a problem quantizing the lpcoeffs */
2098 if(_candidate_bits < _best_bits) {
2099 _best_subframe = !_best_subframe;
2100 _best_bits = _candidate_bits;
2101 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002102 }
2103 }
2104 }
2105 }
2106 }
2107 }
2108 }
2109 }
2110
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002111 FLAC__ASSERT(_best_bits < UINT_MAX);
2112
Josh Coalson94e02cd2001-01-25 10:41:06 +00002113 *best_subframe = _best_subframe;
2114 *best_bits = _best_bits;
2115
2116 return true;
2117}
2118
Josh Coalson6fe72f72002-08-20 04:01:59 +00002119FLAC__bool add_subframe_(
2120 FLAC__StreamEncoder *encoder,
2121 const FLAC__FrameHeader *frame_header,
2122 unsigned subframe_bps,
2123 const FLAC__Subframe *subframe,
2124 FLAC__BitBuffer *frame
2125)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002126{
2127 switch(subframe->type) {
2128 case FLAC__SUBFRAME_TYPE_CONSTANT:
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002129//@@@@fprintf(stderr,"@@@@ add CONSTANT, bps=%u\n",subframe_bps);
Josh Coalson82b73242001-03-28 22:17:05 +00002130 if(!FLAC__subframe_add_constant(&(subframe->data.constant), subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002131 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002132 return false;
2133 }
2134 break;
2135 case FLAC__SUBFRAME_TYPE_FIXED:
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002136//@@@@fprintf(stderr,"@@@@ add FIXED, bps=%u, order=%u\n",subframe_bps,subframe->data.fixed.order);
Josh Coalson82b73242001-03-28 22:17:05 +00002137 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 +00002138 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002139 return false;
2140 }
2141 break;
2142 case FLAC__SUBFRAME_TYPE_LPC:
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002143//@@@@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 +00002144 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 +00002145 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002146 return false;
2147 }
2148 break;
2149 case FLAC__SUBFRAME_TYPE_VERBATIM:
Josh Coalsone6b3bbe2002-10-08 06:03:25 +00002150//@@@@fprintf(stderr,"@@@@ add VERBATIM, bps=%u\n",subframe_bps);
Josh Coalson82b73242001-03-28 22:17:05 +00002151 if(!FLAC__subframe_add_verbatim(&(subframe->data.verbatim), frame_header->blocksize, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00002152 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002153 return false;
2154 }
2155 break;
2156 default:
Josh Coalson1b689822001-05-31 20:11:02 +00002157 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002158 }
2159
2160 return true;
2161}
2162
Josh Coalson6fe72f72002-08-20 04:01:59 +00002163unsigned evaluate_constant_subframe_(
2164 const FLAC__int32 signal,
2165 unsigned subframe_bps,
2166 FLAC__Subframe *subframe
2167)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002168{
2169 subframe->type = FLAC__SUBFRAME_TYPE_CONSTANT;
2170 subframe->data.constant.value = signal;
2171
Josh Coalson82b73242001-03-28 22:17:05 +00002172 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 +00002173}
2174
Josh Coalson6fe72f72002-08-20 04:01:59 +00002175unsigned evaluate_fixed_subframe_(
2176 FLAC__StreamEncoder *encoder,
2177 const FLAC__int32 signal[],
2178 FLAC__int32 residual[],
2179 FLAC__uint32 abs_residual[],
2180 FLAC__uint64 abs_residual_partition_sums[],
2181 unsigned raw_bits_per_partition[],
2182 unsigned blocksize,
2183 unsigned subframe_bps,
2184 unsigned order,
2185 unsigned rice_parameter,
2186 unsigned min_partition_order,
2187 unsigned max_partition_order,
2188 FLAC__bool precompute_partition_sums,
2189 FLAC__bool do_escape_coding,
2190 unsigned rice_parameter_search_dist,
2191 FLAC__Subframe *subframe,
2192 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
2193)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002194{
2195 unsigned i, residual_bits;
2196 const unsigned residual_samples = blocksize - order;
2197
2198 FLAC__fixed_compute_residual(signal+order, residual_samples, order, residual);
2199
2200 subframe->type = FLAC__SUBFRAME_TYPE_FIXED;
2201
2202 subframe->data.fixed.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
Josh Coalsona37ba462002-08-19 21:36:39 +00002203 subframe->data.fixed.entropy_coding_method.data.partitioned_rice.contents = partitioned_rice_contents;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002204 subframe->data.fixed.residual = residual;
2205
Josh Coalson6fe72f72002-08-20 04:01:59 +00002206 residual_bits =
2207 find_best_partition_order_(
2208 encoder->private_,
2209 residual,
2210 abs_residual,
2211 abs_residual_partition_sums,
2212 raw_bits_per_partition,
2213 residual_samples,
2214 order,
2215 rice_parameter,
2216 min_partition_order,
2217 max_partition_order,
2218 precompute_partition_sums,
2219 do_escape_coding,
2220 rice_parameter_search_dist,
2221 &subframe->data.fixed.entropy_coding_method.data.partitioned_rice
2222 );
Josh Coalson94e02cd2001-01-25 10:41:06 +00002223
2224 subframe->data.fixed.order = order;
2225 for(i = 0; i < order; i++)
2226 subframe->data.fixed.warmup[i] = signal[i];
2227
Josh Coalson82b73242001-03-28 22:17:05 +00002228 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 +00002229}
2230
Josh Coalson6fe72f72002-08-20 04:01:59 +00002231unsigned evaluate_lpc_subframe_(
2232 FLAC__StreamEncoder *encoder,
2233 const FLAC__int32 signal[],
2234 FLAC__int32 residual[],
2235 FLAC__uint32 abs_residual[],
2236 FLAC__uint64 abs_residual_partition_sums[],
2237 unsigned raw_bits_per_partition[],
2238 const FLAC__real lp_coeff[],
2239 unsigned blocksize,
2240 unsigned subframe_bps,
2241 unsigned order,
2242 unsigned qlp_coeff_precision,
2243 unsigned rice_parameter,
2244 unsigned min_partition_order,
2245 unsigned max_partition_order,
2246 FLAC__bool precompute_partition_sums,
2247 FLAC__bool do_escape_coding,
2248 unsigned rice_parameter_search_dist,
2249 FLAC__Subframe *subframe,
2250 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents
2251)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002252{
Josh Coalson77e3f312001-06-23 03:03:24 +00002253 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00002254 unsigned i, residual_bits;
2255 int quantization, ret;
2256 const unsigned residual_samples = blocksize - order;
2257
Josh Coalson20ac2c12002-08-30 05:47:14 +00002258 /* try to keep qlp coeff precision such that only 32-bit math is required for decode of <=16bps streams */
2259 if(subframe_bps <= 16) {
2260 FLAC__ASSERT(order > 0);
2261 FLAC__ASSERT(order <= FLAC__MAX_LPC_ORDER);
2262 qlp_coeff_precision = min(qlp_coeff_precision, 32 - subframe_bps - FLAC__bitmath_ilog2(order));
2263 }
2264
Josh Coalsonc9c0d132002-10-04 05:29:05 +00002265 ret = FLAC__lpc_quantize_coefficients(lp_coeff, order, qlp_coeff_precision, qlp_coeff, &quantization);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002266 if(ret != 0)
2267 return 0; /* this is a hack to indicate to the caller that we can't do lp at this order on this subframe */
2268
Josh Coalson92d42402001-05-31 20:53:19 +00002269 if(subframe_bps <= 16 && qlp_coeff_precision <= 16)
Josh Coalsonfa697a92001-08-16 20:07:29 +00002270 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 +00002271 else if(subframe_bps + qlp_coeff_precision + order <= 32)
Josh Coalsonfa697a92001-08-16 20:07:29 +00002272 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 +00002273 else
2274 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 +00002275
2276 subframe->type = FLAC__SUBFRAME_TYPE_LPC;
2277
2278 subframe->data.lpc.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
Josh Coalsona37ba462002-08-19 21:36:39 +00002279 subframe->data.lpc.entropy_coding_method.data.partitioned_rice.contents = partitioned_rice_contents;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002280 subframe->data.lpc.residual = residual;
2281
Josh Coalson6fe72f72002-08-20 04:01:59 +00002282 residual_bits =
2283 find_best_partition_order_(
2284 encoder->private_,
2285 residual,
2286 abs_residual,
2287 abs_residual_partition_sums,
2288 raw_bits_per_partition,
2289 residual_samples,
2290 order,
2291 rice_parameter,
2292 min_partition_order,
2293 max_partition_order,
2294 precompute_partition_sums,
2295 do_escape_coding,
2296 rice_parameter_search_dist,
2297 &subframe->data.fixed.entropy_coding_method.data.partitioned_rice
2298 );
Josh Coalson94e02cd2001-01-25 10:41:06 +00002299
2300 subframe->data.lpc.order = order;
2301 subframe->data.lpc.qlp_coeff_precision = qlp_coeff_precision;
2302 subframe->data.lpc.quantization_level = quantization;
Josh Coalson77e3f312001-06-23 03:03:24 +00002303 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002304 for(i = 0; i < order; i++)
2305 subframe->data.lpc.warmup[i] = signal[i];
2306
Josh Coalson82b73242001-03-28 22:17:05 +00002307 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 +00002308}
2309
Josh Coalson6fe72f72002-08-20 04:01:59 +00002310unsigned evaluate_verbatim_subframe_(
2311 const FLAC__int32 signal[],
2312 unsigned blocksize,
2313 unsigned subframe_bps,
2314 FLAC__Subframe *subframe
2315)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002316{
2317 subframe->type = FLAC__SUBFRAME_TYPE_VERBATIM;
2318
2319 subframe->data.verbatim.data = signal;
2320
Josh Coalson82b73242001-03-28 22:17:05 +00002321 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 +00002322}
2323
Josh Coalson6fe72f72002-08-20 04:01:59 +00002324unsigned find_best_partition_order_(
2325 FLAC__StreamEncoderPrivate *private_,
2326 const FLAC__int32 residual[],
2327 FLAC__uint32 abs_residual[],
2328 FLAC__uint64 abs_residual_partition_sums[],
2329 unsigned raw_bits_per_partition[],
2330 unsigned residual_samples,
2331 unsigned predictor_order,
2332 unsigned rice_parameter,
2333 unsigned min_partition_order,
2334 unsigned max_partition_order,
2335 FLAC__bool precompute_partition_sums,
2336 FLAC__bool do_escape_coding,
2337 unsigned rice_parameter_search_dist,
2338 FLAC__EntropyCodingMethod_PartitionedRice *best_partitioned_rice
2339)
Josh Coalson94e02cd2001-01-25 10:41:06 +00002340{
Josh Coalson77e3f312001-06-23 03:03:24 +00002341 FLAC__int32 r;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002342 unsigned residual_bits, best_residual_bits = 0;
Josh Coalsonafcd8772001-04-18 22:59:25 +00002343 unsigned residual_sample;
Josh Coalson8084b052001-11-01 00:27:29 +00002344 unsigned best_parameters_index = 0;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002345 const unsigned blocksize = residual_samples + predictor_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002346
Josh Coalson2051dd42001-04-12 22:22:34 +00002347 /* compute abs(residual) for use later */
2348 for(residual_sample = 0; residual_sample < residual_samples; residual_sample++) {
2349 r = residual[residual_sample];
Josh Coalson77e3f312001-06-23 03:03:24 +00002350 abs_residual[residual_sample] = (FLAC__uint32)(r<0? -r : r);
Josh Coalson2051dd42001-04-12 22:22:34 +00002351 }
2352
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002353 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 +00002354 min_partition_order = min(min_partition_order, max_partition_order);
2355
Josh Coalson8395d022001-07-12 21:25:22 +00002356 if(precompute_partition_sums) {
2357 int partition_order;
2358 unsigned sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002359
Josh Coalsonf1eff452002-07-31 07:05:33 +00002360 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 +00002361
2362 if(do_escape_coding)
Josh Coalsonf1eff452002-07-31 07:05:33 +00002363 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 +00002364
2365 for(partition_order = (int)max_partition_order, sum = 0; partition_order >= (int)min_partition_order; partition_order--) {
2366#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002367 if(!
2368 set_partitioned_rice_with_precompute_(
2369 residual,
2370 abs_residual_partition_sums+sum,
2371 raw_bits_per_partition+sum,
2372 residual_samples,
2373 predictor_order,
2374 rice_parameter,
2375 rice_parameter_search_dist,
2376 (unsigned)partition_order,
2377 do_escape_coding,
2378 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2379 &residual_bits
2380 )
2381 )
Josh Coalsonafcd8772001-04-18 22:59:25 +00002382#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002383 if(!
2384 set_partitioned_rice_with_precompute_(
2385 abs_residual,
2386 abs_residual_partition_sums+sum,
2387 raw_bits_per_partition+sum,
2388 residual_samples,
2389 predictor_order,
2390 rice_parameter,
2391 rice_parameter_search_dist,
2392 (unsigned)partition_order,
2393 do_escape_coding,
2394 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2395 &residual_bits
2396 )
2397 )
Josh Coalson8395d022001-07-12 21:25:22 +00002398#endif
2399 {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002400 FLAC__ASSERT(best_residual_bits != 0);
2401 break;
Josh Coalson8395d022001-07-12 21:25:22 +00002402 }
2403 sum += 1u << partition_order;
2404 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
2405 best_residual_bits = residual_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002406 best_parameters_index = !best_parameters_index;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002407 best_partitioned_rice->order = partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00002408 }
Josh Coalsonafcd8772001-04-18 22:59:25 +00002409 }
2410 }
Josh Coalson8395d022001-07-12 21:25:22 +00002411 else {
2412 unsigned partition_order;
2413 for(partition_order = min_partition_order; partition_order <= max_partition_order; partition_order++) {
2414#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002415 if(!
2416 set_partitioned_rice_(
2417 abs_residual,
2418 residual,
2419 residual_samples,
2420 predictor_order,
2421 rice_parameter,
2422 rice_parameter_search_dist,
2423 partition_order,
2424 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2425 &residual_bits
2426 )
2427 )
Josh Coalson8395d022001-07-12 21:25:22 +00002428#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002429 if(!
2430 set_partitioned_rice_(
2431 abs_residual,
2432 residual_samples,
2433 predictor_order,
2434 rice_parameter,
2435 rice_parameter_search_dist,
2436 partition_order,
2437 &private_->partitioned_rice_contents_extra[!best_parameters_index],
2438 &residual_bits
2439 )
2440 )
Josh Coalsonafcd8772001-04-18 22:59:25 +00002441#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002442 {
2443 FLAC__ASSERT(best_residual_bits != 0);
2444 break;
2445 }
2446 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
2447 best_residual_bits = residual_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002448 best_parameters_index = !best_parameters_index;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002449 best_partitioned_rice->order = partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00002450 }
2451 }
2452 }
2453
Josh Coalsona37ba462002-08-19 21:36:39 +00002454 /*
Josh Coalson20ac2c12002-08-30 05:47:14 +00002455 * We are allowed to de-const the pointer based on our special knowledge;
Josh Coalsona37ba462002-08-19 21:36:39 +00002456 * it is const to the outside world.
2457 */
2458 {
2459 FLAC__EntropyCodingMethod_PartitionedRiceContents* best_partitioned_rice_contents = (FLAC__EntropyCodingMethod_PartitionedRiceContents*)best_partitioned_rice->contents;
2460 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(best_partitioned_rice_contents, max(6, best_partitioned_rice->order));
2461 memcpy(best_partitioned_rice_contents->parameters, private_->partitioned_rice_contents_extra[best_parameters_index].parameters, sizeof(unsigned)*(1<<(best_partitioned_rice->order)));
2462 memcpy(best_partitioned_rice_contents->raw_bits, private_->partitioned_rice_contents_extra[best_parameters_index].raw_bits, sizeof(unsigned)*(1<<(best_partitioned_rice->order)));
2463 }
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002464
2465 return best_residual_bits;
2466}
2467
Josh Coalson6fe72f72002-08-20 04:01:59 +00002468void precompute_partition_info_sums_(
2469 const FLAC__uint32 abs_residual[],
2470 FLAC__uint64 abs_residual_partition_sums[],
2471 unsigned residual_samples,
2472 unsigned predictor_order,
2473 unsigned min_partition_order,
2474 unsigned max_partition_order
2475)
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002476{
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002477 int partition_order;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002478 unsigned from_partition, to_partition = 0;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002479 const unsigned blocksize = residual_samples + predictor_order;
2480
Josh Coalsonaef013c2001-04-24 01:25:42 +00002481 /* first do max_partition_order */
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002482 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002483 FLAC__uint64 abs_residual_partition_sum;
Josh Coalson77e3f312001-06-23 03:03:24 +00002484 FLAC__uint32 abs_r;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002485 unsigned partition, partition_sample, partition_samples, residual_sample;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002486 const unsigned partitions = 1u << partition_order;
2487 const unsigned default_partition_samples = blocksize >> partition_order;
2488
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002489 FLAC__ASSERT(default_partition_samples > predictor_order);
2490
2491 for(partition = residual_sample = 0; partition < partitions; partition++) {
2492 partition_samples = default_partition_samples;
2493 if(partition == 0)
2494 partition_samples -= predictor_order;
2495 abs_residual_partition_sum = 0;
2496 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
2497 abs_r = abs_residual[residual_sample];
2498 abs_residual_partition_sum += abs_r;
2499 residual_sample++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002500 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002501 abs_residual_partition_sums[partition] = abs_residual_partition_sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002502 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002503 to_partition = partitions;
2504 break;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002505 }
Josh Coalsonf76a3612001-04-18 02:28:11 +00002506
Josh Coalson8395d022001-07-12 21:25:22 +00002507 /* now merge partitions for lower orders */
Josh Coalson6bd17572001-05-25 19:02:01 +00002508 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002509 FLAC__uint64 s;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002510 unsigned i;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002511 const unsigned partitions = 1u << partition_order;
2512 for(i = 0; i < partitions; i++) {
Josh Coalsonaef013c2001-04-24 01:25:42 +00002513 s = abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00002514 from_partition++;
Josh Coalsonaef013c2001-04-24 01:25:42 +00002515 abs_residual_partition_sums[to_partition] = s + abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00002516 from_partition++;
2517 to_partition++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002518 }
2519 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00002520}
Josh Coalson8395d022001-07-12 21:25:22 +00002521
Josh Coalson6fe72f72002-08-20 04:01:59 +00002522void precompute_partition_info_escapes_(
2523 const FLAC__int32 residual[],
2524 unsigned raw_bits_per_partition[],
2525 unsigned residual_samples,
2526 unsigned predictor_order,
2527 unsigned min_partition_order,
2528 unsigned max_partition_order
2529)
Josh Coalson8395d022001-07-12 21:25:22 +00002530{
2531 int partition_order;
2532 unsigned from_partition, to_partition = 0;
2533 const unsigned blocksize = residual_samples + predictor_order;
2534
2535 /* first do max_partition_order */
2536 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
2537 FLAC__int32 r, residual_partition_min, residual_partition_max;
2538 unsigned silog2_min, silog2_max;
2539 unsigned partition, partition_sample, partition_samples, residual_sample;
2540 const unsigned partitions = 1u << partition_order;
2541 const unsigned default_partition_samples = blocksize >> partition_order;
2542
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002543 FLAC__ASSERT(default_partition_samples > predictor_order);
2544
2545 for(partition = residual_sample = 0; partition < partitions; partition++) {
2546 partition_samples = default_partition_samples;
2547 if(partition == 0)
2548 partition_samples -= predictor_order;
2549 residual_partition_min = residual_partition_max = 0;
2550 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
2551 r = residual[residual_sample];
2552 if(r < residual_partition_min)
2553 residual_partition_min = r;
2554 else if(r > residual_partition_max)
2555 residual_partition_max = r;
2556 residual_sample++;
Josh Coalson8395d022001-07-12 21:25:22 +00002557 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002558 silog2_min = FLAC__bitmath_silog2(residual_partition_min);
2559 silog2_max = FLAC__bitmath_silog2(residual_partition_max);
2560 raw_bits_per_partition[partition] = max(silog2_min, silog2_max);
Josh Coalson8395d022001-07-12 21:25:22 +00002561 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002562 to_partition = partitions;
2563 break;
Josh Coalson8395d022001-07-12 21:25:22 +00002564 }
2565
2566 /* now merge partitions for lower orders */
2567 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
2568 unsigned m;
2569 unsigned i;
2570 const unsigned partitions = 1u << partition_order;
2571 for(i = 0; i < partitions; i++) {
2572 m = raw_bits_per_partition[from_partition];
2573 from_partition++;
2574 raw_bits_per_partition[to_partition] = max(m, raw_bits_per_partition[from_partition]);
2575 from_partition++;
2576 to_partition++;
2577 }
2578 }
2579}
Josh Coalson94e02cd2001-01-25 10:41:06 +00002580
Josh Coalson352e0f62001-03-20 22:55:50 +00002581#ifdef VARIABLE_RICE_BITS
2582#undef VARIABLE_RICE_BITS
2583#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002584#ifndef DONT_ESTIMATE_RICE_BITS
Josh Coalson352e0f62001-03-20 22:55:50 +00002585#define VARIABLE_RICE_BITS(value, parameter) ((value) >> (parameter))
Josh Coalson8395d022001-07-12 21:25:22 +00002586#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002587
Josh Coalson8395d022001-07-12 21:25:22 +00002588#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002589FLAC__bool set_partitioned_rice_(
2590 const FLAC__uint32 abs_residual[],
2591 const FLAC__int32 residual[],
2592 const unsigned residual_samples,
2593 const unsigned predictor_order,
2594 const unsigned suggested_rice_parameter,
2595 const unsigned rice_parameter_search_dist,
2596 const unsigned partition_order,
2597 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2598 unsigned *bits
2599)
Josh Coalson8395d022001-07-12 21:25:22 +00002600#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002601FLAC__bool set_partitioned_rice_(
2602 const FLAC__uint32 abs_residual[],
2603 const unsigned residual_samples,
2604 const unsigned predictor_order,
2605 const unsigned suggested_rice_parameter,
2606 const unsigned rice_parameter_search_dist,
2607 const unsigned partition_order,
2608 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2609 unsigned *bits
2610)
Josh Coalson8395d022001-07-12 21:25:22 +00002611#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002612{
Josh Coalson034dfab2001-04-27 19:10:23 +00002613 unsigned rice_parameter, partition_bits;
2614#ifndef NO_RICE_SEARCH
2615 unsigned best_partition_bits;
2616 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
2617#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00002618 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002619 unsigned *parameters;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002620
Josh Coalson1b689822001-05-31 20:11:02 +00002621 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
Josh Coalson2051dd42001-04-12 22:22:34 +00002622
Josh Coalsona37ba462002-08-19 21:36:39 +00002623 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order));
2624 parameters = partitioned_rice_contents->parameters;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002625
Josh Coalson94e02cd2001-01-25 10:41:06 +00002626 if(partition_order == 0) {
2627 unsigned i;
Josh Coalson352e0f62001-03-20 22:55:50 +00002628
Josh Coalson034dfab2001-04-27 19:10:23 +00002629#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00002630 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002631 if(suggested_rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00002632 min_rice_parameter = 0;
2633 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002634 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
2635 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00002636 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002637#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002638 fprintf(stderr, "clipping rice_parameter (%u -> %u) @2\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2639#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00002640 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002641 }
2642 }
2643 else
2644 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
2645
2646 best_partition_bits = 0xffffffff;
2647 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2648#endif
2649#ifdef VARIABLE_RICE_BITS
2650#ifdef FLAC__SYMMETRIC_RICE
2651 partition_bits = (2+rice_parameter) * residual_samples;
2652#else
2653 const unsigned rice_parameter_estimate = rice_parameter-1;
2654 partition_bits = (1+rice_parameter) * residual_samples;
2655#endif
2656#else
2657 partition_bits = 0;
2658#endif
2659 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
2660 for(i = 0; i < residual_samples; i++) {
2661#ifdef VARIABLE_RICE_BITS
2662#ifdef FLAC__SYMMETRIC_RICE
2663 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
2664#else
2665 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
2666#endif
2667#else
2668 partition_bits += FLAC__bitbuffer_rice_bits(residual[i], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
2669#endif
2670 }
2671#ifndef NO_RICE_SEARCH
2672 if(partition_bits < best_partition_bits) {
2673 best_rice_parameter = rice_parameter;
2674 best_partition_bits = partition_bits;
2675 }
2676 }
2677#endif
2678 parameters[0] = best_rice_parameter;
2679 bits_ += best_partition_bits;
2680 }
2681 else {
2682 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002683 unsigned partition_samples;
2684 FLAC__uint64 mean, k;
Josh Coalson8395d022001-07-12 21:25:22 +00002685 const unsigned partitions = 1u << partition_order;
2686 for(partition = residual_sample = 0; partition < partitions; partition++) {
2687 partition_samples = (residual_samples+predictor_order) >> partition_order;
2688 if(partition == 0) {
2689 if(partition_samples <= predictor_order)
2690 return false;
2691 else
2692 partition_samples -= predictor_order;
2693 }
2694 mean = 0;
2695 save_residual_sample = residual_sample;
2696 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++)
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002697 mean += abs_residual[residual_sample];
Josh Coalson8395d022001-07-12 21:25:22 +00002698 residual_sample = save_residual_sample;
2699#ifdef FLAC__SYMMETRIC_RICE
2700 mean += partition_samples >> 1; /* for rounding effect */
2701 mean /= partition_samples;
2702
2703 /* calc rice_parameter = floor(log2(mean)) */
2704 rice_parameter = 0;
2705 mean>>=1;
2706 while(mean) {
2707 rice_parameter++;
2708 mean >>= 1;
2709 }
2710#else
2711 /* calc rice_parameter ala LOCO-I */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002712 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson8395d022001-07-12 21:25:22 +00002713 ;
2714#endif
2715 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002716#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002717 fprintf(stderr, "clipping rice_parameter (%u -> %u) @3\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2718#endif
2719 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2720 }
2721
2722#ifndef NO_RICE_SEARCH
2723 if(rice_parameter_search_dist) {
2724 if(rice_parameter < rice_parameter_search_dist)
2725 min_rice_parameter = 0;
2726 else
2727 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
2728 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
2729 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002730#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002731 fprintf(stderr, "clipping rice_parameter (%u -> %u) @4\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2732#endif
2733 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2734 }
2735 }
2736 else
2737 min_rice_parameter = max_rice_parameter = rice_parameter;
2738
2739 best_partition_bits = 0xffffffff;
2740 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2741#endif
2742#ifdef VARIABLE_RICE_BITS
2743#ifdef FLAC__SYMMETRIC_RICE
2744 partition_bits = (2+rice_parameter) * partition_samples;
2745#else
2746 const unsigned rice_parameter_estimate = rice_parameter-1;
2747 partition_bits = (1+rice_parameter) * partition_samples;
2748#endif
2749#else
2750 partition_bits = 0;
2751#endif
2752 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
2753 save_residual_sample = residual_sample;
2754 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
2755#ifdef VARIABLE_RICE_BITS
2756#ifdef FLAC__SYMMETRIC_RICE
2757 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter);
2758#else
2759 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
2760#endif
2761#else
2762 partition_bits += FLAC__bitbuffer_rice_bits(residual[residual_sample], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
2763#endif
2764 }
2765#ifndef NO_RICE_SEARCH
2766 if(rice_parameter != max_rice_parameter)
2767 residual_sample = save_residual_sample;
2768 if(partition_bits < best_partition_bits) {
2769 best_rice_parameter = rice_parameter;
2770 best_partition_bits = partition_bits;
2771 }
2772 }
2773#endif
2774 parameters[partition] = best_rice_parameter;
2775 bits_ += best_partition_bits;
2776 }
2777 }
2778
2779 *bits = bits_;
2780 return true;
2781}
2782
2783#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalson6fe72f72002-08-20 04:01:59 +00002784FLAC__bool set_partitioned_rice_with_precompute_(
2785 const FLAC__int32 residual[],
2786 const FLAC__uint64 abs_residual_partition_sums[],
2787 const unsigned raw_bits_per_partition[],
2788 const unsigned residual_samples,
2789 const unsigned predictor_order,
2790 const unsigned suggested_rice_parameter,
2791 const unsigned rice_parameter_search_dist,
2792 const unsigned partition_order,
2793 const FLAC__bool search_for_escapes,
2794 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2795 unsigned *bits
2796)
Josh Coalson8395d022001-07-12 21:25:22 +00002797#else
Josh Coalson6fe72f72002-08-20 04:01:59 +00002798FLAC__bool set_partitioned_rice_with_precompute_(
2799 const FLAC__uint32 abs_residual[],
2800 const FLAC__uint64 abs_residual_partition_sums[],
2801 const unsigned raw_bits_per_partition[],
2802 const unsigned residual_samples,
2803 const unsigned predictor_order,
2804 const unsigned suggested_rice_parameter,
2805 const unsigned rice_parameter_search_dist,
2806 const unsigned partition_order,
2807 const FLAC__bool search_for_escapes,
2808 FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents,
2809 unsigned *bits
2810)
Josh Coalson8395d022001-07-12 21:25:22 +00002811#endif
2812{
2813 unsigned rice_parameter, partition_bits;
2814#ifndef NO_RICE_SEARCH
2815 unsigned best_partition_bits;
2816 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
2817#endif
2818 unsigned flat_bits;
2819 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002820 unsigned *parameters, *raw_bits;
Josh Coalson8395d022001-07-12 21:25:22 +00002821
2822 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
2823
Josh Coalsona37ba462002-08-19 21:36:39 +00002824 FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(partitioned_rice_contents, max(6, partition_order));
2825 parameters = partitioned_rice_contents->parameters;
2826 raw_bits = partitioned_rice_contents->raw_bits;
Josh Coalsonb7023aa2002-08-17 15:23:43 +00002827
Josh Coalson8395d022001-07-12 21:25:22 +00002828 if(partition_order == 0) {
2829 unsigned i;
2830
2831#ifndef NO_RICE_SEARCH
2832 if(rice_parameter_search_dist) {
2833 if(suggested_rice_parameter < rice_parameter_search_dist)
2834 min_rice_parameter = 0;
2835 else
2836 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
2837 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
2838 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002839#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002840 fprintf(stderr, "clipping rice_parameter (%u -> %u) @5\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2841#endif
2842 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2843 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002844 }
2845 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002846 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
Josh Coalson2051dd42001-04-12 22:22:34 +00002847
Josh Coalson034dfab2001-04-27 19:10:23 +00002848 best_partition_bits = 0xffffffff;
2849 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2850#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002851#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002852#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson034dfab2001-04-27 19:10:23 +00002853 partition_bits = (2+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002854#else
Josh Coalson352e0f62001-03-20 22:55:50 +00002855 const unsigned rice_parameter_estimate = rice_parameter-1;
Josh Coalson034dfab2001-04-27 19:10:23 +00002856 partition_bits = (1+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002857#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002858#else
2859 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002860#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00002861 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson352e0f62001-03-20 22:55:50 +00002862 for(i = 0; i < residual_samples; i++) {
2863#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002864#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson2051dd42001-04-12 22:22:34 +00002865 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002866#else
Josh Coalson2051dd42001-04-12 22:22:34 +00002867 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00002868#endif
2869#else
Josh Coalson2051dd42001-04-12 22:22:34 +00002870 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 +00002871#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00002872 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002873#ifndef NO_RICE_SEARCH
2874 if(partition_bits < best_partition_bits) {
2875 best_rice_parameter = rice_parameter;
2876 best_partition_bits = partition_bits;
Josh Coalson352e0f62001-03-20 22:55:50 +00002877 }
2878 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002879#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002880 if(search_for_escapes) {
2881 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;
2882 if(flat_bits <= best_partition_bits) {
2883 raw_bits[0] = raw_bits_per_partition[0];
2884 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
2885 best_partition_bits = flat_bits;
2886 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002887 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002888 parameters[0] = best_rice_parameter;
2889 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002890 }
2891 else {
Josh Coalson4dacd192001-06-06 21:11:44 +00002892 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002893 unsigned partition_samples;
2894 FLAC__uint64 mean, k;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002895 const unsigned partitions = 1u << partition_order;
Josh Coalson4dacd192001-06-06 21:11:44 +00002896 for(partition = residual_sample = 0; partition < partitions; partition++) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002897 partition_samples = (residual_samples+predictor_order) >> partition_order;
Josh Coalson034dfab2001-04-27 19:10:23 +00002898 if(partition == 0) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002899 if(partition_samples <= predictor_order)
2900 return false;
2901 else
2902 partition_samples -= predictor_order;
2903 }
Josh Coalson05d20792001-06-29 23:12:26 +00002904 mean = abs_residual_partition_sums[partition];
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002905#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson05d20792001-06-29 23:12:26 +00002906 mean += partition_samples >> 1; /* for rounding effect */
2907 mean /= partition_samples;
2908
Josh Coalson034dfab2001-04-27 19:10:23 +00002909 /* calc rice_parameter = floor(log2(mean)) */
2910 rice_parameter = 0;
2911 mean>>=1;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002912 while(mean) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002913 rice_parameter++;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002914 mean >>= 1;
2915 }
Josh Coalsonb9433f92001-03-17 01:07:00 +00002916#else
Josh Coalson05d20792001-06-29 23:12:26 +00002917 /* calc rice_parameter ala LOCO-I */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002918 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson05d20792001-06-29 23:12:26 +00002919 ;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002920#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002921 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002922#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002923 fprintf(stderr, "clipping rice_parameter (%u -> %u) @6\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2924#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002925 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002926 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002927
Josh Coalson034dfab2001-04-27 19:10:23 +00002928#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00002929 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002930 if(rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00002931 min_rice_parameter = 0;
2932 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002933 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
2934 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00002935 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002936#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002937 fprintf(stderr, "clipping rice_parameter (%u -> %u) @7\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2938#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00002939 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002940 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002941 }
2942 else
2943 min_rice_parameter = max_rice_parameter = rice_parameter;
Josh Coalson60f77d72001-04-25 02:16:36 +00002944
Josh Coalson034dfab2001-04-27 19:10:23 +00002945 best_partition_bits = 0xffffffff;
2946 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2947#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002948#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002949#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson034dfab2001-04-27 19:10:23 +00002950 partition_bits = (2+rice_parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002951#else
Josh Coalson034dfab2001-04-27 19:10:23 +00002952 const unsigned rice_parameter_estimate = rice_parameter-1;
2953 partition_bits = (1+rice_parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002954#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002955#else
2956 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002957#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002958 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson4dacd192001-06-06 21:11:44 +00002959 save_residual_sample = residual_sample;
2960 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
Josh Coalson352e0f62001-03-20 22:55:50 +00002961#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002962#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson4dacd192001-06-06 21:11:44 +00002963 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002964#else
Josh Coalson4dacd192001-06-06 21:11:44 +00002965 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00002966#endif
2967#else
Josh Coalson4dacd192001-06-06 21:11:44 +00002968 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 +00002969#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002970 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002971#ifndef NO_RICE_SEARCH
Josh Coalson4dacd192001-06-06 21:11:44 +00002972 if(rice_parameter != max_rice_parameter)
2973 residual_sample = save_residual_sample;
Josh Coalson034dfab2001-04-27 19:10:23 +00002974 if(partition_bits < best_partition_bits) {
2975 best_rice_parameter = rice_parameter;
2976 best_partition_bits = partition_bits;
2977 }
Josh Coalson2051dd42001-04-12 22:22:34 +00002978 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002979#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002980 if(search_for_escapes) {
2981 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;
2982 if(flat_bits <= best_partition_bits) {
2983 raw_bits[partition] = raw_bits_per_partition[partition];
2984 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
2985 best_partition_bits = flat_bits;
2986 }
Josh Coalson2051dd42001-04-12 22:22:34 +00002987 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002988 parameters[partition] = best_rice_parameter;
2989 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002990 }
2991 }
2992
2993 *bits = bits_;
2994 return true;
2995}
Josh Coalson859bc542001-03-27 22:22:27 +00002996
Josh Coalsonf1eff452002-07-31 07:05:33 +00002997unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples)
Josh Coalson859bc542001-03-27 22:22:27 +00002998{
2999 unsigned i, shift;
Josh Coalson77e3f312001-06-23 03:03:24 +00003000 FLAC__int32 x = 0;
Josh Coalson859bc542001-03-27 22:22:27 +00003001
3002 for(i = 0; i < samples && !(x&1); i++)
3003 x |= signal[i];
3004
3005 if(x == 0) {
3006 shift = 0;
3007 }
3008 else {
3009 for(shift = 0; !(x&1); shift++)
3010 x >>= 1;
3011 }
3012
3013 if(shift > 0) {
3014 for(i = 0; i < samples; i++)
3015 signal[i] >>= shift;
3016 }
3017
3018 return shift;
3019}
Josh Coalsond86e03b2002-08-03 21:56:15 +00003020
3021void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
3022{
3023 unsigned channel;
3024
3025 for(channel = 0; channel < channels; channel++)
3026 memcpy(&fifo->data[channel][fifo->tail], &input[channel][input_offset], sizeof(FLAC__int32) * wide_samples);
3027
3028 fifo->tail += wide_samples;
3029
3030 FLAC__ASSERT(fifo->tail <= fifo->size);
3031}
3032
3033void append_to_verify_fifo_interleaved_(verify_input_fifo *fifo, const FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
3034{
3035 unsigned channel;
3036 unsigned sample, wide_sample;
3037 unsigned tail = fifo->tail;
3038
3039 sample = input_offset * channels;
3040 for(wide_sample = 0; wide_sample < wide_samples; wide_sample++) {
3041 for(channel = 0; channel < channels; channel++)
3042 fifo->data[channel][tail] = input[sample++];
3043 tail++;
3044 }
3045 fifo->tail = tail;
3046
3047 FLAC__ASSERT(fifo->tail <= fifo->size);
3048}
3049
3050FLAC__StreamDecoderReadStatus verify_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data)
3051{
3052 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
3053 const unsigned encoded_bytes = encoder->private_->verify.output.bytes;
3054 (void)decoder;
3055
3056 if(encoder->private_->verify.needs_magic_hack) {
3057 FLAC__ASSERT(*bytes >= FLAC__STREAM_SYNC_LENGTH);
3058 *bytes = FLAC__STREAM_SYNC_LENGTH;
3059 memcpy(buffer, FLAC__STREAM_SYNC_STRING, *bytes);
3060 encoder->private_->verify.needs_magic_hack = false;
3061 }
3062 else {
3063 if(encoded_bytes == 0) {
Josh Coalsonfc2b7372002-08-16 05:39:34 +00003064 /*
3065 * If we get here, a FIFO underflow has occurred,
3066 * which means there is a bug somewhere.
3067 */
3068 FLAC__ASSERT(0);
Josh Coalsond86e03b2002-08-03 21:56:15 +00003069 return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
3070 }
3071 else if(encoded_bytes < *bytes)
3072 *bytes = encoded_bytes;
3073 memcpy(buffer, encoder->private_->verify.output.data, *bytes);
3074 encoder->private_->verify.output.data += *bytes;
3075 encoder->private_->verify.output.bytes -= *bytes;
3076 }
3077
3078 return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
3079}
3080
3081FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
3082{
3083 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder *)client_data;
3084 unsigned channel;
3085 const unsigned channels = FLAC__stream_decoder_get_channels(decoder);
3086 const unsigned blocksize = frame->header.blocksize;
3087 const unsigned bytes_per_block = sizeof(FLAC__int32) * blocksize;
3088
3089 for(channel = 0; channel < channels; channel++) {
3090 if(0 != memcmp(buffer[channel], encoder->private_->verify.input_fifo.data[channel], bytes_per_block)) {
3091 unsigned i, sample = 0;
3092 FLAC__int32 expect = 0, got = 0;
3093
3094 for(i = 0; i < blocksize; i++) {
3095 if(buffer[channel][i] != encoder->private_->verify.input_fifo.data[channel][i]) {
3096 sample = i;
3097 expect = (FLAC__int32)encoder->private_->verify.input_fifo.data[channel][i];
3098 got = (FLAC__int32)buffer[channel][i];
3099 break;
3100 }
3101 }
3102 FLAC__ASSERT(i < blocksize);
3103 FLAC__ASSERT(frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER);
3104 encoder->private_->verify.error_stats.absolute_sample = frame->header.number.sample_number + sample;
Josh Coalson5f39e9f2002-08-21 05:27:01 +00003105 encoder->private_->verify.error_stats.frame_number = (unsigned)(frame->header.number.sample_number / blocksize);
Josh Coalsond86e03b2002-08-03 21:56:15 +00003106 encoder->private_->verify.error_stats.channel = channel;
3107 encoder->private_->verify.error_stats.sample = sample;
3108 encoder->private_->verify.error_stats.expected = expect;
3109 encoder->private_->verify.error_stats.got = got;
3110 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA;
3111 return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
3112 }
3113 }
3114 /* dequeue the frame from the fifo */
3115 for(channel = 0; channel < channels; channel++) {
3116 memmove(&encoder->private_->verify.input_fifo.data[channel][0], &encoder->private_->verify.input_fifo.data[channel][blocksize], encoder->private_->verify.input_fifo.tail - blocksize);
3117 }
3118 encoder->private_->verify.input_fifo.tail -= blocksize;
3119 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
3120}
3121
3122void verify_metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
3123{
3124 (void)decoder, (void)metadata, (void)client_data;
3125}
3126
3127void verify_error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
3128{
3129 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
3130 (void)decoder, (void)status;
3131 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
3132}