File: mit_hrtf.h

package info (click to toggle)
libspatialaudio 0.3.0%2Bgit20180730%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 464 kB
  • sloc: cpp: 2,293; ansic: 1,247; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef MIT_HRTF_H
#define MIT_HRTF_H

#include "hrtf.h"

#ifdef HAVE_MIT_HRTF

class MIT_HRTF : public HRTF
{
public:
    MIT_HRTF(unsigned i_sampleRate);
    bool get(float f_azimuth, float f_elevation, float **pfHRTF);
};

#endif

#endif // MIT_HRTF_H