swresample-test.c 15.6 KB
Newer Older
Michael Niedermayer's avatar
Michael Niedermayer committed
1
/*
2
 * Copyright (C) 2011-2012 Michael Niedermayer (michaelni@gmx.at)
3
 * Copyright (c) 2002 Fabrice Bellard
Michael Niedermayer's avatar
Michael Niedermayer committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * This file is part of libswresample
 *
 * libswresample is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * libswresample is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with libswresample; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "libavutil/avassert.h"
23
#include "libavutil/channel_layout.h"
Michael Niedermayer's avatar
Michael Niedermayer committed
24
#include "libavutil/common.h"
25
#include "libavutil/opt.h"
Michael Niedermayer's avatar
Michael Niedermayer committed
26
#include "swresample.h"
27 28 29

#undef time
#include "time.h"
Michael Niedermayer's avatar
Michael Niedermayer committed
30 31 32 33
#undef fprintf

#define SAMPLES 1000

34 35
#define SWR_CH_MAX 32

Michael Niedermayer's avatar
Michael Niedermayer committed
36 37
#define ASSERT_LEVEL 2

38
static double get(uint8_t *a[], int ch, int index, int ch_count, enum AVSampleFormat f){
39
    const uint8_t *p;
40 41
    if(av_sample_fmt_is_planar(f)){
        f= av_get_alt_sample_fmt(f, 0);
42 43 44 45 46 47
        p= a[ch];
    }else{
        p= a[0];
        index= ch + index*ch_count;
    }

Michael Niedermayer's avatar
Michael Niedermayer committed
48
    switch(f){
49
    case AV_SAMPLE_FMT_U8 : return ((const uint8_t*)p)[index]/127.0-1.0;
Michael Niedermayer's avatar
Michael Niedermayer committed
50 51 52 53
    case AV_SAMPLE_FMT_S16: return ((const int16_t*)p)[index]/32767.0;
    case AV_SAMPLE_FMT_S32: return ((const int32_t*)p)[index]/2147483647.0;
    case AV_SAMPLE_FMT_FLT: return ((const float  *)p)[index];
    case AV_SAMPLE_FMT_DBL: return ((const double *)p)[index];
54
    default: av_assert0(0);
Michael Niedermayer's avatar
Michael Niedermayer committed
55 56 57
    }
}

58 59
static void  set(uint8_t *a[], int ch, int index, int ch_count, enum AVSampleFormat f, double v){
    uint8_t *p;
60 61
    if(av_sample_fmt_is_planar(f)){
        f= av_get_alt_sample_fmt(f, 0);
62 63 64 65 66
        p= a[ch];
    }else{
        p= a[0];
        index= ch + index*ch_count;
    }
Michael Niedermayer's avatar
Michael Niedermayer committed
67
    switch(f){
68
    case AV_SAMPLE_FMT_U8 : ((uint8_t*)p)[index]= av_clip_uint8 (lrint((v+1.0)*127));     break;
69
    case AV_SAMPLE_FMT_S16: ((int16_t*)p)[index]= av_clip_int16 (lrint(v*32767));         break;
70
    case AV_SAMPLE_FMT_S32: ((int32_t*)p)[index]= av_clipl_int32(llrint(v*2147483647));   break;
71 72
    case AV_SAMPLE_FMT_FLT: ((float  *)p)[index]= v;                                      break;
    case AV_SAMPLE_FMT_DBL: ((double *)p)[index]= v;                                      break;
Michael Niedermayer's avatar
Michael Niedermayer committed
73 74 75 76
    default: av_assert2(0);
    }
}

77
static void shift(uint8_t *a[], int index, int ch_count, enum AVSampleFormat f){
78
    int ch;
79 80 81 82 83 84 85 86 87 88

    if(av_sample_fmt_is_planar(f)){
        f= av_get_alt_sample_fmt(f, 0);
        for(ch= 0; ch<ch_count; ch++)
            a[ch] += index*av_get_bytes_per_sample(f);
    }else{
        a[0] += index*ch_count*av_get_bytes_per_sample(f);
    }
}

89 90 91 92 93 94 95 96 97 98 99 100 101
static const enum AVSampleFormat formats[] = {
    AV_SAMPLE_FMT_S16,
    AV_SAMPLE_FMT_FLTP,
    AV_SAMPLE_FMT_S16P,
    AV_SAMPLE_FMT_FLT,
    AV_SAMPLE_FMT_S32P,
    AV_SAMPLE_FMT_S32,
    AV_SAMPLE_FMT_U8P,
    AV_SAMPLE_FMT_U8,
    AV_SAMPLE_FMT_DBLP,
    AV_SAMPLE_FMT_DBL,
};

102 103 104 105 106 107 108 109 110
static const int rates[] = {
    8000,
    11025,
    16000,
    22050,
    32000,
    48000,
};

111
static const uint64_t layouts[]={
Michael Niedermayer's avatar
Michael Niedermayer committed
112 113 114 115 116 117 118 119 120 121 122 123 124 125
    AV_CH_LAYOUT_MONO                    ,
    AV_CH_LAYOUT_STEREO                  ,
    AV_CH_LAYOUT_2_1                     ,
    AV_CH_LAYOUT_SURROUND                ,
    AV_CH_LAYOUT_4POINT0                 ,
    AV_CH_LAYOUT_2_2                     ,
    AV_CH_LAYOUT_QUAD                    ,
    AV_CH_LAYOUT_5POINT0                 ,
    AV_CH_LAYOUT_5POINT1                 ,
    AV_CH_LAYOUT_5POINT0_BACK            ,
    AV_CH_LAYOUT_5POINT1_BACK            ,
    AV_CH_LAYOUT_7POINT0                 ,
    AV_CH_LAYOUT_7POINT1                 ,
    AV_CH_LAYOUT_7POINT1_WIDE            ,
Michael Niedermayer's avatar
Michael Niedermayer committed
126 127
};

128
static void setup_array(uint8_t *out[SWR_CH_MAX], uint8_t *in, enum AVSampleFormat format, int samples){
129
    if(av_sample_fmt_is_planar(format)){
130 131 132 133 134 135 136 137 138 139 140
        int i;
        int plane_size= av_get_bytes_per_sample(format&0xFF)*samples;
        format&=0xFF;
        for(i=0; i<SWR_CH_MAX; i++){
            out[i]= in + i*plane_size;
        }
    }else{
        out[0]= in;
    }
}

141 142
static int cmp(const void *a, const void *b){
    return *(const int *)a - *(const int *)b;
143 144
}

145 146 147 148 149 150 151 152
static void audiogen(void *data, enum AVSampleFormat sample_fmt,
                     int channels, int sample_rate, int nb_samples)
{
    int i, ch, k;
    double v, f, a, ampa;
    double tabf1[SWR_CH_MAX];
    double tabf2[SWR_CH_MAX];
    double taba[SWR_CH_MAX];
153
    unsigned static rnd;
154 155

#define PUT_SAMPLE set(data, ch, k, channels, sample_fmt, v);
156
#define uint_rand(x) ((x) = (x) * 1664525 + 1013904223)
157
#define dbl_rand(x) (uint_rand(x)*2.0 / (double)UINT_MAX - 1)
158 159 160 161 162 163 164 165 166 167 168
    k = 0;

    /* 1 second of single freq sinus at 1000 Hz */
    a = 0;
    for (i = 0; i < 1 * sample_rate && k < nb_samples; i++, k++) {
        v = sin(a) * 0.30;
        for (ch = 0; ch < channels; ch++)
            PUT_SAMPLE
        a += M_PI * 1000.0 * 2.0 / sample_rate;
    }

