shithub: soundpipe

ref: 50243ce8b8f884879d506c0900da0591ce4b4603
dir: /test/t/t_butbr.c/

View raw version
#include "soundpipe.h"
#include "md5.h"
#include "tap.h"
#include "test.h"

typedef struct {
    sp_butbr *butbr;
    sp_noise *ns;
} UserData;

int t_butbr(sp_test *tst, sp_data *sp, const char *hash)
{
    sp_srand(sp, 0);
    uint32_t n;
    int fail = 0;
    SPFLOAT noise = 0, butbr = 0;
    UserData ud;

    sp_butbr_create(&ud.butbr);
    sp_noise_create(&ud.ns);

    sp_butbr_init(sp, ud.butbr);
    sp_noise_init(sp, ud.ns);

    for(n = 0; n < tst->size; n++) {
        noise = 0, butbr = 0;
        sp_noise_compute(sp, ud.ns, NULL, &noise);
        sp_butbr_compute(sp, ud.butbr, &noise, &butbr);
        sp_test_add_sample(tst, butbr);
    }

    fail = sp_test_verify(tst, hash);

    sp_butbr_destroy(&ud.butbr);
    sp_noise_destroy(&ud.ns);

    if(fail) return SP_NOT_OK;
    else return SP_OK;
}