blob: b59f778b9c1d48fb5f2ecfc30983dec1503d9f6a [file] [log] [blame]
Josh Coalson26560dd2001-02-08 00:38:41 +00001/* libFLAC - Free Lossless Audio Codec library
Josh Coalson70118f62001-01-16 20:17:53 +00002 * Copyright (C) 2000,2001 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
20#include <assert.h>
21#include <stdio.h>
22#include <stdlib.h> /* for malloc() */
23#include <string.h> /* for memcpy() */
24#include "FLAC/encoder.h"
25#include "private/bitbuffer.h"
Josh Coalson215af572001-03-27 01:15:58 +000026#include "private/crc.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000027#include "private/encoder_framing.h"
28#include "private/fixed.h"
29#include "private/lpc.h"
Josh Coalsonfa37f1c2001-01-12 23:55:11 +000030#include "private/md5.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000031
32#ifdef min
33#undef min
34#endif
35#define min(x,y) ((x)<(y)?(x):(y))
36
37#ifdef max
38#undef max
39#endif
40#define max(x,y) ((x)>(y)?(x):(y))
41
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000042typedef struct FLAC__EncoderPrivate {
43 unsigned input_capacity; /* current size (in samples) of the signal and residual buffers */
44 int32 *integer_signal[FLAC__MAX_CHANNELS]; /* the integer version of the input signal */
45 int32 *integer_signal_mid_side[2]; /* the integer version of the mid-side input signal (stereo only) */
46 real *real_signal[FLAC__MAX_CHANNELS]; /* the floating-point version of the input signal */
47 real *real_signal_mid_side[2]; /* the floating-point version of the mid-side input signal (stereo only) */
Josh Coalson859bc542001-03-27 22:22:27 +000048 unsigned wasted_bits[FLAC__MAX_CHANNELS]; /* 'wasted_bits' value of each independent channel */
49 unsigned wasted_bits_mid_side[2]; /* 'wasted_bits' value of the mid-side input signal (stereo only) */
Josh Coalson94e02cd2001-01-25 10:41:06 +000050 int32 *residual_workspace[FLAC__MAX_CHANNELS][2]; /* each channel has a candidate and best workspace where the subframe residual signals will be stored */
51 int32 *residual_workspace_mid_side[2][2];
52 FLAC__Subframe subframe_workspace[FLAC__MAX_CHANNELS][2];
53 FLAC__Subframe subframe_workspace_mid_side[2][2];
54 FLAC__Subframe *subframe_workspace_ptr[FLAC__MAX_CHANNELS][2];
55 FLAC__Subframe *subframe_workspace_ptr_mid_side[2][2];
56 unsigned best_subframe[FLAC__MAX_CHANNELS]; /* index into the above workspaces */
57 unsigned best_subframe_mid_side[2];
58 unsigned best_subframe_bits[FLAC__MAX_CHANNELS]; /* size in bits of the best subframe for each channel */
59 unsigned best_subframe_bits_mid_side[2];
Josh Coalsone77287e2001-01-20 01:27:55 +000060 uint32 *abs_residual; /* workspace where the abs(candidate residual) is stored */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000061 FLAC__BitBuffer frame; /* the current frame being worked on */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000062 bool current_frame_can_do_mid_side; /* encoder sets this false when any given sample of a frame's side channel exceeds 16 bits */
Josh Coalsonb5e60e52001-01-28 09:27:27 +000063 double loose_mid_side_stereo_frames_exact; /* exact number of frames the encoder will use before trying both independent and mid/side frames again */
64 unsigned loose_mid_side_stereo_frames; /* rounded number of frames the encoder will use before trying both independent and mid/side frames again */
65 unsigned loose_mid_side_stereo_frame_count; /* number of frames using the current channel assignment */
66 FLAC__ChannelAssignment last_channel_assignment;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000067 FLAC__StreamMetaData metadata;
68 unsigned current_sample_number;
69 unsigned current_frame_number;
Josh Coalsonfa37f1c2001-01-12 23:55:11 +000070 struct MD5Context md5context;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000071 FLAC__EncoderWriteStatus (*write_callback)(const FLAC__Encoder *encoder, const byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data);
72 void (*metadata_callback)(const FLAC__Encoder *encoder, const FLAC__StreamMetaData *metadata, void *client_data);
73 void *client_data;
74} FLAC__EncoderPrivate;
75
76static bool encoder_resize_buffers_(FLAC__Encoder *encoder, unsigned new_size);
77static bool encoder_process_frame_(FLAC__Encoder *encoder, bool is_last_frame);
Josh Coalson94e02cd2001-01-25 10:41:06 +000078static bool encoder_process_subframes_(FLAC__Encoder *encoder, bool is_last_frame);
Josh Coalsonb5e60e52001-01-28 09:27:27 +000079static bool encoder_process_subframe_(FLAC__Encoder *encoder, unsigned max_partition_order, bool verbatim_only, const FLAC__FrameHeader *frame_header, unsigned bits_per_sample, const int32 integer_signal[], const real real_signal[], FLAC__Subframe *subframe[2], int32 *residual[2], unsigned *best_subframe, unsigned *best_bits);
Josh Coalson859bc542001-03-27 22:22:27 +000080static bool encoder_add_subframe_(FLAC__Encoder *encoder, const FLAC__FrameHeader *frame_header, unsigned bits_per_sample, unsigned wasted_bits, const FLAC__Subframe *subframe, FLAC__BitBuffer *frame);
Josh Coalson6dcea512001-01-23 23:07:36 +000081static unsigned encoder_evaluate_constant_subframe_(const int32 signal, unsigned bits_per_sample, FLAC__Subframe *subframe);
82static unsigned encoder_evaluate_fixed_subframe_(const int32 signal[], int32 residual[], uint32 abs_residual[], unsigned blocksize, unsigned bits_per_sample, unsigned order, unsigned rice_parameter, unsigned max_partition_order, FLAC__Subframe *subframe);
83static unsigned encoder_evaluate_lpc_subframe_(const int32 signal[], int32 residual[], uint32 abs_residual[], const real lp_coeff[], unsigned blocksize, unsigned bits_per_sample, unsigned order, unsigned qlp_coeff_precision, unsigned rice_parameter, unsigned max_partition_order, FLAC__Subframe *subframe);
Josh Coalson94e02cd2001-01-25 10:41:06 +000084static unsigned encoder_evaluate_verbatim_subframe_(const int32 signal[], unsigned blocksize, unsigned bits_per_sample, FLAC__Subframe *subframe);
Josh Coalsone77287e2001-01-20 01:27:55 +000085static unsigned encoder_find_best_partition_order_(const int32 residual[], uint32 abs_residual[], unsigned residual_samples, unsigned predictor_order, unsigned rice_parameter, unsigned max_partition_order, unsigned *best_partition_order, unsigned best_parameters[]);
Josh Coalson3b5f4712001-03-21 22:53:43 +000086static bool encoder_set_partitioned_rice_(const uint32 abs_residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned rice_parameter, const unsigned partition_order, unsigned parameters[], unsigned *bits);
Josh Coalson859bc542001-03-27 22:22:27 +000087static unsigned encoder_get_wasted_bits_(int32 signal[], unsigned samples);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000088
Josh Coalsoncbf595f2000-12-22 22:35:33 +000089const char *FLAC__EncoderWriteStatusString[] = {
90 "FLAC__ENCODER_WRITE_OK",
91 "FLAC__ENCODER_WRITE_FATAL_ERROR"
92};
93
94const char *FLAC__EncoderStateString[] = {
95 "FLAC__ENCODER_OK",
96 "FLAC__ENCODER_UNINITIALIZED",
97 "FLAC__ENCODER_INVALID_NUMBER_OF_CHANNELS",
98 "FLAC__ENCODER_INVALID_BITS_PER_SAMPLE",
99 "FLAC__ENCODER_INVALID_SAMPLE_RATE",
100 "FLAC__ENCODER_INVALID_BLOCK_SIZE",
101 "FLAC__ENCODER_INVALID_QLP_COEFF_PRECISION",
102 "FLAC__ENCODER_MID_SIDE_CHANNELS_MISMATCH",
103 "FLAC__ENCODER_MID_SIDE_SAMPLE_SIZE_MISMATCH",
Josh Coalson69f1ee02001-01-24 00:54:43 +0000104 "FLAC__ENCODER_ILLEGAL_MID_SIDE_FORCE",
Josh Coalsoncbf595f2000-12-22 22:35:33 +0000105 "FLAC__ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER",
106 "FLAC__ENCODER_NOT_STREAMABLE",
107 "FLAC__ENCODER_FRAMING_ERROR",
108 "FLAC__ENCODER_FATAL_ERROR_WHILE_ENCODING",
109 "FLAC__ENCODER_FATAL_ERROR_WHILE_WRITING",
110 "FLAC__ENCODER_MEMORY_ALLOCATION_ERROR"
111};
112
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000113
114bool encoder_resize_buffers_(FLAC__Encoder *encoder, unsigned new_size)
115{
116 bool ok;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000117 unsigned i, channel;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000118 int32 *previous_is, *current_is;
119 real *previous_rs, *current_rs;
120 int32 *residual;
Josh Coalsone77287e2001-01-20 01:27:55 +0000121 uint32 *abs_residual;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000122
123 assert(new_size > 0);
124 assert(encoder->state == FLAC__ENCODER_OK);
125 assert(encoder->guts->current_sample_number == 0);
126
127 /* To avoid excessive malloc'ing, we only grow the buffer; no shrinking. */
128 if(new_size <= encoder->guts->input_capacity)
129 return true;
130
131 ok = 1;
132 if(ok) {
133 for(i = 0; ok && i < encoder->channels; i++) {
134 /* integer version of the signal */
135 previous_is = encoder->guts->integer_signal[i];
136 current_is = (int32*)malloc(sizeof(int32) * new_size);
137 if(0 == current_is) {
138 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
139 ok = 0;
140 }
141 else {
142 encoder->guts->integer_signal[i] = current_is;
143 if(previous_is != 0)
144 free(previous_is);
145 }
146 /* real version of the signal */
147 previous_rs = encoder->guts->real_signal[i];
148 current_rs = (real*)malloc(sizeof(real) * new_size);
149 if(0 == current_rs) {
150 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
151 ok = 0;
152 }
153 else {
154 encoder->guts->real_signal[i] = current_rs;
155 if(previous_rs != 0)
156 free(previous_rs);
157 }
158 }
159 }
160 if(ok) {
161 for(i = 0; ok && i < 2; i++) {
162 /* integer version of the signal */
163 previous_is = encoder->guts->integer_signal_mid_side[i];
164 current_is = (int32*)malloc(sizeof(int32) * new_size);
165 if(0 == current_is) {
166 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
167 ok = 0;
168 }
169 else {
170 encoder->guts->integer_signal_mid_side[i] = current_is;
171 if(previous_is != 0)
172 free(previous_is);
173 }
174 /* real version of the signal */
175 previous_rs = encoder->guts->real_signal_mid_side[i];
176 current_rs = (real*)malloc(sizeof(real) * new_size);
177 if(0 == current_rs) {
178 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
179 ok = 0;
180 }
181 else {
182 encoder->guts->real_signal_mid_side[i] = current_rs;
183 if(previous_rs != 0)
184 free(previous_rs);
185 }
186 }
187 }
188 if(ok) {
Josh Coalson94e02cd2001-01-25 10:41:06 +0000189 for(channel = 0; channel < encoder->channels; channel++) {
190 for(i = 0; i < 2; i++) {
191 residual = (int32*)malloc(sizeof(int32) * new_size);
192 if(0 == residual) {
193 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
194 ok = 0;
195 }
196 else {
197 if(encoder->guts->residual_workspace[channel][i] != 0)
198 free(encoder->guts->residual_workspace[channel][i]);
199 encoder->guts->residual_workspace[channel][i] = residual;
200 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000201 }
Josh Coalson94e02cd2001-01-25 10:41:06 +0000202 }
203 for(channel = 0; channel < 2; channel++) {
204 for(i = 0; i < 2; i++) {
205 residual = (int32*)malloc(sizeof(int32) * new_size);
206 if(0 == residual) {
207 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
208 ok = 0;
209 }
210 else {
211 if(encoder->guts->residual_workspace_mid_side[channel][i] != 0)
212 free(encoder->guts->residual_workspace_mid_side[channel][i]);
213 encoder->guts->residual_workspace_mid_side[channel][i] = residual;
214 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000215 }
216 }
Josh Coalsone77287e2001-01-20 01:27:55 +0000217 abs_residual = (uint32*)malloc(sizeof(uint32) * new_size);
218 if(0 == residual) {
219 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
220 ok = 0;
221 }
222 else {
223 if(encoder->guts->abs_residual != 0)
224 free(encoder->guts->abs_residual);
225 encoder->guts->abs_residual = abs_residual;
226 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000227 }
228 if(ok)
229 encoder->guts->input_capacity = new_size;
230
231 return ok;
232}
233
234FLAC__Encoder *FLAC__encoder_get_new_instance()
235{
236 FLAC__Encoder *encoder = (FLAC__Encoder*)malloc(sizeof(FLAC__Encoder));
237 if(encoder != 0) {
238 encoder->state = FLAC__ENCODER_UNINITIALIZED;
239 encoder->guts = 0;
240 }
241 return encoder;
242}
243
244void FLAC__encoder_free_instance(FLAC__Encoder *encoder)
245{
246 assert(encoder != 0);
247 free(encoder);
248}
249
250FLAC__EncoderState FLAC__encoder_init(FLAC__Encoder *encoder, FLAC__EncoderWriteStatus (*write_callback)(const FLAC__Encoder *encoder, const byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data), void (*metadata_callback)(const FLAC__Encoder *encoder, const FLAC__StreamMetaData *metadata, void *client_data), void *client_data)
251{
252 unsigned i;
Josh Coalsonc692d382001-02-23 21:05:05 +0000253 FLAC__StreamMetaData padding;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000254
255 assert(sizeof(int) >= 4); /* we want to die right away if this is not true */
256 assert(encoder != 0);
257 assert(write_callback != 0);
258 assert(metadata_callback != 0);
259 assert(encoder->state == FLAC__ENCODER_UNINITIALIZED);
260 assert(encoder->guts == 0);
261
262 encoder->state = FLAC__ENCODER_OK;
263
264 if(encoder->channels == 0 || encoder->channels > FLAC__MAX_CHANNELS)
265 return encoder->state = FLAC__ENCODER_INVALID_NUMBER_OF_CHANNELS;
266
267 if(encoder->do_mid_side_stereo && encoder->channels != 2)
268 return encoder->state = FLAC__ENCODER_MID_SIDE_CHANNELS_MISMATCH;
269
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000270 if(encoder->loose_mid_side_stereo && !encoder->do_mid_side_stereo)
Josh Coalson69f1ee02001-01-24 00:54:43 +0000271 return encoder->state = FLAC__ENCODER_ILLEGAL_MID_SIDE_FORCE;
272
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000273 if(encoder->bits_per_sample == 0 || encoder->bits_per_sample > FLAC__MAX_BITS_PER_SAMPLE)
274 return encoder->state = FLAC__ENCODER_INVALID_BITS_PER_SAMPLE;
275
276 if(encoder->sample_rate == 0 || encoder->sample_rate > FLAC__MAX_SAMPLE_RATE)
277 return encoder->state = FLAC__ENCODER_INVALID_SAMPLE_RATE;
278
279 if(encoder->blocksize < FLAC__MIN_BLOCK_SIZE || encoder->blocksize > FLAC__MAX_BLOCK_SIZE)
280 return encoder->state = FLAC__ENCODER_INVALID_BLOCK_SIZE;
281
282 if(encoder->blocksize < encoder->max_lpc_order)
283 return encoder->state = FLAC__ENCODER_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER;
284
285 if(encoder->qlp_coeff_precision == 0) {
286 if(encoder->bits_per_sample < 16) {
287 /* @@@ need some data about how to set this here w.r.t. blocksize and sample rate */
288 /* @@@ until then we'll make a guess */
289 encoder->qlp_coeff_precision = max(5, 2 + encoder->bits_per_sample / 2);
290 }
291 else if(encoder->bits_per_sample == 16) {
292 if(encoder->blocksize <= 192)
293 encoder->qlp_coeff_precision = 7;
294 else if(encoder->blocksize <= 384)
295 encoder->qlp_coeff_precision = 8;
296 else if(encoder->blocksize <= 576)
297 encoder->qlp_coeff_precision = 9;
298 else if(encoder->blocksize <= 1152)
299 encoder->qlp_coeff_precision = 10;
300 else if(encoder->blocksize <= 2304)
301 encoder->qlp_coeff_precision = 11;
302 else if(encoder->blocksize <= 4608)
303 encoder->qlp_coeff_precision = 12;
304 else
305 encoder->qlp_coeff_precision = 13;
306 }
307 else {
308 encoder->qlp_coeff_precision = min(13, 8*sizeof(int32) - encoder->bits_per_sample - 1);
309 }
310 }
Josh Coalson0552fdf2001-02-26 20:29:56 +0000311 else if(encoder->qlp_coeff_precision < FLAC__MIN_QLP_COEFF_PRECISION || encoder->qlp_coeff_precision + encoder->bits_per_sample >= 8*sizeof(uint32) || encoder->qlp_coeff_precision >= (1u<<FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN))
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000312 return encoder->state = FLAC__ENCODER_INVALID_QLP_COEFF_PRECISION;
313
314 if(encoder->streamable_subset) {
Josh Coalson215af572001-03-27 01:15:58 +0000315//@@@ add check for blocksize here
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000316 if(encoder->bits_per_sample != 8 && encoder->bits_per_sample != 12 && encoder->bits_per_sample != 16 && encoder->bits_per_sample != 20 && encoder->bits_per_sample != 24)
317 return encoder->state = FLAC__ENCODER_NOT_STREAMABLE;
318 if(encoder->sample_rate > 655350)
319 return encoder->state = FLAC__ENCODER_NOT_STREAMABLE;
320 }
321
322 if(encoder->rice_optimization_level >= (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN))
323 encoder->rice_optimization_level = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN) - 1;
324
325 encoder->guts = (FLAC__EncoderPrivate*)malloc(sizeof(FLAC__EncoderPrivate));
326 if(encoder->guts == 0)
327 return encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
328
329 encoder->guts->input_capacity = 0;
330 for(i = 0; i < encoder->channels; i++) {
331 encoder->guts->integer_signal[i] = 0;
332 encoder->guts->real_signal[i] = 0;
333 }
334 for(i = 0; i < 2; i++) {
335 encoder->guts->integer_signal_mid_side[i] = 0;
336 encoder->guts->real_signal_mid_side[i] = 0;
337 }
Josh Coalson94e02cd2001-01-25 10:41:06 +0000338 for(i = 0; i < encoder->channels; i++) {
339 encoder->guts->residual_workspace[i][0] = encoder->guts->residual_workspace[i][1] = 0;
340 encoder->guts->best_subframe[i] = 0;
341 }
342 for(i = 0; i < 2; i++) {
343 encoder->guts->residual_workspace_mid_side[i][0] = encoder->guts->residual_workspace_mid_side[i][1] = 0;
344 encoder->guts->best_subframe_mid_side[i] = 0;
345 }
346 for(i = 0; i < encoder->channels; i++) {
347 encoder->guts->subframe_workspace_ptr[i][0] = &encoder->guts->subframe_workspace[i][0];
348 encoder->guts->subframe_workspace_ptr[i][1] = &encoder->guts->subframe_workspace[i][1];
349 }
350 for(i = 0; i < 2; i++) {
351 encoder->guts->subframe_workspace_ptr_mid_side[i][0] = &encoder->guts->subframe_workspace_mid_side[i][0];
352 encoder->guts->subframe_workspace_ptr_mid_side[i][1] = &encoder->guts->subframe_workspace_mid_side[i][1];
353 }
Josh Coalsone77287e2001-01-20 01:27:55 +0000354 encoder->guts->abs_residual = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000355 encoder->guts->current_frame_can_do_mid_side = true;
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000356 encoder->guts->loose_mid_side_stereo_frames_exact = (double)encoder->sample_rate * 0.4 / (double)encoder->blocksize;
357 encoder->guts->loose_mid_side_stereo_frames = (unsigned)(encoder->guts->loose_mid_side_stereo_frames_exact + 0.5);
358 if(encoder->guts->loose_mid_side_stereo_frames == 0)
359 encoder->guts->loose_mid_side_stereo_frames = 1;
360 encoder->guts->loose_mid_side_stereo_frame_count = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000361 encoder->guts->current_sample_number = 0;
362 encoder->guts->current_frame_number = 0;
363
364 if(!encoder_resize_buffers_(encoder, encoder->blocksize)) {
365 /* the above function sets the state for us in case of an error */
366 return encoder->state;
367 }
368 FLAC__bitbuffer_init(&encoder->guts->frame);
369 encoder->guts->write_callback = write_callback;
370 encoder->guts->metadata_callback = metadata_callback;
371 encoder->guts->client_data = client_data;
372
373 /*
374 * write the stream header
375 */
376 if(!FLAC__bitbuffer_clear(&encoder->guts->frame))
377 return encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
378
379 if(!FLAC__bitbuffer_write_raw_uint32(&encoder->guts->frame, FLAC__STREAM_SYNC, FLAC__STREAM_SYNC_LEN))
380 return encoder->state = FLAC__ENCODER_FRAMING_ERROR;
381
Josh Coalsonc692d382001-02-23 21:05:05 +0000382 encoder->guts->metadata.type = FLAC__METADATA_TYPE_STREAMINFO;
383 encoder->guts->metadata.is_last = (encoder->padding == 0);
384 encoder->guts->metadata.length = FLAC__STREAM_METADATA_STREAMINFO_LENGTH;
385 encoder->guts->metadata.data.stream_info.min_blocksize = encoder->blocksize; /* this encoder uses the same blocksize for the whole stream */
386 encoder->guts->metadata.data.stream_info.max_blocksize = encoder->blocksize;
387 encoder->guts->metadata.data.stream_info.min_framesize = 0; /* we don't know this yet; have to fill it in later */
388 encoder->guts->metadata.data.stream_info.max_framesize = 0; /* we don't know this yet; have to fill it in later */
389 encoder->guts->metadata.data.stream_info.sample_rate = encoder->sample_rate;
390 encoder->guts->metadata.data.stream_info.channels = encoder->channels;
391 encoder->guts->metadata.data.stream_info.bits_per_sample = encoder->bits_per_sample;
392 encoder->guts->metadata.data.stream_info.total_samples = encoder->total_samples_estimate; /* we will replace this later with the real total */
393 memset(encoder->guts->metadata.data.stream_info.md5sum, 0, 16); /* we don't know this yet; have to fill it in later */
Josh Coalsonfa37f1c2001-01-12 23:55:11 +0000394 MD5Init(&encoder->guts->md5context);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000395 if(!FLAC__add_metadata_block(&encoder->guts->metadata, &encoder->guts->frame))
396 return encoder->state = FLAC__ENCODER_FRAMING_ERROR;
397
Josh Coalsonc692d382001-02-23 21:05:05 +0000398 /* add a PADDING block if requested */
399 if(encoder->padding > 0) {
400 padding.type = FLAC__METADATA_TYPE_PADDING;
401 padding.is_last = true;
402 padding.length = encoder->padding;
403 if(!FLAC__add_metadata_block(&padding, &encoder->guts->frame))
404 return encoder->state = FLAC__ENCODER_FRAMING_ERROR;
405 }
406
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000407 assert(encoder->guts->frame.bits == 0); /* assert that we're byte-aligned before writing */
408 assert(encoder->guts->frame.total_consumed_bits == 0); /* assert that no reading of the buffer was done */
409 if(encoder->guts->write_callback(encoder, encoder->guts->frame.buffer, encoder->guts->frame.bytes, 0, encoder->guts->current_frame_number, encoder->guts->client_data) != FLAC__ENCODER_WRITE_OK)
410 return encoder->state = FLAC__ENCODER_FATAL_ERROR_WHILE_WRITING;
411
Josh Coalsoncbbbb5f2001-01-23 00:41:48 +0000412 /* now that the metadata block is written, we can init this to an absurdly-high value... */
Josh Coalsonc692d382001-02-23 21:05:05 +0000413 encoder->guts->metadata.data.stream_info.min_framesize = (1u << FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN) - 1;
Josh Coalsoncbbbb5f2001-01-23 00:41:48 +0000414 /* ... and clear this to 0 */
Josh Coalsonc692d382001-02-23 21:05:05 +0000415 encoder->guts->metadata.data.stream_info.total_samples = 0;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000416
417 return encoder->state;
418}
419
420void FLAC__encoder_finish(FLAC__Encoder *encoder)
421{
Josh Coalson94e02cd2001-01-25 10:41:06 +0000422 unsigned i, channel;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000423
424 assert(encoder != 0);
425 if(encoder->state == FLAC__ENCODER_UNINITIALIZED)
426 return;
427 if(encoder->guts->current_sample_number != 0) {
428 encoder->blocksize = encoder->guts->current_sample_number;
429 encoder_process_frame_(encoder, true); /* true => is last frame */
430 }
Josh Coalsonc692d382001-02-23 21:05:05 +0000431 MD5Final(encoder->guts->metadata.data.stream_info.md5sum, &encoder->guts->md5context);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000432 encoder->guts->metadata_callback(encoder, &encoder->guts->metadata, encoder->guts->client_data);
433 if(encoder->guts != 0) {
434 for(i = 0; i < encoder->channels; i++) {
435 if(encoder->guts->integer_signal[i] != 0) {
436 free(encoder->guts->integer_signal[i]);
437 encoder->guts->integer_signal[i] = 0;
438 }
439 if(encoder->guts->real_signal[i] != 0) {
440 free(encoder->guts->real_signal[i]);
441 encoder->guts->real_signal[i] = 0;
442 }
443 }
444 for(i = 0; i < 2; i++) {
445 if(encoder->guts->integer_signal_mid_side[i] != 0) {
446 free(encoder->guts->integer_signal_mid_side[i]);
447 encoder->guts->integer_signal_mid_side[i] = 0;
448 }
449 if(encoder->guts->real_signal_mid_side[i] != 0) {
450 free(encoder->guts->real_signal_mid_side[i]);
451 encoder->guts->real_signal_mid_side[i] = 0;
452 }
453 }
Josh Coalson94e02cd2001-01-25 10:41:06 +0000454 for(channel = 0; channel < encoder->channels; channel++) {
455 for(i = 0; i < 2; i++) {
456 if(encoder->guts->residual_workspace[channel][i] != 0) {
457 free(encoder->guts->residual_workspace[channel][i]);
458 encoder->guts->residual_workspace[channel][i] = 0;
459 }
460 }
461 }
462 for(channel = 0; channel < 2; channel++) {
463 for(i = 0; i < 2; i++) {
464 if(encoder->guts->residual_workspace_mid_side[channel][i] != 0) {
465 free(encoder->guts->residual_workspace_mid_side[channel][i]);
466 encoder->guts->residual_workspace_mid_side[channel][i] = 0;
467 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000468 }
469 }
Josh Coalsone77287e2001-01-20 01:27:55 +0000470 if(encoder->guts->abs_residual != 0) {
471 free(encoder->guts->abs_residual);
472 encoder->guts->abs_residual = 0;
473 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000474 FLAC__bitbuffer_free(&encoder->guts->frame);
475 free(encoder->guts);
476 encoder->guts = 0;
477 }
478 encoder->state = FLAC__ENCODER_UNINITIALIZED;
479}
480
481bool FLAC__encoder_process(FLAC__Encoder *encoder, const int32 *buf[], unsigned samples)
482{
483 unsigned i, j, channel;
484 int32 x, mid, side;
485 const bool ms = encoder->do_mid_side_stereo && encoder->channels == 2;
486 const int32 min_side = -((int64)1 << (encoder->bits_per_sample-1));
487 const int32 max_side = ((int64)1 << (encoder->bits_per_sample-1)) - 1;
488
489 assert(encoder != 0);
490 assert(encoder->state == FLAC__ENCODER_OK);
491
492 j = 0;
493 do {
494 for(i = encoder->guts->current_sample_number; i < encoder->blocksize && j < samples; i++, j++) {
495 for(channel = 0; channel < encoder->channels; channel++) {
496 x = buf[channel][j];
497 encoder->guts->integer_signal[channel][i] = x;
498 encoder->guts->real_signal[channel][i] = (real)x;
499 }
500 if(ms && encoder->guts->current_frame_can_do_mid_side) {
501 side = buf[0][j] - buf[1][j];
502 if(side < min_side || side > max_side) {
503 encoder->guts->current_frame_can_do_mid_side = false;
504 }
505 else {
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000506 mid = (buf[0][j] + buf[1][j]) >> 1; /* NOTE: not the same as 'mid = (buf[0][j] + buf[1][j]) / 2' ! */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000507 encoder->guts->integer_signal_mid_side[0][i] = mid;
508 encoder->guts->integer_signal_mid_side[1][i] = side;
509 encoder->guts->real_signal_mid_side[0][i] = (real)mid;
510 encoder->guts->real_signal_mid_side[1][i] = (real)side;
511 }
512 }
513 encoder->guts->current_sample_number++;
514 }
515 if(i == encoder->blocksize) {
516 if(!encoder_process_frame_(encoder, false)) /* false => not last frame */
517 return false;
518 }
519 } while(j < samples);
520
521 return true;
522}
523
524/* 'samples' is channel-wide samples, e.g. for 1 second at 44100Hz, 'samples' = 44100 regardless of the number of channels */
525bool FLAC__encoder_process_interleaved(FLAC__Encoder *encoder, const int32 buf[], unsigned samples)
526{
527 unsigned i, j, k, channel;
528 int32 x, left = 0, mid, side;
529 const bool ms = encoder->do_mid_side_stereo && encoder->channels == 2;
530 const int32 min_side = -((int64)1 << (encoder->bits_per_sample-1));
531 const int32 max_side = ((int64)1 << (encoder->bits_per_sample-1)) - 1;
532
533 assert(encoder != 0);
534 assert(encoder->state == FLAC__ENCODER_OK);
535
536 j = k = 0;
537 do {
538 for(i = encoder->guts->current_sample_number; i < encoder->blocksize && j < samples; i++, j++, k++) {
539 for(channel = 0; channel < encoder->channels; channel++, k++) {
540 x = buf[k];
541 encoder->guts->integer_signal[channel][i] = x;
542 encoder->guts->real_signal[channel][i] = (real)x;
543 if(ms && encoder->guts->current_frame_can_do_mid_side) {
544 if(channel == 0) {
545 left = x;
546 }
547 else {
548 side = left - x;
549 if(side < min_side || side > max_side) {
550 encoder->guts->current_frame_can_do_mid_side = false;
551 }
552 else {
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000553 mid = (left + x) >> 1; /* NOTE: not the same as 'mid = (left + x) / 2' ! */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000554 encoder->guts->integer_signal_mid_side[0][i] = mid;
555 encoder->guts->integer_signal_mid_side[1][i] = side;
556 encoder->guts->real_signal_mid_side[0][i] = (real)mid;
557 encoder->guts->real_signal_mid_side[1][i] = (real)side;
558 }
559 }
560 }
561 }
562 encoder->guts->current_sample_number++;
563 }
564 if(i == encoder->blocksize) {
565 if(!encoder_process_frame_(encoder, false)) /* false => not last frame */
566 return false;
567 }
568 } while(j < samples);
569
570 return true;
571}
572
573bool encoder_process_frame_(FLAC__Encoder *encoder, bool is_last_frame)
574{
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000575 assert(encoder->state == FLAC__ENCODER_OK);
576
577 /*
Josh Coalsonfa37f1c2001-01-12 23:55:11 +0000578 * Accumulate raw signal to the MD5 signature
579 */
580 if(!FLAC__MD5Accumulate(&encoder->guts->md5context, encoder->guts->integer_signal, encoder->channels, encoder->blocksize, (encoder->bits_per_sample+7) / 8)) {
581 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
582 return false;
583 }
584
585 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +0000586 * Process the frame header and subframes into the frame bitbuffer
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000587 */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000588 if(!encoder_process_subframes_(encoder, is_last_frame)) {
589 /* the above function sets the state for us in case of an error */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000590 return false;
591 }
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000592
593 /*
594 * Zero-pad the frame to a byte_boundary
595 */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000596 if(!FLAC__bitbuffer_zero_pad_to_byte_boundary(&encoder->guts->frame)) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000597 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
598 return false;
599 }
600
601 /*
Josh Coalson215af572001-03-27 01:15:58 +0000602 * CRC-16 the whole thing
603 */
604 assert(encoder->guts->frame.bits == 0); /* assert that we're byte-aligned */
605 assert(encoder->guts->frame.total_consumed_bits == 0); /* assert that no reading of the buffer was done */
606 FLAC__bitbuffer_write_raw_uint32(&encoder->guts->frame, FLAC__crc16(encoder->guts->frame.buffer, encoder->guts->frame.bytes), FLAC__FRAME_FOOTER_CRC_LEN);
607
608 /*
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000609 * Write it
610 */
Josh Coalson94e02cd2001-01-25 10:41:06 +0000611 if(encoder->guts->write_callback(encoder, encoder->guts->frame.buffer, encoder->guts->frame.bytes, encoder->blocksize, encoder->guts->current_frame_number, encoder->guts->client_data) != FLAC__ENCODER_WRITE_OK) {
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000612 encoder->state = FLAC__ENCODER_FATAL_ERROR_WHILE_WRITING;
613 return false;
614 }
615
616 /*
617 * Get ready for the next frame
618 */
619 encoder->guts->current_frame_can_do_mid_side = true;
620 encoder->guts->current_sample_number = 0;
621 encoder->guts->current_frame_number++;
Josh Coalsonc692d382001-02-23 21:05:05 +0000622 encoder->guts->metadata.data.stream_info.total_samples += (uint64)encoder->blocksize;
623 encoder->guts->metadata.data.stream_info.min_framesize = min(encoder->guts->frame.bytes, encoder->guts->metadata.data.stream_info.min_framesize);
624 encoder->guts->metadata.data.stream_info.max_framesize = max(encoder->guts->frame.bytes, encoder->guts->metadata.data.stream_info.max_framesize);
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000625
626 return true;
627}
628
Josh Coalson94e02cd2001-01-25 10:41:06 +0000629bool encoder_process_subframes_(FLAC__Encoder *encoder, bool is_last_frame)
630{
631 FLAC__FrameHeader frame_header;
632 unsigned channel, max_partition_order;
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000633 bool do_independent, do_mid_side;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000634
635 /*
636 * Calculate the max Rice partition order
637 */
638 if(is_last_frame) {
639 max_partition_order = 0;
640 }
641 else {
642 unsigned limit = 0, b = encoder->blocksize;
643 while(!(b & 1)) {
644 limit++;
645 b >>= 1;
646 }
647 max_partition_order = min(encoder->rice_optimization_level, limit);
648 }
649
650 /*
651 * Setup the frame
652 */
653 if(!FLAC__bitbuffer_clear(&encoder->guts->frame)) {
654 encoder->state = FLAC__ENCODER_MEMORY_ALLOCATION_ERROR;
655 return false;
656 }
657 frame_header.blocksize = encoder->blocksize;
658 frame_header.sample_rate = encoder->sample_rate;
659 frame_header.channels = encoder->channels;
660 frame_header.channel_assignment = FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT; /* the default unless the encoder determines otherwise */
661 frame_header.bits_per_sample = encoder->bits_per_sample;
662 frame_header.number.frame_number = encoder->guts->current_frame_number;
663
664 /*
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000665 * Figure out what channel assignments to try
666 */
667 if(encoder->do_mid_side_stereo) {
668 if(encoder->loose_mid_side_stereo) {
669 if(encoder->guts->loose_mid_side_stereo_frame_count == 0) {
670 do_independent = true;
671 do_mid_side = true;
672 }
673 else {
674 do_independent = (encoder->guts->last_channel_assignment == FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT);
675 do_mid_side = !do_independent;
676 }
677 }
678 else {
679 do_independent = true;
680 do_mid_side = true;
681 }
682 }
683 else {
684 do_independent = true;
685 do_mid_side = false;
686 }
687 if(do_mid_side && !encoder->guts->current_frame_can_do_mid_side) {
688 do_independent = true;
689 do_mid_side = false;
690 }
691
692 assert(do_independent || do_mid_side);
693
694 /*
Josh Coalson859bc542001-03-27 22:22:27 +0000695 * Check for wasted bits
696 */
697 if(do_independent) {
698 for(channel = 0; channel < encoder->channels; channel++)
699 encoder->guts->wasted_bits[channel] = encoder_get_wasted_bits_(encoder->guts->integer_signal[channel], encoder->blocksize);
700 }
701 if(do_mid_side) {
702 assert(encoder->channels == 2);
703
704 for(channel = 0; channel < 2; channel++)
705 encoder->guts->wasted_bits_mid_side[channel] = encoder_get_wasted_bits_(encoder->guts->integer_signal_mid_side[channel], encoder->blocksize);
706 }
707
708 /*
Josh Coalson94e02cd2001-01-25 10:41:06 +0000709 * First do a normal encoding pass of each independent channel
710 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000711 if(do_independent) {
712 for(channel = 0; channel < encoder->channels; channel++) {
713 if(!encoder_process_subframe_(encoder, max_partition_order, false, &frame_header, encoder->bits_per_sample, encoder->guts->integer_signal[channel], encoder->guts->real_signal[channel], encoder->guts->subframe_workspace_ptr[channel], encoder->guts->residual_workspace[channel], encoder->guts->best_subframe+channel, encoder->guts->best_subframe_bits+channel))
714 return false;
715 }
Josh Coalson94e02cd2001-01-25 10:41:06 +0000716 }
717
718 /*
719 * Now do mid and side channels if requested
720 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000721 if(do_mid_side) {
Josh Coalson94e02cd2001-01-25 10:41:06 +0000722 assert(encoder->channels == 2);
723
724 for(channel = 0; channel < 2; channel++) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000725 if(!encoder_process_subframe_(encoder, max_partition_order, false, &frame_header, encoder->bits_per_sample+(channel==0? 0:1), encoder->guts->integer_signal_mid_side[channel], encoder->guts->real_signal_mid_side[channel], encoder->guts->subframe_workspace_ptr_mid_side[channel], encoder->guts->residual_workspace_mid_side[channel], encoder->guts->best_subframe_mid_side+channel, encoder->guts->best_subframe_bits_mid_side+channel))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000726 return false;
727 }
728 }
729
730 /*
731 * Compose the frame bitbuffer
732 */
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000733 if(do_mid_side) {
734 FLAC__ChannelAssignment channel_assignment;
735
Josh Coalson94e02cd2001-01-25 10:41:06 +0000736 assert(encoder->channels == 2);
737
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000738 if(encoder->loose_mid_side_stereo && encoder->guts->loose_mid_side_stereo_frame_count > 0) {
739 channel_assignment = (encoder->guts->last_channel_assignment == FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT? FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT : FLAC__CHANNEL_ASSIGNMENT_MID_SIDE);
740 }
741 else {
742 unsigned bits[4]; /* WATCHOUT - indexed by FLAC__ChannelAssignment */
743 unsigned min_bits;
744 FLAC__ChannelAssignment ca;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000745
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000746 assert(do_independent && do_mid_side);
747
748 /* We have to figure out which channel assignent results in the smallest frame */
749 bits[FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT] = encoder->guts->best_subframe_bits [0] + encoder->guts->best_subframe_bits [1];
750 bits[FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE ] = encoder->guts->best_subframe_bits [0] + encoder->guts->best_subframe_bits_mid_side[1];
751 bits[FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE ] = encoder->guts->best_subframe_bits [1] + encoder->guts->best_subframe_bits_mid_side[1];
752 bits[FLAC__CHANNEL_ASSIGNMENT_MID_SIDE ] = encoder->guts->best_subframe_bits_mid_side[0] + encoder->guts->best_subframe_bits_mid_side[1];
753
754 for(channel_assignment = 0, min_bits = bits[0], ca = 1; ca <= 3; ca++) {
755 if(bits[ca] < min_bits) {
756 min_bits = bits[ca];
757 channel_assignment = ca;
758 }
Josh Coalson94e02cd2001-01-25 10:41:06 +0000759 }
760 }
761
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000762 frame_header.channel_assignment = channel_assignment;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000763
764 if(!FLAC__frame_add_header(&frame_header, encoder->streamable_subset, is_last_frame, &encoder->guts->frame)) {
765 encoder->state = FLAC__ENCODER_FRAMING_ERROR;
766 return false;
767 }
768
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000769 switch(channel_assignment) {
Josh Coalson94e02cd2001-01-25 10:41:06 +0000770 /* note that encoder_add_subframe_ sets the state for us in case of an error */
771 case FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT:
Josh Coalson859bc542001-03-27 22:22:27 +0000772 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample -encoder->guts->wasted_bits [0], encoder->guts->wasted_bits [0], &encoder->guts->subframe_workspace [0][encoder->guts->best_subframe [0]], &encoder->guts->frame))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000773 return false;
Josh Coalson859bc542001-03-27 22:22:27 +0000774 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample -encoder->guts->wasted_bits [1], encoder->guts->wasted_bits [1], &encoder->guts->subframe_workspace [1][encoder->guts->best_subframe [1]], &encoder->guts->frame))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000775 return false;
776 break;
777 case FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE:
Josh Coalson859bc542001-03-27 22:22:27 +0000778 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample -encoder->guts->wasted_bits [0], encoder->guts->wasted_bits [0], &encoder->guts->subframe_workspace [0][encoder->guts->best_subframe [0]], &encoder->guts->frame))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000779 return false;
Josh Coalson859bc542001-03-27 22:22:27 +0000780 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample+1-encoder->guts->wasted_bits_mid_side[1], encoder->guts->wasted_bits_mid_side[1], &encoder->guts->subframe_workspace_mid_side[1][encoder->guts->best_subframe_mid_side[1]], &encoder->guts->frame))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000781 return false;
782 break;
783 case FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE:
Josh Coalson859bc542001-03-27 22:22:27 +0000784 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample+1-encoder->guts->wasted_bits_mid_side[1], encoder->guts->wasted_bits_mid_side[1], &encoder->guts->subframe_workspace_mid_side[1][encoder->guts->best_subframe_mid_side[1]], &encoder->guts->frame))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000785 return false;
Josh Coalson859bc542001-03-27 22:22:27 +0000786 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample -encoder->guts->wasted_bits [1], encoder->guts->wasted_bits [1], &encoder->guts->subframe_workspace [1][encoder->guts->best_subframe [1]], &encoder->guts->frame))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000787 return false;
788 break;
789 case FLAC__CHANNEL_ASSIGNMENT_MID_SIDE:
Josh Coalson859bc542001-03-27 22:22:27 +0000790 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample -encoder->guts->wasted_bits_mid_side[0], encoder->guts->wasted_bits_mid_side[0], &encoder->guts->subframe_workspace_mid_side[0][encoder->guts->best_subframe_mid_side[0]], &encoder->guts->frame))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000791 return false;
Josh Coalson859bc542001-03-27 22:22:27 +0000792 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample+1-encoder->guts->wasted_bits_mid_side[1], encoder->guts->wasted_bits_mid_side[1], &encoder->guts->subframe_workspace_mid_side[1][encoder->guts->best_subframe_mid_side[1]], &encoder->guts->frame))
Josh Coalson94e02cd2001-01-25 10:41:06 +0000793 return false;
794 break;
795 default:
796 assert(0);
797 }
798 }
799 else {
800 if(!FLAC__frame_add_header(&frame_header, encoder->streamable_subset, is_last_frame, &encoder->guts->frame)) {
801 encoder->state = FLAC__ENCODER_FRAMING_ERROR;
802 return false;
803 }
804
805 for(channel = 0; channel < encoder->channels; channel++) {
Josh Coalson859bc542001-03-27 22:22:27 +0000806 if(!encoder_add_subframe_(encoder, &frame_header, encoder->bits_per_sample-encoder->guts->wasted_bits[channel], encoder->guts->wasted_bits[channel], &encoder->guts->subframe_workspace[channel][encoder->guts->best_subframe[channel]], &encoder->guts->frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +0000807 /* the above function sets the state for us in case of an error */
808 return false;
809 }
810 }
811 }
812
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000813 if(encoder->loose_mid_side_stereo) {
814 encoder->guts->loose_mid_side_stereo_frame_count++;
815 if(encoder->guts->loose_mid_side_stereo_frame_count >= encoder->guts->loose_mid_side_stereo_frames)
816 encoder->guts->loose_mid_side_stereo_frame_count = 0;
817 }
818
819 encoder->guts->last_channel_assignment = frame_header.channel_assignment;
820
Josh Coalson94e02cd2001-01-25 10:41:06 +0000821 return true;
822}
823
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000824bool encoder_process_subframe_(FLAC__Encoder *encoder, unsigned max_partition_order, bool verbatim_only, const FLAC__FrameHeader *frame_header, unsigned bits_per_sample, const int32 integer_signal[], const real real_signal[], FLAC__Subframe *subframe[2], int32 *residual[2], unsigned *best_subframe, unsigned *best_bits)
Josh Coalson94e02cd2001-01-25 10:41:06 +0000825{
826 real fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1];
827 real lpc_residual_bits_per_sample;
828 real autoc[FLAC__MAX_LPC_ORDER+1];
829 real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER];
830 real lpc_error[FLAC__MAX_LPC_ORDER];
831 unsigned min_lpc_order, max_lpc_order, lpc_order;
832 unsigned min_fixed_order, max_fixed_order, guess_fixed_order, fixed_order;
833 unsigned min_qlp_coeff_precision, max_qlp_coeff_precision, qlp_coeff_precision;
834 unsigned rice_parameter;
835 unsigned _candidate_bits, _best_bits;
836 unsigned _best_subframe;
837
838 /* verbatim subframe is the baseline against which we measure other compressed subframes */
839 _best_subframe = 0;
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000840 _best_bits = encoder_evaluate_verbatim_subframe_(integer_signal, frame_header->blocksize, bits_per_sample, subframe[_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +0000841
842 if(!verbatim_only && frame_header->blocksize >= FLAC__MAX_FIXED_ORDER) {
843 /* check for constant subframe */
844 guess_fixed_order = FLAC__fixed_compute_best_predictor(integer_signal+FLAC__MAX_FIXED_ORDER, frame_header->blocksize-FLAC__MAX_FIXED_ORDER, fixed_residual_bits_per_sample);
845 if(fixed_residual_bits_per_sample[1] == 0.0) {
846 /* the above means integer_signal+FLAC__MAX_FIXED_ORDER is constant, now we just have to check the warmup samples */
847 unsigned i, signal_is_constant = true;
848 for(i = 1; i <= FLAC__MAX_FIXED_ORDER; i++) {
849 if(integer_signal[0] != integer_signal[i]) {
850 signal_is_constant = false;
851 break;
852 }
853 }
854 if(signal_is_constant) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000855 _candidate_bits = encoder_evaluate_constant_subframe_(integer_signal[0], bits_per_sample, subframe[!_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +0000856 if(_candidate_bits < _best_bits) {
857 _best_subframe = !_best_subframe;
858 _best_bits = _candidate_bits;
859 }
860 }
861 }
862 else {
863 /* encode fixed */
864 if(encoder->do_exhaustive_model_search) {
865 min_fixed_order = 0;
866 max_fixed_order = FLAC__MAX_FIXED_ORDER;
867 }
868 else {
869 min_fixed_order = max_fixed_order = guess_fixed_order;
870 }
871 for(fixed_order = min_fixed_order; fixed_order <= max_fixed_order; fixed_order++) {
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000872 if(fixed_residual_bits_per_sample[fixed_order] >= (real)bits_per_sample)
Josh Coalson94e02cd2001-01-25 10:41:06 +0000873 continue; /* don't even try */
Josh Coalson46f2ae82001-02-08 00:27:21 +0000874 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 Coalson352e0f62001-03-20 22:55:50 +0000875#ifndef SYMMETRIC_RICE
Josh Coalson46f2ae82001-02-08 00:27:21 +0000876 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
Josh Coalsonb9433f92001-03-17 01:07:00 +0000877#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +0000878 if(rice_parameter >= (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN))
879 rice_parameter = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN) - 1;
Josh Coalsonb5e60e52001-01-28 09:27:27 +0000880 _candidate_bits = encoder_evaluate_fixed_subframe_(integer_signal, residual[!_best_subframe], encoder->guts->abs_residual, frame_header->blocksize, bits_per_sample, fixed_order, rice_parameter, max_partition_order, subframe[!_best_subframe]);
Josh Coalson94e02cd2001-01-25 10:41:06 +0000881 if(_candidate_bits < _best_bits) {
882 _best_subframe = !_best_subframe;
883 _best_bits = _candidate_bits;
884 }
885 }
886
887 /* encode lpc */
888 if(encoder->max_lpc_order > 0) {
889 if(encoder->max_lpc_order >= frame_header->blocksize)
890 max_lpc_order = frame_header->blocksize-1;
891 else
892 max_lpc_order = encoder->max_lpc_order;
893 if(max_lpc_order > 0) {
894 FLAC__lpc_compute_autocorrelation(real_signal, frame_header->blocksize, max_lpc_order+1, autoc);
Josh Coalsonf4ce50b2001-02-28 23:45:15 +0000895 /* if autoc[0] == 0.0, the signal is constant and we usually won't get here, but it can happen */
896 if(autoc[0] != 0.0) {
897 FLAC__lpc_compute_lp_coefficients(autoc, max_lpc_order, lp_coeff, lpc_error);
898 if(encoder->do_exhaustive_model_search) {
899 min_lpc_order = 1;
900 }
901 else {
902 unsigned guess_lpc_order = FLAC__lpc_compute_best_order(lpc_error, max_lpc_order, frame_header->blocksize, bits_per_sample);
903 min_lpc_order = max_lpc_order = guess_lpc_order;
904 }
905 if(encoder->do_qlp_coeff_prec_search) {
906 min_qlp_coeff_precision = FLAC__MIN_QLP_COEFF_PRECISION;
907 max_qlp_coeff_precision = min(32 - bits_per_sample - 1, (1u<<FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN)-1);
908 }
909 else {
910 min_qlp_coeff_precision = max_qlp_coeff_precision = encoder->qlp_coeff_precision;
911 }
912 for(lpc_order = min_lpc_order; lpc_order <= max_lpc_order; lpc_order++) {
913 lpc_residual_bits_per_sample = FLAC__lpc_compute_expected_bits_per_residual_sample(lpc_error[lpc_order-1], frame_header->blocksize-lpc_order);
914 if(lpc_residual_bits_per_sample >= (real)bits_per_sample)
915 continue; /* don't even try */
916 rice_parameter = (lpc_residual_bits_per_sample > 0.0)? (unsigned)(lpc_residual_bits_per_sample+0.5) : 0; /* 0.5 is for rounding */
Josh Coalson352e0f62001-03-20 22:55:50 +0000917#ifndef SYMMETRIC_RICE
Josh Coalsonf4ce50b2001-02-28 23:45:15 +0000918 rice_parameter++; /* to account for the signed->unsigned conversion during rice coding */
Josh Coalsonb9433f92001-03-17 01:07:00 +0000919#endif
Josh Coalsonf4ce50b2001-02-28 23:45:15 +0000920 if(rice_parameter >= (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN))
921 rice_parameter = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN) - 1;
922 for(qlp_coeff_precision = min_qlp_coeff_precision; qlp_coeff_precision <= max_qlp_coeff_precision; qlp_coeff_precision++) {
923 _candidate_bits = encoder_evaluate_lpc_subframe_(integer_signal, residual[!_best_subframe], encoder->guts->abs_residual, lp_coeff[lpc_order-1], frame_header->blocksize, bits_per_sample, lpc_order, qlp_coeff_precision, rice_parameter, max_partition_order, subframe[!_best_subframe]);
924 if(_candidate_bits > 0) { /* if == 0, there was a problem quantizing the lpcoeffs */
925 if(_candidate_bits < _best_bits) {
926 _best_subframe = !_best_subframe;
927 _best_bits = _candidate_bits;
928 }
Josh Coalson94e02cd2001-01-25 10:41:06 +0000929 }
930 }
931 }
932 }
933 }
934 }
935 }
936 }
937
938 *best_subframe = _best_subframe;
939 *best_bits = _best_bits;
940
941 return true;
942}
943
Josh Coalson859bc542001-03-27 22:22:27 +0000944bool encoder_add_subframe_(FLAC__Encoder *encoder, const FLAC__FrameHeader *frame_header, unsigned bits_per_sample, unsigned wasted_bits, const FLAC__Subframe *subframe, FLAC__BitBuffer *frame)
Josh Coalson94e02cd2001-01-25 10:41:06 +0000945{
946 switch(subframe->type) {
947 case FLAC__SUBFRAME_TYPE_CONSTANT:
Josh Coalson859bc542001-03-27 22:22:27 +0000948 if(!FLAC__subframe_add_constant(&(subframe->data.constant), bits_per_sample, wasted_bits, frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +0000949 encoder->state = FLAC__ENCODER_FATAL_ERROR_WHILE_ENCODING;
950 return false;
951 }
952 break;
953 case FLAC__SUBFRAME_TYPE_FIXED:
Josh Coalson859bc542001-03-27 22:22:27 +0000954 if(!FLAC__subframe_add_fixed(&(subframe->data.fixed), frame_header->blocksize - subframe->data.fixed.order, bits_per_sample, wasted_bits, frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +0000955 encoder->state = FLAC__ENCODER_FATAL_ERROR_WHILE_ENCODING;
956 return false;
957 }
958 break;
959 case FLAC__SUBFRAME_TYPE_LPC:
Josh Coalson859bc542001-03-27 22:22:27 +0000960 if(!FLAC__subframe_add_lpc(&(subframe->data.lpc), frame_header->blocksize - subframe->data.lpc.order, bits_per_sample, wasted_bits, frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +0000961 encoder->state = FLAC__ENCODER_FATAL_ERROR_WHILE_ENCODING;
962 return false;
963 }
964 break;
965 case FLAC__SUBFRAME_TYPE_VERBATIM:
Josh Coalson859bc542001-03-27 22:22:27 +0000966 if(!FLAC__subframe_add_verbatim(&(subframe->data.verbatim), frame_header->blocksize, bits_per_sample, wasted_bits, frame)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +0000967 encoder->state = FLAC__ENCODER_FATAL_ERROR_WHILE_ENCODING;
968 return false;
969 }
970 break;
971 default:
972 assert(0);
973 }
974
975 return true;
976}
977
978unsigned encoder_evaluate_constant_subframe_(const int32 signal, unsigned bits_per_sample, FLAC__Subframe *subframe)
979{
980 subframe->type = FLAC__SUBFRAME_TYPE_CONSTANT;
981 subframe->data.constant.value = signal;
982
Josh Coalson215af572001-03-27 01:15:58 +0000983 return FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + bits_per_sample;
Josh Coalson94e02cd2001-01-25 10:41:06 +0000984}
985
986unsigned encoder_evaluate_fixed_subframe_(const int32 signal[], int32 residual[], uint32 abs_residual[], unsigned blocksize, unsigned bits_per_sample, unsigned order, unsigned rice_parameter, unsigned max_partition_order, FLAC__Subframe *subframe)
987{
988 unsigned i, residual_bits;
989 const unsigned residual_samples = blocksize - order;
990
991 FLAC__fixed_compute_residual(signal+order, residual_samples, order, residual);
992
993 subframe->type = FLAC__SUBFRAME_TYPE_FIXED;
994
995 subframe->data.fixed.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
996 subframe->data.fixed.residual = residual;
997
998 residual_bits = encoder_find_best_partition_order_(residual, abs_residual, residual_samples, order, rice_parameter, max_partition_order, &subframe->data.fixed.entropy_coding_method.data.partitioned_rice.order, subframe->data.fixed.entropy_coding_method.data.partitioned_rice.parameters);
999
1000 subframe->data.fixed.order = order;
1001 for(i = 0; i < order; i++)
1002 subframe->data.fixed.warmup[i] = signal[i];
1003
Josh Coalson215af572001-03-27 01:15:58 +00001004 return FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + (order * bits_per_sample) + residual_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001005}
1006
1007unsigned encoder_evaluate_lpc_subframe_(const int32 signal[], int32 residual[], uint32 abs_residual[], const real lp_coeff[], unsigned blocksize, unsigned bits_per_sample, unsigned order, unsigned qlp_coeff_precision, unsigned rice_parameter, unsigned max_partition_order, FLAC__Subframe *subframe)
1008{
1009 int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
1010 unsigned i, residual_bits;
1011 int quantization, ret;
1012 const unsigned residual_samples = blocksize - order;
1013
1014 ret = FLAC__lpc_quantize_coefficients(lp_coeff, order, qlp_coeff_precision, bits_per_sample, qlp_coeff, &quantization);
1015 if(ret != 0)
1016 return 0; /* this is a hack to indicate to the caller that we can't do lp at this order on this subframe */
1017
1018 FLAC__lpc_compute_residual_from_qlp_coefficients(signal+order, residual_samples, qlp_coeff, order, quantization, residual);
1019
1020 subframe->type = FLAC__SUBFRAME_TYPE_LPC;
1021
1022 subframe->data.lpc.entropy_coding_method.type = FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE;
1023 subframe->data.lpc.residual = residual;
1024
1025 residual_bits = encoder_find_best_partition_order_(residual, abs_residual, residual_samples, order, rice_parameter, max_partition_order, &subframe->data.lpc.entropy_coding_method.data.partitioned_rice.order, subframe->data.lpc.entropy_coding_method.data.partitioned_rice.parameters);
1026
1027 subframe->data.lpc.order = order;
1028 subframe->data.lpc.qlp_coeff_precision = qlp_coeff_precision;
1029 subframe->data.lpc.quantization_level = quantization;
1030 memcpy(subframe->data.lpc.qlp_coeff, qlp_coeff, sizeof(int32)*FLAC__MAX_LPC_ORDER);
1031 for(i = 0; i < order; i++)
1032 subframe->data.lpc.warmup[i] = signal[i];
1033
Josh Coalson215af572001-03-27 01:15:58 +00001034 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 + bits_per_sample)) + residual_bits;
Josh Coalson94e02cd2001-01-25 10:41:06 +00001035}
1036
1037unsigned encoder_evaluate_verbatim_subframe_(const int32 signal[], unsigned blocksize, unsigned bits_per_sample, FLAC__Subframe *subframe)
1038{
1039 subframe->type = FLAC__SUBFRAME_TYPE_VERBATIM;
1040
1041 subframe->data.verbatim.data = signal;
1042
Josh Coalson215af572001-03-27 01:15:58 +00001043 return FLAC__SUBFRAME_ZERO_PAD_LEN + FLAC__SUBFRAME_TYPE_LEN + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + (blocksize * bits_per_sample);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001044}
1045
1046unsigned encoder_find_best_partition_order_(const int32 residual[], uint32 abs_residual[], unsigned residual_samples, unsigned predictor_order, unsigned rice_parameter, unsigned max_partition_order, unsigned *best_partition_order, unsigned best_parameters[])
1047{
1048 unsigned residual_bits, best_residual_bits = 0;
1049 unsigned i, partition_order;
1050 unsigned best_parameters_index = 0, parameters[2][1 << FLAC__MAX_RICE_PARTITION_ORDER];
1051 int32 r;
1052
1053 /* compute the abs(residual) for use later */
1054 for(i = 0; i < residual_samples; i++) {
1055 r = residual[i];
1056 abs_residual[i] = (uint32)(r<0? -r : r);
1057 }
1058
1059 for(partition_order = 0; partition_order <= max_partition_order; partition_order++) {
Josh Coalson3b5f4712001-03-21 22:53:43 +00001060 if(!encoder_set_partitioned_rice_(abs_residual, residual_samples, predictor_order, rice_parameter, partition_order, parameters[!best_parameters_index], &residual_bits)) {
Josh Coalson94e02cd2001-01-25 10:41:06 +00001061 assert(best_residual_bits != 0);
1062 break;
1063 }
1064 if(best_residual_bits == 0 || residual_bits < best_residual_bits) {
1065 best_residual_bits = residual_bits;
1066 *best_partition_order = partition_order;
1067 best_parameters_index = !best_parameters_index;
1068 }
1069 }
1070 memcpy(best_parameters, parameters[best_parameters_index], sizeof(unsigned)*(1<<(*best_partition_order)));
1071
1072 return best_residual_bits;
1073}
1074
Josh Coalson352e0f62001-03-20 22:55:50 +00001075#ifdef VARIABLE_RICE_BITS
1076#undef VARIABLE_RICE_BITS
1077#endif
1078#define VARIABLE_RICE_BITS(value, parameter) ((value) >> (parameter))
1079
Josh Coalson3b5f4712001-03-21 22:53:43 +00001080bool encoder_set_partitioned_rice_(const uint32 abs_residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned rice_parameter, const unsigned partition_order, unsigned parameters[], unsigned *bits)
Josh Coalson94e02cd2001-01-25 10:41:06 +00001081{
1082 unsigned bits_ = FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
1083
1084 if(partition_order == 0) {
1085 unsigned i;
Josh Coalson352e0f62001-03-20 22:55:50 +00001086
1087 {
1088#ifdef VARIABLE_RICE_BITS
1089#ifdef SYMMETRIC_RICE
1090 bits_ += (2+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00001091#else
Josh Coalson352e0f62001-03-20 22:55:50 +00001092 const unsigned rice_parameter_estimate = rice_parameter-1;
1093 bits_ += (1+rice_parameter) * residual_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00001094#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00001095#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00001096 parameters[0] = rice_parameter;
1097 bits_ += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
1098 for(i = 0; i < residual_samples; i++) {
1099#ifdef VARIABLE_RICE_BITS
1100#ifdef SYMMETRIC_RICE
Josh Coalson3b5f4712001-03-21 22:53:43 +00001101 bits_ += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001102#else
Josh Coalson352e0f62001-03-20 22:55:50 +00001103 bits_ += VARIABLE_RICE_BITS(abs_residual[i], rice_parameter_estimate);
Josh Coalsonb9433f92001-03-17 01:07:00 +00001104#endif
1105#else
Josh Coalson3b5f4712001-03-21 22:53:43 +00001106 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 +00001107#endif
Josh Coalson352e0f62001-03-20 22:55:50 +00001108 }
1109 }
Josh Coalson94e02cd2001-01-25 10:41:06 +00001110 }
1111 else {
1112 unsigned i, j, k = 0, k_last = 0;
1113 unsigned mean, parameter, partition_samples;
1114 const unsigned max_parameter = (1u << FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN) - 1;
1115 for(i = 0; i < (1u<<partition_order); i++) {
1116 partition_samples = (residual_samples+predictor_order) >> partition_order;
1117 if(i == 0) {
1118 if(partition_samples <= predictor_order)
1119 return false;
1120 else
1121 partition_samples -= predictor_order;
1122 }
1123 mean = partition_samples >> 1;
1124 for(j = 0; j < partition_samples; j++, k++)
1125 mean += abs_residual[k];
1126 mean /= partition_samples;
Josh Coalson352e0f62001-03-20 22:55:50 +00001127#ifdef SYMMETRIC_RICE
1128 /* calc parameter = floor(log2(mean)) */
Josh Coalsonb9433f92001-03-17 01:07:00 +00001129 parameter = 0;
1130mean>>=1;
1131 while(mean) {
1132 parameter++;
1133 mean >>= 1;
1134 }
Josh Coalsonb9433f92001-03-17 01:07:00 +00001135#else
Josh Coalson352e0f62001-03-20 22:55:50 +00001136 /* calc parameter = floor(log2(mean)) + 1 */
1137 parameter = 0;
1138 while(mean) {
1139 parameter++;
1140 mean >>= 1;
1141 }
Josh Coalsonb9433f92001-03-17 01:07:00 +00001142#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00001143 if(parameter > max_parameter)
1144 parameter = max_parameter;
1145 parameters[i] = parameter;
1146 bits_ += FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
Josh Coalson352e0f62001-03-20 22:55:50 +00001147#ifdef VARIABLE_RICE_BITS
1148#ifdef SYMMETRIC_RICE
Josh Coalsonb9433f92001-03-17 01:07:00 +00001149 bits_ += (2+parameter) * partition_samples;
Josh Coalsonb9433f92001-03-17 01:07:00 +00001150#else
Josh Coalson352e0f62001-03-20 22:55:50 +00001151 bits_ += (1+parameter) * partition_samples;
1152 --parameter;
Josh Coalsonb9433f92001-03-17 01:07:00 +00001153#endif
Josh Coalson94e02cd2001-01-25 10:41:06 +00001154#endif
1155 for(j = k_last; j < k; j++)
Josh Coalson352e0f62001-03-20 22:55:50 +00001156#ifdef VARIABLE_RICE_BITS
1157#ifdef SYMMETRIC_RICE
1158 bits_ += VARIABLE_RICE_BITS(abs_residual[j], parameter);
Josh Coalson94e02cd2001-01-25 10:41:06 +00001159#else
Josh Coalson352e0f62001-03-20 22:55:50 +00001160 bits_ += VARIABLE_RICE_BITS(abs_residual[j], parameter);
Josh Coalsonb9433f92001-03-17 01:07:00 +00001161#endif
1162#else
Josh Coalson3b5f4712001-03-21 22:53:43 +00001163 bits_ += FLAC__bitbuffer_rice_bits(residual[j], parameter); /* NOTE we will need to pass in residual[] instead of abs_residual[] */
Josh Coalson94e02cd2001-01-25 10:41:06 +00001164#endif
1165 k_last = k;
1166 }
1167 }
1168
1169 *bits = bits_;
1170 return true;
1171}
Josh Coalson859bc542001-03-27 22:22:27 +00001172
1173static unsigned encoder_get_wasted_bits_(int32 signal[], unsigned samples)
1174{
1175 unsigned i, shift;
1176 int32 x = 0;
1177
1178 for(i = 0; i < samples && !(x&1); i++)
1179 x |= signal[i];
1180
1181 if(x == 0) {
1182 shift = 0;
1183 }
1184 else {
1185 for(shift = 0; !(x&1); shift++)
1186 x >>= 1;
1187 }
1188
1189 if(shift > 0) {
1190 for(i = 0; i < samples; i++)
1191 signal[i] >>= shift;
1192 }
1193
1194 return shift;
1195}