File: trace.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-- 229 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#ifndef _COMMON_TRACE_H
#define _COMMON_TRACE_H

#include "int.h"
#include "float.h"

void trace_interpolate(const f32 * d, i32 m, f32 t, f32 z, f32 * r);
int trace_lookup(const f32 * d, i32 n, i32 m, f32 time, f32 * r);

#endif