31 #define RENAME(n) n##_float
40 #define MACS(rt, ra, rb) rt+=(ra)*(rb)
41 #define MULS(ra, rb) ((ra)*(rb))
42 #define MULH3(x, y, s) ((s)*(y)*(x))
43 #define MLSS(rt, ra, rb) rt-=(ra)*(rb)
44 #define MULLx(x, y, s) ((y)*(x))
45 #define FIXHR(x) ((float)(x))
46 #define FIXR(x) ((float)(x))
47 #define SHR(a,b) ((a)*(1.0f/(1<<(b))))
51 #define RENAME(n) n##_fixed
52 #define OUT_SHIFT (WFRAC_BITS + FRAC_BITS - 15)
59 return av_clip_int16(sum1);
62 # define MULS(ra, rb) MUL64(ra, rb)
63 # define MACS(rt, ra, rb) MAC64(rt, ra, rb)
64 # define MLSS(rt, ra, rb) MLS64(rt, ra, rb)
65 # define MULH3(x, y, s) MULH((s)*(x), y)
66 # define MULLx(x, y, s) MULL((int)(x),(y),s)
67 # define SHR(a,b) (((int)(a))>>(b))
68 # define FIXR(a) ((int)((a) * FRAC_ONE + 0.5))
69 # define FIXHR(a) ((int)((a) * (1LL<<32) + 0.5))
80 #define SUM8(op, sum, w, p) \
82 op(sum, (w)[0 * 64], (p)[0 * 64]); \
83 op(sum, (w)[1 * 64], (p)[1 * 64]); \
84 op(sum, (w)[2 * 64], (p)[2 * 64]); \
85 op(sum, (w)[3 * 64], (p)[3 * 64]); \
86 op(sum, (w)[4 * 64], (p)[4 * 64]); \
87 op(sum, (w)[5 * 64], (p)[5 * 64]); \
88 op(sum, (w)[6 * 64], (p)[6 * 64]); \
89 op(sum, (w)[7 * 64], (p)[7 * 64]); \
92 #define SUM8P2(sum1, op1, sum2, op2, w1, w2, p) \
96 op1(sum1, (w1)[0 * 64], tmp);\
97 op2(sum2, (w2)[0 * 64], tmp);\
99 op1(sum1, (w1)[1 * 64], tmp);\
100 op2(sum2, (w2)[1 * 64], tmp);\
102 op1(sum1, (w1)[2 * 64], tmp);\
103 op2(sum2, (w2)[2 * 64], tmp);\
105 op1(sum1, (w1)[3 * 64], tmp);\
106 op2(sum2, (w2)[3 * 64], tmp);\
108 op1(sum1, (w1)[4 * 64], tmp);\
109 op2(sum2, (w2)[4 * 64], tmp);\
111 op1(sum1, (w1)[5 * 64], tmp);\
112 op2(sum2, (w2)[5 * 64], tmp);\
114 op1(sum1, (w1)[6 * 64], tmp);\
115 op2(sum2, (w2)[6 * 64], tmp);\
117 op1(sum1, (w1)[7 * 64], tmp);\
118 op2(sum2, (w2)[7 * 64], tmp);\
122 int *dither_state,
OUT_INT *samples,
125 register const MPA_INT *w, *w2, *p;
135 memcpy(synth_buf + 512, synth_buf, 32 *
sizeof(*synth_buf));
137 samples2 = samples + 31 * incr;
154 p = synth_buf + 16 + j;
156 p = synth_buf + 48 - j;
177 int *synth_buf_offset,
179 OUT_INT *samples, ptrdiff_t incr,
185 offset = *synth_buf_offset;
186 synth_buf = synth_buf_ptr +
offset;
188 s->RENAME(
dct32)(synth_buf, sb_samples);
191 offset = (offset - 32) & 511;
192 *synth_buf_offset =
offset;
216 for(j=0; j < 16; j++)
217 window[512+16*i+j] = window[64*i+32-j];
220 for(j=0; j < 16; j++)
221 window[512+128+16*i+j] = window[64*i+48-j];
228 for (i = 0; i < 36; i++) {
229 for (j = 0; j < 4; j++) {
232 if (j == 2 && i % 3 != 1)
235 d = sin(
M_PI * (i + 0.5) / 36.0);
238 else if (i >= 24) d = sin(
M_PI * (i - 18 + 0.5) / 12.0);
239 else if (i >= 18) d = 1;
242 else if (i < 12) d = sin(
M_PI * (i - 6 + 0.5) / 12.0);
243 else if (i < 18) d = 1;
259 for (j = 0; j < 4; j++) {
261 RENAME(ff_mdct_win)[j + 4][i ] =
RENAME(ff_mdct_win)[j][i ];
262 RENAME(ff_mdct_win)[j + 4][i + 1] = -
RENAME(ff_mdct_win)[j][i + 1];
267 #define C1 FIXHR(0.98480775301220805936/2)
268 #define C2 FIXHR(0.93969262078590838405/2)
269 #define C3 FIXHR(0.86602540378443864676/2)
270 #define C4 FIXHR(0.76604444311897803520/2)
271 #define C5 FIXHR(0.64278760968653932632/2)
272 #define C6 FIXHR(0.5/2)
273 #define C7 FIXHR(0.34202014332566873304/2)
274 #define C8 FIXHR(0.17364817766693034885/2)
278 FIXR(0.50190991877167369479),
279 FIXR(0.51763809020504152469),
280 FIXR(0.55168895948124587824),
281 FIXR(0.61038729438072803416),
282 FIXR(0.70710678118654752439),
283 FIXR(0.87172339781054900991),
284 FIXR(1.18310079157624925896),
285 FIXR(1.93185165257813657349),
286 FIXR(5.73685662283492756461),
291 FIXHR(0.50190991877167369479/2),
292 FIXHR(0.51763809020504152469/2),
293 FIXHR(0.55168895948124587824/2),
294 FIXHR(0.61038729438072803416/2),
295 FIXHR(0.70710678118654752439/2),
296 FIXHR(0.87172339781054900991/2),
297 FIXHR(1.18310079157624925896/4),
298 FIXHR(1.93185165257813657349/4),
309 for (i = 17; i >= 1; i--)
311 for (i = 17; i >= 3; i -= 2)
314 for (j = 0; j < 2; j++) {
318 t2 = in1[2*4] + in1[2*8] - in1[2*2];
320 t3 = in1[2*0] +
SHR(in1[2*6],1);
321 t1 = in1[2*0] - in1[2*6];
322 tmp1[ 6] = t1 -
SHR(t2,1);
325 t0 =
MULH3(in1[2*2] + in1[2*4] ,
C2, 2);
326 t1 =
MULH3(in1[2*4] - in1[2*8] , -2*
C8, 1);
327 t2 =
MULH3(in1[2*2] + in1[2*8] , -
C4, 2);
329 tmp1[10] = t3 - t0 -
t2;
330 tmp1[ 2] = t3 + t0 +
t1;
331 tmp1[14] = t3 + t2 -
t1;
333 tmp1[ 4] =
MULH3(in1[2*5] + in1[2*7] - in1[2*1], -
C3, 2);
334 t2 =
MULH3(in1[2*1] + in1[2*5],
C1, 2);
335 t3 =
MULH3(in1[2*5] - in1[2*7], -2*
C7, 1);
338 t1 =
MULH3(in1[2*1] + in1[2*7], -
C5, 2);
340 tmp1[ 0] = t2 + t3 +
t0;
341 tmp1[12] = t2 + t1 -
t0;
342 tmp1[ 8] = t3 - t1 -
t0;
346 for (j = 0; j < 4; j++) {
354 s1 =
MULH3(t3 + t2, icos36h[ j], 2);
359 out[(9 + j) *
SBLIMIT] =
MULH3(t1, win[ 9 + j], 1) + buf[4*(9 + j)];
360 out[(8 - j) *
SBLIMIT] =
MULH3(t1, win[ 8 - j], 1) + buf[4*(8 - j)];
366 out[(9 + 8 - j) *
SBLIMIT] =
MULH3(t1, win[ 9 + 8 - j], 1) + buf[4*(9 + 8 - j)];
367 out[ j *
SBLIMIT] =
MULH3(t1, win[ j], 1) + buf[4*( j)];
374 s1 =
MULH3(tmp[17], icos36h[4], 2);
377 out[(9 + 4) *
SBLIMIT] =
MULH3(t1, win[ 9 + 4], 1) + buf[4*(9 + 4)];
378 out[(8 - 4) *
SBLIMIT] =
MULH3(t1, win[ 8 - 4], 1) + buf[4*(8 - 4)];
384 int count,
int switch_point,
int block_type)
387 for (j=0 ; j <
count; j++) {
391 int win_idx = (switch_point && j < 2) ? 0 : block_type;
397 buf += ((j&3) != 3 ? 1 : (72-3));
Memory handling functions.
static float win(SuperEqualizerContext *s, float n, int N)
void dct32(INTFLOAT *out, const INTFLOAT *tab_arg)
const int32_t ff_mpa_enwindow[257]
Macro definitions for various function/variable attributes.
#define SUM8P2(sum1, op1, sum2, op2, w1, w2, p)
static const INTFLOAT icos36h[9]
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
#define SUM8(op, sum, w, p)
static const uint8_t offset[127][2]
static SDL_Window * window
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
#define MDCT_BUF_SIZE
For SSE implementation, MDCT_BUF_SIZE/2 should be 128-bit aligned.
static void(*const apply_window[4])(AVFloatDSPContext *fdsp, SingleChannelElement *sce, const float *audio)
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
static int round_sample(int64_t *sum)
static const INTFLOAT icos36[9]
static void imdct36(INTFLOAT *out, INTFLOAT *buf, SUINTFLOAT *in, INTFLOAT *win)
mpeg audio declarations for both encoder and decoder.