blob: 306a6214ca62973c8c230e62938dc4fab901d74e [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 Coalsonbb7f6b92000-12-10 04:09:52 +000020#include <stdio.h>
21#include <stdlib.h> /* for malloc() */
22#include <string.h> /* for memcpy() */
Josh Coalson1b689822001-05-31 20:11:02 +000023#include "FLAC/assert.h"
Josh Coalsond86e03b2002-08-03 21:56:15 +000024#include "FLAC/stream_decoder.h"
Josh Coalson0a15c142001-06-13 17:59:57 +000025#include "protected/stream_encoder.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000026#include "private/bitbuffer.h"
Josh Coalsoneef56702001-03-30 00:45:22 +000027#include "private/bitmath.h"
Josh Coalson215af572001-03-27 01:15:58 +000028#include "private/crc.h"
Josh Coalsoncf30f502001-05-23 20:57:44 +000029#include "private/cpu.h"
Josh Coalson0a15c142001-06-13 17:59:57 +000030#include "private/stream_encoder_framing.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000031#include "private/fixed.h"
32#include "private/lpc.h"
Josh Coalsonfa37f1c2001-01-12 23:55:11 +000033#include "private/md5.h"
Josh Coalsond98c43d2001-05-13 05:17:01 +000034#include "private/memory.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000035
36#ifdef min
37#undef min
38#endif
39#define min(x,y) ((x)<(y)?(x):(y))
40
41#ifdef max
42#undef max
43#endif
44#define max(x,y) ((x)>(y)?(x):(y))
45
Josh Coalsond86e03b2002-08-03 21:56:15 +000046typedef struct {
47 FLAC__int32 *data[FLAC__MAX_CHANNELS];
48 unsigned size; /* of each data[] in samples */
49 unsigned tail;
50} verify_input_fifo;
51
52typedef struct {
53 const FLAC__byte *data;
54 unsigned capacity;
55 unsigned bytes;
56} verify_output;
57
58typedef enum {
59 ENCODER_IN_MAGIC = 0,
60 ENCODER_IN_METADATA = 1,
61 ENCODER_IN_AUDIO = 2
62} EncoderStateHint;
63
Josh Coalson0a15c142001-06-13 17:59:57 +000064/***********************************************************************
65 *
66 * Private class method prototypes
67 *
68 ***********************************************************************/
69
Josh Coalsonf1eff452002-07-31 07:05:33 +000070static void set_defaults_(FLAC__StreamEncoder *encoder);
71static void free_(FLAC__StreamEncoder *encoder);
72static FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size);
Josh Coalsond86e03b2002-08-03 21:56:15 +000073static FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples);
Josh Coalsonf1eff452002-07-31 07:05:33 +000074static FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame);
75static FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame);
76static FLAC__bool process_subframe_(FLAC__StreamEncoder *encoder, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool precompute_partition_sums, FLAC__bool verbatim_only, const FLAC__FrameHeader *frame_header, unsigned subframe_bps, const FLAC__int32 integer_signal[], const FLAC__real real_signal[], FLAC__Subframe *subframe[2], FLAC__int32 *residual[2], unsigned *best_subframe, unsigned *best_bits);
77static FLAC__bool add_subframe_(FLAC__StreamEncoder *encoder, const FLAC__FrameHeader *frame_header, unsigned subframe_bps, const FLAC__Subframe *subframe, FLAC__BitBuffer *frame);
78static unsigned evaluate_constant_subframe_(const FLAC__int32 signal, unsigned subframe_bps, FLAC__Subframe *subframe);
79static unsigned evaluate_fixed_subframe_(FLAC__StreamEncoder *encoder, const FLAC__int32 signal[], FLAC__int32 residual[], FLAC__uint32 abs_residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], unsigned blocksize, unsigned subframe_bps, unsigned order, unsigned rice_parameter, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool precompute_partition_sums, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, FLAC__Subframe *subframe);
80static unsigned evaluate_lpc_subframe_(FLAC__StreamEncoder *encoder, const FLAC__int32 signal[], FLAC__int32 residual[], FLAC__uint32 abs_residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], const FLAC__real lp_coeff[], unsigned blocksize, unsigned subframe_bps, unsigned order, unsigned qlp_coeff_precision, unsigned rice_parameter, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool precompute_partition_sums, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, FLAC__Subframe *subframe);
81static unsigned evaluate_verbatim_subframe_(const FLAC__int32 signal[], unsigned blocksize, unsigned subframe_bps, FLAC__Subframe *subframe);
82static unsigned find_best_partition_order_(struct FLAC__StreamEncoderPrivate *private_, const FLAC__int32 residual[], FLAC__uint32 abs_residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], unsigned residual_samples, unsigned predictor_order, unsigned rice_parameter, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool precompute_partition_sums, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, unsigned *best_partition_order, unsigned best_parameters[], unsigned best_raw_bits[]);
83static void precompute_partition_info_sums_(const FLAC__uint32 abs_residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order);
84static void precompute_partition_info_escapes_(const FLAC__int32 residual[], unsigned raw_bits_per_partition[], unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order);
Josh Coalson8395d022001-07-12 21:25:22 +000085#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalsonf1eff452002-07-31 07:05:33 +000086static FLAC__bool set_partitioned_rice_(const FLAC__uint32 abs_residual[], const FLAC__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned suggested_rice_parameter, const unsigned rice_parameter_search_dist, const unsigned partition_order, unsigned parameters[], unsigned *bits);
87static FLAC__bool set_partitioned_rice_with_precompute_(const FLAC__int32 residual[], const FLAC__uint64 abs_residual_partition_sums[], const unsigned raw_bits_per_partition[], const unsigned residual_samples, const unsigned predictor_order, const unsigned suggested_rice_parameter, const unsigned rice_parameter_search_dist, const unsigned partition_order, const FLAC__bool search_for_escapes, unsigned parameters[], unsigned raw_bits[], unsigned *bits);
Josh Coalson8395d022001-07-12 21:25:22 +000088#else
Josh Coalsonf1eff452002-07-31 07:05:33 +000089static FLAC__bool set_partitioned_rice_(const FLAC__uint32 abs_residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned suggested_rice_parameter, const unsigned rice_parameter_search_dist, const unsigned partition_order, unsigned parameters[], unsigned *bits);
90static FLAC__bool set_partitioned_rice_with_precompute_(const FLAC__uint32 abs_residual[], const FLAC__uint64 abs_residual_partition_sums[], const unsigned raw_bits_per_partition[], const unsigned residual_samples, const unsigned predictor_order, const unsigned suggested_rice_parameter, const unsigned rice_parameter_search_dist, const unsigned partition_order, const FLAC__bool search_for_escapes, unsigned parameters[], unsigned raw_bits[], unsigned *bits);
Josh Coalson0a15c142001-06-13 17:59:57 +000091#endif
Josh Coalsonf1eff452002-07-31 07:05:33 +000092static unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples);
Josh Coalsond86e03b2002-08-03 21:56:15 +000093/* verify-related routines: */
94static void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples);
95static void append_to_verify_fifo_interleaved_(verify_input_fifo *fifo, const FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples);
96static FLAC__StreamDecoderReadStatus verify_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data);
97static FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
98static void verify_metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
99static void verify_error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
Josh Coalson0a15c142001-06-13 17:59:57 +0000100
101/***********************************************************************
102 *
103 * Private class data
104 *
105 ***********************************************************************/
106
107typedef struct FLAC__StreamEncoderPrivate {
Josh Coalson8395d022001-07-12 21:25:22 +0000108 unsigned input_capacity; /* current size (in samples) of the signal and residual buffers */
Josh Coalson77e3f312001-06-23 03:03:24 +0000109 FLAC__int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
110 FLAC__int32 *integer_signal_mid_side[2]; /* the integer version of the mid-side input signal (stereo only) */
111 FLAC__real *real_signal[FLAC__MAX_CHANNELS]; /* the floating-point version of the input signal */
112 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 +0000113 unsigned subframe_bps[FLAC__MAX_CHANNELS]; /* the effective bits per sample of the input signal (stream bps - wasted bits) */
114 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 +0000115 FLAC__int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
116 FLAC__int32 *residual_workspace_mid_side[2][2];
Josh Coalson94e02cd2001-01-25 10:41:06 +0000117 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
118 FLAC__Subframe subframe_workspace_mid_side[2][2];
119 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
120 FLAC__Subframe *subframe_workspace_ptr_mid_side[2][2];
Josh Coalson8395d022001-07-12 21:25:22 +0000121 unsigned best_subframe[FLAC__MAX_CHANNELS]; /* index into the above workspaces */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000122 unsigned best_subframe_mid_side[2];
Josh Coalson8395d022001-07-12 21:25:22 +0000123 unsigned best_subframe_bits[FLAC__MAX_CHANNELS]; /* size in bits of the best subframe for each channel */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000124 unsigned best_subframe_bits_mid_side[2];
Josh Coalson77e3f312001-06-23 03:03:24 +0000125 FLAC__uint32 *abs_residual; /* workspace where abs(candidate residual) is stored */
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000126 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 +0000127 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 +0000128 FLAC__BitBuffer *frame; /* the current frame being worked on */
Josh Coalson8395d022001-07-12 21:25:22 +0000129 double loose_mid_side_stereo_frames_exact; /* exact number of frames the encoder will use before trying both independent and mid/side frames again */
130 unsigned loose_mid_side_stereo_frames; /* rounded number of frames the encoder will use before trying both independent and mid/side frames again */
131 unsigned loose_mid_side_stereo_frame_count; /* number of frames using the current channel assignment */
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000132 FLAC__ChannelAssignment last_channel_assignment;
Josh Coalsoncc682512002-06-08 04:53:42 +0000133 FLAC__StreamMetadata metadata;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000134 unsigned current_sample_number;
135 unsigned current_frame_number;
Josh Coalsonfa37f1c2001-01-12 23:55:11 +0000136 struct MD5Context md5context;
Josh Coalsoncf30f502001-05-23 20:57:44 +0000137 FLAC__CPUInfo cpuinfo;
Josh Coalson77e3f312001-06-23 03:03:24 +0000138 unsigned (*local_fixed_compute_best_predictor)(const FLAC__int32 data[], unsigned data_len, FLAC__real residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1]);
139 void (*local_lpc_compute_autocorrelation)(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]);
140 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[]);
141 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 +0000142 FLAC__bool use_wide_by_block; /* use slow 64-bit versions of some functions because of the block size */
143 FLAC__bool use_wide_by_partition; /* use slow 64-bit versions of some functions because of the min partition order and blocksize */
144 FLAC__bool use_wide_by_order; /* use slow 64-bit versions of some functions because of the lpc order */
145 FLAC__bool precompute_partition_sums; /* our initial guess as to whether precomputing the partitions sums will be a speed improvement */
Josh Coalson681c2932002-08-01 08:19:37 +0000146 FLAC__StreamEncoderWriteCallback write_callback;
147 FLAC__StreamEncoderMetadataCallback metadata_callback;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000148 void *client_data;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000149 /* unaligned (original) pointers to allocated data */
Josh Coalson77e3f312001-06-23 03:03:24 +0000150 FLAC__int32 *integer_signal_unaligned[FLAC__MAX_CHANNELS];
151 FLAC__int32 *integer_signal_mid_side_unaligned[2];
152 FLAC__real *real_signal_unaligned[FLAC__MAX_CHANNELS];
153 FLAC__real *real_signal_mid_side_unaligned[2];
154 FLAC__int32 *residual_workspace_unaligned[FLAC__MAX_CHANNELS][2];
155 FLAC__int32 *residual_workspace_mid_side_unaligned[2][2];
156 FLAC__uint32 *abs_residual_unaligned;
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000157 FLAC__uint64 *abs_residual_partition_sums_unaligned;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000158 unsigned *raw_bits_per_partition_unaligned;
Josh Coalson8084b052001-11-01 00:27:29 +0000159 /*
160 * These fields have been moved here from private function local
161 * declarations merely to save stack space during encoding.
162 */
Josh Coalsonf1eff452002-07-31 07:05:33 +0000163 FLAC__real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER]; /* from process_subframe_() */
164 unsigned parameters[2][1 << FLAC__MAX_RICE_PARTITION_ORDER], raw_bits[2][1 << FLAC__MAX_RICE_PARTITION_ORDER]; /* from find_best_partition_order_() */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000165 /*
166 * The data for the verify section
167 */
168 struct {
169 FLAC__StreamDecoder *decoder;
170 EncoderStateHint state_hint;
171 FLAC__bool needs_magic_hack;
172 verify_input_fifo input_fifo;
173 verify_output output;
174 struct {
175 FLAC__uint64 absolute_sample;
176 unsigned frame_number;
177 unsigned channel;
178 unsigned sample;
179 FLAC__int32 expected;
180 FLAC__int32 got;
181 } error_stats;
182 } verify;
Josh Coalson3262b0d2002-08-14 20:58:42 +0000183 FLAC__bool is_being_deleted; /* if true, call to ..._finish() from ..._delete() will not call the callbacks */
Josh Coalson0a15c142001-06-13 17:59:57 +0000184} FLAC__StreamEncoderPrivate;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000185
Josh Coalson0a15c142001-06-13 17:59:57 +0000186/***********************************************************************
187 *
188 * Public static class data
189 *
190 ***********************************************************************/
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000191
Josh Coalson57ba6f42002-06-07 05:27:37 +0000192const char * const FLAC__StreamEncoderStateString[] = {
Josh Coalson0a15c142001-06-13 17:59:57 +0000193 "FLAC__STREAM_ENCODER_OK",
Josh Coalsond86e03b2002-08-03 21:56:15 +0000194 "FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR",
195 "FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA",
Josh Coalson00e53872001-06-16 07:32:25 +0000196 "FLAC__STREAM_ENCODER_INVALID_CALLBACK",
Josh Coalson0a15c142001-06-13 17:59:57 +0000197 "FLAC__STREAM_ENCODER_INVALID_NUMBER_OF_CHANNELS",
198 "FLAC__STREAM_ENCODER_INVALID_BITS_PER_SAMPLE",
199 "FLAC__STREAM_ENCODER_INVALID_SAMPLE_RATE",
200 "FLAC__STREAM_ENCODER_INVALID_BLOCK_SIZE",
201 "FLAC__STREAM_ENCODER_INVALID_QLP_COEFF_PRECISION",
202 "FLAC__STREAM_ENCODER_MID_SIDE_CHANNELS_MISMATCH",
203 "FLAC__STREAM_ENCODER_MID_SIDE_SAMPLE_SIZE_MISMATCH",
204 "FLAC__STREAM_ENCODER_ILLEGAL_MID_SIDE_FORCE",
205 "FLAC__STREAM_ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER",
206 "FLAC__STREAM_ENCODER_NOT_STREAMABLE",
207 "FLAC__STREAM_ENCODER_FRAMING_ERROR",
Josh Coalson66075c12002-06-01 05:39:38 +0000208 "FLAC__STREAM_ENCODER_INVALID_METADATA",
Josh Coalson0a15c142001-06-13 17:59:57 +0000209 "FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING",
210 "FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_WRITING",
211 "FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR",
212 "FLAC__STREAM_ENCODER_ALREADY_INITIALIZED",
213 "FLAC__STREAM_ENCODER_UNINITIALIZED"
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000214};
215
Josh Coalson57ba6f42002-06-07 05:27:37 +0000216const char * const FLAC__StreamEncoderWriteStatusString[] = {
Josh Coalson5c491a12002-08-01 06:39:40 +0000217 "FLAC__STREAM_ENCODER_WRITE_STATUS_OK",
218 "FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR"
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000219};
220
Josh Coalson0a15c142001-06-13 17:59:57 +0000221/***********************************************************************
222 *
223 * Class constructor/destructor
224 *
Josh Coalsond86e03b2002-08-03 21:56:15 +0000225 */
Josh Coalson0a15c142001-06-13 17:59:57 +0000226FLAC__StreamEncoder *FLAC__stream_encoder_new()
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000227{
Josh Coalson0a15c142001-06-13 17:59:57 +0000228 FLAC__StreamEncoder *encoder;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000229
Josh Coalson0a15c142001-06-13 17:59:57 +0000230 FLAC__ASSERT(sizeof(int) >= 4); /* we want to die right away if this is not true */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000231
Josh Coalson0a15c142001-06-13 17:59:57 +0000232 encoder = (FLAC__StreamEncoder*)malloc(sizeof(FLAC__StreamEncoder));
233 if(encoder == 0) {
234 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000235 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000236 memset(encoder, 0, sizeof(FLAC__StreamEncoder));
237
Josh Coalsonfa697a92001-08-16 20:07:29 +0000238 encoder->protected_ = (FLAC__StreamEncoderProtected*)malloc(sizeof(FLAC__StreamEncoderProtected));
239 if(encoder->protected_ == 0) {
Josh Coalson0a15c142001-06-13 17:59:57 +0000240 free(encoder);
241 return 0;
Josh Coalsond98c43d2001-05-13 05:17:01 +0000242 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000243 memset(encoder->protected_, 0, sizeof(FLAC__StreamEncoderProtected));
244
Josh Coalsonfa697a92001-08-16 20:07:29 +0000245 encoder->private_ = (FLAC__StreamEncoderPrivate*)malloc(sizeof(FLAC__StreamEncoderPrivate));
246 if(encoder->private_ == 0) {
247 free(encoder->protected_);
Josh Coalson0a15c142001-06-13 17:59:57 +0000248 free(encoder);
249 return 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000250 }
Josh Coalsond86e03b2002-08-03 21:56:15 +0000251 memset(encoder->private_, 0, sizeof(FLAC__StreamEncoderPrivate));
252
Josh Coalsonaec256b2002-03-12 16:19:54 +0000253 encoder->private_->frame = FLAC__bitbuffer_new();
254 if(encoder->private_->frame == 0) {
255 free(encoder->private_);
256 free(encoder->protected_);
257 free(encoder);
258 return 0;
259 }
Josh Coalsond98c43d2001-05-13 05:17:01 +0000260
Josh Coalsonf1eff452002-07-31 07:05:33 +0000261 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000262
Josh Coalson3262b0d2002-08-14 20:58:42 +0000263 encoder->private_->is_being_deleted = false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000264 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000265
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000266 return encoder;
267}
268
Josh Coalson0a15c142001-06-13 17:59:57 +0000269void FLAC__stream_encoder_delete(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000270{
Josh Coalsonf1eff452002-07-31 07:05:33 +0000271 FLAC__ASSERT(0 != encoder);
272 FLAC__ASSERT(0 != encoder->protected_);
273 FLAC__ASSERT(0 != encoder->private_);
274 FLAC__ASSERT(0 != encoder->private_->frame);
Josh Coalson0a15c142001-06-13 17:59:57 +0000275
Josh Coalson3262b0d2002-08-14 20:58:42 +0000276 encoder->private_->is_being_deleted = true;
277
278 FLAC__stream_encoder_finish(encoder);
279
Josh Coalsond86e03b2002-08-03 21:56:15 +0000280 if(encoder->protected_->verify && 0 != encoder->private_->verify.decoder)
281 FLAC__stream_decoder_delete(encoder->private_->verify.decoder);
Josh Coalsonaec256b2002-03-12 16:19:54 +0000282 FLAC__bitbuffer_delete(encoder->private_->frame);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000283 free(encoder->private_);
284 free(encoder->protected_);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000285 free(encoder);
286}
287
Josh Coalson0a15c142001-06-13 17:59:57 +0000288/***********************************************************************
289 *
290 * Public class methods
291 *
292 ***********************************************************************/
293
Josh Coalson00e53872001-06-16 07:32:25 +0000294FLAC__StreamEncoderState FLAC__stream_encoder_init(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000295{
296 unsigned i;
297
Josh Coalsonf1eff452002-07-31 07:05:33 +0000298 FLAC__ASSERT(0 != encoder);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000299
Josh Coalsonfa697a92001-08-16 20:07:29 +0000300 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
301 return encoder->protected_->state = FLAC__STREAM_ENCODER_ALREADY_INITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000302
Josh Coalsonfa697a92001-08-16 20:07:29 +0000303 encoder->protected_->state = FLAC__STREAM_ENCODER_OK;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000304
Josh Coalsonfa697a92001-08-16 20:07:29 +0000305 if(0 == encoder->private_->write_callback || 0 == encoder->private_->metadata_callback)
306 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_CALLBACK;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000307
Josh Coalsonfa697a92001-08-16 20:07:29 +0000308 if(encoder->protected_->channels == 0 || encoder->protected_->channels > FLAC__MAX_CHANNELS)
309 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_NUMBER_OF_CHANNELS;
Josh Coalson69f1ee02001-01-24 00:54:43 +0000310
Josh Coalsonfa697a92001-08-16 20:07:29 +0000311 if(encoder->protected_->do_mid_side_stereo && encoder->protected_->channels != 2)
312 return encoder->protected_->state = FLAC__STREAM_ENCODER_MID_SIDE_CHANNELS_MISMATCH;
Josh Coalsond37d1352001-05-30 23:09:31 +0000313
Josh Coalsonfa697a92001-08-16 20:07:29 +0000314 if(encoder->protected_->loose_mid_side_stereo && !encoder->protected_->do_mid_side_stereo)
315 return encoder->protected_->state = FLAC__STREAM_ENCODER_ILLEGAL_MID_SIDE_FORCE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000316
Josh Coalsonfa697a92001-08-16 20:07:29 +0000317 if(encoder->protected_->bits_per_sample >= 32)
318 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 +0000319
Josh Coalson76c68bc2002-05-17 06:22:02 +0000320 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 +0000321 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_BITS_PER_SAMPLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000322
Josh Coalson0833f342002-07-15 05:31:55 +0000323 if(!FLAC__format_sample_rate_is_valid(encoder->protected_->sample_rate))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000324 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_SAMPLE_RATE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000325
Josh Coalsonfa697a92001-08-16 20:07:29 +0000326 if(encoder->protected_->blocksize < FLAC__MIN_BLOCK_SIZE || encoder->protected_->blocksize > FLAC__MAX_BLOCK_SIZE)
327 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_BLOCK_SIZE;
Josh Coalson0a15c142001-06-13 17:59:57 +0000328
Josh Coalsonfa697a92001-08-16 20:07:29 +0000329 if(encoder->protected_->blocksize < encoder->protected_->max_lpc_order)
330 return encoder->protected_->state = FLAC__STREAM_ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER;
Josh Coalson0a15c142001-06-13 17:59:57 +0000331
Josh Coalsonfa697a92001-08-16 20:07:29 +0000332 if(encoder->protected_->qlp_coeff_precision == 0) {
333 if(encoder->protected_->bits_per_sample < 16) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000334 /* @@@ need some data about how to set this here w.r.t. blocksize and sample rate */
335 /* @@@ until then we'll make a guess */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000336 encoder->protected_->qlp_coeff_precision = max(5, 2 + encoder->protected_->bits_per_sample / 2);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000337 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000338 else if(encoder->protected_->bits_per_sample == 16) {
339 if(encoder->protected_->blocksize <= 192)
340 encoder->protected_->qlp_coeff_precision = 7;
341 else if(encoder->protected_->blocksize <= 384)
342 encoder->protected_->qlp_coeff_precision = 8;
343 else if(encoder->protected_->blocksize <= 576)
344 encoder->protected_->qlp_coeff_precision = 9;
345 else if(encoder->protected_->blocksize <= 1152)
346 encoder->protected_->qlp_coeff_precision = 10;
347 else if(encoder->protected_->blocksize <= 2304)
348 encoder->protected_->qlp_coeff_precision = 11;
349 else if(encoder->protected_->blocksize <= 4608)
350 encoder->protected_->qlp_coeff_precision = 12;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000351 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000352 encoder->protected_->qlp_coeff_precision = 13;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000353 }
354 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000355 encoder->protected_->qlp_coeff_precision = min(13, 8*sizeof(FLAC__int32) - encoder->protected_->bits_per_sample - 1 - 2); /* @@@ -2 to keep things 32-bit safe */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000356 }
357 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000358 else if(encoder->protected_->qlp_coeff_precision < FLAC__MIN_QLP_COEFF_PRECISION || encoder->protected_->qlp_coeff_precision + encoder->protected_->bits_per_sample >= 8*sizeof(FLAC__uint32) || encoder->protected_->qlp_coeff_precision >= (1u<<FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN))
359 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_QLP_COEFF_PRECISION;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000360
Josh Coalsonfa697a92001-08-16 20:07:29 +0000361 if(encoder->protected_->streamable_subset) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +0000362 /*@@@ add check for blocksize here */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000363 if(encoder->protected_->bits_per_sample != 8 && encoder->protected_->bits_per_sample != 12 && encoder->protected_->bits_per_sample != 16 && encoder->protected_->bits_per_sample != 20 && encoder->protected_->bits_per_sample != 24)
364 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
365 if(encoder->protected_->sample_rate > 655350)
366 return encoder->protected_->state = FLAC__STREAM_ENCODER_NOT_STREAMABLE;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000367 }
368
Josh Coalsonfa697a92001-08-16 20:07:29 +0000369 if(encoder->protected_->max_residual_partition_order >= (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN))
370 encoder->protected_->max_residual_partition_order = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN) - 1;
371 if(encoder->protected_->min_residual_partition_order >= encoder->protected_->max_residual_partition_order)
372 encoder->protected_->min_residual_partition_order = encoder->protected_->max_residual_partition_order;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000373
Josh Coalson66075c12002-06-01 05:39:38 +0000374 /* validate metadata */
375 if(0 == encoder->protected_->metadata && encoder->protected_->num_metadata_blocks > 0)
376 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
377 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
378 if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_STREAMINFO)
379 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
380 else if(encoder->protected_->metadata[i]->type == FLAC__METADATA_TYPE_SEEKTABLE) {
Josh Coalson0833f342002-07-15 05:31:55 +0000381 if(!FLAC__format_seektable_is_legal(&encoder->protected_->metadata[i]->data.seek_table))
Josh Coalson66075c12002-06-01 05:39:38 +0000382 return encoder->protected_->state = FLAC__STREAM_ENCODER_INVALID_METADATA;
383 }
384 }
385
Josh Coalsonfa697a92001-08-16 20:07:29 +0000386 encoder->private_->input_capacity = 0;
387 for(i = 0; i < encoder->protected_->channels; i++) {
388 encoder->private_->integer_signal_unaligned[i] = encoder->private_->integer_signal[i] = 0;
389 encoder->private_->real_signal_unaligned[i] = encoder->private_->real_signal[i] = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000390 }
391 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000392 encoder->private_->integer_signal_mid_side_unaligned[i] = encoder->private_->integer_signal_mid_side[i] = 0;
393 encoder->private_->real_signal_mid_side_unaligned[i] = encoder->private_->real_signal_mid_side[i] = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000394 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000395 for(i = 0; i < encoder->protected_->channels; i++) {
396 encoder->private_->residual_workspace_unaligned[i][0] = encoder->private_->residual_workspace[i][0] = 0;
397 encoder->private_->residual_workspace_unaligned[i][1] = encoder->private_->residual_workspace[i][1] = 0;
398 encoder->private_->best_subframe[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000399 }
400 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000401 encoder->private_->residual_workspace_mid_side_unaligned[i][0] = encoder->private_->residual_workspace_mid_side[i][0] = 0;
402 encoder->private_->residual_workspace_mid_side_unaligned[i][1] = encoder->private_->residual_workspace_mid_side[i][1] = 0;
403 encoder->private_->best_subframe_mid_side[i] = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000404 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000405 for(i = 0; i < encoder->protected_->channels; i++) {
406 encoder->private_->subframe_workspace_ptr[i][0] = &encoder->private_->subframe_workspace[i][0];
407 encoder->private_->subframe_workspace_ptr[i][1] = &encoder->private_->subframe_workspace[i][1];
Josh Coalson94e02cd2001-01-25 10:41:06 +0000408 }
409 for(i = 0; i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000410 encoder->private_->subframe_workspace_ptr_mid_side[i][0] = &encoder->private_->subframe_workspace_mid_side[i][0];
411 encoder->private_->subframe_workspace_ptr_mid_side[i][1] = &encoder->private_->subframe_workspace_mid_side[i][1];
Josh Coalson94e02cd2001-01-25 10:41:06 +0000412 }
Josh Coalsonfa697a92001-08-16 20:07:29 +0000413 encoder->private_->abs_residual_unaligned = encoder->private_->abs_residual = 0;
414 encoder->private_->abs_residual_partition_sums_unaligned = encoder->private_->abs_residual_partition_sums = 0;
415 encoder->private_->raw_bits_per_partition_unaligned = encoder->private_->raw_bits_per_partition = 0;
416 encoder->private_->loose_mid_side_stereo_frames_exact = (double)encoder->protected_->sample_rate * 0.4 / (double)encoder->protected_->blocksize;
417 encoder->private_->loose_mid_side_stereo_frames = (unsigned)(encoder->private_->loose_mid_side_stereo_frames_exact + 0.5);
418 if(encoder->private_->loose_mid_side_stereo_frames == 0)
419 encoder->private_->loose_mid_side_stereo_frames = 1;
420 encoder->private_->loose_mid_side_stereo_frame_count = 0;
421 encoder->private_->current_sample_number = 0;
422 encoder->private_->current_frame_number = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000423
Josh Coalsonfa697a92001-08-16 20:07:29 +0000424 encoder->private_->use_wide_by_block = (encoder->protected_->bits_per_sample + FLAC__bitmath_ilog2(encoder->protected_->blocksize)+1 > 30);
425 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? */
426 encoder->private_->use_wide_by_partition = (false); /*@@@ need to set this */
Josh Coalson8395d022001-07-12 21:25:22 +0000427
Josh Coalsoncf30f502001-05-23 20:57:44 +0000428 /*
429 * get the CPU info and set the function pointers
430 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000431 FLAC__cpu_info(&encoder->private_->cpuinfo);
Josh Coalsoncf30f502001-05-23 20:57:44 +0000432 /* first default to the non-asm routines */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000433 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation;
434 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor;
435 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients;
436 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit = FLAC__lpc_compute_residual_from_qlp_coefficients;
Josh Coalsoncf30f502001-05-23 20:57:44 +0000437 /* now override with asm where appropriate */
Josh Coalsona3f7c2c2001-05-25 00:04:45 +0000438#ifndef FLAC__NO_ASM
Josh Coalsonfa697a92001-08-16 20:07:29 +0000439 if(encoder->private_->cpuinfo.use_asm) {
Josh Coalsoncf30f502001-05-23 20:57:44 +0000440#ifdef FLAC__CPU_IA32
Josh Coalsonfa697a92001-08-16 20:07:29 +0000441 FLAC__ASSERT(encoder->private_->cpuinfo.type == FLAC__CPUINFO_TYPE_IA32);
Josh Coalson034d38e2001-05-24 19:29:30 +0000442#ifdef FLAC__HAS_NASM
Josh Coalsonfa697a92001-08-16 20:07:29 +0000443 if(0 && encoder->private_->cpuinfo.data.ia32.sse) {
444 if(encoder->protected_->max_lpc_order < 4)
445 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_4;
446 else if(encoder->protected_->max_lpc_order < 8)
447 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_8;
448 else if(encoder->protected_->max_lpc_order < 12)
449 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_12;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000450 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000451 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
Josh Coalson021ad3b2001-07-18 00:25:52 +0000452 }
Josh Coalson395938e2001-11-15 21:53:25 +0000453 else if(encoder->private_->cpuinfo.data.ia32._3dnow)
Josh Coalsonfa697a92001-08-16 20:07:29 +0000454 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32_3dnow;
Josh Coalsonaa255362001-05-31 06:17:41 +0000455 else
Josh Coalsonfa697a92001-08-16 20:07:29 +0000456 encoder->private_->local_lpc_compute_autocorrelation = FLAC__lpc_compute_autocorrelation_asm_ia32;
457 if(encoder->private_->cpuinfo.data.ia32.mmx && encoder->private_->cpuinfo.data.ia32.cmov)
458 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_asm_ia32_mmx_cmov;
459 if(encoder->private_->cpuinfo.data.ia32.mmx) {
460 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
461 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 +0000462 }
463 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +0000464 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients = FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32;
465 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 +0000466 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000467#endif
Josh Coalson034d38e2001-05-24 19:29:30 +0000468#endif
Josh Coalson021ad3b2001-07-18 00:25:52 +0000469 }
Josh Coalsona3f7c2c2001-05-25 00:04:45 +0000470#endif
Josh Coalson8395d022001-07-12 21:25:22 +0000471 /* finally override based on wide-ness if necessary */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000472 if(encoder->private_->use_wide_by_block) {
473 encoder->private_->local_fixed_compute_best_predictor = FLAC__fixed_compute_best_predictor_wide;
Josh Coalson8395d022001-07-12 21:25:22 +0000474 }
Josh Coalsoncf30f502001-05-23 20:57:44 +0000475
Josh Coalson8395d022001-07-12 21:25:22 +0000476 /* we require precompute_partition_sums if do_escape_coding because of their intertwined nature */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000477 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 +0000478
Josh Coalsonf1eff452002-07-31 07:05:33 +0000479 if(!resize_buffers_(encoder, encoder->protected_->blocksize)) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000480 /* the above function sets the state for us in case of an error */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000481 return encoder->protected_->state;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000482 }
Josh Coalsonaec256b2002-03-12 16:19:54 +0000483
484 if(!FLAC__bitbuffer_init(encoder->private_->frame))
485 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000486
487 /*
Josh Coalsond86e03b2002-08-03 21:56:15 +0000488 * Set up the verify stuff if necessary
489 */
490 if(encoder->protected_->verify) {
491 /*
492 * First, set up the fifo which will hold the
493 * original signal to compare against
494 */
495 encoder->private_->verify.input_fifo.size = encoder->protected_->blocksize;
496 for(i = 0; i < encoder->protected_->channels; i++) {
497 if(0 == (encoder->private_->verify.input_fifo.data[i] = (FLAC__int32*)malloc(sizeof(FLAC__int32) * encoder->private_->verify.input_fifo.size)))
498 return encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
499 }
500 encoder->private_->verify.input_fifo.tail = 0;
501
502 /*
503 * Now set up a stream decoder for verification
504 */
505 encoder->private_->verify.decoder = FLAC__stream_decoder_new();
506 if(0 == encoder->private_->verify.decoder)
507 return encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
508
509 FLAC__stream_decoder_set_read_callback(encoder->private_->verify.decoder, verify_read_callback_);
510 FLAC__stream_decoder_set_write_callback(encoder->private_->verify.decoder, verify_write_callback_);
511 FLAC__stream_decoder_set_metadata_callback(encoder->private_->verify.decoder, verify_metadata_callback_);
512 FLAC__stream_decoder_set_error_callback(encoder->private_->verify.decoder, verify_error_callback_);
513 FLAC__stream_decoder_set_client_data(encoder->private_->verify.decoder, encoder);
514 if(FLAC__stream_decoder_init(encoder->private_->verify.decoder) != FLAC__STREAM_DECODER_SEARCH_FOR_METADATA)
515 return encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
516 }
Josh Coalson589f8c72002-08-07 23:54:55 +0000517 encoder->private_->verify.error_stats.absolute_sample = 0;
518 encoder->private_->verify.error_stats.frame_number = 0;
519 encoder->private_->verify.error_stats.channel = 0;
520 encoder->private_->verify.error_stats.sample = 0;
521 encoder->private_->verify.error_stats.expected = 0;
522 encoder->private_->verify.error_stats.got = 0;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000523
524 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000525 * write the stream header
526 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000527 if(encoder->protected_->verify)
528 encoder->private_->verify.state_hint = ENCODER_IN_MAGIC;
Josh Coalsonaec256b2002-03-12 16:19:54 +0000529 if(!FLAC__bitbuffer_write_raw_uint32(encoder->private_->frame, FLAC__STREAM_SYNC, FLAC__STREAM_SYNC_LEN))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000530 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000531 if(!write_bitbuffer_(encoder, 0)) {
532 /* the above function sets the state for us in case of an error */
533 return encoder->protected_->state;
534 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000535
Josh Coalson5c491a12002-08-01 06:39:40 +0000536 /*
537 * write the STREAMINFO metadata block
538 */
Josh Coalsond86e03b2002-08-03 21:56:15 +0000539 if(encoder->protected_->verify)
540 encoder->private_->verify.state_hint = ENCODER_IN_METADATA;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000541 encoder->private_->metadata.type = FLAC__METADATA_TYPE_STREAMINFO;
Josh Coalson66075c12002-06-01 05:39:38 +0000542 encoder->private_->metadata.is_last = (encoder->protected_->num_metadata_blocks == 0);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000543 encoder->private_->metadata.length = FLAC__STREAM_METADATA_STREAMINFO_LENGTH;
544 encoder->private_->metadata.data.stream_info.min_blocksize = encoder->protected_->blocksize; /* this encoder uses the same blocksize for the whole stream */
545 encoder->private_->metadata.data.stream_info.max_blocksize = encoder->protected_->blocksize;
546 encoder->private_->metadata.data.stream_info.min_framesize = 0; /* we don't know this yet; have to fill it in later */
547 encoder->private_->metadata.data.stream_info.max_framesize = 0; /* we don't know this yet; have to fill it in later */
548 encoder->private_->metadata.data.stream_info.sample_rate = encoder->protected_->sample_rate;
549 encoder->private_->metadata.data.stream_info.channels = encoder->protected_->channels;
550 encoder->private_->metadata.data.stream_info.bits_per_sample = encoder->protected_->bits_per_sample;
551 encoder->private_->metadata.data.stream_info.total_samples = encoder->protected_->total_samples_estimate; /* we will replace this later with the real total */
552 memset(encoder->private_->metadata.data.stream_info.md5sum, 0, 16); /* we don't know this yet; have to fill it in later */
553 MD5Init(&encoder->private_->md5context);
Josh Coalson5c491a12002-08-01 06:39:40 +0000554 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
555 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
556 return false;
557 }
Josh Coalsonaec256b2002-03-12 16:19:54 +0000558 if(!FLAC__add_metadata_block(&encoder->private_->metadata, encoder->private_->frame))
Josh Coalsonfa697a92001-08-16 20:07:29 +0000559 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000560 if(!write_bitbuffer_(encoder, 0)) {
561 /* the above function sets the state for us in case of an error */
562 return encoder->protected_->state;
563 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000564
Josh Coalson5c491a12002-08-01 06:39:40 +0000565 /*
566 * Now that the STREAMINFO block is written, we can init this to an
567 * absurdly-high value...
568 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000569 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 +0000570 /* ... and clear this to 0 */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000571 encoder->private_->metadata.data.stream_info.total_samples = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000572
Josh Coalson5c491a12002-08-01 06:39:40 +0000573 /*
574 * write the user's metadata blocks
575 */
576 for(i = 0; i < encoder->protected_->num_metadata_blocks; i++) {
577 encoder->protected_->metadata[i]->is_last = (i == encoder->protected_->num_metadata_blocks - 1);
578 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
579 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
580 return false;
581 }
582 if(!FLAC__add_metadata_block(encoder->protected_->metadata[i], encoder->private_->frame))
583 return encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalsond86e03b2002-08-03 21:56:15 +0000584 if(!write_bitbuffer_(encoder, 0)) {
585 /* the above function sets the state for us in case of an error */
586 return encoder->protected_->state;
587 }
Josh Coalson5c491a12002-08-01 06:39:40 +0000588 }
589
Josh Coalsond86e03b2002-08-03 21:56:15 +0000590 if(encoder->protected_->verify)
591 encoder->private_->verify.state_hint = ENCODER_IN_AUDIO;
592
Josh Coalsonfa697a92001-08-16 20:07:29 +0000593 return encoder->protected_->state;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000594}
595
Josh Coalson0a15c142001-06-13 17:59:57 +0000596void FLAC__stream_encoder_finish(FLAC__StreamEncoder *encoder)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000597{
Josh Coalsonf1eff452002-07-31 07:05:33 +0000598 FLAC__ASSERT(0 != encoder);
Josh Coalson2b245f22002-08-07 17:10:50 +0000599
Josh Coalsonfa697a92001-08-16 20:07:29 +0000600 if(encoder->protected_->state == FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000601 return;
Josh Coalson2b245f22002-08-07 17:10:50 +0000602
Josh Coalson3262b0d2002-08-14 20:58:42 +0000603 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +0000604 if(encoder->private_->current_sample_number != 0) {
605 encoder->protected_->blocksize = encoder->private_->current_sample_number;
606 process_frame_(encoder, true); /* true => is last frame */
607 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000608 }
Josh Coalson2b245f22002-08-07 17:10:50 +0000609
Josh Coalsonfa697a92001-08-16 20:07:29 +0000610 MD5Final(encoder->private_->metadata.data.stream_info.md5sum, &encoder->private_->md5context);
Josh Coalson2b245f22002-08-07 17:10:50 +0000611
Josh Coalson3262b0d2002-08-14 20:58:42 +0000612 if(encoder->protected_->state == FLAC__STREAM_ENCODER_OK && !encoder->private_->is_being_deleted) {
Josh Coalson2b245f22002-08-07 17:10:50 +0000613 encoder->private_->metadata_callback(encoder, &encoder->private_->metadata, encoder->private_->client_data);
614 }
Josh Coalson0a15c142001-06-13 17:59:57 +0000615
Josh Coalsond86e03b2002-08-03 21:56:15 +0000616 if(encoder->protected_->verify && 0 != encoder->private_->verify.decoder)
617 FLAC__stream_decoder_finish(encoder->private_->verify.decoder);
618
Josh Coalsonf1eff452002-07-31 07:05:33 +0000619 free_(encoder);
620 set_defaults_(encoder);
Josh Coalson92031602002-07-24 06:02:11 +0000621
Josh Coalsonfa697a92001-08-16 20:07:29 +0000622 encoder->protected_->state = FLAC__STREAM_ENCODER_UNINITIALIZED;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000623}
624
Josh Coalsond86e03b2002-08-03 21:56:15 +0000625FLAC__bool FLAC__stream_encoder_set_verify(FLAC__StreamEncoder *encoder, FLAC__bool value)
626{
627 FLAC__ASSERT(0 != encoder);
628 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
629 return false;
630 encoder->protected_->verify = value;
631 return true;
632}
633
Josh Coalson16556042002-05-29 05:51:24 +0000634FLAC__bool FLAC__stream_encoder_set_streamable_subset(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000635{
Josh Coalson92031602002-07-24 06:02:11 +0000636 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000637 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000638 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000639 encoder->protected_->streamable_subset = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000640 return true;
641}
642
Josh Coalson16556042002-05-29 05:51:24 +0000643FLAC__bool FLAC__stream_encoder_set_do_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000644{
Josh Coalson92031602002-07-24 06:02:11 +0000645 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000646 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000647 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000648 encoder->protected_->do_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000649 return true;
650}
651
Josh Coalson16556042002-05-29 05:51:24 +0000652FLAC__bool FLAC__stream_encoder_set_loose_mid_side_stereo(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000653{
Josh Coalson92031602002-07-24 06:02:11 +0000654 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000655 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000656 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000657 encoder->protected_->loose_mid_side_stereo = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000658 return true;
659}
660
Josh Coalson16556042002-05-29 05:51:24 +0000661FLAC__bool FLAC__stream_encoder_set_channels(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000662{
Josh Coalson92031602002-07-24 06:02:11 +0000663 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000664 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000665 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000666 encoder->protected_->channels = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000667 return true;
668}
669
Josh Coalson16556042002-05-29 05:51:24 +0000670FLAC__bool FLAC__stream_encoder_set_bits_per_sample(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000671{
Josh Coalson92031602002-07-24 06:02:11 +0000672 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000673 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000674 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000675 encoder->protected_->bits_per_sample = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000676 return true;
677}
678
Josh Coalson16556042002-05-29 05:51:24 +0000679FLAC__bool FLAC__stream_encoder_set_sample_rate(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000680{
Josh Coalson92031602002-07-24 06:02:11 +0000681 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000682 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000683 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000684 encoder->protected_->sample_rate = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000685 return true;
686}
687
Josh Coalson16556042002-05-29 05:51:24 +0000688FLAC__bool FLAC__stream_encoder_set_blocksize(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000689{
Josh Coalson92031602002-07-24 06:02:11 +0000690 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000691 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000692 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000693 encoder->protected_->blocksize = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000694 return true;
695}
696
Josh Coalson16556042002-05-29 05:51:24 +0000697FLAC__bool FLAC__stream_encoder_set_max_lpc_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000698{
Josh Coalson92031602002-07-24 06:02:11 +0000699 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000700 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000701 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000702 encoder->protected_->max_lpc_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000703 return true;
704}
705
Josh Coalson16556042002-05-29 05:51:24 +0000706FLAC__bool FLAC__stream_encoder_set_qlp_coeff_precision(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000707{
Josh Coalson92031602002-07-24 06:02:11 +0000708 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000709 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000710 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000711 encoder->protected_->qlp_coeff_precision = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000712 return true;
713}
714
Josh Coalson16556042002-05-29 05:51:24 +0000715FLAC__bool FLAC__stream_encoder_set_do_qlp_coeff_prec_search(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000716{
Josh Coalson92031602002-07-24 06:02:11 +0000717 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000718 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000719 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000720 encoder->protected_->do_qlp_coeff_prec_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000721 return true;
722}
723
Josh Coalson16556042002-05-29 05:51:24 +0000724FLAC__bool FLAC__stream_encoder_set_do_escape_coding(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson8395d022001-07-12 21:25:22 +0000725{
Josh Coalson92031602002-07-24 06:02:11 +0000726 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000727 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson8395d022001-07-12 21:25:22 +0000728 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +0000729#if 0
730 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000731 encoder->protected_->do_escape_coding = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +0000732#else
733 (void)value;
734#endif
Josh Coalson8395d022001-07-12 21:25:22 +0000735 return true;
736}
737
Josh Coalson16556042002-05-29 05:51:24 +0000738FLAC__bool FLAC__stream_encoder_set_do_exhaustive_model_search(FLAC__StreamEncoder *encoder, FLAC__bool value)
Josh Coalson00e53872001-06-16 07:32:25 +0000739{
Josh Coalson92031602002-07-24 06:02:11 +0000740 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000741 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000742 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000743 encoder->protected_->do_exhaustive_model_search = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000744 return true;
745}
746
Josh Coalson16556042002-05-29 05:51:24 +0000747FLAC__bool FLAC__stream_encoder_set_min_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000748{
Josh Coalson92031602002-07-24 06:02:11 +0000749 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000750 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000751 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000752 encoder->protected_->min_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000753 return true;
754}
755
Josh Coalson16556042002-05-29 05:51:24 +0000756FLAC__bool FLAC__stream_encoder_set_max_residual_partition_order(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000757{
Josh Coalson92031602002-07-24 06:02:11 +0000758 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000759 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000760 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000761 encoder->protected_->max_residual_partition_order = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000762 return true;
763}
764
Josh Coalson16556042002-05-29 05:51:24 +0000765FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist(FLAC__StreamEncoder *encoder, unsigned value)
Josh Coalson00e53872001-06-16 07:32:25 +0000766{
Josh Coalson92031602002-07-24 06:02:11 +0000767 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000768 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000769 return false;
Josh Coalson680e3aa2002-08-01 07:32:17 +0000770#if 0
771 /*@@@ deprecated: */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000772 encoder->protected_->rice_parameter_search_dist = value;
Josh Coalson680e3aa2002-08-01 07:32:17 +0000773#else
774 (void)value;
775#endif
Josh Coalson00e53872001-06-16 07:32:25 +0000776 return true;
777}
778
Josh Coalson16556042002-05-29 05:51:24 +0000779FLAC__bool FLAC__stream_encoder_set_total_samples_estimate(FLAC__StreamEncoder *encoder, FLAC__uint64 value)
Josh Coalson00e53872001-06-16 07:32:25 +0000780{
Josh Coalson92031602002-07-24 06:02:11 +0000781 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000782 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000783 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000784 encoder->protected_->total_samples_estimate = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000785 return true;
786}
787
Josh Coalsoncc682512002-06-08 04:53:42 +0000788FLAC__bool FLAC__stream_encoder_set_metadata(FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, unsigned num_blocks)
Josh Coalson00e53872001-06-16 07:32:25 +0000789{
Josh Coalson92031602002-07-24 06:02:11 +0000790 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000791 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000792 return false;
Josh Coalson66075c12002-06-01 05:39:38 +0000793 encoder->protected_->metadata = metadata;
794 encoder->protected_->num_metadata_blocks = num_blocks;
Josh Coalson00e53872001-06-16 07:32:25 +0000795 return true;
796}
797
Josh Coalson681c2932002-08-01 08:19:37 +0000798FLAC__bool FLAC__stream_encoder_set_write_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback value)
Josh Coalson00e53872001-06-16 07:32:25 +0000799{
Josh Coalson92031602002-07-24 06:02:11 +0000800 FLAC__ASSERT(0 != encoder);
801 FLAC__ASSERT(0 != value);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000802 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000803 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000804 encoder->private_->write_callback = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000805 return true;
806}
807
Josh Coalson681c2932002-08-01 08:19:37 +0000808FLAC__bool FLAC__stream_encoder_set_metadata_callback(FLAC__StreamEncoder *encoder, FLAC__StreamEncoderMetadataCallback value)
Josh Coalson00e53872001-06-16 07:32:25 +0000809{
Josh Coalson92031602002-07-24 06:02:11 +0000810 FLAC__ASSERT(0 != encoder);
811 FLAC__ASSERT(0 != value);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000812 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000813 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000814 encoder->private_->metadata_callback = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000815 return true;
816}
817
Josh Coalson16556042002-05-29 05:51:24 +0000818FLAC__bool FLAC__stream_encoder_set_client_data(FLAC__StreamEncoder *encoder, void *value)
Josh Coalson00e53872001-06-16 07:32:25 +0000819{
Josh Coalson92031602002-07-24 06:02:11 +0000820 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000821 if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
Josh Coalson00e53872001-06-16 07:32:25 +0000822 return false;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000823 encoder->private_->client_data = value;
Josh Coalson00e53872001-06-16 07:32:25 +0000824 return true;
825}
826
827FLAC__StreamEncoderState FLAC__stream_encoder_get_state(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000828{
Josh Coalson92031602002-07-24 06:02:11 +0000829 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000830 return encoder->protected_->state;
Josh Coalson0a15c142001-06-13 17:59:57 +0000831}
832
Josh Coalsond86e03b2002-08-03 21:56:15 +0000833FLAC__StreamDecoderState FLAC__stream_encoder_get_verify_decoder_state(const FLAC__StreamEncoder *encoder)
834{
835 FLAC__ASSERT(0 != encoder);
836 if(encoder->protected_->verify)
837 return FLAC__stream_decoder_get_state(encoder->private_->verify.decoder);
838 else
839 return FLAC__STREAM_DECODER_UNINITIALIZED;
840}
841
Josh Coalson589f8c72002-08-07 23:54:55 +0000842void 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)
843{
844 FLAC__ASSERT(0 != encoder);
845 if(0 != absolute_sample)
846 *absolute_sample = encoder->private_->verify.error_stats.absolute_sample;
847 if(0 != frame_number)
848 *frame_number = encoder->private_->verify.error_stats.frame_number;
849 if(0 != channel)
850 *channel = encoder->private_->verify.error_stats.channel;
851 if(0 != sample)
852 *sample = encoder->private_->verify.error_stats.sample;
853 if(0 != expected)
854 *expected = encoder->private_->verify.error_stats.expected;
855 if(0 != got)
856 *got = encoder->private_->verify.error_stats.got;
857}
858
Josh Coalsond86e03b2002-08-03 21:56:15 +0000859FLAC__bool FLAC__stream_encoder_get_verify(const FLAC__StreamEncoder *encoder)
860{
861 FLAC__ASSERT(0 != encoder);
862 return encoder->protected_->verify;
863}
864
Josh Coalson77e3f312001-06-23 03:03:24 +0000865FLAC__bool FLAC__stream_encoder_get_streamable_subset(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000866{
Josh Coalson92031602002-07-24 06:02:11 +0000867 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000868 return encoder->protected_->streamable_subset;
Josh Coalson0a15c142001-06-13 17:59:57 +0000869}
870
Josh Coalson77e3f312001-06-23 03:03:24 +0000871FLAC__bool FLAC__stream_encoder_get_do_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000872{
Josh Coalson92031602002-07-24 06:02:11 +0000873 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000874 return encoder->protected_->do_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +0000875}
876
Josh Coalson77e3f312001-06-23 03:03:24 +0000877FLAC__bool FLAC__stream_encoder_get_loose_mid_side_stereo(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000878{
Josh Coalson92031602002-07-24 06:02:11 +0000879 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000880 return encoder->protected_->loose_mid_side_stereo;
Josh Coalson0a15c142001-06-13 17:59:57 +0000881}
882
Josh Coalson00e53872001-06-16 07:32:25 +0000883unsigned FLAC__stream_encoder_get_channels(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000884{
Josh Coalson92031602002-07-24 06:02:11 +0000885 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000886 return encoder->protected_->channels;
Josh Coalson0a15c142001-06-13 17:59:57 +0000887}
888
Josh Coalson00e53872001-06-16 07:32:25 +0000889unsigned FLAC__stream_encoder_get_bits_per_sample(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000890{
Josh Coalson92031602002-07-24 06:02:11 +0000891 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000892 return encoder->protected_->bits_per_sample;
Josh Coalson0a15c142001-06-13 17:59:57 +0000893}
894
Josh Coalson00e53872001-06-16 07:32:25 +0000895unsigned FLAC__stream_encoder_get_sample_rate(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000896{
Josh Coalson92031602002-07-24 06:02:11 +0000897 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000898 return encoder->protected_->sample_rate;
Josh Coalson0a15c142001-06-13 17:59:57 +0000899}
900
Josh Coalson00e53872001-06-16 07:32:25 +0000901unsigned FLAC__stream_encoder_get_blocksize(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000902{
Josh Coalson92031602002-07-24 06:02:11 +0000903 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000904 return encoder->protected_->blocksize;
Josh Coalson0a15c142001-06-13 17:59:57 +0000905}
906
Josh Coalson00e53872001-06-16 07:32:25 +0000907unsigned FLAC__stream_encoder_get_max_lpc_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000908{
Josh Coalson92031602002-07-24 06:02:11 +0000909 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000910 return encoder->protected_->max_lpc_order;
Josh Coalson0a15c142001-06-13 17:59:57 +0000911}
912
Josh Coalson00e53872001-06-16 07:32:25 +0000913unsigned FLAC__stream_encoder_get_qlp_coeff_precision(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000914{
Josh Coalson92031602002-07-24 06:02:11 +0000915 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000916 return encoder->protected_->qlp_coeff_precision;
Josh Coalson0a15c142001-06-13 17:59:57 +0000917}
918
Josh Coalson77e3f312001-06-23 03:03:24 +0000919FLAC__bool FLAC__stream_encoder_get_do_qlp_coeff_prec_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000920{
Josh Coalson92031602002-07-24 06:02:11 +0000921 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000922 return encoder->protected_->do_qlp_coeff_prec_search;
Josh Coalson0a15c142001-06-13 17:59:57 +0000923}
924
Josh Coalson8395d022001-07-12 21:25:22 +0000925FLAC__bool FLAC__stream_encoder_get_do_escape_coding(const FLAC__StreamEncoder *encoder)
926{
Josh Coalson92031602002-07-24 06:02:11 +0000927 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000928 return encoder->protected_->do_escape_coding;
Josh Coalson8395d022001-07-12 21:25:22 +0000929}
930
Josh Coalson77e3f312001-06-23 03:03:24 +0000931FLAC__bool FLAC__stream_encoder_get_do_exhaustive_model_search(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000932{
Josh Coalson92031602002-07-24 06:02:11 +0000933 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000934 return encoder->protected_->do_exhaustive_model_search;
Josh Coalson0a15c142001-06-13 17:59:57 +0000935}
936
Josh Coalson00e53872001-06-16 07:32:25 +0000937unsigned FLAC__stream_encoder_get_min_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000938{
Josh Coalson92031602002-07-24 06:02:11 +0000939 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000940 return encoder->protected_->min_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +0000941}
942
Josh Coalson00e53872001-06-16 07:32:25 +0000943unsigned FLAC__stream_encoder_get_max_residual_partition_order(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000944{
Josh Coalson92031602002-07-24 06:02:11 +0000945 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000946 return encoder->protected_->max_residual_partition_order;
Josh Coalson0a15c142001-06-13 17:59:57 +0000947}
948
Josh Coalson00e53872001-06-16 07:32:25 +0000949unsigned FLAC__stream_encoder_get_rice_parameter_search_dist(const FLAC__StreamEncoder *encoder)
Josh Coalson0a15c142001-06-13 17:59:57 +0000950{
Josh Coalson92031602002-07-24 06:02:11 +0000951 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000952 return encoder->protected_->rice_parameter_search_dist;
Josh Coalson0a15c142001-06-13 17:59:57 +0000953}
954
Josh Coalson3a7b2c92002-08-02 07:38:20 +0000955FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate(const FLAC__StreamEncoder *encoder)
956{
957 FLAC__ASSERT(0 != encoder);
958 return encoder->protected_->total_samples_estimate;
959}
960
Josh Coalson57ba6f42002-06-07 05:27:37 +0000961FLAC__bool FLAC__stream_encoder_process(FLAC__StreamEncoder *encoder, const FLAC__int32 * const buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000962{
963 unsigned i, j, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +0000964 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000965 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000966
Josh Coalsonf1eff452002-07-31 07:05:33 +0000967 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +0000968 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000969
970 j = 0;
Josh Coalsonfa697a92001-08-16 20:07:29 +0000971 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
Josh Coalsonaa255362001-05-31 06:17:41 +0000972 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +0000973 if(encoder->protected_->verify)
974 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
975
Josh Coalsonfa697a92001-08-16 20:07:29 +0000976 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +0000977 x = mid = side = buffer[0][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +0000978 encoder->private_->integer_signal[0][i] = x;
979 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson57ba6f42002-06-07 05:27:37 +0000980 x = buffer[1][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +0000981 encoder->private_->integer_signal[1][i] = x;
982 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +0000983 mid += x;
984 side -= x;
Josh Coalson57ba6f42002-06-07 05:27:37 +0000985 mid >>= 1; /* NOTE: not the same as 'mid = (buffer[0][j] + buffer[1][j]) / 2' ! */
Josh Coalsonfa697a92001-08-16 20:07:29 +0000986 encoder->private_->integer_signal_mid_side[1][i] = side;
987 encoder->private_->integer_signal_mid_side[0][i] = mid;
988 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
989 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
990 encoder->private_->current_sample_number++;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000991 }
Josh Coalsonaa255362001-05-31 06:17:41 +0000992 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +0000993 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +0000994 return false;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000995 }
Josh Coalsonaa255362001-05-31 06:17:41 +0000996 } while(j < samples);
997 }
998 else {
999 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001000 if(encoder->protected_->verify)
1001 append_to_verify_fifo_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1002
Josh Coalsonfa697a92001-08-16 20:07:29 +00001003 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001004 for(channel = 0; channel < channels; channel++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001005 x = buffer[channel][j];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001006 encoder->private_->integer_signal[channel][i] = x;
1007 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001008 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001009 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001010 }
1011 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001012 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001013 return false;
1014 }
1015 } while(j < samples);
1016 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001017
1018 return true;
1019}
1020
Josh Coalson57ba6f42002-06-07 05:27:37 +00001021FLAC__bool FLAC__stream_encoder_process_interleaved(FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], unsigned samples)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001022{
1023 unsigned i, j, k, channel;
Josh Coalson77e3f312001-06-23 03:03:24 +00001024 FLAC__int32 x, mid, side;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001025 const unsigned channels = encoder->protected_->channels, blocksize = encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001026
Josh Coalsonf1eff452002-07-31 07:05:33 +00001027 FLAC__ASSERT(0 != encoder);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001028 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001029
1030 j = k = 0;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001031 if(encoder->protected_->do_mid_side_stereo && channels == 2) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001032 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001033 if(encoder->protected_->verify)
1034 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1035
Josh Coalsonfa697a92001-08-16 20:07:29 +00001036 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001037 x = mid = side = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001038 encoder->private_->integer_signal[0][i] = x;
1039 encoder->private_->real_signal[0][i] = (FLAC__real)x;
Josh Coalson57ba6f42002-06-07 05:27:37 +00001040 x = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001041 encoder->private_->integer_signal[1][i] = x;
1042 encoder->private_->real_signal[1][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001043 mid += x;
1044 side -= x;
1045 mid >>= 1; /* NOTE: not the same as 'mid = (left + right) / 2' ! */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001046 encoder->private_->integer_signal_mid_side[1][i] = side;
1047 encoder->private_->integer_signal_mid_side[0][i] = mid;
1048 encoder->private_->real_signal_mid_side[1][i] = (FLAC__real)side;
1049 encoder->private_->real_signal_mid_side[0][i] = (FLAC__real)mid;
1050 encoder->private_->current_sample_number++;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001051 }
Josh Coalsonaa255362001-05-31 06:17:41 +00001052 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001053 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001054 return false;
1055 }
1056 } while(j < samples);
1057 }
1058 else {
1059 do {
Josh Coalsond86e03b2002-08-03 21:56:15 +00001060 if(encoder->protected_->verify)
1061 append_to_verify_fifo_interleaved_(&encoder->private_->verify.input_fifo, buffer, j, channels, min(blocksize-encoder->private_->current_sample_number, samples-j));
1062
Josh Coalsonfa697a92001-08-16 20:07:29 +00001063 for(i = encoder->private_->current_sample_number; i < blocksize && j < samples; i++, j++) {
Josh Coalsonaa255362001-05-31 06:17:41 +00001064 for(channel = 0; channel < channels; channel++) {
Josh Coalson57ba6f42002-06-07 05:27:37 +00001065 x = buffer[k++];
Josh Coalsonfa697a92001-08-16 20:07:29 +00001066 encoder->private_->integer_signal[channel][i] = x;
1067 encoder->private_->real_signal[channel][i] = (FLAC__real)x;
Josh Coalsonaa255362001-05-31 06:17:41 +00001068 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001069 encoder->private_->current_sample_number++;
Josh Coalsonaa255362001-05-31 06:17:41 +00001070 }
1071 if(i == blocksize) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001072 if(!process_frame_(encoder, false)) /* false => not last frame */
Josh Coalsonaa255362001-05-31 06:17:41 +00001073 return false;
1074 }
1075 } while(j < samples);
1076 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001077
1078 return true;
1079}
1080
Josh Coalsonf1eff452002-07-31 07:05:33 +00001081/***********************************************************************
1082 *
1083 * Private class methods
1084 *
1085 ***********************************************************************/
1086
1087void set_defaults_(FLAC__StreamEncoder *encoder)
Josh Coalson92031602002-07-24 06:02:11 +00001088{
1089 FLAC__ASSERT(0 != encoder);
1090
Josh Coalsond86e03b2002-08-03 21:56:15 +00001091 encoder->protected_->verify = false;
Josh Coalson92031602002-07-24 06:02:11 +00001092 encoder->protected_->streamable_subset = true;
1093 encoder->protected_->do_mid_side_stereo = false;
1094 encoder->protected_->loose_mid_side_stereo = false;
1095 encoder->protected_->channels = 2;
1096 encoder->protected_->bits_per_sample = 16;
1097 encoder->protected_->sample_rate = 44100;
1098 encoder->protected_->blocksize = 1152;
1099 encoder->protected_->max_lpc_order = 0;
1100 encoder->protected_->qlp_coeff_precision = 0;
1101 encoder->protected_->do_qlp_coeff_prec_search = false;
1102 encoder->protected_->do_exhaustive_model_search = false;
1103 encoder->protected_->do_escape_coding = false;
1104 encoder->protected_->min_residual_partition_order = 0;
1105 encoder->protected_->max_residual_partition_order = 0;
1106 encoder->protected_->rice_parameter_search_dist = 0;
1107 encoder->protected_->total_samples_estimate = 0;
1108 encoder->protected_->metadata = 0;
1109 encoder->protected_->num_metadata_blocks = 0;
1110
1111 encoder->private_->write_callback = 0;
1112 encoder->private_->metadata_callback = 0;
1113 encoder->private_->client_data = 0;
1114}
1115
Josh Coalsonf1eff452002-07-31 07:05:33 +00001116void free_(FLAC__StreamEncoder *encoder)
Josh Coalson639aeb02002-07-25 05:38:23 +00001117{
1118 unsigned i, channel;
1119
Josh Coalsonf1eff452002-07-31 07:05:33 +00001120 FLAC__ASSERT(0 != encoder);
Josh Coalson639aeb02002-07-25 05:38:23 +00001121 for(i = 0; i < encoder->protected_->channels; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001122 if(0 != encoder->private_->integer_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001123 free(encoder->private_->integer_signal_unaligned[i]);
1124 encoder->private_->integer_signal_unaligned[i] = 0;
1125 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001126 if(0 != encoder->private_->real_signal_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001127 free(encoder->private_->real_signal_unaligned[i]);
1128 encoder->private_->real_signal_unaligned[i] = 0;
1129 }
1130 }
1131 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001132 if(0 != encoder->private_->integer_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001133 free(encoder->private_->integer_signal_mid_side_unaligned[i]);
1134 encoder->private_->integer_signal_mid_side_unaligned[i] = 0;
1135 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001136 if(0 != encoder->private_->real_signal_mid_side_unaligned[i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001137 free(encoder->private_->real_signal_mid_side_unaligned[i]);
1138 encoder->private_->real_signal_mid_side_unaligned[i] = 0;
1139 }
1140 }
1141 for(channel = 0; channel < encoder->protected_->channels; channel++) {
1142 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001143 if(0 != encoder->private_->residual_workspace_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001144 free(encoder->private_->residual_workspace_unaligned[channel][i]);
1145 encoder->private_->residual_workspace_unaligned[channel][i] = 0;
1146 }
1147 }
1148 }
1149 for(channel = 0; channel < 2; channel++) {
1150 for(i = 0; i < 2; i++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001151 if(0 != encoder->private_->residual_workspace_mid_side_unaligned[channel][i]) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001152 free(encoder->private_->residual_workspace_mid_side_unaligned[channel][i]);
1153 encoder->private_->residual_workspace_mid_side_unaligned[channel][i] = 0;
1154 }
1155 }
1156 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001157 if(0 != encoder->private_->abs_residual_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001158 free(encoder->private_->abs_residual_unaligned);
1159 encoder->private_->abs_residual_unaligned = 0;
1160 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001161 if(0 != encoder->private_->abs_residual_partition_sums_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001162 free(encoder->private_->abs_residual_partition_sums_unaligned);
1163 encoder->private_->abs_residual_partition_sums_unaligned = 0;
1164 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001165 if(0 != encoder->private_->raw_bits_per_partition_unaligned) {
Josh Coalson639aeb02002-07-25 05:38:23 +00001166 free(encoder->private_->raw_bits_per_partition_unaligned);
1167 encoder->private_->raw_bits_per_partition_unaligned = 0;
1168 }
Josh Coalsond86e03b2002-08-03 21:56:15 +00001169 if(encoder->protected_->verify) {
1170 for(i = 0; i < encoder->protected_->channels; i++) {
1171 if(0 != encoder->private_->verify.input_fifo.data[i]) {
1172 free(encoder->private_->verify.input_fifo.data[i]);
1173 encoder->private_->verify.input_fifo.data[i] = 0;
1174 }
1175 }
1176 }
Josh Coalson639aeb02002-07-25 05:38:23 +00001177 FLAC__bitbuffer_free(encoder->private_->frame);
1178}
1179
Josh Coalsonf1eff452002-07-31 07:05:33 +00001180FLAC__bool resize_buffers_(FLAC__StreamEncoder *encoder, unsigned new_size)
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001181{
Josh Coalson77e3f312001-06-23 03:03:24 +00001182 FLAC__bool ok;
Josh Coalson0a15c142001-06-13 17:59:57 +00001183 unsigned i, channel;
1184
1185 FLAC__ASSERT(new_size > 0);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001186 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
1187 FLAC__ASSERT(encoder->private_->current_sample_number == 0);
Josh Coalson0a15c142001-06-13 17:59:57 +00001188
1189 /* To avoid excessive malloc'ing, we only grow the buffer; no shrinking. */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001190 if(new_size <= encoder->private_->input_capacity)
Josh Coalson0a15c142001-06-13 17:59:57 +00001191 return true;
1192
1193 ok = true;
Josh Coalson8395d022001-07-12 21:25:22 +00001194
1195 /* WATCHOUT: FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx() requires that the input arrays (in our case the integer signals) have a buffer of up to 3 zeroes in front (at negative indices) for alignment purposes; we use 4 to keep the data well-aligned. */
1196
Josh Coalsonfa697a92001-08-16 20:07:29 +00001197 for(i = 0; ok && i < encoder->protected_->channels; i++) {
1198 ok = ok && FLAC__memory_alloc_aligned_int32_array(new_size+4, &encoder->private_->integer_signal_unaligned[i], &encoder->private_->integer_signal[i]);
1199 ok = ok && FLAC__memory_alloc_aligned_real_array(new_size, &encoder->private_->real_signal_unaligned[i], &encoder->private_->real_signal[i]);
1200 memset(encoder->private_->integer_signal[i], 0, sizeof(FLAC__int32)*4);
1201 encoder->private_->integer_signal[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00001202 }
1203 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001204 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]);
1205 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]);
1206 memset(encoder->private_->integer_signal_mid_side[i], 0, sizeof(FLAC__int32)*4);
1207 encoder->private_->integer_signal_mid_side[i] += 4;
Josh Coalson0a15c142001-06-13 17:59:57 +00001208 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001209 for(channel = 0; ok && channel < encoder->protected_->channels; channel++) {
Josh Coalson0a15c142001-06-13 17:59:57 +00001210 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001211 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 +00001212 }
1213 }
1214 for(channel = 0; ok && channel < 2; channel++) {
1215 for(i = 0; ok && i < 2; i++) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001216 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 +00001217 }
1218 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001219 ok = ok && FLAC__memory_alloc_aligned_uint32_array(new_size, &encoder->private_->abs_residual_unaligned, &encoder->private_->abs_residual);
1220 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 */
1221 ok = ok && FLAC__memory_alloc_aligned_uint64_array(new_size * 2, &encoder->private_->abs_residual_partition_sums_unaligned, &encoder->private_->abs_residual_partition_sums);
1222 if(encoder->protected_->do_escape_coding)
1223 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 +00001224
1225 if(ok)
Josh Coalsonfa697a92001-08-16 20:07:29 +00001226 encoder->private_->input_capacity = new_size;
Josh Coalson0a15c142001-06-13 17:59:57 +00001227 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00001228 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson0a15c142001-06-13 17:59:57 +00001229
1230 return ok;
1231}
1232
Josh Coalsond86e03b2002-08-03 21:56:15 +00001233FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples)
Josh Coalson5c491a12002-08-01 06:39:40 +00001234{
1235 const FLAC__byte *buffer;
1236 unsigned bytes;
1237
1238 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
1239
1240 FLAC__bitbuffer_get_buffer(encoder->private_->frame, &buffer, &bytes);
1241
Josh Coalsond86e03b2002-08-03 21:56:15 +00001242 if(encoder->protected_->verify) {
1243 encoder->private_->verify.output.data = buffer;
1244 encoder->private_->verify.output.bytes = bytes;
1245 if(encoder->private_->verify.state_hint == ENCODER_IN_MAGIC) {
1246 encoder->private_->verify.needs_magic_hack = true;
1247 }
1248 else {
1249 if(!FLAC__stream_decoder_process_single(encoder->private_->verify.decoder)) {
1250 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
1251 if(encoder->protected_->state != FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA)
1252 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
1253 return false;
1254 }
1255 }
1256 }
1257
1258 if(encoder->private_->write_callback(encoder, buffer, bytes, samples, encoder->private_->current_frame_number, encoder->private_->client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK) {
1259 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_WRITING;
Josh Coalson5c491a12002-08-01 06:39:40 +00001260 return false;
Josh Coalsond86e03b2002-08-03 21:56:15 +00001261 }
Josh Coalson5c491a12002-08-01 06:39:40 +00001262
1263 FLAC__bitbuffer_release_buffer(encoder->private_->frame);
1264
Josh Coalsond86e03b2002-08-03 21:56:15 +00001265 if(samples > 0) {
1266 encoder->private_->metadata.data.stream_info.min_framesize = min(bytes, encoder->private_->metadata.data.stream_info.min_framesize);
1267 encoder->private_->metadata.data.stream_info.max_framesize = max(bytes, encoder->private_->metadata.data.stream_info.max_framesize);
1268 }
1269
Josh Coalson5c491a12002-08-01 06:39:40 +00001270 return true;
1271}
1272
Josh Coalsonf1eff452002-07-31 07:05:33 +00001273FLAC__bool process_frame_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson0a15c142001-06-13 17:59:57 +00001274{
Josh Coalsonfa697a92001-08-16 20:07:29 +00001275 FLAC__ASSERT(encoder->protected_->state == FLAC__STREAM_ENCODER_OK);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001276
1277 /*
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00001278 * Accumulate raw signal to the MD5 signature
1279 */
Josh Coalson57ba6f42002-06-07 05:27:37 +00001280 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 +00001281 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonfa37f1c2001-01-12 23:55:11 +00001282 return false;
1283 }
1284
1285 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00001286 * Process the frame header and subframes into the frame bitbuffer
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001287 */
Josh Coalsonf1eff452002-07-31 07:05:33 +00001288 if(!process_subframes_(encoder, is_last_frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001289 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001290 return false;
1291 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001292
1293 /*
1294 * Zero-pad the frame to a byte_boundary
1295 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001296 if(!FLAC__bitbuffer_zero_pad_to_byte_boundary(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001297 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001298 return false;
1299 }
1300
1301 /*
Josh Coalson215af572001-03-27 01:15:58 +00001302 * CRC-16 the whole thing
1303 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001304 FLAC__ASSERT(FLAC__bitbuffer_is_byte_aligned(encoder->private_->frame));
1305 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 +00001306
1307 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001308 * Write it
1309 */
Josh Coalsond86e03b2002-08-03 21:56:15 +00001310 if(!write_bitbuffer_(encoder, encoder->protected_->blocksize)) {
1311 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001312 return false;
1313 }
1314
1315 /*
1316 * Get ready for the next frame
1317 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001318 encoder->private_->current_sample_number = 0;
1319 encoder->private_->current_frame_number++;
1320 encoder->private_->metadata.data.stream_info.total_samples += (FLAC__uint64)encoder->protected_->blocksize;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001321
1322 return true;
1323}
1324
Josh Coalsonf1eff452002-07-31 07:05:33 +00001325FLAC__bool process_subframes_(FLAC__StreamEncoder *encoder, FLAC__bool is_last_frame)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001326{
1327 FLAC__FrameHeader frame_header;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001328 unsigned channel, min_partition_order = encoder->protected_->min_residual_partition_order, max_partition_order;
Josh Coalson8395d022001-07-12 21:25:22 +00001329 FLAC__bool do_independent, do_mid_side, precompute_partition_sums;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001330
1331 /*
Josh Coalson60f77d72001-04-25 02:16:36 +00001332 * Calculate the min,max Rice partition orders
Josh Coalson94e02cd2001-01-25 10:41:06 +00001333 */
1334 if(is_last_frame) {
1335 max_partition_order = 0;
1336 }
1337 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001338 unsigned limit = 0, b = encoder->protected_->blocksize;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001339 while(!(b & 1)) {
1340 limit++;
1341 b >>= 1;
1342 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001343 max_partition_order = min(encoder->protected_->max_residual_partition_order, limit);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001344 }
Josh Coalson60f77d72001-04-25 02:16:36 +00001345 min_partition_order = min(min_partition_order, max_partition_order);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001346
Josh Coalsonfa697a92001-08-16 20:07:29 +00001347 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 +00001348
Josh Coalson94e02cd2001-01-25 10:41:06 +00001349 /*
1350 * Setup the frame
1351 */
Josh Coalsonaec256b2002-03-12 16:19:54 +00001352 if(!FLAC__bitbuffer_clear(encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001353 encoder->protected_->state = FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001354 return false;
1355 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001356 frame_header.blocksize = encoder->protected_->blocksize;
1357 frame_header.sample_rate = encoder->protected_->sample_rate;
1358 frame_header.channels = encoder->protected_->channels;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001359 frame_header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT; /* the default unless the encoder determines otherwise */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001360 frame_header.bits_per_sample = encoder->protected_->bits_per_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001361 frame_header.number_type = FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001362 frame_header.number.frame_number = encoder->private_->current_frame_number;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001363
1364 /*
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001365 * Figure out what channel assignments to try
1366 */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001367 if(encoder->protected_->do_mid_side_stereo) {
1368 if(encoder->protected_->loose_mid_side_stereo) {
1369 if(encoder->private_->loose_mid_side_stereo_frame_count == 0) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001370 do_independent = true;
1371 do_mid_side = true;
1372 }
1373 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001374 do_independent = (encoder->private_->last_channel_assignment == FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001375 do_mid_side = !do_independent;
1376 }
1377 }
1378 else {
1379 do_independent = true;
1380 do_mid_side = true;
1381 }
1382 }
1383 else {
1384 do_independent = true;
1385 do_mid_side = false;
1386 }
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001387
Josh Coalson1b689822001-05-31 20:11:02 +00001388 FLAC__ASSERT(do_independent || do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001389
1390 /*
Josh Coalson82b73242001-03-28 22:17:05 +00001391 * Check for wasted bits; set effective bps for each subframe
Josh Coalson859bc542001-03-27 22:22:27 +00001392 */
1393 if(do_independent) {
Josh Coalson82b73242001-03-28 22:17:05 +00001394 unsigned w;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001395 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001396 w = get_wasted_bits_(encoder->private_->integer_signal[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001397 encoder->private_->subframe_workspace[channel][0].wasted_bits = encoder->private_->subframe_workspace[channel][1].wasted_bits = w;
1398 encoder->private_->subframe_bps[channel] = encoder->protected_->bits_per_sample - w;
Josh Coalson82b73242001-03-28 22:17:05 +00001399 }
Josh Coalson859bc542001-03-27 22:22:27 +00001400 }
1401 if(do_mid_side) {
Josh Coalson82b73242001-03-28 22:17:05 +00001402 unsigned w;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001403 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson82b73242001-03-28 22:17:05 +00001404 for(channel = 0; channel < 2; channel++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001405 w = get_wasted_bits_(encoder->private_->integer_signal_mid_side[channel], encoder->protected_->blocksize);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001406 encoder->private_->subframe_workspace_mid_side[channel][0].wasted_bits = encoder->private_->subframe_workspace_mid_side[channel][1].wasted_bits = w;
1407 encoder->private_->subframe_bps_mid_side[channel] = encoder->protected_->bits_per_sample - w + (channel==0? 0:1);
Josh Coalson82b73242001-03-28 22:17:05 +00001408 }
Josh Coalson859bc542001-03-27 22:22:27 +00001409 }
1410
1411 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +00001412 * First do a normal encoding pass of each independent channel
1413 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001414 if(do_independent) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001415 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001416 if(!process_subframe_(encoder, min_partition_order, max_partition_order, precompute_partition_sums, false, &frame_header, encoder->private_->subframe_bps[channel], encoder->private_->integer_signal[channel], encoder->private_->real_signal[channel], encoder->private_->subframe_workspace_ptr[channel], encoder->private_->residual_workspace[channel], encoder->private_->best_subframe+channel, encoder->private_->best_subframe_bits+channel))
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001417 return false;
1418 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001419 }
1420
1421 /*
1422 * Now do mid and side channels if requested
1423 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001424 if(do_mid_side) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001425 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001426
1427 for(channel = 0; channel < 2; channel++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001428 if(!process_subframe_(encoder, min_partition_order, max_partition_order, precompute_partition_sums, false, &frame_header, encoder->private_->subframe_bps_mid_side[channel], encoder->private_->integer_signal_mid_side[channel], encoder->private_->real_signal_mid_side[channel], encoder->private_->subframe_workspace_ptr_mid_side[channel], encoder->private_->residual_workspace_mid_side[channel], encoder->private_->best_subframe_mid_side+channel, encoder->private_->best_subframe_bits_mid_side+channel))
Josh Coalson94e02cd2001-01-25 10:41:06 +00001429 return false;
1430 }
1431 }
1432
1433 /*
1434 * Compose the frame bitbuffer
1435 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001436 if(do_mid_side) {
Josh Coalson82b73242001-03-28 22:17:05 +00001437 unsigned left_bps = 0, right_bps = 0; /* initialized only to prevent superfluous compiler warning */
1438 FLAC__Subframe *left_subframe = 0, *right_subframe = 0; /* initialized only to prevent superfluous compiler warning */
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001439 FLAC__ChannelAssignment channel_assignment;
1440
Josh Coalsonfa697a92001-08-16 20:07:29 +00001441 FLAC__ASSERT(encoder->protected_->channels == 2);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001442
Josh Coalsonfa697a92001-08-16 20:07:29 +00001443 if(encoder->protected_->loose_mid_side_stereo && encoder->private_->loose_mid_side_stereo_frame_count > 0) {
1444 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 +00001445 }
1446 else {
1447 unsigned bits[4]; /* WATCHOUT - indexed by FLAC__ChannelAssignment */
1448 unsigned min_bits;
1449 FLAC__ChannelAssignment ca;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001450
Josh Coalson1b689822001-05-31 20:11:02 +00001451 FLAC__ASSERT(do_independent && do_mid_side);
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001452
1453 /* We have to figure out which channel assignent results in the smallest frame */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001454 bits[FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits [1];
1455 bits[FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE ] = encoder->private_->best_subframe_bits [0] + encoder->private_->best_subframe_bits_mid_side[1];
1456 bits[FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE ] = encoder->private_->best_subframe_bits [1] + encoder->private_->best_subframe_bits_mid_side[1];
1457 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 +00001458
1459 for(channel_assignment = 0, min_bits = bits[0], ca = 1; ca <= 3; ca++) {
1460 if(bits[ca] < min_bits) {
1461 min_bits = bits[ca];
1462 channel_assignment = ca;
1463 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001464 }
1465 }
1466
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001467 frame_header.channel_assignment = channel_assignment;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001468
Josh Coalsonaec256b2002-03-12 16:19:54 +00001469 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, is_last_frame, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001470 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001471 return false;
1472 }
1473
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001474 switch(channel_assignment) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001475 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001476 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
1477 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001478 break;
1479 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001480 left_subframe = &encoder->private_->subframe_workspace [0][encoder->private_->best_subframe [0]];
1481 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001482 break;
1483 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001484 left_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
1485 right_subframe = &encoder->private_->subframe_workspace [1][encoder->private_->best_subframe [1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001486 break;
1487 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001488 left_subframe = &encoder->private_->subframe_workspace_mid_side[0][encoder->private_->best_subframe_mid_side[0]];
1489 right_subframe = &encoder->private_->subframe_workspace_mid_side[1][encoder->private_->best_subframe_mid_side[1]];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001490 break;
1491 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001492 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001493 }
Josh Coalson82b73242001-03-28 22:17:05 +00001494
1495 switch(channel_assignment) {
1496 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001497 left_bps = encoder->private_->subframe_bps [0];
1498 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00001499 break;
1500 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001501 left_bps = encoder->private_->subframe_bps [0];
1502 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00001503 break;
1504 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001505 left_bps = encoder->private_->subframe_bps_mid_side[1];
1506 right_bps = encoder->private_->subframe_bps [1];
Josh Coalson82b73242001-03-28 22:17:05 +00001507 break;
1508 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalsonfa697a92001-08-16 20:07:29 +00001509 left_bps = encoder->private_->subframe_bps_mid_side[0];
1510 right_bps = encoder->private_->subframe_bps_mid_side[1];
Josh Coalson82b73242001-03-28 22:17:05 +00001511 break;
1512 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001513 FLAC__ASSERT(0);
Josh Coalson82b73242001-03-28 22:17:05 +00001514 }
1515
1516 /* note that encoder_add_subframe_ sets the state for us in case of an error */
Josh Coalsonf1eff452002-07-31 07:05:33 +00001517 if(!add_subframe_(encoder, &frame_header, left_bps , left_subframe , encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00001518 return false;
Josh Coalsonf1eff452002-07-31 07:05:33 +00001519 if(!add_subframe_(encoder, &frame_header, right_bps, right_subframe, encoder->private_->frame))
Josh Coalson82b73242001-03-28 22:17:05 +00001520 return false;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001521 }
1522 else {
Josh Coalsonaec256b2002-03-12 16:19:54 +00001523 if(!FLAC__frame_add_header(&frame_header, encoder->protected_->streamable_subset, is_last_frame, encoder->private_->frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001524 encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001525 return false;
1526 }
1527
Josh Coalsonfa697a92001-08-16 20:07:29 +00001528 for(channel = 0; channel < encoder->protected_->channels; channel++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001529 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 +00001530 /* the above function sets the state for us in case of an error */
1531 return false;
1532 }
1533 }
1534 }
1535
Josh Coalsonfa697a92001-08-16 20:07:29 +00001536 if(encoder->protected_->loose_mid_side_stereo) {
1537 encoder->private_->loose_mid_side_stereo_frame_count++;
1538 if(encoder->private_->loose_mid_side_stereo_frame_count >= encoder->private_->loose_mid_side_stereo_frames)
1539 encoder->private_->loose_mid_side_stereo_frame_count = 0;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001540 }
1541
Josh Coalsonfa697a92001-08-16 20:07:29 +00001542 encoder->private_->last_channel_assignment = frame_header.channel_assignment;
Josh Coalsonb5e60e52001-01-28 09:27:27 +00001543
Josh Coalson94e02cd2001-01-25 10:41:06 +00001544 return true;
1545}
1546
Josh Coalsonf1eff452002-07-31 07:05:33 +00001547FLAC__bool process_subframe_(FLAC__StreamEncoder *encoder, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool precompute_partition_sums, FLAC__bool verbatim_only, const FLAC__FrameHeader *frame_header, unsigned subframe_bps, const FLAC__int32 integer_signal[], const FLAC__real real_signal[], FLAC__Subframe *subframe[2], FLAC__int32 *residual[2], unsigned *best_subframe, unsigned *best_bits)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001548{
Josh Coalson77e3f312001-06-23 03:03:24 +00001549 FLAC__real fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1];
1550 FLAC__real lpc_residual_bits_per_sample;
Josh Coalsonfa697a92001-08-16 20:07:29 +00001551 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 +00001552 FLAC__real lpc_error[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001553 unsigned min_lpc_order, max_lpc_order, lpc_order;
1554 unsigned min_fixed_order, max_fixed_order, guess_fixed_order, fixed_order;
1555 unsigned min_qlp_coeff_precision, max_qlp_coeff_precision, qlp_coeff_precision;
1556 unsigned rice_parameter;
1557 unsigned _candidate_bits, _best_bits;
1558 unsigned _best_subframe;
1559
1560 /* verbatim subframe is the baseline against which we measure other compressed subframes */
1561 _best_subframe = 0;
Josh Coalsonf1eff452002-07-31 07:05:33 +00001562 _best_bits = evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, subframe_bps, subframe[_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001563
1564 if(!verbatim_only && frame_header->blocksize >= FLAC__MAX_FIXED_ORDER) {
1565 /* check for constant subframe */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001566 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 Coalson94e02cd2001-01-25 10:41:06 +00001567 if(fixed_residual_bits_per_sample[1] == 0.0) {
1568 /* the above means integer_signal+FLAC__MAX_FIXED_ORDER is constant, now we just have to check the warmup samples */
1569 unsigned i, signal_is_constant = true;
1570 for(i = 1; i <= FLAC__MAX_FIXED_ORDER; i++) {
1571 if(integer_signal[0] != integer_signal[i]) {
1572 signal_is_constant = false;
1573 break;
1574 }
1575 }
1576 if(signal_is_constant) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001577 _candidate_bits = evaluate_constant_subframe_(integer_signal[0], subframe_bps, subframe[!_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001578 if(_candidate_bits < _best_bits) {
1579 _best_subframe = !_best_subframe;
1580 _best_bits = _candidate_bits;
1581 }
1582 }
1583 }
1584 else {
1585 /* encode fixed */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001586 if(encoder->protected_->do_exhaustive_model_search) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001587 min_fixed_order = 0;
1588 max_fixed_order = FLAC__MAX_FIXED_ORDER;
1589 }
1590 else {
1591 min_fixed_order = max_fixed_order = guess_fixed_order;
1592 }
1593 for(fixed_order = min_fixed_order; fixed_order <= max_fixed_order; fixed_order++) {
Josh Coalson77e3f312001-06-23 03:03:24 +00001594 if(fixed_residual_bits_per_sample[fixed_order] >= (FLAC__real)subframe_bps)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001595 continue; /* don't even try */
Josh Coalson46f2ae82001-02-08 00:27:21 +00001596 rice_parameter = (fixed_residual_bits_per_sample[fixed_order] > 0.0)? (unsigned)(fixed_residual_bits_per_sample[fixed_order]+0.5) : 0; /* 0.5 is for rounding */
Josh Coalsonbb6712e2001-04-24 22:54:07 +00001597#ifndef FLAC__SYMMETRIC_RICE
Josh Coalson46f2ae82001-02-08 00:27:21 +00001598 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
Josh Coalsonb9433f92001-03-17 01:07:00 +00001599#endif
Josh Coalson8395d022001-07-12 21:25:22 +00001600 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00001601#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00001602 fprintf(stderr, "clipping rice_parameter (%u -> %u) @0\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
1603#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00001604 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00001605 }
Josh Coalsonf1eff452002-07-31 07:05:33 +00001606 _candidate_bits = evaluate_fixed_subframe_(encoder, integer_signal, residual[!_best_subframe], encoder->private_->abs_residual, encoder->private_->abs_residual_partition_sums, encoder->private_->raw_bits_per_partition, frame_header->blocksize, subframe_bps, fixed_order, rice_parameter, min_partition_order, max_partition_order, precompute_partition_sums, encoder->protected_->do_escape_coding, encoder->protected_->rice_parameter_search_dist, subframe[!_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001607 if(_candidate_bits < _best_bits) {
1608 _best_subframe = !_best_subframe;
1609 _best_bits = _candidate_bits;
1610 }
1611 }
1612
1613 /* encode lpc */
Josh Coalsonfa697a92001-08-16 20:07:29 +00001614 if(encoder->protected_->max_lpc_order > 0) {
1615 if(encoder->protected_->max_lpc_order >= frame_header->blocksize)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001616 max_lpc_order = frame_header->blocksize-1;
1617 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00001618 max_lpc_order = encoder->protected_->max_lpc_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001619 if(max_lpc_order > 0) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001620 encoder->private_->local_lpc_compute_autocorrelation(real_signal, frame_header->blocksize, max_lpc_order+1, autoc);
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001621 /* if autoc[0] == 0.0, the signal is constant and we usually won't get here, but it can happen */
1622 if(autoc[0] != 0.0) {
Josh Coalson8084b052001-11-01 00:27:29 +00001623 FLAC__lpc_compute_lp_coefficients(autoc, max_lpc_order, encoder->private_->lp_coeff, lpc_error);
Josh Coalsonfa697a92001-08-16 20:07:29 +00001624 if(encoder->protected_->do_exhaustive_model_search) {
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001625 min_lpc_order = 1;
1626 }
1627 else {
Josh Coalson82b73242001-03-28 22:17:05 +00001628 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 +00001629 min_lpc_order = max_lpc_order = guess_lpc_order;
1630 }
Josh Coalsonfa697a92001-08-16 20:07:29 +00001631 if(encoder->protected_->do_qlp_coeff_prec_search) {
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001632 min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001633 max_qlp_coeff_precision = min(8*sizeof(FLAC__int32) - subframe_bps - 1 - 2, (1u<<FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN)-1); /* -2 to keep things 32-bit safe */
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001634 }
1635 else {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001636 min_qlp_coeff_precision = max_qlp_coeff_precision = encoder->protected_->qlp_coeff_precision;
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001637 }
1638 for(lpc_order = min_lpc_order; lpc_order <= max_lpc_order; lpc_order++) {
1639 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 +00001640 if(lpc_residual_bits_per_sample >= (FLAC__real)subframe_bps)
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001641 continue; /* don't even try */
1642 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 +00001643#ifndef FLAC__SYMMETRIC_RICE
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001644 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
Josh Coalsonb9433f92001-03-17 01:07:00 +00001645#endif
Josh Coalson8395d022001-07-12 21:25:22 +00001646 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00001647#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00001648 fprintf(stderr, "clipping rice_parameter (%u -> %u) @1\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
1649#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00001650 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00001651 }
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001652 for(qlp_coeff_precision = min_qlp_coeff_precision; qlp_coeff_precision <= max_qlp_coeff_precision; qlp_coeff_precision++) {
Josh Coalsonf1eff452002-07-31 07:05:33 +00001653 _candidate_bits = evaluate_lpc_subframe_(encoder, integer_signal, residual[!_best_subframe], encoder->private_->abs_residual, encoder->private_->abs_residual_partition_sums, encoder->private_->raw_bits_per_partition, encoder->private_->lp_coeff[lpc_order-1], frame_header->blocksize, subframe_bps, lpc_order, qlp_coeff_precision, rice_parameter, min_partition_order, max_partition_order, precompute_partition_sums, encoder->protected_->do_escape_coding, encoder->protected_->rice_parameter_search_dist, subframe[!_best_subframe]);
Josh Coalsonf4ce50b2001-02-28 23:45:15 +00001654 if(_candidate_bits > 0) { /* if == 0, there was a problem quantizing the lpcoeffs */
1655 if(_candidate_bits < _best_bits) {
1656 _best_subframe = !_best_subframe;
1657 _best_bits = _candidate_bits;
1658 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001659 }
1660 }
1661 }
1662 }
1663 }
1664 }
1665 }
1666 }
1667
1668 *best_subframe = _best_subframe;
1669 *best_bits = _best_bits;
1670
1671 return true;
1672}
1673
Josh Coalsonf1eff452002-07-31 07:05:33 +00001674FLAC__bool add_subframe_(FLAC__StreamEncoder *encoder, const FLAC__FrameHeader *frame_header, unsigned subframe_bps, const FLAC__Subframe *subframe, FLAC__BitBuffer *frame)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001675{
1676 switch(subframe->type) {
1677 case FLAC__SUBFRAME_TYPE_CONSTANT:
Josh Coalson82b73242001-03-28 22:17:05 +00001678 if(!FLAC__subframe_add_constant(&(subframe->data.constant), subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001679 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001680 return false;
1681 }
1682 break;
1683 case FLAC__SUBFRAME_TYPE_FIXED:
Josh Coalson82b73242001-03-28 22:17:05 +00001684 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 +00001685 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001686 return false;
1687 }
1688 break;
1689 case FLAC__SUBFRAME_TYPE_LPC:
Josh Coalson82b73242001-03-28 22:17:05 +00001690 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 +00001691 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001692 return false;
1693 }
1694 break;
1695 case FLAC__SUBFRAME_TYPE_VERBATIM:
Josh Coalson82b73242001-03-28 22:17:05 +00001696 if(!FLAC__subframe_add_verbatim(&(subframe->data.verbatim), frame_header->blocksize, subframe_bps, subframe->wasted_bits, frame)) {
Josh Coalsonfa697a92001-08-16 20:07:29 +00001697 encoder->protected_->state = FLAC__STREAM_ENCODER_FATAL_ERROR_WHILE_ENCODING;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001698 return false;
1699 }
1700 break;
1701 default:
Josh Coalson1b689822001-05-31 20:11:02 +00001702 FLAC__ASSERT(0);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001703 }
1704
1705 return true;
1706}
1707
Josh Coalsonf1eff452002-07-31 07:05:33 +00001708unsigned evaluate_constant_subframe_(const FLAC__int32 signal, unsigned subframe_bps, FLAC__Subframe *subframe)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001709{
1710 subframe->type = FLAC__SUBFRAME_TYPE_CONSTANT;
1711 subframe->data.constant.value = signal;
1712
Josh Coalson82b73242001-03-28 22:17:05 +00001713 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 +00001714}
1715
Josh Coalsonf1eff452002-07-31 07:05:33 +00001716unsigned evaluate_fixed_subframe_(FLAC__StreamEncoder *encoder, const FLAC__int32 signal[], FLAC__int32 residual[], FLAC__uint32 abs_residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], unsigned blocksize, unsigned subframe_bps, unsigned order, unsigned rice_parameter, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool precompute_partition_sums, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, FLAC__Subframe *subframe)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001717{
1718 unsigned i, residual_bits;
1719 const unsigned residual_samples = blocksize - order;
1720
1721 FLAC__fixed_compute_residual(signal+order, residual_samples, order, residual);
1722
1723 subframe->type = FLAC__SUBFRAME_TYPE_FIXED;
1724
1725 subframe->data.fixed.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
1726 subframe->data.fixed.residual = residual;
1727
Josh Coalsonf1eff452002-07-31 07:05:33 +00001728 residual_bits = find_best_partition_order_(encoder->private_, residual, abs_residual, abs_residual_partition_sums, raw_bits_per_partition, residual_samples, order, rice_parameter, min_partition_order, max_partition_order, precompute_partition_sums, do_escape_coding, rice_parameter_search_dist, &subframe->data.fixed.entropy_coding_method.data.partitioned_rice.order, subframe->data.fixed.entropy_coding_method.data.partitioned_rice.parameters, subframe->data.fixed.entropy_coding_method.data.partitioned_rice.raw_bits);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001729
1730 subframe->data.fixed.order = order;
1731 for(i = 0; i < order; i++)
1732 subframe->data.fixed.warmup[i] = signal[i];
1733
Josh Coalson82b73242001-03-28 22:17:05 +00001734 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 +00001735}
1736
Josh Coalsonf1eff452002-07-31 07:05:33 +00001737unsigned evaluate_lpc_subframe_(FLAC__StreamEncoder *encoder, const FLAC__int32 signal[], FLAC__int32 residual[], FLAC__uint32 abs_residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], const FLAC__real lp_coeff[], unsigned blocksize, unsigned subframe_bps, unsigned order, unsigned qlp_coeff_precision, unsigned rice_parameter, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool precompute_partition_sums, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, FLAC__Subframe *subframe)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001738{
Josh Coalson77e3f312001-06-23 03:03:24 +00001739 FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
Josh Coalson94e02cd2001-01-25 10:41:06 +00001740 unsigned i, residual_bits;
1741 int quantization, ret;
1742 const unsigned residual_samples = blocksize - order;
1743
Josh Coalson82b73242001-03-28 22:17:05 +00001744 ret = FLAC__lpc_quantize_coefficients(lp_coeff, order, qlp_coeff_precision, subframe_bps, qlp_coeff, &quantization);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001745 if(ret != 0)
1746 return 0; /* this is a hack to indicate to the caller that we can't do lp at this order on this subframe */
1747
Josh Coalson92d42402001-05-31 20:53:19 +00001748 if(subframe_bps <= 16 && qlp_coeff_precision <= 16)
Josh Coalsonfa697a92001-08-16 20:07:29 +00001749 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients_16bit(signal+order, residual_samples, qlp_coeff, order, quantization, residual);
Josh Coalson92d42402001-05-31 20:53:19 +00001750 else
Josh Coalsonfa697a92001-08-16 20:07:29 +00001751 encoder->private_->local_lpc_compute_residual_from_qlp_coefficients(signal+order, residual_samples, qlp_coeff, order, quantization, residual);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001752
1753 subframe->type = FLAC__SUBFRAME_TYPE_LPC;
1754
1755 subframe->data.lpc.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
1756 subframe->data.lpc.residual = residual;
1757
Josh Coalsonf1eff452002-07-31 07:05:33 +00001758 residual_bits = find_best_partition_order_(encoder->private_, residual, abs_residual, abs_residual_partition_sums, raw_bits_per_partition, residual_samples, order, rice_parameter, min_partition_order, max_partition_order, precompute_partition_sums, do_escape_coding, rice_parameter_search_dist, &subframe->data.lpc.entropy_coding_method.data.partitioned_rice.order, subframe->data.lpc.entropy_coding_method.data.partitioned_rice.parameters, subframe->data.lpc.entropy_coding_method.data.partitioned_rice.raw_bits);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001759
1760 subframe->data.lpc.order = order;
1761 subframe->data.lpc.qlp_coeff_precision = qlp_coeff_precision;
1762 subframe->data.lpc.quantization_level = quantization;
Josh Coalson77e3f312001-06-23 03:03:24 +00001763 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(FLAC__int32)*FLAC__MAX_LPC_ORDER);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001764 for(i = 0; i < order; i++)
1765 subframe->data.lpc.warmup[i] = signal[i];
1766
Josh Coalson82b73242001-03-28 22:17:05 +00001767 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 +00001768}
1769
Josh Coalsonf1eff452002-07-31 07:05:33 +00001770unsigned evaluate_verbatim_subframe_(const FLAC__int32 signal[], unsigned blocksize, unsigned subframe_bps, FLAC__Subframe *subframe)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001771{
1772 subframe->type = FLAC__SUBFRAME_TYPE_VERBATIM;
1773
1774 subframe->data.verbatim.data = signal;
1775
Josh Coalson82b73242001-03-28 22:17:05 +00001776 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 +00001777}
1778
Josh Coalsonf1eff452002-07-31 07:05:33 +00001779unsigned find_best_partition_order_(FLAC__StreamEncoderPrivate *private_, const FLAC__int32 residual[], FLAC__uint32 abs_residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned raw_bits_per_partition[], unsigned residual_samples, unsigned predictor_order, unsigned rice_parameter, unsigned min_partition_order, unsigned max_partition_order, FLAC__bool precompute_partition_sums, FLAC__bool do_escape_coding, unsigned rice_parameter_search_dist, unsigned *best_partition_order, unsigned best_parameters[], unsigned best_raw_bits[])
Josh Coalson94e02cd2001-01-25 10:41:06 +00001780{
Josh Coalson77e3f312001-06-23 03:03:24 +00001781 FLAC__int32 r;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001782 unsigned residual_bits, best_residual_bits = 0;
Josh Coalsonafcd8772001-04-18 22:59:25 +00001783 unsigned residual_sample;
Josh Coalson8084b052001-11-01 00:27:29 +00001784 unsigned best_parameters_index = 0;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001785 const unsigned blocksize = residual_samples + predictor_order;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001786
Josh Coalson2051dd42001-04-12 22:22:34 +00001787 /* compute abs(residual) for use later */
1788 for(residual_sample = 0; residual_sample < residual_samples; residual_sample++) {
1789 r = residual[residual_sample];
Josh Coalson77e3f312001-06-23 03:03:24 +00001790 abs_residual[residual_sample] = (FLAC__uint32)(r<0? -r : r);
Josh Coalson2051dd42001-04-12 22:22:34 +00001791 }
1792
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001793 while(max_partition_order > 0 && blocksize >> max_partition_order <= predictor_order)
1794 max_partition_order--;
1795 FLAC__ASSERT(blocksize >> max_partition_order > predictor_order);
1796 min_partition_order = min(min_partition_order, max_partition_order);
1797
Josh Coalson8395d022001-07-12 21:25:22 +00001798 if(precompute_partition_sums) {
1799 int partition_order;
1800 unsigned sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001801
Josh Coalsonf1eff452002-07-31 07:05:33 +00001802 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 +00001803
1804 if(do_escape_coding)
Josh Coalsonf1eff452002-07-31 07:05:33 +00001805 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 +00001806
1807 for(partition_order = (int)max_partition_order, sum = 0; partition_order >= (int)min_partition_order; partition_order--) {
1808#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalsonf1eff452002-07-31 07:05:33 +00001809 if(!set_partitioned_rice_with_precompute_(residual, abs_residual_partition_sums+sum, raw_bits_per_partition+sum, residual_samples, predictor_order, rice_parameter, rice_parameter_search_dist, (unsigned)partition_order, do_escape_coding, private_->parameters[!best_parameters_index], private_->raw_bits[!best_parameters_index], &residual_bits))
Josh Coalsonafcd8772001-04-18 22:59:25 +00001810#else
Josh Coalsonf1eff452002-07-31 07:05:33 +00001811 if(!set_partitioned_rice_with_precompute_(abs_residual, abs_residual_partition_sums+sum, raw_bits_per_partition+sum, residual_samples, predictor_order, rice_parameter, rice_parameter_search_dist, (unsigned)partition_order, do_escape_coding, private_->parameters[!best_parameters_index], private_->raw_bits[!best_parameters_index], &residual_bits))
Josh Coalson8395d022001-07-12 21:25:22 +00001812#endif
1813 {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001814 FLAC__ASSERT(best_residual_bits != 0);
1815 break;
Josh Coalson8395d022001-07-12 21:25:22 +00001816 }
1817 sum += 1u << partition_order;
1818 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
1819 best_residual_bits = residual_bits;
1820 *best_partition_order = partition_order;
1821 best_parameters_index = !best_parameters_index;
1822 }
Josh Coalsonafcd8772001-04-18 22:59:25 +00001823 }
1824 }
Josh Coalson8395d022001-07-12 21:25:22 +00001825 else {
1826 unsigned partition_order;
1827 for(partition_order = min_partition_order; partition_order <= max_partition_order; partition_order++) {
1828#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalsonf1eff452002-07-31 07:05:33 +00001829 if(!set_partitioned_rice_(abs_residual, residual, residual_samples, predictor_order, rice_parameter, rice_parameter_search_dist, partition_order, private_->parameters[!best_parameters_index], &residual_bits))
Josh Coalson8395d022001-07-12 21:25:22 +00001830#else
Josh Coalsonf1eff452002-07-31 07:05:33 +00001831 if(!set_partitioned_rice_(abs_residual, residual_samples, predictor_order, rice_parameter, rice_parameter_search_dist, partition_order, private_->parameters[!best_parameters_index], &residual_bits))
Josh Coalsonafcd8772001-04-18 22:59:25 +00001832#endif
Josh Coalson8395d022001-07-12 21:25:22 +00001833 {
1834 FLAC__ASSERT(best_residual_bits != 0);
1835 break;
1836 }
1837 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
1838 best_residual_bits = residual_bits;
1839 *best_partition_order = partition_order;
1840 best_parameters_index = !best_parameters_index;
1841 }
1842 }
1843 }
1844
Josh Coalson8084b052001-11-01 00:27:29 +00001845 memcpy(best_parameters, private_->parameters[best_parameters_index], sizeof(unsigned)*(1<<(*best_partition_order)));
1846 memcpy(best_raw_bits, private_->raw_bits[best_parameters_index], sizeof(unsigned)*(1<<(*best_partition_order)));
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001847
1848 return best_residual_bits;
1849}
1850
Josh Coalsonf1eff452002-07-31 07:05:33 +00001851void precompute_partition_info_sums_(const FLAC__uint32 abs_residual[], FLAC__uint64 abs_residual_partition_sums[], unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order)
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001852{
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001853 int partition_order;
Josh Coalsonaef013c2001-04-24 01:25:42 +00001854 unsigned from_partition, to_partition = 0;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001855 const unsigned blocksize = residual_samples + predictor_order;
1856
Josh Coalsonaef013c2001-04-24 01:25:42 +00001857 /* first do max_partition_order */
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001858 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001859 FLAC__uint64 abs_residual_partition_sum;
Josh Coalson77e3f312001-06-23 03:03:24 +00001860 FLAC__uint32 abs_r;
Josh Coalsonaef013c2001-04-24 01:25:42 +00001861 unsigned partition, partition_sample, partition_samples, residual_sample;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001862 const unsigned partitions = 1u << partition_order;
1863 const unsigned default_partition_samples = blocksize >> partition_order;
1864
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001865 FLAC__ASSERT(default_partition_samples > predictor_order);
1866
1867 for(partition = residual_sample = 0; partition < partitions; partition++) {
1868 partition_samples = default_partition_samples;
1869 if(partition == 0)
1870 partition_samples -= predictor_order;
1871 abs_residual_partition_sum = 0;
1872 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
1873 abs_r = abs_residual[residual_sample];
1874 abs_residual_partition_sum += abs_r;
1875 residual_sample++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001876 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001877 abs_residual_partition_sums[partition] = abs_residual_partition_sum;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001878 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001879 to_partition = partitions;
1880 break;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001881 }
Josh Coalsonf76a3612001-04-18 02:28:11 +00001882
Josh Coalson8395d022001-07-12 21:25:22 +00001883 /* now merge partitions for lower orders */
Josh Coalson6bd17572001-05-25 19:02:01 +00001884 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001885 FLAC__uint64 s;
Josh Coalsonaef013c2001-04-24 01:25:42 +00001886 unsigned i;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001887 const unsigned partitions = 1u << partition_order;
1888 for(i = 0; i < partitions; i++) {
Josh Coalsonaef013c2001-04-24 01:25:42 +00001889 s = abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00001890 from_partition++;
Josh Coalsonaef013c2001-04-24 01:25:42 +00001891 abs_residual_partition_sums[to_partition] = s + abs_residual_partition_sums[from_partition];
Josh Coalsonaef013c2001-04-24 01:25:42 +00001892 from_partition++;
1893 to_partition++;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00001894 }
1895 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001896}
Josh Coalson8395d022001-07-12 21:25:22 +00001897
Josh Coalsonf1eff452002-07-31 07:05:33 +00001898void precompute_partition_info_escapes_(const FLAC__int32 residual[], unsigned raw_bits_per_partition[], unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order)
Josh Coalson8395d022001-07-12 21:25:22 +00001899{
1900 int partition_order;
1901 unsigned from_partition, to_partition = 0;
1902 const unsigned blocksize = residual_samples + predictor_order;
1903
1904 /* first do max_partition_order */
1905 for(partition_order = (int)max_partition_order; partition_order >= 0; partition_order--) {
1906 FLAC__int32 r, residual_partition_min, residual_partition_max;
1907 unsigned silog2_min, silog2_max;
1908 unsigned partition, partition_sample, partition_samples, residual_sample;
1909 const unsigned partitions = 1u << partition_order;
1910 const unsigned default_partition_samples = blocksize >> partition_order;
1911
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001912 FLAC__ASSERT(default_partition_samples > predictor_order);
1913
1914 for(partition = residual_sample = 0; partition < partitions; partition++) {
1915 partition_samples = default_partition_samples;
1916 if(partition == 0)
1917 partition_samples -= predictor_order;
1918 residual_partition_min = residual_partition_max = 0;
1919 for(partition_sample = 0; partition_sample < partition_samples; partition_sample++) {
1920 r = residual[residual_sample];
1921 if(r < residual_partition_min)
1922 residual_partition_min = r;
1923 else if(r > residual_partition_max)
1924 residual_partition_max = r;
1925 residual_sample++;
Josh Coalson8395d022001-07-12 21:25:22 +00001926 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001927 silog2_min = FLAC__bitmath_silog2(residual_partition_min);
1928 silog2_max = FLAC__bitmath_silog2(residual_partition_max);
1929 raw_bits_per_partition[partition] = max(silog2_min, silog2_max);
Josh Coalson8395d022001-07-12 21:25:22 +00001930 }
Josh Coalsonb3347bd2001-07-16 18:06:41 +00001931 to_partition = partitions;
1932 break;
Josh Coalson8395d022001-07-12 21:25:22 +00001933 }
1934
1935 /* now merge partitions for lower orders */
1936 for(from_partition = 0, --partition_order; partition_order >= (int)min_partition_order; partition_order--) {
1937 unsigned m;
1938 unsigned i;
1939 const unsigned partitions = 1u << partition_order;
1940 for(i = 0; i < partitions; i++) {
1941 m = raw_bits_per_partition[from_partition];
1942 from_partition++;
1943 raw_bits_per_partition[to_partition] = max(m, raw_bits_per_partition[from_partition]);
1944 from_partition++;
1945 to_partition++;
1946 }
1947 }
1948}
Josh Coalson94e02cd2001-01-25 10:41:06 +00001949
Josh Coalson352e0f62001-03-20 22:55:50 +00001950#ifdef VARIABLE_RICE_BITS
1951#undef VARIABLE_RICE_BITS
1952#endif
Josh Coalson8395d022001-07-12 21:25:22 +00001953#ifndef DONT_ESTIMATE_RICE_BITS
Josh Coalson352e0f62001-03-20 22:55:50 +00001954#define VARIABLE_RICE_BITS(value, parameter) ((value) >> (parameter))
Josh Coalson8395d022001-07-12 21:25:22 +00001955#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00001956
Josh Coalson8395d022001-07-12 21:25:22 +00001957#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalsonf1eff452002-07-31 07:05:33 +00001958FLAC__bool set_partitioned_rice_(const FLAC__uint32 abs_residual[], const FLAC__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned suggested_rice_parameter, const unsigned rice_parameter_search_dist, const unsigned partition_order, unsigned parameters[], unsigned *bits)
Josh Coalson8395d022001-07-12 21:25:22 +00001959#else
Josh Coalsonf1eff452002-07-31 07:05:33 +00001960FLAC__bool set_partitioned_rice_(const FLAC__uint32 abs_residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned suggested_rice_parameter, const unsigned rice_parameter_search_dist, const unsigned partition_order, unsigned parameters[], unsigned *bits)
Josh Coalson8395d022001-07-12 21:25:22 +00001961#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00001962{
Josh Coalson034dfab2001-04-27 19:10:23 +00001963 unsigned rice_parameter, partition_bits;
1964#ifndef NO_RICE_SEARCH
1965 unsigned best_partition_bits;
1966 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
1967#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00001968 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
1969
Josh Coalson1b689822001-05-31 20:11:02 +00001970 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
Josh Coalson2051dd42001-04-12 22:22:34 +00001971
Josh Coalson94e02cd2001-01-25 10:41:06 +00001972 if(partition_order == 0) {
1973 unsigned i;
Josh Coalson352e0f62001-03-20 22:55:50 +00001974
Josh Coalson034dfab2001-04-27 19:10:23 +00001975#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00001976 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00001977 if(suggested_rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00001978 min_rice_parameter = 0;
1979 else
Josh Coalson034dfab2001-04-27 19:10:23 +00001980 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
1981 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00001982 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00001983#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00001984 fprintf(stderr, "clipping rice_parameter (%u -> %u) @2\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
1985#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00001986 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00001987 }
1988 }
1989 else
1990 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
1991
1992 best_partition_bits = 0xffffffff;
1993 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
1994#endif
1995#ifdef VARIABLE_RICE_BITS
1996#ifdef FLAC__SYMMETRIC_RICE
1997 partition_bits = (2+rice_parameter) * residual_samples;
1998#else
1999 const unsigned rice_parameter_estimate = rice_parameter-1;
2000 partition_bits = (1+rice_parameter) * residual_samples;
2001#endif
2002#else
2003 partition_bits = 0;
2004#endif
2005 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
2006 for(i = 0; i < residual_samples; i++) {
2007#ifdef VARIABLE_RICE_BITS
2008#ifdef FLAC__SYMMETRIC_RICE
2009 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
2010#else
2011 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
2012#endif
2013#else
2014 partition_bits += FLAC__bitbuffer_rice_bits(residual[i], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
2015#endif
2016 }
2017#ifndef NO_RICE_SEARCH
2018 if(partition_bits < best_partition_bits) {
2019 best_rice_parameter = rice_parameter;
2020 best_partition_bits = partition_bits;
2021 }
2022 }
2023#endif
2024 parameters[0] = best_rice_parameter;
2025 bits_ += best_partition_bits;
2026 }
2027 else {
2028 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002029 unsigned partition_samples;
2030 FLAC__uint64 mean, k;
Josh Coalson8395d022001-07-12 21:25:22 +00002031 const unsigned partitions = 1u << partition_order;
2032 for(partition = residual_sample = 0; partition < partitions; partition++) {
2033 partition_samples = (residual_samples+predictor_order) >> partition_order;
2034 if(partition == 0) {
2035 if(partition_samples <= predictor_order)
2036 return false;
2037 else
2038 partition_samples -= predictor_order;
2039 }
2040 mean = 0;
2041 save_residual_sample = residual_sample;
2042 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++)
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002043 mean += abs_residual[residual_sample];
Josh Coalson8395d022001-07-12 21:25:22 +00002044 residual_sample = save_residual_sample;
2045#ifdef FLAC__SYMMETRIC_RICE
2046 mean += partition_samples >> 1; /* for rounding effect */
2047 mean /= partition_samples;
2048
2049 /* calc rice_parameter = floor(log2(mean)) */
2050 rice_parameter = 0;
2051 mean>>=1;
2052 while(mean) {
2053 rice_parameter++;
2054 mean >>= 1;
2055 }
2056#else
2057 /* calc rice_parameter ala LOCO-I */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002058 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson8395d022001-07-12 21:25:22 +00002059 ;
2060#endif
2061 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002062#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002063 fprintf(stderr, "clipping rice_parameter (%u -> %u) @3\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2064#endif
2065 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2066 }
2067
2068#ifndef NO_RICE_SEARCH
2069 if(rice_parameter_search_dist) {
2070 if(rice_parameter < rice_parameter_search_dist)
2071 min_rice_parameter = 0;
2072 else
2073 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
2074 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
2075 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002076#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002077 fprintf(stderr, "clipping rice_parameter (%u -> %u) @4\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2078#endif
2079 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2080 }
2081 }
2082 else
2083 min_rice_parameter = max_rice_parameter = rice_parameter;
2084
2085 best_partition_bits = 0xffffffff;
2086 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2087#endif
2088#ifdef VARIABLE_RICE_BITS
2089#ifdef FLAC__SYMMETRIC_RICE
2090 partition_bits = (2+rice_parameter) * partition_samples;
2091#else
2092 const unsigned rice_parameter_estimate = rice_parameter-1;
2093 partition_bits = (1+rice_parameter) * partition_samples;
2094#endif
2095#else
2096 partition_bits = 0;
2097#endif
2098 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
2099 save_residual_sample = residual_sample;
2100 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
2101#ifdef VARIABLE_RICE_BITS
2102#ifdef FLAC__SYMMETRIC_RICE
2103 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter);
2104#else
2105 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
2106#endif
2107#else
2108 partition_bits += FLAC__bitbuffer_rice_bits(residual[residual_sample], rice_parameter); /* NOTE: we will need to pass in residual[] in addition to abs_residual[] */
2109#endif
2110 }
2111#ifndef NO_RICE_SEARCH
2112 if(rice_parameter != max_rice_parameter)
2113 residual_sample = save_residual_sample;
2114 if(partition_bits < best_partition_bits) {
2115 best_rice_parameter = rice_parameter;
2116 best_partition_bits = partition_bits;
2117 }
2118 }
2119#endif
2120 parameters[partition] = best_rice_parameter;
2121 bits_ += best_partition_bits;
2122 }
2123 }
2124
2125 *bits = bits_;
2126 return true;
2127}
2128
2129#ifdef DONT_ESTIMATE_RICE_BITS
Josh Coalsonf1eff452002-07-31 07:05:33 +00002130FLAC__bool set_partitioned_rice_with_precompute_(const FLAC__int32 residual[], const FLAC__uint64 abs_residual_partition_sums[], const unsigned raw_bits_per_partition[], const unsigned residual_samples, const unsigned predictor_order, const unsigned suggested_rice_parameter, const unsigned rice_parameter_search_dist, const unsigned partition_order, const FLAC__bool search_for_escapes, unsigned parameters[], unsigned raw_bits[], unsigned *bits)
Josh Coalson8395d022001-07-12 21:25:22 +00002131#else
Josh Coalsonf1eff452002-07-31 07:05:33 +00002132FLAC__bool set_partitioned_rice_with_precompute_(const FLAC__uint32 abs_residual[], const FLAC__uint64 abs_residual_partition_sums[], const unsigned raw_bits_per_partition[], const unsigned residual_samples, const unsigned predictor_order, const unsigned suggested_rice_parameter, const unsigned rice_parameter_search_dist, const unsigned partition_order, const FLAC__bool search_for_escapes, unsigned parameters[], unsigned raw_bits[], unsigned *bits)
Josh Coalson8395d022001-07-12 21:25:22 +00002133#endif
2134{
2135 unsigned rice_parameter, partition_bits;
2136#ifndef NO_RICE_SEARCH
2137 unsigned best_partition_bits;
2138 unsigned min_rice_parameter, max_rice_parameter, best_rice_parameter = 0;
2139#endif
2140 unsigned flat_bits;
2141 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
2142
2143 FLAC__ASSERT(suggested_rice_parameter < FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER);
2144
2145 if(partition_order == 0) {
2146 unsigned i;
2147
2148#ifndef NO_RICE_SEARCH
2149 if(rice_parameter_search_dist) {
2150 if(suggested_rice_parameter < rice_parameter_search_dist)
2151 min_rice_parameter = 0;
2152 else
2153 min_rice_parameter = suggested_rice_parameter - rice_parameter_search_dist;
2154 max_rice_parameter = suggested_rice_parameter + rice_parameter_search_dist;
2155 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002156#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002157 fprintf(stderr, "clipping rice_parameter (%u -> %u) @5\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2158#endif
2159 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
2160 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002161 }
2162 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002163 min_rice_parameter = max_rice_parameter = suggested_rice_parameter;
Josh Coalson2051dd42001-04-12 22:22:34 +00002164
Josh Coalson034dfab2001-04-27 19:10:23 +00002165 best_partition_bits = 0xffffffff;
2166 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2167#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002168#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002169#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson034dfab2001-04-27 19:10:23 +00002170 partition_bits = (2+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002171#else
Josh Coalson352e0f62001-03-20 22:55:50 +00002172 const unsigned rice_parameter_estimate = rice_parameter-1;
Josh Coalson034dfab2001-04-27 19:10:23 +00002173 partition_bits = (1+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002174#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002175#else
2176 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002177#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00002178 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson352e0f62001-03-20 22:55:50 +00002179 for(i = 0; i < residual_samples; i++) {
2180#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002181#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson2051dd42001-04-12 22:22:34 +00002182 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002183#else
Josh Coalson2051dd42001-04-12 22:22:34 +00002184 partition_bits += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00002185#endif
2186#else
Josh Coalson2051dd42001-04-12 22:22:34 +00002187 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 +00002188#endif
Josh Coalson2051dd42001-04-12 22:22:34 +00002189 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002190#ifndef NO_RICE_SEARCH
2191 if(partition_bits < best_partition_bits) {
2192 best_rice_parameter = rice_parameter;
2193 best_partition_bits = partition_bits;
Josh Coalson352e0f62001-03-20 22:55:50 +00002194 }
2195 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002196#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002197 if(search_for_escapes) {
2198 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;
2199 if(flat_bits <= best_partition_bits) {
2200 raw_bits[0] = raw_bits_per_partition[0];
2201 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
2202 best_partition_bits = flat_bits;
2203 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002204 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002205 parameters[0] = best_rice_parameter;
2206 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002207 }
2208 else {
Josh Coalson4dacd192001-06-06 21:11:44 +00002209 unsigned partition, residual_sample, save_residual_sample, partition_sample;
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002210 unsigned partition_samples;
2211 FLAC__uint64 mean, k;
Josh Coalsond4e0ddb2001-04-18 02:20:52 +00002212 const unsigned partitions = 1u << partition_order;
Josh Coalson4dacd192001-06-06 21:11:44 +00002213 for(partition = residual_sample = 0; partition < partitions; partition++) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002214 partition_samples = (residual_samples+predictor_order) >> partition_order;
Josh Coalson034dfab2001-04-27 19:10:23 +00002215 if(partition == 0) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00002216 if(partition_samples <= predictor_order)
2217 return false;
2218 else
2219 partition_samples -= predictor_order;
2220 }
Josh Coalson05d20792001-06-29 23:12:26 +00002221 mean = abs_residual_partition_sums[partition];
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002222#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson05d20792001-06-29 23:12:26 +00002223 mean += partition_samples >> 1; /* for rounding effect */
2224 mean /= partition_samples;
2225
Josh Coalson034dfab2001-04-27 19:10:23 +00002226 /* calc rice_parameter = floor(log2(mean)) */
2227 rice_parameter = 0;
2228 mean>>=1;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002229 while(mean) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002230 rice_parameter++;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002231 mean >>= 1;
2232 }
Josh Coalsonb9433f92001-03-17 01:07:00 +00002233#else
Josh Coalson05d20792001-06-29 23:12:26 +00002234 /* calc rice_parameter ala LOCO-I */
Josh Coalsonb3347bd2001-07-16 18:06:41 +00002235 for(rice_parameter = 0, k = partition_samples; k < mean; rice_parameter++, k <<= 1)
Josh Coalson05d20792001-06-29 23:12:26 +00002236 ;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002237#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002238 if(rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002239#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002240 fprintf(stderr, "clipping rice_parameter (%u -> %u) @6\n", rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2241#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002242 rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002243 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002244
Josh Coalson034dfab2001-04-27 19:10:23 +00002245#ifndef NO_RICE_SEARCH
Josh Coalson60f77d72001-04-25 02:16:36 +00002246 if(rice_parameter_search_dist) {
Josh Coalson034dfab2001-04-27 19:10:23 +00002247 if(rice_parameter < rice_parameter_search_dist)
Josh Coalson60f77d72001-04-25 02:16:36 +00002248 min_rice_parameter = 0;
2249 else
Josh Coalson034dfab2001-04-27 19:10:23 +00002250 min_rice_parameter = rice_parameter - rice_parameter_search_dist;
2251 max_rice_parameter = rice_parameter + rice_parameter_search_dist;
Josh Coalson8395d022001-07-12 21:25:22 +00002252 if(max_rice_parameter >= FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER) {
Josh Coalson31209492001-07-18 23:43:01 +00002253#ifdef DEBUG_VERBOSE
Josh Coalson8395d022001-07-12 21:25:22 +00002254 fprintf(stderr, "clipping rice_parameter (%u -> %u) @7\n", max_rice_parameter, FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1);
2255#endif
Josh Coalson60f77d72001-04-25 02:16:36 +00002256 max_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER - 1;
Josh Coalson8395d022001-07-12 21:25:22 +00002257 }
Josh Coalson60f77d72001-04-25 02:16:36 +00002258 }
2259 else
2260 min_rice_parameter = max_rice_parameter = rice_parameter;
Josh Coalson60f77d72001-04-25 02:16:36 +00002261
Josh Coalson034dfab2001-04-27 19:10:23 +00002262 best_partition_bits = 0xffffffff;
2263 for(rice_parameter = min_rice_parameter; rice_parameter <= max_rice_parameter; rice_parameter++) {
2264#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00002265#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002266#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson034dfab2001-04-27 19:10:23 +00002267 partition_bits = (2+rice_parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002268#else
Josh Coalson034dfab2001-04-27 19:10:23 +00002269 const unsigned rice_parameter_estimate = rice_parameter-1;
2270 partition_bits = (1+rice_parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00002271#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002272#else
2273 partition_bits = 0;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002274#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002275 partition_bits += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson4dacd192001-06-06 21:11:44 +00002276 save_residual_sample = residual_sample;
2277 for(partition_sample = 0; partition_sample < partition_samples; residual_sample++, partition_sample++) {
Josh Coalson352e0f62001-03-20 22:55:50 +00002278#ifdef VARIABLE_RICE_BITS
Josh Coalsonbb6712e2001-04-24 22:54:07 +00002279#ifdef FLAC__SYMMETRIC_RICE
Josh Coalson4dacd192001-06-06 21:11:44 +00002280 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00002281#else
Josh Coalson4dacd192001-06-06 21:11:44 +00002282 partition_bits += VARIABLE_RICE_BITS(abs_residual[residual_sample], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00002283#endif
2284#else
Josh Coalson4dacd192001-06-06 21:11:44 +00002285 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 +00002286#endif
Josh Coalson034dfab2001-04-27 19:10:23 +00002287 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002288#ifndef NO_RICE_SEARCH
Josh Coalson4dacd192001-06-06 21:11:44 +00002289 if(rice_parameter != max_rice_parameter)
2290 residual_sample = save_residual_sample;
Josh Coalson034dfab2001-04-27 19:10:23 +00002291 if(partition_bits < best_partition_bits) {
2292 best_rice_parameter = rice_parameter;
2293 best_partition_bits = partition_bits;
2294 }
Josh Coalson2051dd42001-04-12 22:22:34 +00002295 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002296#endif
Josh Coalson8395d022001-07-12 21:25:22 +00002297 if(search_for_escapes) {
2298 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;
2299 if(flat_bits <= best_partition_bits) {
2300 raw_bits[partition] = raw_bits_per_partition[partition];
2301 best_rice_parameter = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER;
2302 best_partition_bits = flat_bits;
2303 }
Josh Coalson2051dd42001-04-12 22:22:34 +00002304 }
Josh Coalson034dfab2001-04-27 19:10:23 +00002305 parameters[partition] = best_rice_parameter;
2306 bits_ += best_partition_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00002307 }
2308 }
2309
2310 *bits = bits_;
2311 return true;
2312}
Josh Coalson859bc542001-03-27 22:22:27 +00002313
Josh Coalsonf1eff452002-07-31 07:05:33 +00002314unsigned get_wasted_bits_(FLAC__int32 signal[], unsigned samples)
Josh Coalson859bc542001-03-27 22:22:27 +00002315{
2316 unsigned i, shift;
Josh Coalson77e3f312001-06-23 03:03:24 +00002317 FLAC__int32 x = 0;
Josh Coalson859bc542001-03-27 22:22:27 +00002318
2319 for(i = 0; i < samples && !(x&1); i++)
2320 x |= signal[i];
2321
2322 if(x == 0) {
2323 shift = 0;
2324 }
2325 else {
2326 for(shift = 0; !(x&1); shift++)
2327 x >>= 1;
2328 }
2329
2330 if(shift > 0) {
2331 for(i = 0; i < samples; i++)
2332 signal[i] >>= shift;
2333 }
2334
2335 return shift;
2336}
Josh Coalsond86e03b2002-08-03 21:56:15 +00002337
2338void append_to_verify_fifo_(verify_input_fifo *fifo, const FLAC__int32 * const input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
2339{
2340 unsigned channel;
2341
2342 for(channel = 0; channel < channels; channel++)
2343 memcpy(&fifo->data[channel][fifo->tail], &input[channel][input_offset], sizeof(FLAC__int32) * wide_samples);
2344
2345 fifo->tail += wide_samples;
2346
2347 FLAC__ASSERT(fifo->tail <= fifo->size);
2348}
2349
2350void append_to_verify_fifo_interleaved_(verify_input_fifo *fifo, const FLAC__int32 input[], unsigned input_offset, unsigned channels, unsigned wide_samples)
2351{
2352 unsigned channel;
2353 unsigned sample, wide_sample;
2354 unsigned tail = fifo->tail;
2355
2356 sample = input_offset * channels;
2357 for(wide_sample = 0; wide_sample < wide_samples; wide_sample++) {
2358 for(channel = 0; channel < channels; channel++)
2359 fifo->data[channel][tail] = input[sample++];
2360 tail++;
2361 }
2362 fifo->tail = tail;
2363
2364 FLAC__ASSERT(fifo->tail <= fifo->size);
2365}
2366
2367FLAC__StreamDecoderReadStatus verify_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data)
2368{
2369 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
2370 const unsigned encoded_bytes = encoder->private_->verify.output.bytes;
2371 (void)decoder;
2372
2373 if(encoder->private_->verify.needs_magic_hack) {
2374 FLAC__ASSERT(*bytes >= FLAC__STREAM_SYNC_LENGTH);
2375 *bytes = FLAC__STREAM_SYNC_LENGTH;
2376 memcpy(buffer, FLAC__STREAM_SYNC_STRING, *bytes);
2377 encoder->private_->verify.needs_magic_hack = false;
2378 }
2379 else {
2380 if(encoded_bytes == 0) {
2381 //@@@@ underflow happened, should we do something else here? is this an assert failure?
2382 return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
2383 }
2384 else if(encoded_bytes < *bytes)
2385 *bytes = encoded_bytes;
2386 memcpy(buffer, encoder->private_->verify.output.data, *bytes);
2387 encoder->private_->verify.output.data += *bytes;
2388 encoder->private_->verify.output.bytes -= *bytes;
2389 }
2390
2391 return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
2392}
2393
2394FLAC__StreamDecoderWriteStatus verify_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
2395{
2396 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder *)client_data;
2397 unsigned channel;
2398 const unsigned channels = FLAC__stream_decoder_get_channels(decoder);
2399 const unsigned blocksize = frame->header.blocksize;
2400 const unsigned bytes_per_block = sizeof(FLAC__int32) * blocksize;
2401
2402 for(channel = 0; channel < channels; channel++) {
2403 if(0 != memcmp(buffer[channel], encoder->private_->verify.input_fifo.data[channel], bytes_per_block)) {
2404 unsigned i, sample = 0;
2405 FLAC__int32 expect = 0, got = 0;
2406
2407 for(i = 0; i < blocksize; i++) {
2408 if(buffer[channel][i] != encoder->private_->verify.input_fifo.data[channel][i]) {
2409 sample = i;
2410 expect = (FLAC__int32)encoder->private_->verify.input_fifo.data[channel][i];
2411 got = (FLAC__int32)buffer[channel][i];
2412 break;
2413 }
2414 }
2415 FLAC__ASSERT(i < blocksize);
2416 FLAC__ASSERT(frame->header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER);
2417 encoder->private_->verify.error_stats.absolute_sample = frame->header.number.sample_number + sample;
2418 encoder->private_->verify.error_stats.frame_number = frame->header.number.sample_number / blocksize;
2419 encoder->private_->verify.error_stats.channel = channel;
2420 encoder->private_->verify.error_stats.sample = sample;
2421 encoder->private_->verify.error_stats.expected = expect;
2422 encoder->private_->verify.error_stats.got = got;
2423 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA;
2424 return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
2425 }
2426 }
2427 /* dequeue the frame from the fifo */
2428 for(channel = 0; channel < channels; channel++) {
2429 memmove(&encoder->private_->verify.input_fifo.data[channel][0], &encoder->private_->verify.input_fifo.data[channel][blocksize], encoder->private_->verify.input_fifo.tail - blocksize);
2430 }
2431 encoder->private_->verify.input_fifo.tail -= blocksize;
2432 return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
2433}
2434
2435void verify_metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
2436{
2437 (void)decoder, (void)metadata, (void)client_data;
2438}
2439
2440void verify_error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
2441{
2442 FLAC__StreamEncoder *encoder = (FLAC__StreamEncoder*)client_data;
2443 (void)decoder, (void)status;
2444 encoder->protected_->state = FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR;
2445}