46 #define BACKSTEP_SIZE 512
48 #define LAST_BUF_SIZE 2 * BACKSTEP_SIZE + EXTRABYTES
93 # define SHR(a,b) ((a)*(1.0f/(1<<(b))))
94 # define FIXR_OLD(a) ((int)((a) * FRAC_ONE + 0.5))
95 # define FIXR(x) ((float)(x))
96 # define FIXHR(x) ((float)(x))
97 # define MULH3(x, y, s) ((s)*(y)*(x))
98 # define MULLx(x, y, s) ((y)*(x))
99 # define RENAME(a) a ## _float
100 # define OUT_FMT AV_SAMPLE_FMT_FLT
101 # define OUT_FMT_P AV_SAMPLE_FMT_FLTP
103 # define SHR(a,b) ((a)>>(b))
105 # define FIXR_OLD(a) ((int)((a) * FRAC_ONE + 0.5))
106 # define FIXR(a) ((int)((a) * FRAC_ONE + 0.5))
107 # define FIXHR(a) ((int)((a) * (1LL<<32) + 0.5))
108 # define MULH3(x, y, s) MULH((s)*(x), y)
109 # define MULLx(x, y, s) MULL(x,y,s)
110 # define RENAME(a) a ## _fixed
111 # define OUT_FMT AV_SAMPLE_FMT_S16
112 # define OUT_FMT_P AV_SAMPLE_FMT_S16P
117 #define HEADER_SIZE 4
125 0 + 128 + 128 + 128 + 130 + 128 + 154 + 166 +
126 142 + 204 + 190 + 170 + 542 + 460 + 662 + 414
129 0, 128, 128, 128, 130, 128, 154, 166,
130 142, 204, 190, 170, 542, 460, 662, 414
157 #define SCALE_GEN(v) \
158 { FIXR_OLD(1.0 * (v)), FIXR_OLD(0.7937005259 * (v)), FIXR_OLD(0.6299605249 * (v)) }
174 for (i = 0; i < 3; i++) {
184 if (s->sample_rate_index != 8)
189 if (s->sample_rate_index <= 2)
191 else if (s->sample_rate_index != 8)
205 l =
FFMIN(ra1 + ra2 + 2, 22);
213 if(s->sample_rate_index == 8)
218 if (s->sample_rate_index <= 2)
247 return (
int)((val + (1LL << (shift - 1))) >> shift);
261 val = (val + (1 << (shift - 1))) >> shift;
280 m = (m + (1 << (e - 1))) >> e;
291 for (i = 0; i < 64; i++) {
300 for (i = 0; i < 15; i++) {
303 norm = ((INT64_C(1) <<
n) *
FRAC_ONE) / ((1 <<
n) - 1);
307 av_dlog(NULL,
"%d: norm=%x s=%x %x %x\n", i, norm,
317 for (i = 1; i < 16; i++) {
320 uint8_t tmp_bits [512] = { 0 };
321 uint16_t tmp_codes[512] = { 0 };
326 for (x = 0; x < xsize; x++) {
327 for (y = 0; y < xsize; y++) {
328 tmp_bits [(x << 5) | y | ((x&&y)<<4)]= h->
bits [j ];
329 tmp_codes[(x << 5) | y | ((x&&
y)<<4)]= h->
codes[j++];
337 tmp_bits, 1, 1, tmp_codes, 2, 2,
344 for (i = 0; i < 2; i++) {
347 init_vlc(&huff_quad_vlc[i], i == 0 ? 7 : 4, 16,
354 for (i = 0; i < 9; i++) {
356 for (j = 0; j < 22; j++) {
367 for (i = 0; i < 4; i++) {
370 int val1, val2, val3, steps;
383 for (i = 0; i < 7; i++) {
387 f = tan((
double)i *
M_PI / 12.0);
388 v =
FIXR(f / (1.0 + f));
396 for (i = 7; i < 16; i++)
399 for (i = 0; i < 16; i++) {
403 for (j = 0; j < 2; j++) {
404 e = -(j + 1) * ((i + 1) >> 1);
409 av_dlog(NULL,
"is_table_lsf %d %d: %f %f\n",
415 for (i = 0; i < 8; i++) {
418 cs = 1.0 / sqrt(1.0 + ci * ci);
436 static int initialized_tables = 0;
439 if (!initialized_tables) {
441 initialized_tables = 1;
462 #define C3 FIXHR(0.86602540378443864676/2)
463 #define C4 FIXHR(0.70710678118654752439/2) //0.5 / cos(pi*(9)/36)
464 #define C5 FIXHR(0.51763809020504152469/2) //0.5 / cos(pi*(5)/36)
465 #define C6 FIXHR(1.93185165257813657349/4) //0.5 / cos(pi*(15)/36)
474 in1 = in[1*3] + in[0*3];
475 in2 = in[2*3] + in[1*3];
476 in3 = in[3*3] + in[2*3];
477 in4 = in[4*3] + in[3*3];
478 in5 = in[5*3] + in[4*3];
513 int bound, i,
v,
n, ch, j, mant;
518 bound = (s->mode_ext + 1) * 4;
523 for (i = 0; i < bound; i++) {
524 for (ch = 0; ch < s->nb_channels; ch++) {
528 for (i = bound; i <
SBLIMIT; i++)
532 for (i = 0; i < bound; i++) {
533 for (ch = 0; ch < s->nb_channels; ch++) {
534 if (allocation[ch][i])
538 for (i = bound; i <
SBLIMIT; i++) {
539 if (allocation[0][i]) {
546 for (j = 0; j < 12; j++) {
547 for (i = 0; i < bound; i++) {
548 for (ch = 0; ch < s->nb_channels; ch++) {
549 n = allocation[ch][i];
552 v =
l1_unscale(n, mant, scale_factors[ch][i]);
559 for (i = bound; i <
SBLIMIT; i++) {
560 n = allocation[0][i];
580 int table, bit_alloc_bits, i, j, ch, bound,
v;
588 s->sample_rate, s->lsf);
593 bound = (s->mode_ext + 1) * 4;
597 av_dlog(s->
avctx,
"bound=%d sblimit=%d\n", bound, sblimit);
605 for (i = 0; i < bound; i++) {
606 bit_alloc_bits = alloc_table[j];
607 for (ch = 0; ch < s->nb_channels; ch++)
608 bit_alloc[ch][i] =
get_bits(&s->
gb, bit_alloc_bits);
609 j += 1 << bit_alloc_bits;
611 for (i = bound; i < sblimit; i++) {
612 bit_alloc_bits = alloc_table[j];
616 j += 1 << bit_alloc_bits;
620 for (i = 0; i < sblimit; i++) {
621 for (ch = 0; ch < s->nb_channels; ch++) {
622 if (bit_alloc[ch][i])
628 for (i = 0; i < sblimit; i++) {
629 for (ch = 0; ch < s->nb_channels; ch++) {
630 if (bit_alloc[ch][i]) {
631 sf = scale_factors[ch][i];
632 switch (scale_code[ch][i]) {
660 for (k = 0; k < 3; k++) {
661 for (l = 0; l < 12; l += 3) {
663 for (i = 0; i < bound; i++) {
664 bit_alloc_bits = alloc_table[j];
665 for (ch = 0; ch < s->nb_channels; ch++) {
666 b = bit_alloc[ch][i];
668 scale = scale_factors[ch][i][k];
669 qindex = alloc_table[j+
b];
685 for (m = 0; m < 3; m++) {
698 j += 1 << bit_alloc_bits;
701 for (i = bound; i < sblimit; i++) {
702 bit_alloc_bits = alloc_table[j];
705 int mant, scale0, scale1;
706 scale0 = scale_factors[0][i][k];
707 scale1 = scale_factors[1][i][k];
708 qindex = alloc_table[j+
b];
731 for (m = 0; m < 3; m++) {
748 j += 1 << bit_alloc_bits;
751 for (i = sblimit; i <
SBLIMIT; i++) {
752 for (ch = 0; ch < s->nb_channels; ch++) {
763 #define SPLIT(dst,sf,n) \
765 int m = (sf * 171) >> 9; \
768 } else if (n == 4) { \
771 } else if (n == 5) { \
772 int m = (sf * 205) >> 10; \
775 } else if (n == 6) { \
776 int m = (sf * 171) >> 10; \
786 SPLIT(slen[3], sf, n3)
787 SPLIT(slen[2], sf, n2)
788 SPLIT(slen[1], sf, n1)
796 int len, i, j, k, l,
v0,
shift, gain, gains[3];
806 v0 = gain - ((g->
scale_factors[i] + pretab[i]) << shift) + 400;
808 for (j = len; j > 0; j--)
820 for (l = 0; l < 3; l++) {
822 for (j = len; j > 0; j--)
857 #define READ_FLIP_SIGN(dst,src) \
858 v = AV_RN32A(src) ^ (get_bits1(&s->gb) << 31); \
861 #define READ_FLIP_SIGN(dst,src) \
862 v = -get_bits1(&s->gb); \
863 *(dst) = (*(src) ^ v) - v;
867 int16_t *exponents,
int end_pos2)
871 int last_pos, bits_left;
877 for (i = 0; i < 3; i++) {
878 int j, k, l, linbits;
914 exponent= exponents[s_index];
961 while (s_index <= 572) {
964 if (pos >= end_pos) {
965 if (pos > end_pos2 && last_pos) {
970 av_log(s->
avctx,
AV_LOG_INFO,
"overread, skip %d enddists: %d %d\n", last_pos - pos, end_pos-pos, end_pos2-pos);
988 static const int idxtab[16] = { 3,3,2,2,1,1,1,1,0,0,0,0,0,0,0,0 };
990 int pos = s_index + idxtab[code];
991 code ^= 8 >> idxtab[code];
1027 if (s->sample_rate_index != 8)
1039 for (j = len; j > 0; j--) {
1040 *dst++ = ptr[0*
len];
1041 *dst++ = ptr[1*
len];
1042 *dst++ = ptr[2*
len];
1046 memcpy(ptr1, tmp, len * 3 *
sizeof(*ptr1));
1050 #define ISQRT2 FIXR(0.70710678118654752440)
1055 int sf_max, sf,
len, non_zero_found;
1056 INTFLOAT (*is_tab)[16], *tab0, *
tab1, tmp0, tmp1, v1, v2;
1057 int non_zero_found_short[3];
1072 non_zero_found_short[0] = 0;
1073 non_zero_found_short[1] = 0;
1074 non_zero_found_short[2] = 0;
1081 for (l = 2; l >= 0; l--) {
1084 if (!non_zero_found_short[l]) {
1086 for (j = 0; j <
len; j++) {
1088 non_zero_found_short[l] = 1;
1098 for (j = 0; j <
len; j++) {
1108 for (j = 0; j <
len; j++) {
1119 non_zero_found = non_zero_found_short[0] |
1120 non_zero_found_short[1] |
1121 non_zero_found_short[2];
1123 for (i = g1->
long_end - 1;i >= 0;i--) {
1128 if (!non_zero_found) {
1129 for (j = 0; j <
len; j++) {
1136 k = (i == 21) ? 20 : i;
1142 for (j = 0; j <
len; j++) {
1152 for (j = 0; j <
len; j++) {
1170 for (i = 0; i < 576; i++) {
1173 tab0[i] = tmp0 + tmp1;
1174 tab1[i] = tmp0 - tmp1;
1190 #ifndef compute_antialias
1192 #define AA(j) do { \
1193 float tmp0 = ptr[-1-j]; \
1194 float tmp1 = ptr[ j]; \
1195 ptr[-1-j] = tmp0 * csa_table[j][0] - tmp1 * csa_table[j][1]; \
1196 ptr[ j] = tmp0 * csa_table[j][1] + tmp1 * csa_table[j][0]; \
1199 #define AA(j) do { \
1200 int tmp0 = ptr[-1-j]; \
1201 int tmp1 = ptr[ j]; \
1202 int tmp2 = MULH(tmp0 + tmp1, csa_table[j][0]); \
1203 ptr[-1-j] = 4 * (tmp2 - MULH(tmp1, csa_table[j][2])); \
1204 ptr[ j] = 4 * (tmp2 + MULH(tmp0, csa_table[j][3])); \
1224 for (i = n; i > 0; i--) {
1244 int i, j, mdct_long_end, sblimit;
1249 while (ptr >= ptr1) {
1253 if (p[0] | p[1] | p[2] | p[3] | p[4] | p[5])
1256 sblimit = ((ptr - g->
sb_hybrid) / 18) + 1;
1265 mdct_long_end = sblimit;
1272 buf = mdct_buf + 4*18*(mdct_long_end >> 2) + (mdct_long_end & 3);
1273 ptr = g->
sb_hybrid + 18 * mdct_long_end;
1275 for (j = mdct_long_end; j < sblimit; j++) {
1277 win =
RENAME(ff_mdct_win)[2 + (4 & -(j & 1))];
1278 out_ptr = sb_samples + j;
1280 for (i = 0; i < 6; i++) {
1281 *out_ptr = buf[4*i];
1285 for (i = 0; i < 6; i++) {
1286 *out_ptr =
MULH3(out2[i ], win[i ], 1) + buf[4*(i + 6*1)];
1287 buf[4*(i + 6*2)] =
MULH3(out2[i + 6], win[i + 6], 1);
1291 for (i = 0; i < 6; i++) {
1292 *out_ptr =
MULH3(out2[i ], win[i ], 1) + buf[4*(i + 6*2)];
1293 buf[4*(i + 6*0)] =
MULH3(out2[i + 6], win[i + 6], 1);
1297 for (i = 0; i < 6; i++) {
1298 buf[4*(i + 6*0)] =
MULH3(out2[i ], win[i ], 1) + buf[4*(i + 6*0)];
1299 buf[4*(i + 6*1)] =
MULH3(out2[i + 6], win[i + 6], 1);
1300 buf[4*(i + 6*2)] = 0;
1303 buf += (j&3) != 3 ? 1 : (4*18-3);
1306 for (j = sblimit; j <
SBLIMIT; j++) {
1308 out_ptr = sb_samples + j;
1309 for (i = 0; i < 18; i++) {
1310 *out_ptr = buf[4*i];
1314 buf += (j&3) != 3 ? 1 : (4*18-3);
1321 int nb_granules, main_data_begin;
1322 int gr, ch, blocksplit_flag, i, j, k,
n, bits_pos;
1324 int16_t exponents[576];
1333 if (s->nb_channels == 2)
1338 for (ch = 0; ch < s->nb_channels; ch++) {
1344 for (gr = 0; gr < nb_granules; gr++) {
1345 for (ch = 0; ch < s->nb_channels; ch++) {
1366 if (blocksplit_flag) {
1373 for (i = 0; i < 2; i++)
1375 for (i = 0; i < 3; i++)
1379 int region_address1, region_address2;
1382 for (i = 0; i < 3; i++)
1388 region_address1, region_address2);
1416 #if !UNCHECKED_BITSTREAM_READER
1420 for (gr = 0; gr < nb_granules && (s->
last_buf_size >> 3) < main_data_begin; gr++) {
1421 for (ch = 0; ch < s->nb_channels; ch++) {
1440 for (; gr < nb_granules; gr++) {
1441 for (ch = 0; ch < s->nb_channels; ch++) {
1447 int slen, slen1, slen2;
1452 av_dlog(s->
avctx,
"slen1=%d slen2=%d\n", slen1, slen2);
1457 for (i = 0; i <
n; i++)
1460 for (i = 0; i <
n; i++)
1464 for (i = 0; i < 18; i++)
1466 for (i = 0; i < 3; i++)
1469 for (i = 0; i < 21; i++)
1475 for (k = 0; k < 4; k++) {
1477 if ((g->
scfsi & (0x8 >> k)) == 0) {
1478 slen = (k < 2) ? slen1 : slen2;
1480 for (i = 0; i <
n; i++)
1483 for (i = 0; i <
n; i++)
1488 for (i = 0; i <
n; i++) {
1497 int tindex, tindex2, slen[4], sl, sf;
1512 }
else if (sf < 244) {
1524 }
else if (sf < 500) {
1535 for (k = 0; k < 4; k++) {
1539 for (i = 0; i <
n; i++)
1542 for (i = 0; i <
n; i++)
1560 for (ch = 0; ch < s->nb_channels; ch++) {
1570 return nb_granules * 18;
1576 int i, nb_frames, ch,
ret;
1582 if (s->error_protection)
1621 av_assert1(i <= buf_size - HEADER_SIZE && i >= 0);
1639 for (ch = 0; ch < s->nb_channels; ch++) {
1642 samples_ptr = samples[ch];
1645 samples_ptr = samples[0] + ch;
1646 sample_stride = s->nb_channels;
1648 for (i = 0; i < nb_frames; i++) {
1651 RENAME(ff_mpa_synth_window),
1654 samples_ptr += 32 * sample_stride;
1658 return nb_frames * 32 *
sizeof(
OUT_INT) * s->nb_channels;
1665 int buf_size = avpkt->
size;
1670 while(buf_size && !*buf){
1679 if (header>>8 ==
AV_RB32(
"TAG")>>8) {
1699 if (s->frame_size <= 0 || s->frame_size > buf_size) {
1702 }
else if (s->frame_size < buf_size) {
1704 buf_size= s->frame_size;
1741 #if CONFIG_MP3ADU_DECODER || CONFIG_MP3ADUFLOAT_DECODER
1743 int *got_frame_ptr,
AVPacket *avpkt)
1746 int buf_size = avpkt->
size;
1765 header =
AV_RB32(buf) | 0xffe00000;
1779 s->frame_size =
len;
1795 #if CONFIG_MP3ON4_DECODER || CONFIG_MP3ON4FLOAT_DECODER
1800 typedef struct MP3On4DecodeContext {
1805 } MP3On4DecodeContext;
1812 static const uint8_t mp3Frames[8] = { 0, 1, 1, 2, 3, 3, 4, 5 };
1815 static const uint8_t chan_offset[8][5] = {
1827 static const int16_t chan_layout[8] = {
1840 MP3On4DecodeContext *s = avctx->
priv_data;
1843 for (i = 0; i < s->frames; i++)
1852 MP3On4DecodeContext *s = avctx->
priv_data;
1873 s->syncword = 0xffe00000;
1875 s->syncword = 0xfff00000;
1884 if (!s->mp3decctx[0])
1891 s->mp3decctx[0]->adu_mode = 1;
1896 for (i = 1; i < s->frames; i++) {
1898 if (!s->mp3decctx[i])
1900 s->mp3decctx[i]->adu_mode = 1;
1901 s->mp3decctx[i]->avctx = avctx;
1902 s->mp3decctx[i]->mpadsp = s->mp3decctx[0]->mpadsp;
1907 decode_close_mp3on4(avctx);
1915 MP3On4DecodeContext *s = avctx->
priv_data;
1917 for (i = 0; i < s->frames; i++)
1922 static int decode_frame_mp3on4(
AVCodecContext *avctx,
void *data,
1923 int *got_frame_ptr,
AVPacket *avpkt)
1927 int buf_size = avpkt->
size;
1928 MP3On4DecodeContext *s = avctx->
priv_data;
1930 int fsize, len = buf_size, out_size = 0;
1949 for (fr = 0; fr < s->frames; fr++) {
1952 m = s->mp3decctx[fr];
1959 header = (
AV_RB32(buf) & 0x000fffff) | s->syncword;
1966 if (ch + m->nb_channels > avctx->
channels || s->coff[fr] + m->nb_channels > avctx->
channels) {
1971 ch += m->nb_channels;
1973 outptr[0] = out_samples[s->coff[fr]];
1974 if (m->nb_channels > 1)
1975 outptr[1] = out_samples[s->coff[fr] + 1];
1988 avctx->
sample_rate = s->mp3decctx[0]->sample_rate;
1998 #if CONFIG_MP1_DECODER
2014 #if CONFIG_MP2_DECODER
2030 #if CONFIG_MP3_DECODER
2046 #if CONFIG_MP3ADU_DECODER
2053 .
decode = decode_frame_adu,
2062 #if CONFIG_MP3ON4_DECODER
2067 .priv_data_size =
sizeof(MP3On4DecodeContext),
2068 .
init = decode_init_mp3on4,
2069 .
close = decode_close_mp3on4,
2070 .
decode = decode_frame_mp3on4,
2072 .
flush = flush_mp3on4,