summaryrefslogtreecommitdiff
path: root/pysoundtouch/src/soundtouchmodule.h
blob: 6f533ebe522f18a791fb839e5dc10431946d85b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 
 * python interface to soundtouch (the open-source audio processing library)
 * Expose BMP detection and Shifting to python
 */

#ifndef __SOUNDTOUCH_MODULE_H__
#define __SOUNDTOUCH_MODULE_H__

#include <Python.h>

/* module accessible functions */
extern "C" {
  PyObject* py_soundtouch_new(PyObject* self, PyObject* args);
  PyObject* py_bpmdetect_new(PyObject* self, PyObject* args);
}

#endif