80 { -1, -1, -1, -1, 2, 4, 6, 8 },
81 { -1, -1, -1, -1, -1, -1, -1, -1, 1, 2, 4, 6, 8, 10, 13, 16 }
94 unsigned int min_channels = 1;
95 unsigned int max_channels = 2;
167 int sign,
delta, diff, step;
171 step_index = av_clip(step_index, 0, 88);
178 diff = ((2 * delta + 1) * step) >>
shift;
180 if (sign) predictor -= diff;
181 else predictor += diff;
197 step_index = av_clip(step_index, 0, 88);
199 sign = nibble & (1 <<
shift);
200 delta = nibble & ((1 <<
shift) - 1);
201 diff = ((2 * delta + 1) * step) >>
shift;
203 if (sign) predictor -= diff;
204 else predictor += diff;
220 step_index = av_clip(step_index, 0, 88);
223 if (nibble & 4) diff += step;
224 if (nibble & 2) diff += step >> 1;
225 if (nibble & 1) diff += step >> 2;
243 predictor += ((nibble & 0x08)?(nibble - 0x10):(nibble)) * c->
idelta;
246 c->
sample1 = av_clip_int16(predictor);
259 step_index = av_clip(step_index, 0, 48);
263 diff = ((2 * delta + 1) * step) >> 3;
265 if (sign) predictor -= diff;
266 else predictor += diff;
268 c->
predictor = av_clip(predictor, -2048, 2047);
276 int sign,
delta, diff;
284 diff = ((2 * delta + 1) * c->
step) >> 3;
290 c->
step = av_clip(new_step, 511, 32767);
297 int sign,
delta, diff;
299 sign = nibble & (1<<(size-1));
300 delta = nibble & ((1<<(size-1))-1);
307 if (delta >= (2*size - 3) && c->
step < 3)
309 else if (delta == 0 && c->
step > 0)
325 c->
step = av_clip(c->
step, 127, 24567);
338 out0 += sample_offset;
342 out1 += sample_offset;
345 shift = 12 - (in[4+i*2] & 15);
346 filter = in[4+i*2] >> 4;
361 s = ( t<<shift ) + ((s_1*f0 + s_2*f1+32)>>6);
363 s_1 = av_clip_int16(s);
374 shift = 12 - (in[5+i*2] & 15);
375 filter = in[5+i*2] >> 4;
388 s = ( t<<shift ) + ((s_1*f0 + s_2*f1+32)>>6);
390 s_1 = av_clip_int16(s);
402 out0 += 28 * (3 - channels);
403 out1 += 28 * (3 - channels);
414 int k0, signmask, nb_bits,
count;
415 int size = buf_size*8;
423 k0 = 1 << (nb_bits-2);
424 signmask = 1 << (nb_bits-1);
427 for (i = 0; i < avctx->
channels; i++) {
435 for (i = 0; i < avctx->
channels; i++) {
450 if (delta & signmask)
478 int buf_size,
int *coded_samples,
int *approx_nb_samples)
483 int has_coded_samples = 0;
487 *approx_nb_samples = 0;
495 if (buf_size < 76 * ch)
500 if (buf_size < 34 * ch)
511 nb_samples = buf_size * 2 / ch;
526 return (buf_size - header_size) * 2 / ch;
531 has_coded_samples = 1;
532 *coded_samples = bytestream2_get_le32(gb);
533 *coded_samples -= *coded_samples % 28;
534 nb_samples = (buf_size - 12) / 30 * 28;
537 has_coded_samples = 1;
538 *coded_samples = bytestream2_get_le32(gb);
539 nb_samples = (buf_size - (4 + 8 * ch)) * 2 / ch;
542 nb_samples = (buf_size - ch) / ch * 2;
549 has_coded_samples = 1;
552 header_size = 4 + 9 * ch;
553 *coded_samples = bytestream2_get_le32(gb);
556 header_size = 4 + 5 * ch;
557 *coded_samples = bytestream2_get_le32(gb);
560 header_size = 4 + 5 * ch;
561 *coded_samples = bytestream2_get_be32(gb);
564 *coded_samples -= *coded_samples % 28;
565 nb_samples = (buf_size - header_size) * 2 / ch;
566 nb_samples -= nb_samples % 28;
567 *approx_nb_samples = 1;
572 nb_samples = ((buf_size - 16) * 2 / 3 * 4) / ch;
577 nb_samples = 1 + (buf_size - 4 * ch) * 2 / ch;
582 nb_samples = (buf_size - 4 * ch) * 2 / ch;
590 nb_samples = 1 + (buf_size - 4 * ch) / (bsize * ch) * bsamples;
596 nb_samples = 2 + (buf_size - 7 * ch) * 2 / ch;
602 int samples_per_byte;
612 nb_samples += buf_size * samples_per_byte / ch;
617 int buf_bits = buf_size * 8 - 2;
618 int nbits = (bytestream2_get_byte(gb) >> 6) + 2;
619 int block_hdr_size = 22 * ch;
620 int block_size = block_hdr_size + nbits * ch * 4095;
621 int nblocks = buf_bits / block_size;
622 int bits_left = buf_bits - nblocks * block_size;
623 nb_samples = nblocks * 4096;
624 if (bits_left >= block_hdr_size)
625 nb_samples += 1 + (bits_left - block_hdr_size) / (nbits * ch);
630 nb_samples = buf_size / (8 * ch) * 14;
633 has_coded_samples = 1;
635 *coded_samples = bytestream2_get_be32(gb);
636 *coded_samples -= *coded_samples % 14;
637 nb_samples = (buf_size - (8 + 36 * ch)) / (8 * ch) * 14;
640 nb_samples = buf_size / (9 * ch) * 16;
643 nb_samples = (buf_size / 128) * 224 / ch;
646 nb_samples = buf_size / (16 * ch) * 28;
651 if (has_coded_samples && (*coded_samples <= 0 || *coded_samples > nb_samples))
658 int *got_frame_ptr,
AVPacket *avpkt)
662 int buf_size = avpkt->
size;
665 int n,
m, channel, i;
670 int nb_samples, coded_samples, approx_nb_samples,
ret;
674 nb_samples =
get_nb_samples(avctx, &gb, buf_size, &coded_samples, &approx_nb_samples);
675 if (nb_samples <= 0) {
684 samples = (
short *)frame->
data[0];
690 if (!approx_nb_samples && coded_samples != nb_samples)
692 frame->
nb_samples = nb_samples = coded_samples;
701 for (channel = 0; channel < avctx->
channels; channel++) {
704 cs = &(c->
status[channel]);
708 predictor =
sign_extend(bytestream2_get_be16u(&gb), 16);
709 step_index = predictor & 0x7F;
730 samples = samples_p[channel];
732 for (m = 0; m < 64; m += 2) {
733 int byte = bytestream2_get_byteu(&gb);
757 for (n = 0; n < (nb_samples - 1) / samples_per_block; n++) {
758 for (i = 0; i < avctx->
channels; i++) {
760 samples = &samples_p[i][1 + n * samples_per_block];
761 for (m = 0; m < samples_per_block; m++) {
769 for (n = 0; n < (nb_samples - 1) / 8; n++) {
770 for (i = 0; i < avctx->
channels; i++) {
772 samples = &samples_p[i][1 + n * 8];
773 for (m = 0; m < 8; m += 2) {
774 int v = bytestream2_get_byteu(&gb);
783 for (i = 0; i < avctx->
channels; i++)
786 for (i = 0; i < avctx->
channels; i++) {
795 for (i = 0; i < avctx->
channels; i++) {
796 samples = (int16_t *)frame->
data[i];
798 for (n = nb_samples >> 1; n > 0; n--) {
799 int v = bytestream2_get_byteu(&gb);
809 block_predictor = bytestream2_get_byteu(&gb);
810 if (block_predictor > 6) {
818 block_predictor = bytestream2_get_byteu(&gb);
819 if (block_predictor > 6) {
841 for(n = (nb_samples - 2) >> (1 - st); n > 0; n--) {
842 int byte = bytestream2_get_byteu(&gb);
849 for (channel = 0; channel < avctx->
channels; channel++) {
859 for (n = (nb_samples - 1) >> (1 - st); n > 0; n--) {
860 int v = bytestream2_get_byteu(&gb);
869 int decode_top_nibble_next = 0;
871 const int16_t *samples_end = samples + avctx->
channels * nb_samples;
887 #define DK3_GET_NEXT_NIBBLE() \
888 if (decode_top_nibble_next) { \
889 nibble = last_byte >> 4; \
890 decode_top_nibble_next = 0; \
892 last_byte = bytestream2_get_byteu(&gb); \
893 nibble = last_byte & 0x0F; \
894 decode_top_nibble_next = 1; \
897 while (samples < samples_end) {
930 for (channel = 0; channel < avctx->
channels; channel++) {
941 for (n = nb_samples >> (1 - st); n > 0; n--) {
943 int v = bytestream2_get_byteu(&gb);
958 int v = bytestream2_get_byteu(&gb);
965 int v = bytestream2_get_byteu(&gb);
971 for (channel = 0; channel < avctx->
channels; channel++) {
981 for (n = 0; n < nb_samples / 2; n++) {
984 byte[0] = bytestream2_get_byteu(&gb);
986 byte[1] = bytestream2_get_byteu(&gb);
987 for(channel = 0; channel < avctx->
channels; channel++) {
990 for(channel = 0; channel < avctx->
channels; channel++) {
997 for (channel = 0; channel < avctx->
channels; channel++) {
998 int16_t *smp = samples_p[channel];
1000 for (n = nb_samples / 2; n > 0; n--) {
1001 int v = bytestream2_get_byteu(&gb);
1007 for (n = nb_samples / 2; n > 0; n--) {
1008 for (channel = 0; channel < avctx->
channels; channel++) {
1009 int v = bytestream2_get_byteu(&gb);
1020 int16_t *out0 = samples_p[0];
1021 int16_t *out1 = samples_p[1];
1022 int samples_per_block = 28 * (3 - avctx->
channels) * 4;
1023 int sample_offset = 0;
1027 avctx->
channels, sample_offset)) < 0)
1030 sample_offset += samples_per_block;
1035 for (i=0; i<=st; i++) {
1043 for (i=0; i<=st; i++)
1046 for (n = nb_samples >> (1 - st); n > 0; n--) {
1047 int byte = bytestream2_get_byteu(&gb);
1053 for (n = nb_samples >> (1 - st); n > 0; n--) {
1054 int byte = bytestream2_get_byteu(&gb);
1061 int previous_left_sample, previous_right_sample;
1062 int current_left_sample, current_right_sample;
1063 int next_left_sample, next_right_sample;
1064 int coeff1l, coeff2l, coeff1r, coeff2r;
1065 int shift_left, shift_right;
1073 current_left_sample =
sign_extend(bytestream2_get_le16u(&gb), 16);
1074 previous_left_sample =
sign_extend(bytestream2_get_le16u(&gb), 16);
1075 current_right_sample =
sign_extend(bytestream2_get_le16u(&gb), 16);
1076 previous_right_sample =
sign_extend(bytestream2_get_le16u(&gb), 16);
1078 for (count1 = 0; count1 < nb_samples / 28; count1++) {
1079 int byte = bytestream2_get_byteu(&gb);
1085 byte = bytestream2_get_byteu(&gb);
1086 shift_left = 20 - (byte >> 4);
1087 shift_right = 20 - (byte & 0x0F);
1089 for (count2 = 0; count2 < 28; count2++) {
1090 byte = bytestream2_get_byteu(&gb);
1091 next_left_sample =
sign_extend(byte >> 4, 4) << shift_left;
1092 next_right_sample =
sign_extend(byte, 4) << shift_right;
1094 next_left_sample = (next_left_sample +
1095 (current_left_sample * coeff1l) +
1096 (previous_left_sample * coeff2l) + 0x80) >> 8;
1097 next_right_sample = (next_right_sample +
1098 (current_right_sample * coeff1r) +
1099 (previous_right_sample * coeff2r) + 0x80) >> 8;
1101 previous_left_sample = current_left_sample;
1102 current_left_sample = av_clip_int16(next_left_sample);
1103 previous_right_sample = current_right_sample;
1104 current_right_sample = av_clip_int16(next_right_sample);
1105 *samples++ = current_left_sample;
1106 *samples++ = current_right_sample;
1118 for(channel = 0; channel < avctx->
channels; channel++) {
1119 int byte = bytestream2_get_byteu(&gb);
1122 shift[channel] = 20 - (byte & 0x0F);
1124 for (count1 = 0; count1 < nb_samples / 2; count1++) {
1127 byte[0] = bytestream2_get_byteu(&gb);
1128 if (st) byte[1] = bytestream2_get_byteu(&gb);
1129 for(i = 4; i >= 0; i-=4) {
1130 for(channel = 0; channel < avctx->
channels; channel++) {
1134 c->
status[channel].
sample2 * coeff[channel][1] + 0x80) >> 8;
1152 int previous_sample, current_sample, next_sample;
1155 unsigned int channel;
1160 for (channel=0; channel<avctx->
channels; channel++)
1161 offsets[channel] = (big_endian ? bytestream2_get_be32(&gb) :
1162 bytestream2_get_le32(&gb)) +
1165 for (channel=0; channel<avctx->
channels; channel++) {
1167 samplesC = samples_p[channel];
1170 current_sample =
sign_extend(bytestream2_get_le16(&gb), 16);
1171 previous_sample =
sign_extend(bytestream2_get_le16(&gb), 16);
1177 for (count1 = 0; count1 < nb_samples / 28; count1++) {
1178 int byte = bytestream2_get_byte(&gb);
1180 current_sample =
sign_extend(bytestream2_get_be16(&gb), 16);
1181 previous_sample =
sign_extend(bytestream2_get_be16(&gb), 16);
1183 for (count2=0; count2<28; count2++)
1184 *samplesC++ =
sign_extend(bytestream2_get_be16(&gb), 16);
1188 shift = 20 - (byte & 0x0F);
1190 for (count2=0; count2<28; count2++) {
1194 byte = bytestream2_get_byte(&gb);
1198 next_sample += (current_sample * coeff1) +
1199 (previous_sample * coeff2);
1200 next_sample = av_clip_int16(next_sample >> 8);
1202 previous_sample = current_sample;
1203 current_sample = next_sample;
1204 *samplesC++ = current_sample;
1210 }
else if (count != count1) {
1212 count =
FFMAX(count, count1);
1226 for (channel=0; channel<avctx->
channels; channel++) {
1228 int16_t *
s = samples_p[channel];
1229 for (n = 0; n < 4; n++, s += 32) {
1235 val =
sign_extend(bytestream2_get_le16u(&gb), 16);
1236 shift[
n] = 20 - (val & 0x0F);
1240 for (m=2; m<32; m+=2) {
1241 s = &samples_p[channel][
m];
1242 for (n = 0; n < 4; n++, s += 32) {
1244 int byte = bytestream2_get_byteu(&gb);
1247 pred = s[-1] * coeff[0][
n] + s[-2] * coeff[1][
n];
1248 s[0] = av_clip_int16((level + pred + 0x80) >> 8);
1251 pred = s[0] * coeff[0][
n] + s[-1] * coeff[1][
n];
1252 s[1] = av_clip_int16((level + pred + 0x80) >> 8);
1267 for (n = nb_samples >> (1 - st); n > 0; n--) {
1268 int v = bytestream2_get_byteu(&gb);
1275 for (i = 0; i < avctx->
channels; i++) {
1286 for (n = nb_samples >> (1 - st); n > 0; n--) {
1287 int v = bytestream2_get_byteu(&gb);
1294 for (n = nb_samples >> (1 - st); n > 0; n--) {
1295 int v = bytestream2_get_byteu(&gb);
1305 *samples++ = 128 * (bytestream2_get_byteu(&gb) - 0x80);
1307 *samples++ = 128 * (bytestream2_get_byteu(&gb) - 0x80);
1312 for (n = nb_samples >> (1 - st); n > 0; n--) {
1313 int byte = bytestream2_get_byteu(&gb);
1320 for (n = (nb_samples<<st) / 3; n > 0; n--) {
1321 int byte = bytestream2_get_byteu(&gb);
1325 (byte >> 2) & 0x07, 3, 0);
1330 for (n = nb_samples >> (2 - st); n > 0; n--) {
1331 int byte = bytestream2_get_byteu(&gb);
1335 (byte >> 4) & 0x03, 2, 2);
1337 (byte >> 2) & 0x03, 2, 2);
1348 for (n = nb_samples >> (1 - st); n > 0; n--) {
1349 int v = bytestream2_get_byteu(&gb);
1356 int samples_per_block;
1360 samples_per_block = avctx->
extradata[0] / 16;
1361 blocks = nb_samples / avctx->
extradata[0];
1363 samples_per_block = nb_samples / 16;
1367 for (m = 0; m < blocks; m++) {
1368 for (channel = 0; channel < avctx->
channels; channel++) {
1372 samples = samples_p[channel] + m * 16;
1374 for (i = 0; i < samples_per_block; i++) {
1375 int byte = bytestream2_get_byteu(&gb);
1376 int scale = 1 << (byte >> 4);
1377 int index = byte & 0xf;
1382 for (n = 0; n < 16; n++) {
1388 byte = bytestream2_get_byteu(&gb);
1392 sampledat = ((prev1 * factor1 + prev2 * factor2) +
1393 ((sampledat * scale) << 11)) >> 11;
1394 *samples = av_clip_int16(sampledat);
1420 for (i = 0; i < avctx->
channels; i++)
1421 for (n = 0; n < 16; n++)
1422 table[i][n] =
sign_extend(bytestream2_get_be16u(&tb), 16);
1424 for (i = 0; i < avctx->
channels; i++)
1425 for (n = 0; n < 16; n++)
1426 table[i][n] =
sign_extend(bytestream2_get_be16u(&gb), 16);
1429 for (i = 0; i < avctx->
channels; i++) {
1435 for (ch = 0; ch < avctx->
channels; ch++) {
1436 samples = samples_p[ch];
1439 for (i = 0; i < nb_samples / 14; i++) {
1440 int byte = bytestream2_get_byteu(&gb);
1441 int index = (byte >> 4) & 7;
1442 unsigned int exp = byte & 0x0F;
1443 int factor1 = table[ch][index * 2];
1444 int factor2 = table[ch][index * 2 + 1];
1447 for (n = 0; n < 14; n++) {
1453 byte = bytestream2_get_byteu(&gb);
1458 + c->
status[ch].
sample2 * factor2) >> 11) + (sampledat << exp);
1459 *samples = av_clip_int16(sampledat);
1468 for (channel = 0; channel < avctx->
channels; channel++) {
1469 samples = samples_p[channel];
1472 for (i = 0; i < nb_samples / 28; i++) {
1476 header = bytestream2_get_byteu(&gb);
1480 for (n = 0; n < 28; n++) {
1483 switch (header >> 4) {
1497 prev = av_clip((prev + 0x20) >> 6, -0x200000, 0x1fffff);
1499 byte = bytestream2_get_byteu(&gb);
1505 sampledat = (((sampledat << 12) >> (header & 0xf)) << 6) + prev;
1506 *samples++ = av_clip_int16(sampledat >> 6);
1539 #define ADPCM_DECODER(id_, sample_fmts_, name_, long_name_) \
1540 AVCodec ff_ ## name_ ## _decoder = { \
1542 .long_name = NULL_IF_CONFIG_SMALL(long_name_), \
1543 .type = AVMEDIA_TYPE_AUDIO, \
1545 .priv_data_size = sizeof(ADPCMDecodeContext), \
1546 .init = adpcm_decode_init, \
1547 .decode = adpcm_decode_frame, \
1548 .capabilities = CODEC_CAP_DR1, \
1549 .sample_fmts = sample_fmts_, \