~ubuntu-branches/debian/sid/python-pyo/sid

« back to all changes in this revision

Viewing changes to include/interpolation.h

  • Committer: Package Import Robot
  • Author(s): Tiago Bortoletto Vaz
  • Date: 2012-06-08 20:35:45 UTC
  • Revision ID: package-import@ubuntu.com-20120608203545-4z7kcf2lgvpsk18y
Tags: upstream-0.6.1
ImportĀ upstreamĀ versionĀ 0.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*************************************************************************
 
2
 * Copyright 2010 Olivier Belanger                                        *                  
 
3
 *                                                                        * 
 
4
 * This file is part of pyo, a python module to help digital signal       *
 
5
 * processing script creation.                                            *  
 
6
 *                                                                        * 
 
7
 * pyo is free software: you can redistribute it and/or modify            *
 
8
 * it under the terms of the GNU General Public License as published by   *
 
9
 * the Free Software Foundation, either version 3 of the License, or      *
 
10
 * (at your option) any later version.                                    * 
 
11
 *                                                                        *
 
12
 * pyo is distributed in the hope that it will be useful,                 *
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of         *    
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
 
15
 * GNU General Public License for more details.                           *
 
16
 *                                                                        *
 
17
 * You should have received a copy of the GNU General Public License      *
 
18
 * along with pyo.  If not, see <http://www.gnu.org/licenses/>.           *
 
19
 *************************************************************************/
 
20
#include "pyomodule.h"
 
21
 
 
22
#ifndef _INTERPOLATION_
 
23
#define _INTERPOLATION_
 
24
 
 
25
MYFLT nointerp(MYFLT *buf, int index, MYFLT frac, int size);
 
26
MYFLT linear(MYFLT *buf, int index, MYFLT frac, int size);
 
27
MYFLT cosine(MYFLT *buf, int index, MYFLT frac, int size);
 
28
MYFLT cubic(MYFLT *buf, int index, MYFLT frac, int size);
 
29
 
 
30
#endif