Lou Logan's avatar
Lou Logan committed
169
    /* 1 second of varying frequency between 100 and 10000 Hz */
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
    a = 0;
    for (i = 0; i < 1 * sample_rate && k < nb_samples; i++, k++) {
        v = sin(a) * 0.30;
        for (ch = 0; ch < channels; ch++)
            PUT_SAMPLE
        f  = 100.0 + (((10000.0 - 100.0) * i) / sample_rate);
        a += M_PI * f * 2.0 / sample_rate;
    }

    /* 0.5 second of low amplitude white noise */
    for (i = 0; i < sample_rate / 2 && k < nb_samples; i++, k++) {
        v = dbl_rand(rnd) * 0.30;
        for (ch = 0; ch < channels; ch++)
            PUT_SAMPLE
    }

    /* 0.5 second of high amplitude white noise */
    for (i = 0; i < sample_rate / 2 && k < nb_samples; i++, k++) {
        v = dbl_rand(rnd);
        for (ch = 0; ch < channels; ch++)
            PUT_SAMPLE
    }

    /* 1 second of unrelated ramps for each channel */
    for (ch = 0; ch < channels; ch++) {
        taba[ch]  = 0;
196 197
        tabf1[ch] = 100 + uint_rand(rnd) % 5000;
        tabf2[ch] = 100 + uint_rand(rnd) % 5000;
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
    }
    for (i = 0; i < 1 * sample_rate && k < nb_samples; i++, k++) {
        for (ch = 0; ch < channels; ch++) {
            v = sin(taba[ch]) * 0.30;
            PUT_SAMPLE
            f = tabf1[ch] + (((tabf2[ch] - tabf1[ch]) * i) / sample_rate);
            taba[ch] += M_PI * f * 2.0 / sample_rate;
        }
    }

    /* 2 seconds of 500 Hz with varying volume */
    a    = 0;
    ampa = 0;
    for (i = 0; i < 2 * sample_rate && k < nb_samples; i++, k++) {
        for (ch = 0; ch < channels; ch++) {
            double amp = (1.0 + sin(ampa)) * 0.15;
            if (ch & 1)
                amp = 0.30 - amp;
            v = sin(a) * amp;
            PUT_SAMPLE
            a    += M_PI * 500.0 * 2.0 / sample_rate;
            ampa += M_PI *  2.0 / sample_rate;
        }
    }
}

