Josh Coalson | 26560dd | 2001-02-08 00:38:41 +0000 | [diff] [blame] | 1 | /* libFLAC - Free Lossless Audio Codec library |
Josh Coalson | 70118f6 | 2001-01-16 20:17:53 +0000 | [diff] [blame] | 2 | * Copyright (C) 2000,2001 Josh Coalson |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 3 | * |
| 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 Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 20 | #include <math.h> |
| 21 | #include <stdio.h> |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 22 | #include "FLAC/assert.h" |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 23 | #include "FLAC/format.h" |
| 24 | #include "private/lpc.h" |
| 25 | |
| 26 | #ifndef M_LN2 |
| 27 | /* math.h in VC++ doesn't seem to have this (how Microsoft is that?) */ |
| 28 | #define M_LN2 0.69314718055994530942 |
| 29 | #endif |
| 30 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 31 | void FLAC__lpc_compute_autocorrelation(const FLAC__real data[], unsigned data_len, unsigned lag, FLAC__real autoc[]) |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 32 | { |
Josh Coalson | c0785cd | 2001-05-10 19:29:41 +0000 | [diff] [blame] | 33 | /* a readable, but slower, version */ |
| 34 | #if 0 |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 35 | FLAC__real d; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 36 | unsigned i; |
| 37 | |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 38 | FLAC__ASSERT(lag > 0); |
| 39 | FLAC__ASSERT(lag <= data_len); |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 40 | |
| 41 | while(lag--) { |
| 42 | for(i = lag, d = 0.0; i < data_len; i++) |
| 43 | d += data[i] * data[i - lag]; |
| 44 | autoc[lag] = d; |
| 45 | } |
Josh Coalson | c0785cd | 2001-05-10 19:29:41 +0000 | [diff] [blame] | 46 | #endif |
| 47 | |
| 48 | /* |
| 49 | * this version tends to run faster because of better data locality |
| 50 | * ('data_len' is usually much larger than 'lag') |
| 51 | */ |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 52 | FLAC__real d; |
Josh Coalson | c0785cd | 2001-05-10 19:29:41 +0000 | [diff] [blame] | 53 | unsigned sample, coeff; |
| 54 | const unsigned limit = data_len - lag; |
| 55 | |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 56 | FLAC__ASSERT(lag > 0); |
| 57 | FLAC__ASSERT(lag <= data_len); |
Josh Coalson | c0785cd | 2001-05-10 19:29:41 +0000 | [diff] [blame] | 58 | |
| 59 | for(coeff = 0; coeff < lag; coeff++) |
| 60 | autoc[coeff] = 0.0; |
Josh Coalson | 376807d | 2001-05-16 19:23:35 +0000 | [diff] [blame] | 61 | for(sample = 0; sample <= limit; sample++) { |
Josh Coalson | c0785cd | 2001-05-10 19:29:41 +0000 | [diff] [blame] | 62 | d = data[sample]; |
| 63 | for(coeff = 0; coeff < lag; coeff++) |
| 64 | autoc[coeff] += d * data[sample+coeff]; |
| 65 | } |
Josh Coalson | 376807d | 2001-05-16 19:23:35 +0000 | [diff] [blame] | 66 | for(; sample < data_len; sample++) { |
Josh Coalson | c0785cd | 2001-05-10 19:29:41 +0000 | [diff] [blame] | 67 | d = data[sample]; |
| 68 | for(coeff = 0; coeff < data_len - sample; coeff++) |
| 69 | autoc[coeff] += d * data[sample+coeff]; |
| 70 | } |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 71 | } |
| 72 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 73 | void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER], FLAC__real error[]) |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 74 | { |
| 75 | unsigned i, j; |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 76 | double r, err, ref[FLAC__MAX_LPC_ORDER], lpc[FLAC__MAX_LPC_ORDER]; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 77 | |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 78 | FLAC__ASSERT(0 < max_order); |
| 79 | FLAC__ASSERT(max_order <= FLAC__MAX_LPC_ORDER); |
| 80 | FLAC__ASSERT(autoc[0] != 0.0); |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 81 | |
| 82 | err = autoc[0]; |
| 83 | |
| 84 | for(i = 0; i < max_order; i++) { |
| 85 | /* Sum up this iteration's reflection coefficient. */ |
Josh Coalson | a1b53c4 | 2001-05-24 19:27:08 +0000 | [diff] [blame] | 86 | r = -autoc[i+1]; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 87 | for(j = 0; j < i; j++) |
| 88 | r -= lpc[j] * autoc[i-j]; |
| 89 | ref[i] = (r/=err); |
| 90 | |
| 91 | /* Update LPC coefficients and total error. */ |
| 92 | lpc[i]=r; |
| 93 | for(j = 0; j < (i>>1); j++) { |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 94 | double tmp = lpc[j]; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 95 | lpc[j] += r * lpc[i-1-j]; |
| 96 | lpc[i-1-j] += r * tmp; |
| 97 | } |
| 98 | if(i & 1) |
| 99 | lpc[j] += lpc[j] * r; |
| 100 | |
| 101 | err *= (1.0 - r * r); |
| 102 | |
| 103 | /* save this order */ |
| 104 | for(j = 0; j <= i; j++) |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 105 | lp_coeff[i][j] = (FLAC__real)(-lpc[j]); /* negate FIR filter coeff to get predictor coeff */ |
| 106 | error[i] = (FLAC__real)err; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 107 | } |
| 108 | } |
| 109 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 110 | int FLAC__lpc_quantize_coefficients(const FLAC__real lp_coeff[], unsigned order, unsigned precision, unsigned bits_per_sample, FLAC__int32 qlp_coeff[], int *shift) |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 111 | { |
| 112 | unsigned i; |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 113 | double d, cmax = -1e32; |
Josh Coalson | 5975e8a | 2001-07-03 04:10:21 +0000 | [diff] [blame] | 114 | FLAC__int32 qmax, qmin; |
| 115 | const int max_shiftlimit = (1 << (FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN-1)) - 1; |
| 116 | const int min_shiftlimit = -max_shiftlimit - 1; |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 117 | |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 118 | FLAC__ASSERT(bits_per_sample > 0); |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 119 | FLAC__ASSERT(bits_per_sample <= sizeof(FLAC__int32)*8); |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 120 | FLAC__ASSERT(precision > 0); |
| 121 | FLAC__ASSERT(precision >= FLAC__MIN_QLP_COEFF_PRECISION); |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 122 | FLAC__ASSERT(precision + bits_per_sample < sizeof(FLAC__int32)*8); |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 123 | #ifdef NDEBUG |
| 124 | (void)bits_per_sample; /* silence compiler warning about unused parameter */ |
| 125 | #endif |
| 126 | |
| 127 | /* drop one bit for the sign; from here on out we consider only |lp_coeff[i]| */ |
| 128 | precision--; |
Josh Coalson | 5975e8a | 2001-07-03 04:10:21 +0000 | [diff] [blame] | 129 | qmax = 1 << precision; |
| 130 | qmin = -qmax; |
| 131 | qmax--; |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 132 | |
| 133 | for(i = 0; i < order; i++) { |
| 134 | if(lp_coeff[i] == 0.0) |
| 135 | continue; |
Josh Coalson | f52360a | 2001-08-13 23:10:06 +0000 | [diff] [blame] | 136 | d = fabs(lp_coeff[i]); |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 137 | if(d > cmax) |
| 138 | cmax = d; |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 139 | } |
Josh Coalson | 5975e8a | 2001-07-03 04:10:21 +0000 | [diff] [blame] | 140 | redo_it: |
Josh Coalson | d3ed49f | 2001-07-18 23:47:19 +0000 | [diff] [blame] | 141 | if(cmax <= 0.0) { |
Josh Coalson | 456db82 | 2001-03-01 19:14:05 +0000 | [diff] [blame] | 142 | /* => coefficients are all 0, which means our constant-detect didn't work */ |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 143 | return 2; |
| 144 | } |
| 145 | else { |
Josh Coalson | 8c6f90f | 2001-07-19 17:07:13 +0000 | [diff] [blame] | 146 | int log2cmax; |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 147 | |
Josh Coalson | 8c6f90f | 2001-07-19 17:07:13 +0000 | [diff] [blame] | 148 | (void)frexp(cmax, &log2cmax); |
| 149 | log2cmax--; |
| 150 | *shift = (int)precision - log2cmax - 1; |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 151 | |
| 152 | if(*shift < min_shiftlimit || *shift > max_shiftlimit) { |
Josh Coalson | c625f90 | 2001-02-28 23:56:03 +0000 | [diff] [blame] | 153 | return 1; |
| 154 | } |
| 155 | } |
| 156 | |
Josh Coalson | 4e6b3ac | 2001-07-06 00:37:57 +0000 | [diff] [blame] | 157 | if(*shift >= 0) { |
| 158 | for(i = 0; i < order; i++) { |
| 159 | qlp_coeff[i] = (FLAC__int32)floor((double)lp_coeff[i] * (double)(1 << *shift)); |
Josh Coalson | 5975e8a | 2001-07-03 04:10:21 +0000 | [diff] [blame] | 160 | |
Josh Coalson | 8c6f90f | 2001-07-19 17:07:13 +0000 | [diff] [blame] | 161 | /* double-check the result */ |
Josh Coalson | 4e6b3ac | 2001-07-06 00:37:57 +0000 | [diff] [blame] | 162 | if(qlp_coeff[i] > qmax || qlp_coeff[i] < qmin) { |
Josh Coalson | 5975e8a | 2001-07-03 04:10:21 +0000 | [diff] [blame] | 163 | #ifdef FLAC__OVERFLOW_DETECT |
Josh Coalson | 4e6b3ac | 2001-07-06 00:37:57 +0000 | [diff] [blame] | 164 | fprintf(stderr,"FLAC__lpc_quantize_coefficients: compensating for overflow, qlp_coeff[%u]=%d, lp_coeff[%u]=%f, cmax=%f, precision=%u, shift=%d, q=%f, f(q)=%f\n", i, qlp_coeff[i], i, lp_coeff[i], cmax, precision, *shift, (double)lp_coeff[i] * (double)(1 << *shift), floor((double)lp_coeff[i] * (double)(1 << *shift))); |
Josh Coalson | 5975e8a | 2001-07-03 04:10:21 +0000 | [diff] [blame] | 165 | #endif |
Josh Coalson | 4e6b3ac | 2001-07-06 00:37:57 +0000 | [diff] [blame] | 166 | cmax *= 2.0; |
| 167 | goto redo_it; |
Josh Coalson | 5975e8a | 2001-07-03 04:10:21 +0000 | [diff] [blame] | 168 | } |
| 169 | } |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 170 | } |
Josh Coalson | 4e6b3ac | 2001-07-06 00:37:57 +0000 | [diff] [blame] | 171 | else { /* (*shift < 0) */ |
| 172 | const int nshift = -(*shift); |
Josh Coalson | 3dbbf94 | 2001-07-12 21:27:40 +0000 | [diff] [blame] | 173 | #ifdef DEBUG |
Josh Coalson | 4e6b3ac | 2001-07-06 00:37:57 +0000 | [diff] [blame] | 174 | fprintf(stderr,"FLAC__lpc_quantize_coefficients: negative shift = %d\n", *shift); |
Josh Coalson | 3dbbf94 | 2001-07-12 21:27:40 +0000 | [diff] [blame] | 175 | #endif |
Josh Coalson | 4e6b3ac | 2001-07-06 00:37:57 +0000 | [diff] [blame] | 176 | for(i = 0; i < order; i++) { |
| 177 | qlp_coeff[i] = (FLAC__int32)floor((double)lp_coeff[i] / (double)(1 << nshift)); |
| 178 | |
Josh Coalson | 8c6f90f | 2001-07-19 17:07:13 +0000 | [diff] [blame] | 179 | /* double-check the result */ |
Josh Coalson | 4e6b3ac | 2001-07-06 00:37:57 +0000 | [diff] [blame] | 180 | if(qlp_coeff[i] > qmax || qlp_coeff[i] < qmin) { |
| 181 | #ifdef FLAC__OVERFLOW_DETECT |
| 182 | fprintf(stderr,"FLAC__lpc_quantize_coefficients: compensating for overflow, qlp_coeff[%u]=%d, lp_coeff[%u]=%f, cmax=%f, precision=%u, shift=%d, q=%f, f(q)=%f\n", i, qlp_coeff[i], i, lp_coeff[i], cmax, precision, *shift, (double)lp_coeff[i] / (double)(1 << nshift), floor((double)lp_coeff[i] / (double)(1 << nshift))); |
| 183 | #endif |
| 184 | cmax *= 2.0; |
| 185 | goto redo_it; |
| 186 | } |
| 187 | } |
| 188 | } |
| 189 | |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 190 | return 0; |
| 191 | } |
| 192 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 193 | void FLAC__lpc_compute_residual_from_qlp_coefficients(const FLAC__int32 data[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 residual[]) |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 194 | { |
Josh Coalson | bb6712e | 2001-04-24 22:54:07 +0000 | [diff] [blame] | 195 | #ifdef FLAC__OVERFLOW_DETECT |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 196 | FLAC__int64 sumo; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 197 | #endif |
| 198 | unsigned i, j; |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 199 | FLAC__int32 sum; |
| 200 | const FLAC__int32 *history; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 201 | |
Josh Coalson | bb6712e | 2001-04-24 22:54:07 +0000 | [diff] [blame] | 202 | #ifdef FLAC__OVERFLOW_DETECT_VERBOSE |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 203 | fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients: data_len=%d, order=%u, lpq=%d",data_len,order,lp_quantization); |
| 204 | for(i=0;i<order;i++) |
| 205 | fprintf(stderr,", q[%u]=%d",i,qlp_coeff[i]); |
| 206 | fprintf(stderr,"\n"); |
| 207 | #endif |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 208 | FLAC__ASSERT(order > 0); |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 209 | |
| 210 | for(i = 0; i < data_len; i++) { |
Josh Coalson | bb6712e | 2001-04-24 22:54:07 +0000 | [diff] [blame] | 211 | #ifdef FLAC__OVERFLOW_DETECT |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 212 | sumo = 0; |
| 213 | #endif |
| 214 | sum = 0; |
| 215 | history = data; |
| 216 | for(j = 0; j < order; j++) { |
| 217 | sum += qlp_coeff[j] * (*(--history)); |
Josh Coalson | bb6712e | 2001-04-24 22:54:07 +0000 | [diff] [blame] | 218 | #ifdef FLAC__OVERFLOW_DETECT |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 219 | sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history); |
Josh Coalson | 40333b1 | 2001-11-13 21:37:04 +0000 | [diff] [blame^] | 220 | #if defined _MSC_VER || defined __MINGW32__ /* don't know how to do 64-bit literals in VC++ */ |
Josh Coalson | d37acf4 | 2001-07-09 18:22:46 +0000 | [diff] [blame] | 221 | if(sumo < 0) sumo = -sumo; |
| 222 | if(sumo > 2147483647) |
| 223 | #else |
| 224 | if(sumo > 2147483647ll || sumo < -2147483648ll) |
| 225 | #endif |
| 226 | { |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 227 | fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients: OVERFLOW, i=%u, j=%u, c=%d, d=%d, sumo=%lld\n",i,j,qlp_coeff[j],*history,sumo); |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 228 | } |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 229 | #endif |
| 230 | } |
| 231 | *(residual++) = *(data++) - (sum >> lp_quantization); |
| 232 | } |
| 233 | |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 234 | /* Here's a slower but clearer version: |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 235 | for(i = 0; i < data_len; i++) { |
| 236 | sum = 0; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 237 | for(j = 0; j < order; j++) |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 238 | sum += qlp_coeff[j] * data[i-j-1]; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 239 | residual[i] = data[i] - (sum >> lp_quantization); |
| 240 | } |
| 241 | */ |
| 242 | } |
| 243 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 244 | void FLAC__lpc_restore_signal(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]) |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 245 | { |
Josh Coalson | bb6712e | 2001-04-24 22:54:07 +0000 | [diff] [blame] | 246 | #ifdef FLAC__OVERFLOW_DETECT |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 247 | FLAC__int64 sumo; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 248 | #endif |
| 249 | unsigned i, j; |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 250 | FLAC__int32 sum; |
| 251 | const FLAC__int32 *history; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 252 | |
Josh Coalson | bb6712e | 2001-04-24 22:54:07 +0000 | [diff] [blame] | 253 | #ifdef FLAC__OVERFLOW_DETECT_VERBOSE |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 254 | fprintf(stderr,"FLAC__lpc_restore_signal: data_len=%d, order=%u, lpq=%d",data_len,order,lp_quantization); |
| 255 | for(i=0;i<order;i++) |
| 256 | fprintf(stderr,", q[%u]=%d",i,qlp_coeff[i]); |
| 257 | fprintf(stderr,"\n"); |
| 258 | #endif |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 259 | FLAC__ASSERT(order > 0); |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 260 | |
| 261 | for(i = 0; i < data_len; i++) { |
Josh Coalson | bb6712e | 2001-04-24 22:54:07 +0000 | [diff] [blame] | 262 | #ifdef FLAC__OVERFLOW_DETECT |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 263 | sumo = 0; |
| 264 | #endif |
| 265 | sum = 0; |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 266 | history = data; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 267 | for(j = 0; j < order; j++) { |
| 268 | sum += qlp_coeff[j] * (*(--history)); |
Josh Coalson | bb6712e | 2001-04-24 22:54:07 +0000 | [diff] [blame] | 269 | #ifdef FLAC__OVERFLOW_DETECT |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 270 | sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history); |
Josh Coalson | 40333b1 | 2001-11-13 21:37:04 +0000 | [diff] [blame^] | 271 | #if defined _MSC_VER || defined __MINGW32__ /* don't know how to do 64-bit literals in VC++ */ |
Josh Coalson | d37acf4 | 2001-07-09 18:22:46 +0000 | [diff] [blame] | 272 | if(sumo < 0) sumo = -sumo; |
| 273 | if(sumo > 2147483647) |
| 274 | #else |
| 275 | if(sumo > 2147483647ll || sumo < -2147483648ll) |
| 276 | #endif |
| 277 | { |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 278 | fprintf(stderr,"FLAC__lpc_restore_signal: OVERFLOW, i=%u, j=%u, c=%d, d=%d, sumo=%lld\n",i,j,qlp_coeff[j],*history,sumo); |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 279 | } |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 280 | #endif |
| 281 | } |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 282 | *(data++) = *(residual++) + (sum >> lp_quantization); |
| 283 | } |
| 284 | |
| 285 | /* Here's a slower but clearer version: |
| 286 | for(i = 0; i < data_len; i++) { |
| 287 | sum = 0; |
| 288 | for(j = 0; j < order; j++) |
| 289 | sum += qlp_coeff[j] * data[i-j-1]; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 290 | data[i] = residual[i] + (sum >> lp_quantization); |
| 291 | } |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 292 | */ |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 293 | } |
| 294 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 295 | FLAC__real FLAC__lpc_compute_expected_bits_per_residual_sample(FLAC__real lpc_error, unsigned total_samples) |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 296 | { |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 297 | double error_scale; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 298 | |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 299 | FLAC__ASSERT(total_samples > 0); |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 300 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 301 | error_scale = 0.5 * M_LN2 * M_LN2 / (FLAC__real)total_samples; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 302 | |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 303 | if(lpc_error > 0.0) { |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 304 | FLAC__real bps = (FLAC__real)((double)0.5 * log(error_scale * lpc_error) / M_LN2); |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 305 | if(bps >= 0.0) |
| 306 | return bps; |
| 307 | else |
| 308 | return 0.0; |
| 309 | } |
Josh Coalson | a1b53c4 | 2001-05-24 19:27:08 +0000 | [diff] [blame] | 310 | else if(lpc_error < 0.0) { /* error should not be negative but can happen due to inadequate float resolution */ |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 311 | return (FLAC__real)1e32; |
Josh Coalson | a1b53c4 | 2001-05-24 19:27:08 +0000 | [diff] [blame] | 312 | } |
| 313 | else { |
| 314 | return 0.0; |
| 315 | } |
| 316 | } |
| 317 | |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 318 | FLAC__real FLAC__lpc_compute_expected_bits_per_residual_sample_with_error_scale(FLAC__real lpc_error, double error_scale) |
Josh Coalson | a1b53c4 | 2001-05-24 19:27:08 +0000 | [diff] [blame] | 319 | { |
| 320 | if(lpc_error > 0.0) { |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 321 | FLAC__real bps = (FLAC__real)((double)0.5 * log(error_scale * lpc_error) / M_LN2); |
Josh Coalson | a1b53c4 | 2001-05-24 19:27:08 +0000 | [diff] [blame] | 322 | if(bps >= 0.0) |
| 323 | return bps; |
| 324 | else |
| 325 | return 0.0; |
| 326 | } |
| 327 | else if(lpc_error < 0.0) { /* error should not be negative but can happen due to inadequate float resolution */ |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 328 | return (FLAC__real)1e32; |
Josh Coalson | a1b53c4 | 2001-05-24 19:27:08 +0000 | [diff] [blame] | 329 | } |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 330 | else { |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 331 | return 0.0; |
Josh Coalson | 9f77a19 | 2001-02-08 00:26:45 +0000 | [diff] [blame] | 332 | } |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 335 | unsigned FLAC__lpc_compute_best_order(const FLAC__real lpc_error[], unsigned max_order, unsigned total_samples, unsigned bits_per_signal_sample) |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 336 | { |
| 337 | unsigned order, best_order; |
Josh Coalson | b35bebd | 2001-07-03 04:37:18 +0000 | [diff] [blame] | 338 | FLAC__real best_bits, tmp_bits; |
| 339 | double error_scale; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 340 | |
Josh Coalson | 1b68982 | 2001-05-31 20:11:02 +0000 | [diff] [blame] | 341 | FLAC__ASSERT(max_order > 0); |
| 342 | FLAC__ASSERT(total_samples > 0); |
Josh Coalson | a1b53c4 | 2001-05-24 19:27:08 +0000 | [diff] [blame] | 343 | |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 344 | error_scale = 0.5 * M_LN2 * M_LN2 / (FLAC__real)total_samples; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 345 | |
| 346 | best_order = 0; |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 347 | best_bits = FLAC__lpc_compute_expected_bits_per_residual_sample_with_error_scale(lpc_error[0], error_scale) * (FLAC__real)total_samples; |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 348 | |
| 349 | for(order = 1; order < max_order; order++) { |
Josh Coalson | 77e3f31 | 2001-06-23 03:03:24 +0000 | [diff] [blame] | 350 | tmp_bits = FLAC__lpc_compute_expected_bits_per_residual_sample_with_error_scale(lpc_error[order], error_scale) * (FLAC__real)(total_samples - order) + (FLAC__real)(order * bits_per_signal_sample); |
Josh Coalson | bb7f6b9 | 2000-12-10 04:09:52 +0000 | [diff] [blame] | 351 | if(tmp_bits < best_bits) { |
| 352 | best_order = order; |
| 353 | best_bits = tmp_bits; |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | return best_order+1; /* +1 since index of lpc_error[] is order-1 */ |
| 358 | } |