Mercurial > libavcodec.hg
annotate mlpdec.c @ 9530:dbb16aa52d43 libavcodec
mlpdec: Restart header sync must be 0x31ea for MLP.
| author | ramiro |
|---|---|
| date | Tue, 21 Apr 2009 21:57:23 +0000 |
| parents | 41ab6db265d0 |
| children | 19a70bcc2220 |
| rev | line source |
|---|---|
| 7194 | 1 /* |
| 2 * MLP decoder | |
| 3 * Copyright (c) 2007-2008 Ian Caulfield | |
| 4 * | |
| 5 * This file is part of FFmpeg. | |
| 6 * | |
| 7 * FFmpeg is free software; you can redistribute it and/or | |
| 8 * modify it under the terms of the GNU Lesser General Public | |
| 9 * License as published by the Free Software Foundation; either | |
| 10 * version 2.1 of the License, or (at your option) any later version. | |
| 11 * | |
| 12 * FFmpeg is distributed in the hope that it will be useful, | |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 15 * Lesser General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU Lesser General Public | |
| 18 * License along with FFmpeg; if not, write to the Free Software | |
| 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 20 */ | |
| 21 | |
| 22 /** | |
|
8718
e9d9d946f213
Use full internal pathname in doxygen @file directives.
diego
parents:
8693
diff
changeset
|
23 * @file libavcodec/mlpdec.c |
| 7194 | 24 * MLP decoder |
| 25 */ | |
| 26 | |
| 7199 | 27 #include <stdint.h> |
| 28 | |
| 7194 | 29 #include "avcodec.h" |
| 30 #include "libavutil/intreadwrite.h" | |
| 9428 | 31 #include "get_bits.h" |
| 7194 | 32 #include "libavutil/crc.h" |
| 33 #include "parser.h" | |
| 34 #include "mlp_parser.h" | |
|
7559
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
35 #include "mlp.h" |
| 7194 | 36 |
| 7198 | 37 /** number of bits used for VLC lookup - longest Huffman code is 9 */ |
| 7194 | 38 #define VLC_BITS 9 |
| 39 | |
| 40 | |
| 41 static const char* sample_message = | |
| 42 "Please file a bug report following the instructions at " | |
|
8460
5b3c90656fdf
Change mplayerhq.hu references to ffmpeg.org where appropriate.
diego
parents:
8277
diff
changeset
|
43 "http://ffmpeg.org/bugreports.html and include " |
| 7194 | 44 "a sample of this file."; |
| 45 | |
| 46 typedef struct SubStream { | |
| 7198 | 47 //! Set if a valid restart header has been read. Otherwise the substream cannot be decoded. |
| 7194 | 48 uint8_t restart_seen; |
| 49 | |
| 50 //@{ | |
| 51 /** restart header data */ | |
| 52 //! The type of noise to be used in the rematrix stage. | |
| 53 uint16_t noise_type; | |
| 54 | |
| 55 //! The index of the first channel coded in this substream. | |
| 56 uint8_t min_channel; | |
| 57 //! The index of the last channel coded in this substream. | |
| 58 uint8_t max_channel; | |
| 59 //! The number of channels input into the rematrix stage. | |
| 60 uint8_t max_matrix_channel; | |
| 9203 | 61 //! For each channel output by the matrix, the output channel to map it to |
| 62 uint8_t ch_assign[MAX_CHANNELS]; | |
| 7194 | 63 |
| 64 //! The left shift applied to random noise in 0x31ea substreams. | |
| 65 uint8_t noise_shift; | |
| 66 //! The current seed value for the pseudorandom noise generator(s). | |
| 67 uint32_t noisegen_seed; | |
| 68 | |
| 69 //! Set if the substream contains extra info to check the size of VLC blocks. | |
| 70 uint8_t data_check_present; | |
| 71 | |
| 72 //! Bitmask of which parameter sets are conveyed in a decoding parameter block. | |
| 73 uint8_t param_presence_flags; | |
| 74 #define PARAM_BLOCKSIZE (1 << 7) | |
| 75 #define PARAM_MATRIX (1 << 6) | |
| 76 #define PARAM_OUTSHIFT (1 << 5) | |
| 77 #define PARAM_QUANTSTEP (1 << 4) | |
| 78 #define PARAM_FIR (1 << 3) | |
| 79 #define PARAM_IIR (1 << 2) | |
| 80 #define PARAM_HUFFOFFSET (1 << 1) | |
| 9202 | 81 #define PARAM_PRESENCE (1 << 0) |
| 7194 | 82 //@} |
| 83 | |
| 84 //@{ | |
| 85 /** matrix data */ | |
| 86 | |
| 87 //! Number of matrices to be applied. | |
| 88 uint8_t num_primitive_matrices; | |
| 89 | |
| 90 //! matrix output channel | |
| 91 uint8_t matrix_out_ch[MAX_MATRICES]; | |
| 92 | |
| 93 //! Whether the LSBs of the matrix output are encoded in the bitstream. | |
| 94 uint8_t lsb_bypass[MAX_MATRICES]; | |
| 95 //! Matrix coefficients, stored as 2.14 fixed point. | |
| 96 int32_t matrix_coeff[MAX_MATRICES][MAX_CHANNELS+2]; | |
| 97 //! Left shift to apply to noise values in 0x31eb substreams. | |
| 98 uint8_t matrix_noise_shift[MAX_MATRICES]; | |
| 99 //@} | |
| 100 | |
| 7198 | 101 //! Left shift to apply to Huffman-decoded residuals. |
| 7194 | 102 uint8_t quant_step_size[MAX_CHANNELS]; |
| 103 | |
| 7198 | 104 //! number of PCM samples in current audio block |
| 7194 | 105 uint16_t blocksize; |
| 106 //! Number of PCM samples decoded so far in this frame. | |
| 107 uint16_t blockpos; | |
| 108 | |
| 109 //! Left shift to apply to decoded PCM values to get final 24-bit output. | |
| 110 int8_t output_shift[MAX_CHANNELS]; | |
| 111 | |
| 112 //! Running XOR of all output samples. | |
| 113 int32_t lossless_check_data; | |
| 114 | |
| 115 } SubStream; | |
| 116 | |
| 117 typedef struct MLPDecodeContext { | |
| 118 AVCodecContext *avctx; | |
| 119 | |
|
9348
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
120 //! Current access unit being read has a major sync. |
|
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
121 int is_major_sync_unit; |
|
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
122 |
| 7194 | 123 //! Set if a valid major sync block has been read. Otherwise no decoding is possible. |
| 124 uint8_t params_valid; | |
| 125 | |
| 126 //! Number of substreams contained within this stream. | |
| 127 uint8_t num_substreams; | |
| 128 | |
| 129 //! Index of the last substream to decode - further substreams are skipped. | |
| 130 uint8_t max_decoded_substream; | |
| 131 | |
| 7198 | 132 //! number of PCM samples contained in each frame |
| 7194 | 133 int access_unit_size; |
| 7198 | 134 //! next power of two above the number of samples in each frame |
| 7194 | 135 int access_unit_size_pow2; |
| 136 | |
| 137 SubStream substream[MAX_SUBSTREAMS]; | |
| 138 | |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
139 ChannelParams channel_params[MAX_CHANNELS]; |
| 7194 | 140 |
|
9350
1432fb0ee5d7
mlpdec: Filters and matrices may change only once per substream per access unit.
ramiro
parents:
9349
diff
changeset
|
141 int matrix_changed; |
|
1432fb0ee5d7
mlpdec: Filters and matrices may change only once per substream per access unit.
ramiro
parents:
9349
diff
changeset
|
142 int filter_changed[MAX_CHANNELS][NUM_FILTERS]; |
|
1432fb0ee5d7
mlpdec: Filters and matrices may change only once per substream per access unit.
ramiro
parents:
9349
diff
changeset
|
143 |
| 7194 | 144 int8_t noise_buffer[MAX_BLOCKSIZE_POW2]; |
| 145 int8_t bypassed_lsbs[MAX_BLOCKSIZE][MAX_CHANNELS]; | |
| 146 int32_t sample_buffer[MAX_BLOCKSIZE][MAX_CHANNELS+2]; | |
| 147 } MLPDecodeContext; | |
| 148 | |
| 149 static VLC huff_vlc[3]; | |
| 150 | |
| 151 /** Initialize static data, constant between all invocations of the codec. */ | |
| 152 | |
|
8693
18737839ed27
Add missing void keyword to parameterless function declarations.
diego
parents:
8460
diff
changeset
|
153 static av_cold void init_static(void) |
| 7194 | 154 { |
| 155 INIT_VLC_STATIC(&huff_vlc[0], VLC_BITS, 18, | |
|
7559
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
156 &ff_mlp_huffman_tables[0][0][1], 2, 1, |
|
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
157 &ff_mlp_huffman_tables[0][0][0], 2, 1, 512); |
| 7194 | 158 INIT_VLC_STATIC(&huff_vlc[1], VLC_BITS, 16, |
|
7559
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
159 &ff_mlp_huffman_tables[1][0][1], 2, 1, |
|
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
160 &ff_mlp_huffman_tables[1][0][0], 2, 1, 512); |
| 7194 | 161 INIT_VLC_STATIC(&huff_vlc[2], VLC_BITS, 15, |
|
7559
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
162 &ff_mlp_huffman_tables[2][0][1], 2, 1, |
|
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
163 &ff_mlp_huffman_tables[2][0][0], 2, 1, 512); |
| 7194 | 164 |
|
7559
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
165 ff_mlp_init_crc(); |
| 7194 | 166 } |
| 167 | |
| 168 static inline int32_t calculate_sign_huff(MLPDecodeContext *m, | |
| 169 unsigned int substr, unsigned int ch) | |
| 170 { | |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
171 ChannelParams *cp = &m->channel_params[ch]; |
| 7194 | 172 SubStream *s = &m->substream[substr]; |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
173 int lsb_bits = cp->huff_lsbs - s->quant_step_size[ch]; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
174 int sign_shift = lsb_bits + (cp->codebook ? 2 - cp->codebook : -1); |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
175 int32_t sign_huff_offset = cp->huff_offset; |
| 7194 | 176 |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
177 if (cp->codebook > 0) |
| 7194 | 178 sign_huff_offset -= 7 << lsb_bits; |
| 179 | |
| 180 if (sign_shift >= 0) | |
| 181 sign_huff_offset -= 1 << sign_shift; | |
| 182 | |
| 183 return sign_huff_offset; | |
| 184 } | |
| 185 | |
| 186 /** Read a sample, consisting of either, both or neither of entropy-coded MSBs | |
| 187 * and plain LSBs. */ | |
| 188 | |
| 189 static inline int read_huff_channels(MLPDecodeContext *m, GetBitContext *gbp, | |
| 190 unsigned int substr, unsigned int pos) | |
| 191 { | |
| 192 SubStream *s = &m->substream[substr]; | |
| 193 unsigned int mat, channel; | |
| 194 | |
| 195 for (mat = 0; mat < s->num_primitive_matrices; mat++) | |
| 196 if (s->lsb_bypass[mat]) | |
| 197 m->bypassed_lsbs[pos + s->blockpos][mat] = get_bits1(gbp); | |
| 198 | |
| 199 for (channel = s->min_channel; channel <= s->max_channel; channel++) { | |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
200 ChannelParams *cp = &m->channel_params[channel]; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
201 int codebook = cp->codebook; |
| 7194 | 202 int quant_step_size = s->quant_step_size[channel]; |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
203 int lsb_bits = cp->huff_lsbs - quant_step_size; |
| 7194 | 204 int result = 0; |
| 205 | |
| 206 if (codebook > 0) | |
| 207 result = get_vlc2(gbp, huff_vlc[codebook-1].table, | |
| 208 VLC_BITS, (9 + VLC_BITS - 1) / VLC_BITS); | |
| 209 | |
| 210 if (result < 0) | |
| 211 return -1; | |
| 212 | |
| 213 if (lsb_bits > 0) | |
| 214 result = (result << lsb_bits) + get_bits(gbp, lsb_bits); | |
| 215 | |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
216 result += cp->sign_huff_offset; |
| 7194 | 217 result <<= quant_step_size; |
| 218 | |
| 219 m->sample_buffer[pos + s->blockpos][channel] = result; | |
| 220 } | |
| 221 | |
| 222 return 0; | |
| 223 } | |
| 224 | |
| 225 static av_cold int mlp_decode_init(AVCodecContext *avctx) | |
| 226 { | |
| 227 MLPDecodeContext *m = avctx->priv_data; | |
| 228 int substr; | |
| 229 | |
| 230 init_static(); | |
| 231 m->avctx = avctx; | |
| 232 for (substr = 0; substr < MAX_SUBSTREAMS; substr++) | |
| 233 m->substream[substr].lossless_check_data = 0xffffffff; | |
|
8276
9149588e5cc9
mlp: support bit-depths greater than 16 by default.
ramiro
parents:
8274
diff
changeset
|
234 |
| 7194 | 235 return 0; |
| 236 } | |
| 237 | |
| 238 /** Read a major sync info header - contains high level information about | |
| 239 * the stream - sample rate, channel arrangement etc. Most of this | |
| 240 * information is not actually necessary for decoding, only for playback. | |
| 241 */ | |
| 242 | |
| 243 static int read_major_sync(MLPDecodeContext *m, GetBitContext *gb) | |
| 244 { | |
| 245 MLPHeaderInfo mh; | |
| 246 int substr; | |
| 247 | |
| 248 if (ff_mlp_read_major_sync(m->avctx, &mh, gb) != 0) | |
| 249 return -1; | |
| 250 | |
| 251 if (mh.group1_bits == 0) { | |
| 7198 | 252 av_log(m->avctx, AV_LOG_ERROR, "invalid/unknown bits per sample\n"); |
| 7194 | 253 return -1; |
| 254 } | |
| 255 if (mh.group2_bits > mh.group1_bits) { | |
| 256 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 257 "Channel group 2 cannot have more bits per sample than group 1.\n"); |
| 7194 | 258 return -1; |
| 259 } | |
| 260 | |
| 261 if (mh.group2_samplerate && mh.group2_samplerate != mh.group1_samplerate) { | |
| 262 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 263 "Channel groups with differing sample rates are not currently supported.\n"); |
| 7194 | 264 return -1; |
| 265 } | |
| 266 | |
| 267 if (mh.group1_samplerate == 0) { | |
| 7198 | 268 av_log(m->avctx, AV_LOG_ERROR, "invalid/unknown sampling rate\n"); |
| 7194 | 269 return -1; |
| 270 } | |
| 271 if (mh.group1_samplerate > MAX_SAMPLERATE) { | |
| 272 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 273 "Sampling rate %d is greater than the supported maximum (%d).\n", |
| 7194 | 274 mh.group1_samplerate, MAX_SAMPLERATE); |
| 275 return -1; | |
| 276 } | |
| 277 if (mh.access_unit_size > MAX_BLOCKSIZE) { | |
| 278 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 279 "Block size %d is greater than the supported maximum (%d).\n", |
| 7194 | 280 mh.access_unit_size, MAX_BLOCKSIZE); |
| 281 return -1; | |
| 282 } | |
| 283 if (mh.access_unit_size_pow2 > MAX_BLOCKSIZE_POW2) { | |
| 284 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 285 "Block size pow2 %d is greater than the supported maximum (%d).\n", |
| 7194 | 286 mh.access_unit_size_pow2, MAX_BLOCKSIZE_POW2); |
| 287 return -1; | |
| 288 } | |
| 289 | |
| 290 if (mh.num_substreams == 0) | |
| 291 return -1; | |
| 9201 | 292 if (m->avctx->codec_id == CODEC_ID_MLP && mh.num_substreams > 2) { |
| 293 av_log(m->avctx, AV_LOG_ERROR, "MLP only supports up to 2 substreams.\n"); | |
| 294 return -1; | |
| 295 } | |
| 7194 | 296 if (mh.num_substreams > MAX_SUBSTREAMS) { |
| 297 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 298 "Number of substreams %d is larger than the maximum supported " |
| 299 "by the decoder. %s\n", mh.num_substreams, sample_message); | |
| 7194 | 300 return -1; |
| 301 } | |
| 302 | |
| 303 m->access_unit_size = mh.access_unit_size; | |
| 304 m->access_unit_size_pow2 = mh.access_unit_size_pow2; | |
| 305 | |
| 306 m->num_substreams = mh.num_substreams; | |
| 307 m->max_decoded_substream = m->num_substreams - 1; | |
| 308 | |
| 309 m->avctx->sample_rate = mh.group1_samplerate; | |
| 310 m->avctx->frame_size = mh.access_unit_size; | |
| 311 | |
| 8274 | 312 m->avctx->bits_per_raw_sample = mh.group1_bits; |
| 8277 | 313 if (mh.group1_bits > 16) |
| 7194 | 314 m->avctx->sample_fmt = SAMPLE_FMT_S32; |
|
8276
9149588e5cc9
mlp: support bit-depths greater than 16 by default.
ramiro
parents:
8274
diff
changeset
|
315 else |
|
9149588e5cc9
mlp: support bit-depths greater than 16 by default.
ramiro
parents:
8274
diff
changeset
|
316 m->avctx->sample_fmt = SAMPLE_FMT_S16; |
| 7194 | 317 |
| 318 m->params_valid = 1; | |
| 319 for (substr = 0; substr < MAX_SUBSTREAMS; substr++) | |
| 320 m->substream[substr].restart_seen = 0; | |
| 321 | |
| 322 return 0; | |
| 323 } | |
| 324 | |
| 325 /** Read a restart header from a block in a substream. This contains parameters | |
| 326 * required to decode the audio that do not change very often. Generally | |
| 327 * (always) present only in blocks following a major sync. */ | |
| 328 | |
| 329 static int read_restart_header(MLPDecodeContext *m, GetBitContext *gbp, | |
| 330 const uint8_t *buf, unsigned int substr) | |
| 331 { | |
| 332 SubStream *s = &m->substream[substr]; | |
| 333 unsigned int ch; | |
| 334 int sync_word, tmp; | |
| 335 uint8_t checksum; | |
| 336 uint8_t lossless_check; | |
| 337 int start_count = get_bits_count(gbp); | |
| 338 | |
| 339 sync_word = get_bits(gbp, 13); | |
|
9530
dbb16aa52d43
mlpdec: Restart header sync must be 0x31ea for MLP.
ramiro
parents:
9508
diff
changeset
|
340 s->noise_type = get_bits1(gbp); |
| 7194 | 341 |
|
9530
dbb16aa52d43
mlpdec: Restart header sync must be 0x31ea for MLP.
ramiro
parents:
9508
diff
changeset
|
342 if ((m->avctx->codec_id == CODEC_ID_MLP && s->noise_type) || |
|
dbb16aa52d43
mlpdec: Restart header sync must be 0x31ea for MLP.
ramiro
parents:
9508
diff
changeset
|
343 sync_word != 0x31ea >> 1) { |
| 7194 | 344 av_log(m->avctx, AV_LOG_ERROR, |
| 7198 | 345 "restart header sync incorrect (got 0x%04x)\n", sync_word); |
| 7194 | 346 return -1; |
| 347 } | |
| 348 | |
| 349 skip_bits(gbp, 16); /* Output timestamp */ | |
| 350 | |
| 351 s->min_channel = get_bits(gbp, 4); | |
| 352 s->max_channel = get_bits(gbp, 4); | |
| 353 s->max_matrix_channel = get_bits(gbp, 4); | |
| 354 | |
| 355 if (s->min_channel > s->max_channel) { | |
| 356 av_log(m->avctx, AV_LOG_ERROR, | |
| 357 "Substream min channel cannot be greater than max channel.\n"); | |
| 358 return -1; | |
| 359 } | |
| 360 | |
| 361 if (m->avctx->request_channels > 0 | |
| 362 && s->max_channel + 1 >= m->avctx->request_channels | |
| 363 && substr < m->max_decoded_substream) { | |
| 364 av_log(m->avctx, AV_LOG_INFO, | |
| 365 "Extracting %d channel downmix from substream %d. " | |
| 366 "Further substreams will be skipped.\n", | |
| 367 s->max_channel + 1, substr); | |
| 368 m->max_decoded_substream = substr; | |
| 369 } | |
| 370 | |
| 371 s->noise_shift = get_bits(gbp, 4); | |
| 372 s->noisegen_seed = get_bits(gbp, 23); | |
| 373 | |
| 374 skip_bits(gbp, 19); | |
| 375 | |
| 376 s->data_check_present = get_bits1(gbp); | |
| 377 lossless_check = get_bits(gbp, 8); | |
| 378 if (substr == m->max_decoded_substream | |
| 379 && s->lossless_check_data != 0xffffffff) { | |
|
7566
d112b4655bbd
mlp: split simple inline function that xors 4 bytes into one.
ramiro
parents:
7559
diff
changeset
|
380 tmp = xor_32_to_8(s->lossless_check_data); |
| 7194 | 381 if (tmp != lossless_check) |
| 382 av_log(m->avctx, AV_LOG_WARNING, | |
| 7198 | 383 "Lossless check failed - expected %02x, calculated %02x.\n", |
| 7194 | 384 lossless_check, tmp); |
| 385 } | |
| 386 | |
| 387 skip_bits(gbp, 16); | |
| 388 | |
| 9203 | 389 memset(s->ch_assign, 0, sizeof(s->ch_assign)); |
| 390 | |
| 7194 | 391 for (ch = 0; ch <= s->max_matrix_channel; ch++) { |
| 392 int ch_assign = get_bits(gbp, 6); | |
| 9203 | 393 if (ch_assign > s->max_matrix_channel) { |
| 7194 | 394 av_log(m->avctx, AV_LOG_ERROR, |
| 9203 | 395 "Assignment of matrix channel %d to invalid output channel %d. %s\n", |
| 396 ch, ch_assign, sample_message); | |
| 7194 | 397 return -1; |
| 398 } | |
| 9203 | 399 s->ch_assign[ch_assign] = ch; |
| 7194 | 400 } |
| 401 | |
|
7559
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
402 checksum = ff_mlp_restart_checksum(buf, get_bits_count(gbp) - start_count); |
| 7194 | 403 |
| 404 if (checksum != get_bits(gbp, 8)) | |
| 7198 | 405 av_log(m->avctx, AV_LOG_ERROR, "restart header checksum error\n"); |
| 7194 | 406 |
| 7198 | 407 /* Set default decoding parameters. */ |
| 7194 | 408 s->param_presence_flags = 0xff; |
| 409 s->num_primitive_matrices = 0; | |
| 410 s->blocksize = 8; | |
| 411 s->lossless_check_data = 0; | |
| 412 | |
| 413 memset(s->output_shift , 0, sizeof(s->output_shift )); | |
| 414 memset(s->quant_step_size, 0, sizeof(s->quant_step_size)); | |
| 415 | |
| 416 for (ch = s->min_channel; ch <= s->max_channel; ch++) { | |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
417 ChannelParams *cp = &m->channel_params[ch]; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
418 cp->filter_params[FIR].order = 0; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
419 cp->filter_params[IIR].order = 0; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
420 cp->filter_params[FIR].shift = 0; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
421 cp->filter_params[IIR].shift = 0; |
| 7194 | 422 |
| 7198 | 423 /* Default audio coding is 24-bit raw PCM. */ |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
424 cp->huff_offset = 0; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
425 cp->sign_huff_offset = (-1) << 23; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
426 cp->codebook = 0; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
427 cp->huff_lsbs = 24; |
| 7194 | 428 } |
| 429 | |
| 9507 | 430 if (substr == m->max_decoded_substream) |
| 9203 | 431 m->avctx->channels = s->max_matrix_channel + 1; |
| 7194 | 432 |
| 433 return 0; | |
| 434 } | |
| 435 | |
| 436 /** Read parameters for one of the prediction filters. */ | |
| 437 | |
| 438 static int read_filter_params(MLPDecodeContext *m, GetBitContext *gbp, | |
| 439 unsigned int channel, unsigned int filter) | |
| 440 { | |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
441 FilterParams *fp = &m->channel_params[channel].filter_params[filter]; |
|
9278
41e285948ffc
mlpdec: Max filter orders for FIR and IIR are 8 and 4 respectively.
ramiro
parents:
9268
diff
changeset
|
442 const int max_order = filter ? MAX_IIR_ORDER : MAX_FIR_ORDER; |
| 7194 | 443 const char fchar = filter ? 'I' : 'F'; |
| 444 int i, order; | |
| 445 | |
| 7198 | 446 // Filter is 0 for FIR, 1 for IIR. |
| 7194 | 447 assert(filter < 2); |
| 448 | |
|
9503
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
449 if (m->filter_changed[channel][filter]++ > 1) { |
|
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
450 av_log(m->avctx, AV_LOG_ERROR, "Filters may change only once per access unit.\n"); |
|
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
451 return -1; |
|
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
452 } |
|
9350
1432fb0ee5d7
mlpdec: Filters and matrices may change only once per substream per access unit.
ramiro
parents:
9349
diff
changeset
|
453 |
| 7194 | 454 order = get_bits(gbp, 4); |
|
9278
41e285948ffc
mlpdec: Max filter orders for FIR and IIR are 8 and 4 respectively.
ramiro
parents:
9268
diff
changeset
|
455 if (order > max_order) { |
| 7194 | 456 av_log(m->avctx, AV_LOG_ERROR, |
| 7198 | 457 "%cIR filter order %d is greater than maximum %d.\n", |
|
9278
41e285948ffc
mlpdec: Max filter orders for FIR and IIR are 8 and 4 respectively.
ramiro
parents:
9268
diff
changeset
|
458 fchar, order, max_order); |
| 7194 | 459 return -1; |
| 460 } | |
|
7552
88ffd7c9c0ed
mlpdec: Split filter parameters from context into their own struct.
ramiro
parents:
7451
diff
changeset
|
461 fp->order = order; |
| 7194 | 462 |
| 463 if (order > 0) { | |
| 464 int coeff_bits, coeff_shift; | |
| 465 | |
|
7552
88ffd7c9c0ed
mlpdec: Split filter parameters from context into their own struct.
ramiro
parents:
7451
diff
changeset
|
466 fp->shift = get_bits(gbp, 4); |
| 7194 | 467 |
| 468 coeff_bits = get_bits(gbp, 5); | |
| 469 coeff_shift = get_bits(gbp, 3); | |
| 470 if (coeff_bits < 1 || coeff_bits > 16) { | |
| 471 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 472 "%cIR filter coeff_bits must be between 1 and 16.\n", |
| 7194 | 473 fchar); |
| 474 return -1; | |
| 475 } | |
| 476 if (coeff_bits + coeff_shift > 16) { | |
| 477 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 478 "Sum of coeff_bits and coeff_shift for %cIR filter must be 16 or less.\n", |
| 7194 | 479 fchar); |
| 480 return -1; | |
| 481 } | |
| 482 | |
| 483 for (i = 0; i < order; i++) | |
| 7553 | 484 fp->coeff[i] = get_sbits(gbp, coeff_bits) << coeff_shift; |
| 7194 | 485 |
| 486 if (get_bits1(gbp)) { | |
| 487 int state_bits, state_shift; | |
| 488 | |
| 489 if (filter == FIR) { | |
| 490 av_log(m->avctx, AV_LOG_ERROR, | |
| 7198 | 491 "FIR filter has state data specified.\n"); |
| 7194 | 492 return -1; |
| 493 } | |
| 494 | |
| 495 state_bits = get_bits(gbp, 4); | |
| 496 state_shift = get_bits(gbp, 4); | |
| 497 | |
| 7198 | 498 /* TODO: Check validity of state data. */ |
| 7194 | 499 |
| 500 for (i = 0; i < order; i++) | |
| 7553 | 501 fp->state[i] = get_sbits(gbp, state_bits) << state_shift; |
| 7194 | 502 } |
| 503 } | |
| 504 | |
| 505 return 0; | |
| 506 } | |
| 507 | |
|
9262
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
508 /** Read parameters for primitive matrices. */ |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
509 |
|
9504
dc643c3c285e
mlpdec: Make read_matrix_params() take unsigned int substr for consistency.
ramiro
parents:
9503
diff
changeset
|
510 static int read_matrix_params(MLPDecodeContext *m, unsigned int substr, GetBitContext *gbp) |
|
9262
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
511 { |
|
9504
dc643c3c285e
mlpdec: Make read_matrix_params() take unsigned int substr for consistency.
ramiro
parents:
9503
diff
changeset
|
512 SubStream *s = &m->substream[substr]; |
|
9262
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
513 unsigned int mat, ch; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
514 |
|
9503
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
515 if (m->matrix_changed++ > 1) { |
|
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
516 av_log(m->avctx, AV_LOG_ERROR, "Matrices may change only once per access unit.\n"); |
|
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
517 return -1; |
|
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
518 } |
|
1997b5b2a40e
mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.
ramiro
parents:
9428
diff
changeset
|
519 |
|
9262
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
520 s->num_primitive_matrices = get_bits(gbp, 4); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
521 |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
522 for (mat = 0; mat < s->num_primitive_matrices; mat++) { |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
523 int frac_bits, max_chan; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
524 s->matrix_out_ch[mat] = get_bits(gbp, 4); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
525 frac_bits = get_bits(gbp, 4); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
526 s->lsb_bypass [mat] = get_bits1(gbp); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
527 |
|
9347
b799c2a83624
mlpdec: matrix_out_ch must not be greater than max_matrix_channel, and not max_channel.
ramiro
parents:
9288
diff
changeset
|
528 if (s->matrix_out_ch[mat] > s->max_matrix_channel) { |
|
9262
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
529 av_log(m->avctx, AV_LOG_ERROR, |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
530 "Invalid channel %d specified as output from matrix.\n", |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
531 s->matrix_out_ch[mat]); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
532 return -1; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
533 } |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
534 if (frac_bits > 14) { |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
535 av_log(m->avctx, AV_LOG_ERROR, |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
536 "Too many fractional bits specified.\n"); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
537 return -1; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
538 } |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
539 |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
540 max_chan = s->max_matrix_channel; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
541 if (!s->noise_type) |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
542 max_chan+=2; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
543 |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
544 for (ch = 0; ch <= max_chan; ch++) { |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
545 int coeff_val = 0; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
546 if (get_bits1(gbp)) |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
547 coeff_val = get_sbits(gbp, frac_bits + 2); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
548 |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
549 s->matrix_coeff[mat][ch] = coeff_val << (14 - frac_bits); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
550 } |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
551 |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
552 if (s->noise_type) |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
553 s->matrix_noise_shift[mat] = get_bits(gbp, 4); |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
554 else |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
555 s->matrix_noise_shift[mat] = 0; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
556 } |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
557 |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
558 return 0; |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
559 } |
|
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
560 |
|
9263
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
561 /** Read channel parameters. */ |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
562 |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
563 static int read_channel_params(MLPDecodeContext *m, unsigned int substr, |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
564 GetBitContext *gbp, unsigned int ch) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
565 { |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
566 ChannelParams *cp = &m->channel_params[ch]; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
567 FilterParams *fir = &cp->filter_params[FIR]; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
568 FilterParams *iir = &cp->filter_params[IIR]; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
569 SubStream *s = &m->substream[substr]; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
570 |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
571 if (s->param_presence_flags & PARAM_FIR) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
572 if (get_bits1(gbp)) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
573 if (read_filter_params(m, gbp, ch, FIR) < 0) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
574 return -1; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
575 |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
576 if (s->param_presence_flags & PARAM_IIR) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
577 if (get_bits1(gbp)) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
578 if (read_filter_params(m, gbp, ch, IIR) < 0) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
579 return -1; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
580 |
| 9283 | 581 if (fir->order + iir->order > 8) { |
| 582 av_log(m->avctx, AV_LOG_ERROR, "Total filter orders too high.\n"); | |
| 583 return -1; | |
| 584 } | |
| 585 | |
|
9263
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
586 if (fir->order && iir->order && |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
587 fir->shift != iir->shift) { |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
588 av_log(m->avctx, AV_LOG_ERROR, |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
589 "FIR and IIR filters must use the same precision.\n"); |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
590 return -1; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
591 } |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
592 /* The FIR and IIR filters must have the same precision. |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
593 * To simplify the filtering code, only the precision of the |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
594 * FIR filter is considered. If only the IIR filter is employed, |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
595 * the FIR filter precision is set to that of the IIR filter, so |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
596 * that the filtering code can use it. */ |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
597 if (!fir->order && iir->order) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
598 fir->shift = iir->shift; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
599 |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
600 if (s->param_presence_flags & PARAM_HUFFOFFSET) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
601 if (get_bits1(gbp)) |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
602 cp->huff_offset = get_sbits(gbp, 15); |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
603 |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
604 cp->codebook = get_bits(gbp, 2); |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
605 cp->huff_lsbs = get_bits(gbp, 5); |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
606 |
| 9283 | 607 if (cp->huff_lsbs > 24) { |
| 608 av_log(m->avctx, AV_LOG_ERROR, "Invalid huff_lsbs.\n"); | |
| 609 return -1; | |
| 610 } | |
|
9263
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
611 |
| 9283 | 612 cp->sign_huff_offset = calculate_sign_huff(m, substr, ch); |
|
9263
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
613 |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
614 return 0; |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
615 } |
|
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
616 |
| 7194 | 617 /** Read decoding parameters that change more often than those in the restart |
| 618 * header. */ | |
| 619 | |
| 620 static int read_decoding_params(MLPDecodeContext *m, GetBitContext *gbp, | |
| 621 unsigned int substr) | |
| 622 { | |
| 623 SubStream *s = &m->substream[substr]; | |
|
9262
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
624 unsigned int ch; |
| 7194 | 625 |
| 9202 | 626 if (s->param_presence_flags & PARAM_PRESENCE) |
| 9507 | 627 if (get_bits1(gbp)) |
| 628 s->param_presence_flags = get_bits(gbp, 8); | |
| 7194 | 629 |
| 630 if (s->param_presence_flags & PARAM_BLOCKSIZE) | |
| 631 if (get_bits1(gbp)) { | |
| 632 s->blocksize = get_bits(gbp, 9); | |
| 9267 | 633 if (s->blocksize < 8 || s->blocksize > m->access_unit_size) { |
| 634 av_log(m->avctx, AV_LOG_ERROR, "Invalid blocksize."); | |
| 7194 | 635 s->blocksize = 0; |
| 636 return -1; | |
| 637 } | |
| 638 } | |
| 639 | |
| 640 if (s->param_presence_flags & PARAM_MATRIX) | |
| 9507 | 641 if (get_bits1(gbp)) |
|
9504
dc643c3c285e
mlpdec: Make read_matrix_params() take unsigned int substr for consistency.
ramiro
parents:
9503
diff
changeset
|
642 if (read_matrix_params(m, substr, gbp) < 0) |
|
9262
3c9a424163ee
mlpdec: Split read_matrix_params() into its own function.
ramiro
parents:
9203
diff
changeset
|
643 return -1; |
| 7194 | 644 |
| 645 if (s->param_presence_flags & PARAM_OUTSHIFT) | |
| 646 if (get_bits1(gbp)) | |
| 9507 | 647 for (ch = 0; ch <= s->max_matrix_channel; ch++) |
| 9264 | 648 s->output_shift[ch] = get_sbits(gbp, 4); |
| 7194 | 649 |
| 650 if (s->param_presence_flags & PARAM_QUANTSTEP) | |
| 651 if (get_bits1(gbp)) | |
| 652 for (ch = 0; ch <= s->max_channel; ch++) { | |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
653 ChannelParams *cp = &m->channel_params[ch]; |
|
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
654 |
| 7194 | 655 s->quant_step_size[ch] = get_bits(gbp, 4); |
| 656 | |
|
7555
8d00a2dfcb7a
mlpdec: Split channel parameters from context into their own struct.
ramiro
parents:
7553
diff
changeset
|
657 cp->sign_huff_offset = calculate_sign_huff(m, substr, ch); |
| 7194 | 658 } |
| 659 | |
| 660 for (ch = s->min_channel; ch <= s->max_channel; ch++) | |
| 9507 | 661 if (get_bits1(gbp)) |
|
9263
62774b28cde0
mlpdec: Split read_channel_params() into its own function.
ramiro
parents:
9262
diff
changeset
|
662 if (read_channel_params(m, substr, gbp, ch) < 0) |
| 7194 | 663 return -1; |
| 664 | |
| 665 return 0; | |
| 666 } | |
| 667 | |
| 668 #define MSB_MASK(bits) (-1u << bits) | |
| 669 | |
| 670 /** Generate PCM samples using the prediction filters and residual values | |
| 671 * read from the data stream, and update the filter state. */ | |
| 672 | |
| 673 static void filter_channel(MLPDecodeContext *m, unsigned int substr, | |
| 674 unsigned int channel) | |
| 675 { | |
| 676 SubStream *s = &m->substream[substr]; | |
|
9280
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
677 int32_t firbuf[MAX_BLOCKSIZE + MAX_FIR_ORDER]; |
|
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
678 int32_t iirbuf[MAX_BLOCKSIZE + MAX_IIR_ORDER]; |
|
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
679 FilterParams *fir = &m->channel_params[channel].filter_params[FIR]; |
|
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
680 FilterParams *iir = &m->channel_params[channel].filter_params[IIR]; |
|
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
681 unsigned int filter_shift = fir->shift; |
| 7194 | 682 int32_t mask = MSB_MASK(s->quant_step_size[channel]); |
| 683 int index = MAX_BLOCKSIZE; | |
|
9279
b65ab36734f8
mlpdec: Unroll copying filter state data and filtering for the two filters.
ramiro
parents:
9278
diff
changeset
|
684 int i; |
| 7194 | 685 |
| 9282 | 686 memcpy(&firbuf[index], fir->state, MAX_FIR_ORDER * sizeof(int32_t)); |
| 687 memcpy(&iirbuf[index], iir->state, MAX_IIR_ORDER * sizeof(int32_t)); | |
| 7194 | 688 |
| 689 for (i = 0; i < s->blocksize; i++) { | |
| 690 int32_t residual = m->sample_buffer[i + s->blockpos][channel]; | |
| 691 unsigned int order; | |
| 692 int64_t accum = 0; | |
| 693 int32_t result; | |
| 694 | |
| 695 /* TODO: Move this code to DSPContext? */ | |
| 696 | |
|
9280
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
697 for (order = 0; order < fir->order; order++) |
| 9282 | 698 accum += (int64_t) firbuf[index + order] * fir->coeff[order]; |
|
9280
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
699 for (order = 0; order < iir->order; order++) |
| 9282 | 700 accum += (int64_t) iirbuf[index + order] * iir->coeff[order]; |
| 7194 | 701 |
| 702 accum = accum >> filter_shift; | |
| 703 result = (accum + residual) & mask; | |
| 704 | |
| 705 --index; | |
| 706 | |
|
9280
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
707 firbuf[index] = result; |
|
e3eff8a463ec
mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.
ramiro
parents:
9279
diff
changeset
|
708 iirbuf[index] = result - accum; |
| 7194 | 709 |
| 710 m->sample_buffer[i + s->blockpos][channel] = result; | |
| 711 } | |
| 712 | |
| 9282 | 713 memcpy(fir->state, &firbuf[index], MAX_FIR_ORDER * sizeof(int32_t)); |
| 714 memcpy(iir->state, &iirbuf[index], MAX_IIR_ORDER * sizeof(int32_t)); | |
| 7194 | 715 } |
| 716 | |
| 717 /** Read a block of PCM residual data (or actual if no filtering active). */ | |
| 718 | |
| 719 static int read_block_data(MLPDecodeContext *m, GetBitContext *gbp, | |
| 720 unsigned int substr) | |
| 721 { | |
| 722 SubStream *s = &m->substream[substr]; | |
| 723 unsigned int i, ch, expected_stream_pos = 0; | |
| 724 | |
| 725 if (s->data_check_present) { | |
| 726 expected_stream_pos = get_bits_count(gbp); | |
| 727 expected_stream_pos += get_bits(gbp, 16); | |
| 728 av_log(m->avctx, AV_LOG_WARNING, "This file contains some features " | |
| 729 "we have not tested yet. %s\n", sample_message); | |
| 730 } | |
| 731 | |
| 732 if (s->blockpos + s->blocksize > m->access_unit_size) { | |
| 7198 | 733 av_log(m->avctx, AV_LOG_ERROR, "too many audio samples in frame\n"); |
| 7194 | 734 return -1; |
| 735 } | |
| 736 | |
| 737 memset(&m->bypassed_lsbs[s->blockpos][0], 0, | |
| 738 s->blocksize * sizeof(m->bypassed_lsbs[0])); | |
| 739 | |
| 9507 | 740 for (i = 0; i < s->blocksize; i++) |
| 7194 | 741 if (read_huff_channels(m, gbp, substr, i) < 0) |
| 742 return -1; | |
| 743 | |
| 9507 | 744 for (ch = s->min_channel; ch <= s->max_channel; ch++) |
| 7194 | 745 filter_channel(m, substr, ch); |
| 746 | |
| 747 s->blockpos += s->blocksize; | |
| 748 | |
| 749 if (s->data_check_present) { | |
| 750 if (get_bits_count(gbp) != expected_stream_pos) | |
| 7198 | 751 av_log(m->avctx, AV_LOG_ERROR, "block data length mismatch\n"); |
| 7194 | 752 skip_bits(gbp, 8); |
| 753 } | |
| 754 | |
| 755 return 0; | |
| 756 } | |
| 757 | |
| 7198 | 758 /** Data table used for TrueHD noise generation function. */ |
| 7194 | 759 |
| 760 static const int8_t noise_table[256] = { | |
| 761 30, 51, 22, 54, 3, 7, -4, 38, 14, 55, 46, 81, 22, 58, -3, 2, | |
| 762 52, 31, -7, 51, 15, 44, 74, 30, 85, -17, 10, 33, 18, 80, 28, 62, | |
| 763 10, 32, 23, 69, 72, 26, 35, 17, 73, 60, 8, 56, 2, 6, -2, -5, | |
| 764 51, 4, 11, 50, 66, 76, 21, 44, 33, 47, 1, 26, 64, 48, 57, 40, | |
| 765 38, 16, -10, -28, 92, 22, -18, 29, -10, 5, -13, 49, 19, 24, 70, 34, | |
| 766 61, 48, 30, 14, -6, 25, 58, 33, 42, 60, 67, 17, 54, 17, 22, 30, | |
| 767 67, 44, -9, 50, -11, 43, 40, 32, 59, 82, 13, 49, -14, 55, 60, 36, | |
| 768 48, 49, 31, 47, 15, 12, 4, 65, 1, 23, 29, 39, 45, -2, 84, 69, | |
| 769 0, 72, 37, 57, 27, 41, -15, -16, 35, 31, 14, 61, 24, 0, 27, 24, | |
| 770 16, 41, 55, 34, 53, 9, 56, 12, 25, 29, 53, 5, 20, -20, -8, 20, | |
| 771 13, 28, -3, 78, 38, 16, 11, 62, 46, 29, 21, 24, 46, 65, 43, -23, | |
| 772 89, 18, 74, 21, 38, -12, 19, 12, -19, 8, 15, 33, 4, 57, 9, -8, | |
| 773 36, 35, 26, 28, 7, 83, 63, 79, 75, 11, 3, 87, 37, 47, 34, 40, | |
| 774 39, 19, 20, 42, 27, 34, 39, 77, 13, 42, 59, 64, 45, -1, 32, 37, | |
| 775 45, -5, 53, -6, 7, 36, 50, 23, 6, 32, 9, -21, 18, 71, 27, 52, | |
| 776 -25, 31, 35, 42, -1, 68, 63, 52, 26, 43, 66, 37, 41, 25, 40, 70, | |
| 777 }; | |
| 778 | |
| 779 /** Noise generation functions. | |
| 780 * I'm not sure what these are for - they seem to be some kind of pseudorandom | |
| 781 * sequence generators, used to generate noise data which is used when the | |
| 782 * channels are rematrixed. I'm not sure if they provide a practical benefit | |
| 783 * to compression, or just obfuscate the decoder. Are they for some kind of | |
| 784 * dithering? */ | |
| 785 | |
| 786 /** Generate two channels of noise, used in the matrix when | |
| 787 * restart sync word == 0x31ea. */ | |
| 788 | |
| 789 static void generate_2_noise_channels(MLPDecodeContext *m, unsigned int substr) | |
| 790 { | |
| 791 SubStream *s = &m->substream[substr]; | |
| 792 unsigned int i; | |
| 793 uint32_t seed = s->noisegen_seed; | |
| 794 unsigned int maxchan = s->max_matrix_channel; | |
| 795 | |
| 796 for (i = 0; i < s->blockpos; i++) { | |
| 797 uint16_t seed_shr7 = seed >> 7; | |
| 798 m->sample_buffer[i][maxchan+1] = ((int8_t)(seed >> 15)) << s->noise_shift; | |
| 799 m->sample_buffer[i][maxchan+2] = ((int8_t) seed_shr7) << s->noise_shift; | |
| 800 | |
| 801 seed = (seed << 16) ^ seed_shr7 ^ (seed_shr7 << 5); | |
| 802 } | |
| 803 | |
| 804 s->noisegen_seed = seed; | |
| 805 } | |
| 806 | |
| 807 /** Generate a block of noise, used when restart sync word == 0x31eb. */ | |
| 808 | |
| 809 static void fill_noise_buffer(MLPDecodeContext *m, unsigned int substr) | |
| 810 { | |
| 811 SubStream *s = &m->substream[substr]; | |
| 812 unsigned int i; | |
| 813 uint32_t seed = s->noisegen_seed; | |
| 814 | |
| 815 for (i = 0; i < m->access_unit_size_pow2; i++) { | |
| 816 uint8_t seed_shr15 = seed >> 15; | |
| 817 m->noise_buffer[i] = noise_table[seed_shr15]; | |
| 818 seed = (seed << 8) ^ seed_shr15 ^ (seed_shr15 << 5); | |
| 819 } | |
| 820 | |
| 821 s->noisegen_seed = seed; | |
| 822 } | |
| 823 | |
| 824 | |
| 825 /** Apply the channel matrices in turn to reconstruct the original audio | |
| 826 * samples. */ | |
| 827 | |
| 828 static void rematrix_channels(MLPDecodeContext *m, unsigned int substr) | |
| 829 { | |
| 830 SubStream *s = &m->substream[substr]; | |
| 831 unsigned int mat, src_ch, i; | |
| 832 unsigned int maxchan; | |
| 833 | |
| 834 maxchan = s->max_matrix_channel; | |
| 835 if (!s->noise_type) { | |
| 836 generate_2_noise_channels(m, substr); | |
| 837 maxchan += 2; | |
| 838 } else { | |
| 839 fill_noise_buffer(m, substr); | |
| 840 } | |
| 841 | |
| 842 for (mat = 0; mat < s->num_primitive_matrices; mat++) { | |
| 843 int matrix_noise_shift = s->matrix_noise_shift[mat]; | |
| 844 unsigned int dest_ch = s->matrix_out_ch[mat]; | |
| 845 int32_t mask = MSB_MASK(s->quant_step_size[dest_ch]); | |
|
9506
50feb15cbf2a
mlpdec: Use some context arrays with local variables in rematrix_channels().
ramiro
parents:
9505
diff
changeset
|
846 int32_t *coeffs = s->matrix_coeff[mat]; |
|
9505
bcef741a555a
truehd: Simplify rematrix_channels() as per Michael's original review.
ramiro
parents:
9504
diff
changeset
|
847 int index = s->num_primitive_matrices - mat; |
|
bcef741a555a
truehd: Simplify rematrix_channels() as per Michael's original review.
ramiro
parents:
9504
diff
changeset
|
848 int index2 = 2 * index + 1; |
| 7194 | 849 |
| 850 /* TODO: DSPContext? */ | |
| 851 | |
| 852 for (i = 0; i < s->blockpos; i++) { | |
|
9508
41ab6db265d0
mlpdec: Read context variable to local variable to make code cleaner.
ramiro
parents:
9507
diff
changeset
|
853 int32_t bypassed_lsb = m->bypassed_lsbs[i][mat]; |
|
9506
50feb15cbf2a
mlpdec: Use some context arrays with local variables in rematrix_channels().
ramiro
parents:
9505
diff
changeset
|
854 int32_t *samples = m->sample_buffer[i]; |
| 7194 | 855 int64_t accum = 0; |
| 9507 | 856 |
| 857 for (src_ch = 0; src_ch <= maxchan; src_ch++) | |
| 858 accum += (int64_t) samples[src_ch] * coeffs[src_ch]; | |
| 859 | |
| 7194 | 860 if (matrix_noise_shift) { |
|
9505
bcef741a555a
truehd: Simplify rematrix_channels() as per Michael's original review.
ramiro
parents:
9504
diff
changeset
|
861 index &= m->access_unit_size_pow2 - 1; |
| 7194 | 862 accum += m->noise_buffer[index] << (matrix_noise_shift + 7); |
|
9505
bcef741a555a
truehd: Simplify rematrix_channels() as per Michael's original review.
ramiro
parents:
9504
diff
changeset
|
863 index += index2; |
| 7194 | 864 } |
| 9507 | 865 |
|
9508
41ab6db265d0
mlpdec: Read context variable to local variable to make code cleaner.
ramiro
parents:
9507
diff
changeset
|
866 samples[dest_ch] = ((accum >> 14) & mask) + bypassed_lsb; |
| 7194 | 867 } |
| 868 } | |
| 869 } | |
| 870 | |
| 871 /** Write the audio data into the output buffer. */ | |
| 872 | |
| 873 static int output_data_internal(MLPDecodeContext *m, unsigned int substr, | |
| 874 uint8_t *data, unsigned int *data_size, int is32) | |
| 875 { | |
| 876 SubStream *s = &m->substream[substr]; | |
| 9203 | 877 unsigned int i, out_ch = 0; |
| 7194 | 878 int32_t *data_32 = (int32_t*) data; |
| 879 int16_t *data_16 = (int16_t*) data; | |
| 880 | |
| 881 if (*data_size < (s->max_channel + 1) * s->blockpos * (is32 ? 4 : 2)) | |
| 882 return -1; | |
| 883 | |
| 884 for (i = 0; i < s->blockpos; i++) { | |
| 9203 | 885 for (out_ch = 0; out_ch <= s->max_matrix_channel; out_ch++) { |
| 886 int mat_ch = s->ch_assign[out_ch]; | |
| 887 int32_t sample = m->sample_buffer[i][mat_ch] | |
| 888 << s->output_shift[mat_ch]; | |
| 889 s->lossless_check_data ^= (sample & 0xffffff) << mat_ch; | |
| 7194 | 890 if (is32) *data_32++ = sample << 8; |
| 891 else *data_16++ = sample >> 8; | |
| 892 } | |
| 893 } | |
| 894 | |
| 9203 | 895 *data_size = i * out_ch * (is32 ? 4 : 2); |
| 7194 | 896 |
| 897 return 0; | |
| 898 } | |
| 899 | |
| 900 static int output_data(MLPDecodeContext *m, unsigned int substr, | |
| 901 uint8_t *data, unsigned int *data_size) | |
| 902 { | |
| 903 if (m->avctx->sample_fmt == SAMPLE_FMT_S32) | |
| 904 return output_data_internal(m, substr, data, data_size, 1); | |
| 905 else | |
| 906 return output_data_internal(m, substr, data, data_size, 0); | |
| 907 } | |
| 908 | |
| 909 | |
| 910 /** Read an access unit from the stream. | |
| 911 * Returns < 0 on error, 0 if not enough data is present in the input stream | |
| 912 * otherwise returns the number of bytes consumed. */ | |
| 913 | |
| 914 static int read_access_unit(AVCodecContext *avctx, void* data, int *data_size, | |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9350
diff
changeset
|
915 AVPacket *avpkt) |
| 7194 | 916 { |
|
9355
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9350
diff
changeset
|
917 const uint8_t *buf = avpkt->data; |
|
54bc8a2727b0
Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents:
9350
diff
changeset
|
918 int buf_size = avpkt->size; |
| 7194 | 919 MLPDecodeContext *m = avctx->priv_data; |
| 920 GetBitContext gb; | |
| 921 unsigned int length, substr; | |
| 922 unsigned int substream_start; | |
| 923 unsigned int header_size = 4; | |
| 924 unsigned int substr_header_size = 0; | |
| 925 uint8_t substream_parity_present[MAX_SUBSTREAMS]; | |
| 926 uint16_t substream_data_len[MAX_SUBSTREAMS]; | |
| 927 uint8_t parity_bits; | |
| 928 | |
| 929 if (buf_size < 4) | |
| 930 return 0; | |
| 931 | |
| 932 length = (AV_RB16(buf) & 0xfff) * 2; | |
| 933 | |
| 934 if (length > buf_size) | |
| 935 return -1; | |
| 936 | |
| 937 init_get_bits(&gb, (buf + 4), (length - 4) * 8); | |
| 938 | |
|
9348
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
939 m->is_major_sync_unit = 0; |
| 7194 | 940 if (show_bits_long(&gb, 31) == (0xf8726fba >> 1)) { |
| 941 if (read_major_sync(m, &gb) < 0) | |
| 942 goto error; | |
|
9348
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
943 m->is_major_sync_unit = 1; |
| 7194 | 944 header_size += 28; |
| 945 } | |
| 946 | |
| 947 if (!m->params_valid) { | |
| 948 av_log(m->avctx, AV_LOG_WARNING, | |
| 7198 | 949 "Stream parameters not seen; skipping frame.\n"); |
| 7194 | 950 *data_size = 0; |
| 951 return length; | |
| 952 } | |
| 953 | |
| 954 substream_start = 0; | |
| 955 | |
| 956 for (substr = 0; substr < m->num_substreams; substr++) { | |
|
9348
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
957 int extraword_present, checkdata_present, end, nonrestart_substr; |
| 7194 | 958 |
| 959 extraword_present = get_bits1(&gb); | |
|
9348
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
960 nonrestart_substr = get_bits1(&gb); |
| 7194 | 961 checkdata_present = get_bits1(&gb); |
| 962 skip_bits1(&gb); | |
| 963 | |
| 964 end = get_bits(&gb, 12) * 2; | |
| 965 | |
| 966 substr_header_size += 2; | |
| 967 | |
| 968 if (extraword_present) { | |
| 9349 | 969 if (m->avctx->codec_id == CODEC_ID_MLP) { |
| 970 av_log(m->avctx, AV_LOG_ERROR, "There must be no extraword for MLP.\n"); | |
| 971 goto error; | |
| 972 } | |
| 7194 | 973 skip_bits(&gb, 16); |
| 974 substr_header_size += 2; | |
| 975 } | |
| 976 | |
|
9348
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
977 if (!(nonrestart_substr ^ m->is_major_sync_unit)) { |
|
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
978 av_log(m->avctx, AV_LOG_ERROR, "Invalid nonrestart_substr.\n"); |
|
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
979 goto error; |
|
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
980 } |
|
586dca8c04e7
mlpdec: Validate non-restart bit from the substream header.
ramiro
parents:
9347
diff
changeset
|
981 |
| 7194 | 982 if (end + header_size + substr_header_size > length) { |
| 983 av_log(m->avctx, AV_LOG_ERROR, | |
| 984 "Indicated length of substream %d data goes off end of " | |
| 985 "packet.\n", substr); | |
| 986 end = length - header_size - substr_header_size; | |
| 987 } | |
| 988 | |
| 989 if (end < substream_start) { | |
| 990 av_log(avctx, AV_LOG_ERROR, | |
| 991 "Indicated end offset of substream %d data " | |
| 992 "is smaller than calculated start offset.\n", | |
| 993 substr); | |
| 994 goto error; | |
| 995 } | |
| 996 | |
| 997 if (substr > m->max_decoded_substream) | |
| 998 continue; | |
| 999 | |
| 1000 substream_parity_present[substr] = checkdata_present; | |
| 1001 substream_data_len[substr] = end - substream_start; | |
| 1002 substream_start = end; | |
| 1003 } | |
| 1004 | |
|
7559
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
1005 parity_bits = ff_mlp_calculate_parity(buf, 4); |
|
fd24c8628221
mlp: Split common code from parser and decoder to be used by encoder.
ramiro
parents:
7556
diff
changeset
|
1006 parity_bits ^= ff_mlp_calculate_parity(buf + header_size, substr_header_size); |
| 7194 | 1007 |
| 1008 if ((((parity_bits >> 4) ^ parity_bits) & 0xF) != 0xF) { | |
| 1009 av_log(avctx, AV_LOG_ERROR, "Parity check failed.\n"); | |
| 1010 goto error; | |
| 1011 } | |
| 1012 | |
| 1013 buf += header_size + substr_header_size; | |
| 1014 | |
| 1015 for (substr = 0; substr <= m->max_decoded_substream; substr++) { | |
| 1016 SubStream *s = &m->substream[substr]; | |
| 1017 init_get_bits(&gb, buf, substream_data_len[substr] * 8); | |
| 1018 | |
|
9350
1432fb0ee5d7
mlpdec: Filters and matrices may change only once per substream per access unit.
ramiro
parents:
9349
diff
changeset
|
1019 m->matrix_changed = 0; |
|
1432fb0ee5d7
mlpdec: Filters and matrices may change only once per substream per access unit.
ramiro
parents:
9349
diff
changeset
|
1020 memset(m->filter_changed, 0, sizeof(m->filter_changed)); |
|
1432fb0ee5d7
mlpdec: Filters and matrices may change only once per substream per access unit.
ramiro
parents:
9349
diff
changeset
|
1021 |
| 7194 | 1022 s->blockpos = 0; |
| 1023 do { | |
| 1024 if (get_bits1(&gb)) { | |
| 1025 if (get_bits1(&gb)) { | |
| 7198 | 1026 /* A restart header should be present. */ |
| 7194 | 1027 if (read_restart_header(m, &gb, buf, substr) < 0) |
| 1028 goto next_substr; | |
| 1029 s->restart_seen = 1; | |
| 1030 } | |
| 1031 | |
| 9507 | 1032 if (!s->restart_seen) |
| 7194 | 1033 goto next_substr; |
| 1034 if (read_decoding_params(m, &gb, substr) < 0) | |
| 1035 goto next_substr; | |
| 1036 } | |
| 1037 | |
| 9507 | 1038 if (!s->restart_seen) |
| 7194 | 1039 goto next_substr; |
| 1040 | |
| 1041 if (read_block_data(m, &gb, substr) < 0) | |
| 1042 return -1; | |
| 1043 | |
| 9286 | 1044 if (get_bits_count(&gb) >= substream_data_len[substr] * 8) |
| 1045 goto substream_length_mismatch; | |
| 1046 | |
| 1047 } while (!get_bits1(&gb)); | |
| 7194 | 1048 |
| 1049 skip_bits(&gb, (-get_bits_count(&gb)) & 15); | |
| 9507 | 1050 |
| 9284 | 1051 if (substream_data_len[substr] * 8 - get_bits_count(&gb) >= 32) { |
| 1052 int shorten_by; | |
| 1053 | |
| 1054 if (get_bits(&gb, 16) != 0xD234) | |
| 1055 return -1; | |
| 1056 | |
| 1057 shorten_by = get_bits(&gb, 16); | |
| 1058 if (m->avctx->codec_id == CODEC_ID_TRUEHD && shorten_by & 0x2000) | |
| 1059 s->blockpos -= FFMIN(shorten_by & 0x1FFF, s->blockpos); | |
| 1060 else if (m->avctx->codec_id == CODEC_ID_MLP && shorten_by != 0xD234) | |
| 1061 return -1; | |
| 1062 | |
| 7194 | 1063 if (substr == m->max_decoded_substream) |
| 7198 | 1064 av_log(m->avctx, AV_LOG_INFO, "End of stream indicated.\n"); |
| 7194 | 1065 } |
| 9507 | 1066 |
|
9288
37313693196a
mlpdec: Simplify check for substream_parity_present.
ramiro
parents:
9287
diff
changeset
|
1067 if (substream_parity_present[substr]) { |
| 7194 | 1068 uint8_t parity, checksum; |
| 1069 | |
|
9288
37313693196a
mlpdec: Simplify check for substream_parity_present.
ramiro
parents:
9287
diff
changeset
|
1070 if (substream_data_len[substr] * 8 - get_bits_count(&gb) != 16) |
|
37313693196a
mlpdec: Simplify check for substream_parity_present.
ramiro
parents:
9287
diff
changeset
|
1071 goto substream_length_mismatch; |
|
37313693196a
mlpdec: Simplify check for substream_parity_present.
ramiro
parents:
9287
diff
changeset
|
1072 |
| 9285 | 1073 parity = ff_mlp_calculate_parity(buf, substream_data_len[substr] - 2); |
| 1074 checksum = ff_mlp_checksum8 (buf, substream_data_len[substr] - 2); | |
| 7194 | 1075 |
| 9285 | 1076 if ((get_bits(&gb, 8) ^ parity) != 0xa9 ) |
| 1077 av_log(m->avctx, AV_LOG_ERROR, "Substream %d parity check failed.\n", substr); | |
| 1078 if ( get_bits(&gb, 8) != checksum) | |
| 1079 av_log(m->avctx, AV_LOG_ERROR, "Substream %d checksum failed.\n" , substr); | |
| 7194 | 1080 } |
| 9507 | 1081 |
| 1082 if (substream_data_len[substr] * 8 != get_bits_count(&gb)) | |
| 9286 | 1083 goto substream_length_mismatch; |
| 7194 | 1084 |
| 1085 next_substr: | |
| 9507 | 1086 if (!s->restart_seen) |
| 9287 | 1087 av_log(m->avctx, AV_LOG_ERROR, |
| 1088 "No restart header present in substream %d.\n", substr); | |
| 1089 | |
| 7194 | 1090 buf += substream_data_len[substr]; |
| 1091 } | |
| 1092 | |
| 1093 rematrix_channels(m, m->max_decoded_substream); | |
| 1094 | |
| 1095 if (output_data(m, m->max_decoded_substream, data, data_size) < 0) | |
| 1096 return -1; | |
| 1097 | |
| 1098 return length; | |
| 1099 | |
| 9286 | 1100 substream_length_mismatch: |
| 1101 av_log(m->avctx, AV_LOG_ERROR, "substream %d length mismatch\n", substr); | |
| 1102 return -1; | |
| 1103 | |
| 7194 | 1104 error: |
| 1105 m->params_valid = 0; | |
| 1106 return -1; | |
| 1107 } | |
| 1108 | |
| 9190 | 1109 #if CONFIG_MLP_DECODER |
| 7194 | 1110 AVCodec mlp_decoder = { |
| 1111 "mlp", | |
| 1112 CODEC_TYPE_AUDIO, | |
| 1113 CODEC_ID_MLP, | |
| 1114 sizeof(MLPDecodeContext), | |
| 1115 mlp_decode_init, | |
| 1116 NULL, | |
| 1117 NULL, | |
| 1118 read_access_unit, | |
| 9190 | 1119 .long_name = NULL_IF_CONFIG_SMALL("MLP (Meridian Lossless Packing)"), |
| 7194 | 1120 }; |
| 9190 | 1121 #endif /* CONFIG_MLP_DECODER */ |
| 7194 | 1122 |
| 9190 | 1123 #if CONFIG_TRUEHD_DECODER |
| 1124 AVCodec truehd_decoder = { | |
| 1125 "truehd", | |
| 1126 CODEC_TYPE_AUDIO, | |
| 1127 CODEC_ID_TRUEHD, | |
| 1128 sizeof(MLPDecodeContext), | |
| 1129 mlp_decode_init, | |
| 1130 NULL, | |
| 1131 NULL, | |
| 1132 read_access_unit, | |
| 1133 .long_name = NULL_IF_CONFIG_SMALL("TrueHD"), | |
| 1134 }; | |
| 1135 #endif /* CONFIG_TRUEHD_DECODER */ |
