File: segment-transfer.h

package info (click to toggle)
jack-tools 20131226-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 712 kB
  • sloc: ansic: 6,183; makefile: 105; lisp: 54
file content (10 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#ifndef _COMMON_SEGMENT_TRANSFER_H
#define _COMMON_SEGMENT_TRANSFER_H

#include "float.h"

f32 segment_transfer_interpolate_linear(f32 left,f32 right,f32 index);
f32 segment_transfer_interpolate_logarithmic(f32 left,f32 right,f32 index);
f32 segment_transfer_lookup_linear(f32 *data,int size,f32 x);

#endif