FFmpeg
opusdsp.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #include "libavutil/mem_internal.h"
20 
21 #include "libavcodec/opusdsp.h"
22 
23 #include "checkasm.h"
24 
25 #define randomize_float(buf, len) \
26  do { \
27  for (int i = 0; i < len; i++) { \
28  float f = (float)rnd() / (UINT_MAX >> 5) - 16.0f; \
29  buf[i] = f; \
30  } \
31  } while (0)
32 
33 #define EPS 0.005
34 #define MAX_SIZE (960)
35 
36 /* period is between 15 and 1022, inclusive */
37 static void test_postfilter(int period)
38 {
39  LOCAL_ALIGNED(16, float, data0, [MAX_SIZE + 1024]);
40  LOCAL_ALIGNED(16, float, data1, [MAX_SIZE + 1024]);
41 
42  /* This filter can explode very easily, so use a tapset from the codec.
43  * In the codec these are usually multiplied by at least 0.09375f,
44  * so its outside the largest filter value, but the filter is still stable
45  * so use it. */
46  float gains[3] = { 0.3066406250f, 0.2170410156f, 0.1296386719f };
47 
48  /* The codec will always call with an offset which is aligned once
49  * (period + 2) is subtracted, but here we have to align it outselves. */
50  int offset = FFALIGN(period + 2, 4);
51 
52  declare_func(void, float *data, int period, float *gains, int len);
53 
54  randomize_float(data0, MAX_SIZE + 1024);
55  memcpy(data1, data0, (MAX_SIZE + 1024)*sizeof(float));
56 
57  call_ref(data0 + offset, period, gains, MAX_SIZE);
58  call_new(data1 + offset, period, gains, MAX_SIZE);
59 
60  if (!float_near_abs_eps_array(data0 + offset, data1 + offset, EPS, MAX_SIZE))
61  fail();
62  bench_new(data1 + offset, period, gains, MAX_SIZE);
63 }
64 
65 static void test_deemphasis(void)
66 {
67  LOCAL_ALIGNED(16, float, src, [FFALIGN(MAX_SIZE, 4)]);
68  LOCAL_ALIGNED(16, float, dst0, [FFALIGN(MAX_SIZE, 4)]);
69  LOCAL_ALIGNED(16, float, dst1, [FFALIGN(MAX_SIZE, 4)]);
70  float coeff0 = (float)rnd() / (UINT_MAX >> 5) - 16.0f, coeff1 = coeff0;
71 
72  declare_func_float(float, float *out, float *in, float coeff, int len);
73 
75 
76  coeff0 = call_ref(dst0, src, coeff0, MAX_SIZE);
77  coeff1 = call_new(dst1, src, coeff1, MAX_SIZE);
78 
79  if (!float_near_abs_eps(coeff0, coeff1, EPS) ||
80  !float_near_abs_eps_array(dst0, dst1, EPS, MAX_SIZE))
81  fail();
82  bench_new(dst1, src, coeff1, MAX_SIZE);
83 }
84 
86 {
87  OpusDSP ctx;
89 
90  if (check_func(ctx.postfilter, "postfilter_15"))
91  test_postfilter(15);
92  report("postfilter_15");
93 
94  if (check_func(ctx.postfilter, "postfilter_512"))
95  test_postfilter(512);
96  report("postfilter_512");
97 
98  if (check_func(ctx.postfilter, "postfilter_1022"))
99  test_postfilter(1022);
100  report("postfilter_1022");
101 
102  if (check_func(ctx.deemphasis, "deemphasis"))
103  test_deemphasis();
104  report("deemphasis");
105 }
mem_internal.h
out
FILE * out
Definition: movenc.c:54
float_near_abs_eps_array
int float_near_abs_eps_array(const float *a, const float *b, float eps, unsigned len)
Definition: checkasm.c:338
test_deemphasis
static void test_deemphasis(void)
Definition: opusdsp.c:65
opusdsp.h
float_near_abs_eps
int float_near_abs_eps(float a, float b, float eps)
Definition: checkasm.c:327
check_func
#define check_func(func,...)
Definition: checkasm.h:124
data
const char data[16]
Definition: mxf.c:142
declare_func_float
#define declare_func_float(ret,...)
Definition: checkasm.h:129
call_ref
#define call_ref(...)
Definition: checkasm.h:139
fail
#define fail()
Definition: checkasm.h:133
checkasm.h
rnd
#define rnd()
Definition: checkasm.h:117
LOCAL_ALIGNED
#define LOCAL_ALIGNED(a, t, v,...)
Definition: mem_internal.h:113
ctx
AVFormatContext * ctx
Definition: movenc.c:48
f
#define f(width, name)
Definition: cbs_vp9.c:255
call_new
#define call_new(...)
Definition: checkasm.h:211
period
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option keep it simple and lowercase description are in without period
Definition: writing_filters.txt:89
src
#define src
Definition: vp8dsp.c:255
checkasm_check_opusdsp
void checkasm_check_opusdsp(void)
Definition: opusdsp.c:85
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
in
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;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);return NULL;} return ac;} 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;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->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);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
Definition: audio_convert.c:326
report
#define report
Definition: checkasm.h:136
bench_new
#define bench_new(...)
Definition: checkasm.h:271
len
int len
Definition: vorbis_enc_data.h:452
MAX_SIZE
#define MAX_SIZE
Definition: opusdsp.c:34
ff_opus_dsp_init
av_cold void ff_opus_dsp_init(OpusDSP *ctx)
Definition: opusdsp.c:52
test_postfilter
static void test_postfilter(int period)
Definition: opusdsp.c:37
declare_func
#define declare_func(ret,...)
Definition: checkasm.h:128
FFALIGN
#define FFALIGN(x, a)
Definition: macros.h:48
randomize_float
#define randomize_float(buf, len)
Definition: opusdsp.c:25
coeff
static const double coeff[2][5]
Definition: vf_owdenoise.c:73
EPS
#define EPS
Definition: opusdsp.c:33
OpusDSP
Definition: opusdsp.h:26