aboutsummaryrefslogblamecommitdiff
path: root/src/plugins/Ui/skinned/inlines.h
blob: 39b81bd576c2e4cd1215d112e509765633576291 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                    
                                                     













                                                    



                                                                 
 
                   
     





                    


     


                                                               
 
                   

                    


                  


     
                   
// Copyright (c) 2000-2001 Brad Hughes <bhughes@trolltech.com>
//
// Use, modification and distribution is allowed without limitation,
// warranty, or liability of any kind.
//

#ifndef INLINES_H
#define INLINES_H

#include "fft.h"

// *fast* convenience functions
static inline void calc_freq(short* dest, short *src)
{
    static fft_state *state = NULL;
    float tmp_out[257];
    int i;

    if (!state)
        state = fft_init();

    fft_perform(src, tmp_out, state);

    for (i = 0; i < 256; i++)
        dest[i] = ((int) sqrt(tmp_out[i + 1])) >> 8;
}

static inline void stereo16_from_multichannel(register short *l,
                                              register short *r,
                                              register short *s,
                                              long cnt, int chan)
{
    while (cnt > 0)
    {
        l[0] = s[0];
        r[0] = s[1];
        s += chan;
        l++;
        r++;
        cnt--;
    }
}

static inline void mono16_from_multichannel(register short *l,
                                            register short *s,
                                            long cnt, int chan)
{
    while (cnt > 0)
    {
        l[0] = s[0];
        s += chan;
        l++;
        cnt--;
    }
}

#endif // INLINES_H