Michael Niedermayer's avatar
Michael Niedermayer committed
224
int main(int argc, char **argv){
225
    int in_sample_rate, out_sample_rate, ch ,i, flush_count;
Michael Niedermayer's avatar
Michael Niedermayer committed
226 227 228 229 230
    uint64_t in_ch_layout, out_ch_layout;
    enum AVSampleFormat in_sample_fmt, out_sample_fmt;
    uint8_t array_in[SAMPLES*8*8];
    uint8_t array_mid[SAMPLES*8*8*3];
    uint8_t array_out[SAMPLES*8*8+100];
231 232 233
    uint8_t *ain[SWR_CH_MAX];
    uint8_t *aout[SWR_CH_MAX];
    uint8_t *amid[SWR_CH_MAX];
234
    int flush_i=0;
235
    int mode;
236 237
    int num_tests = 10000;
    uint32_t seed = 0;
238
    uint32_t rand_seed = 0;
239 240
    int remaining_tests[FF_ARRAY_ELEMS(rates) * FF_ARRAY_ELEMS(layouts) * FF_ARRAY_ELEMS(formats) * FF_ARRAY_ELEMS(layouts) * FF_ARRAY_ELEMS(formats)];
    int max_tests = FF_ARRAY_ELEMS(remaining_tests);
241
    int test;
242
    int specific_test= -1;
243

Michael Niedermayer's avatar
Michael Niedermayer committed
244 245 246
    struct SwrContext * forw_ctx= NULL;
    struct SwrContext *backw_ctx= NULL;

247
    if (argc > 1) {
248
        if (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) {
249 250
            av_log(NULL, AV_LOG_INFO, "Usage: swresample-test [<num_tests>[ <test>]]  \n"
                   "num_tests           Default is %d\n", num_tests);
251 252 253
            return 0;
        }
        num_tests = strtol(argv[1], NULL, 0);
254 255 256 257
        if(num_tests < 0) {
            num_tests = -num_tests;
            rand_seed = time(0);
        }
258 259
        if(num_tests<= 0 || num_tests>max_tests)
            num_tests = max_tests;
260 261 262
        if(argc > 2) {
            specific_test = strtol(argv[1], NULL, 0);
        }
263 264 265 266 267 268 269
    }

    for(i=0; i<max_tests; i++)
        remaining_tests[i] = i;

    for(test=0; test<num_tests; test++){
        unsigned r;
270
        uint_rand(seed);
271 272 273
        r = (seed * (uint64_t)(max_tests - test)) >>32;
        FFSWAP(int, remaining_tests[r], remaining_tests[max_tests - test - 1]);
    }
274
    qsort(remaining_tests + max_tests - num_tests, num_tests, sizeof(remaining_tests[0]), cmp);
Michael Niedermayer's avatar
Michael Niedermayer committed
275
    in_sample_rate=16000;
276
    for(test=0; test<num_tests; test++){
277 278
        char  in_layout_string[256];
        char out_layout_string[256];
279
        unsigned vector= remaining_tests[max_tests - test - 1];
280 281
        int in_ch_count;
        int out_count, mid_count, out_ch_count;
282 283 284 285 286 287 288 289

        in_ch_layout    = layouts[vector % FF_ARRAY_ELEMS(layouts)]; vector /= FF_ARRAY_ELEMS(layouts);
        out_ch_layout   = layouts[vector % FF_ARRAY_ELEMS(layouts)]; vector /= FF_ARRAY_ELEMS(layouts);
        in_sample_fmt   = formats[vector % FF_ARRAY_ELEMS(formats)]; vector /= FF_ARRAY_ELEMS(formats);
        out_sample_fmt  = formats[vector % FF_ARRAY_ELEMS(formats)]; vector /= FF_ARRAY_ELEMS(formats);
        out_sample_rate = rates  [vector % FF_ARRAY_ELEMS(rates  )]; vector /= FF_ARRAY_ELEMS(rates);
        av_assert0(!vector);

290 291 292 293 294
        if(specific_test == 0){
            if(out_sample_rate != in_sample_rate || in_ch_layout != out_ch_layout)
                continue;
        }

Michael Niedermayer's avatar
Michael Niedermayer committed
295 296 297 298 299 300 301 302 303 304 305 306 307 308
        in_ch_count= av_get_channel_layout_nb_channels(in_ch_layout);
        out_ch_count= av_get_channel_layout_nb_channels(out_ch_layout);
        av_get_channel_layout_string( in_layout_string, sizeof( in_layout_string),  in_ch_count,  in_ch_layout);
        av_get_channel_layout_string(out_layout_string, sizeof(out_layout_string), out_ch_count, out_ch_layout);
        fprintf(stderr, "TEST: %s->%s, rate:%5d->%5d, fmt:%s->%s\n",
                in_layout_string, out_layout_string,
                in_sample_rate, out_sample_rate,
                av_get_sample_fmt_name(in_sample_fmt), av_get_sample_fmt_name(out_sample_fmt));
        forw_ctx  = swr_alloc_set_opts(forw_ctx, out_ch_layout, out_sample_fmt,  out_sample_rate,
                                                    in_ch_layout,  in_sample_fmt,  in_sample_rate,
                                        0, 0);
        backw_ctx = swr_alloc_set_opts(backw_ctx, in_ch_layout,  in_sample_fmt,             in_sample_rate,
                                                    out_ch_layout, out_sample_fmt, out_sample_rate,
                                        0, 0);
309 310 311 312 313 314 315 316
        if(!forw_ctx) {
            fprintf(stderr, "Failed to init forw_cts\n");
            return 1;
        }
        if(!backw_ctx) {
            fprintf(stderr, "Failed to init backw_ctx\n");
            return 1;
        }
317 318 319 320 321
        if (uint_rand(rand_seed) % 3 == 0)
            av_opt_set_int(forw_ctx, "ich", 0, 0);
        if (uint_rand(rand_seed) % 3 == 0)
            av_opt_set_int(forw_ctx, "och", 0, 0);

Michael Niedermayer's avatar
Michael Niedermayer committed
322 323 324 325 326 327 328 329
        if(swr_init( forw_ctx) < 0)
            fprintf(stderr, "swr_init(->) failed\n");
        if(swr_init(backw_ctx) < 0)
            fprintf(stderr, "swr_init(<-) failed\n");
                //FIXME test planar
        setup_array(ain , array_in ,  in_sample_fmt,   SAMPLES);
        setup_array(amid, array_mid, out_sample_fmt, 3*SAMPLES);
        setup_array(aout, array_out,  in_sample_fmt           ,   SAMPLES);
330
#if 0
Michael Niedermayer's avatar
Michael Niedermayer committed
331 332 333 334
        for(ch=0; ch<in_ch_count; ch++){
            for(i=0; i<SAMPLES; i++)
                set(ain, ch, i, in_ch_count, in_sample_fmt, sin(i*i*3/SAMPLES));
        }
335
#else
Michael Niedermayer's avatar
Michael Niedermayer committed
336
        audiogen(ain, in_sample_fmt, in_ch_count, SAMPLES/6+1, SAMPLES);
337
#endif
338
        mode = uint_rand(rand_seed) % 3;
Michael Niedermayer's avatar
Michael Niedermayer committed
339
        if(mode==0 /*|| out_sample_rate == in_sample_rate*/) {
340
            mid_count= swr_convert(forw_ctx, amid, 3*SAMPLES, (const uint8_t **)ain, SAMPLES);
Michael Niedermayer's avatar
Michael Niedermayer committed
341
        } else if(mode==1){
342 343
            mid_count= swr_convert(forw_ctx, amid,         0, (const uint8_t **)ain, SAMPLES);
            mid_count+=swr_convert(forw_ctx, amid, 3*SAMPLES, (const uint8_t **)ain,       0);
Michael Niedermayer's avatar
Michael Niedermayer committed
344 345
        } else {
            int tmp_count;
346
            mid_count= swr_convert(forw_ctx, amid,         0, (const uint8_t **)ain,       1);
Michael Niedermayer's avatar
Michael Niedermayer committed
347 348
            av_assert0(mid_count==0);
            shift(ain,  1, in_ch_count, in_sample_fmt);
349
            mid_count+=swr_convert(forw_ctx, amid, 3*SAMPLES, (const uint8_t **)ain,       0);
Michael Niedermayer's avatar
Michael Niedermayer committed
350
            shift(amid,  mid_count, out_ch_count, out_sample_fmt); tmp_count = mid_count;
351
            mid_count+=swr_convert(forw_ctx, amid,         2, (const uint8_t **)ain,       2);
Michael Niedermayer's avatar
Michael Niedermayer committed
352 353
            shift(amid,  mid_count-tmp_count, out_ch_count, out_sample_fmt); tmp_count = mid_count;
            shift(ain,  2, in_ch_count, in_sample_fmt);
354
            mid_count+=swr_convert(forw_ctx, amid,         1, (const uint8_t **)ain, SAMPLES-3);
Michael Niedermayer's avatar
Michael Niedermayer committed
355 356
            shift(amid,  mid_count-tmp_count, out_ch_count, out_sample_fmt); tmp_count = mid_count;
            shift(ain, -3, in_ch_count, in_sample_fmt);
357
            mid_count+=swr_convert(forw_ctx, amid, 3*SAMPLES, (const uint8_t **)ain,       0);
Michael Niedermayer's avatar
Michael Niedermayer committed
358 359
            shift(amid,  -tmp_count, out_ch_count, out_sample_fmt);
        }
360
        out_count= swr_convert(backw_ctx,aout, SAMPLES, (const uint8_t **)amid, mid_count);
Michael Niedermayer's avatar
Michael Niedermayer committed
361 362

        for(ch=0; ch<in_ch_count; ch++){
363
            double sse, maxdiff=0;
Michael Niedermayer's avatar
Michael Niedermayer committed
364 365 366 367 368 369 370 371 372 373 374 375 376
            double sum_a= 0;
            double sum_b= 0;
            double sum_aa= 0;
            double sum_bb= 0;
            double sum_ab= 0;
            for(i=0; i<out_count; i++){
                double a= get(ain , ch, i, in_ch_count, in_sample_fmt);
                double b= get(aout, ch, i, in_ch_count, in_sample_fmt);
                sum_a += a;
                sum_b += b;
                sum_aa+= a*a;
                sum_bb+= b*b;
                sum_ab+= a*b;
377
                maxdiff= FFMAX(maxdiff, fabs(a-b));
Michael Niedermayer's avatar
Michael Niedermayer committed
378 379
            }
            sse= sum_aa + sum_bb - 2*sum_ab;
380
            if(sse < 0 && sse > -0.00001) sse=0; //fix rounding error
Michael Niedermayer's avatar
Michael Niedermayer committed
381

382
            fprintf(stderr, "[e:%f c:%f max:%f] len:%5d\n", out_count ? sqrt(sse/out_count) : 0, sum_ab/(sqrt(sum_aa*sum_bb)), maxdiff, out_count);
Michael Niedermayer's avatar
Michael Niedermayer committed
383 384 385 386 387 388 389 390 391 392
        }

        flush_i++;
        flush_i%=21;
        flush_count = swr_convert(backw_ctx,aout, flush_i, 0, 0);
        shift(aout,  flush_i, in_ch_count, in_sample_fmt);
        flush_count+= swr_convert(backw_ctx,aout, SAMPLES-flush_i, 0, 0);
        shift(aout, -flush_i, in_ch_count, in_sample_fmt);
        if(flush_count){
            for(ch=0; ch<in_ch_count; ch++){
393
                double sse, maxdiff=0;
Michael Niedermayer's avatar
Michael Niedermayer committed
394 395 396 397 398 399 400 401 402 403 404 405 406
                double sum_a= 0;
                double sum_b= 0;
                double sum_aa= 0;
                double sum_bb= 0;
                double sum_ab= 0;
                for(i=0; i<flush_count; i++){
                    double a= get(ain , ch, i+out_count, in_ch_count, in_sample_fmt);
                    double b= get(aout, ch, i, in_ch_count, in_sample_fmt);
                    sum_a += a;
                    sum_b += b;
                    sum_aa+= a*a;
                    sum_bb+= b*b;
                    sum_ab+= a*b;
407
                    maxdiff= FFMAX(maxdiff, fabs(a-b));
Michael Niedermayer's avatar
Michael Niedermayer committed
408 409
                }
                sse= sum_aa + sum_bb - 2*sum_ab;
410
                if(sse < 0 && sse > -0.00001) sse=0; //fix rounding error
Michael Niedermayer's avatar
Michael Niedermayer committed
411 412 413 414 415 416 417

                fprintf(stderr, "[e:%f c:%f max:%f] len:%5d F:%3d\n", sqrt(sse/flush_count), sum_ab/(sqrt(sum_aa*sum_bb)), maxdiff, flush_count, flush_i);
            }
        }


        fprintf(stderr, "\n");
Michael Niedermayer's avatar
Michael Niedermayer committed
418 419 420 421
    }

    return 0;
}