~ubuntu-branches/ubuntu/trusty/gnuradio/trusty

« back to all changes in this revision

Viewing changes to gr-vocoder/lib/codec2/ampexp.h

  • Committer: Package Import Robot
  • Author(s): A. Maitland Bottoms
  • Date: 2014-01-05 12:14:43 UTC
  • mfrom: (2.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20140105121443-je18dkof6uhox808
Tags: 3.7.2.1-5
use correct compiler for unstable build

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*---------------------------------------------------------------------------*\
2
 
 
3
 
  FILE........: ampexp.h
4
 
  AUTHOR......: David Rowe
5
 
  DATE CREATED: & August 2012
6
 
 
7
 
  Functions for experimenting with amplitude quantisation.
8
 
 
9
 
\*---------------------------------------------------------------------------*/
10
 
 
11
 
/*
12
 
  Copyright (C) 2012 David Rowe
13
 
 
14
 
  All rights reserved.
15
 
 
16
 
  This program is free software; you can redistribute it and/or modify
17
 
  it under the terms of the GNU Lesser General Public License version 2.1, as
18
 
  published by the Free Software Foundation.  This program is
19
 
  distributed in the hope that it will be useful, but WITHOUT ANY
20
 
  WARRANTY; without even the implied warranty of MERCHANTABILITY or
21
 
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
22
 
  License for more details.
23
 
 
24
 
  You should have received a copy of the GNU Lesser General Public License
25
 
  along with this program; if not,see <http://www.gnu.org/licenses/>.
26
 
*/
27
 
 
28
 
#ifndef __AMPEX__
29
 
#define __AMPEXP__
30
 
 
31
 
#include "defines.h"
32
 
 
33
 
struct AEXP;
34
 
 
35
 
struct AEXP *amp_experiment_create();
36
 
void amp_experiment_destroy(struct AEXP *aexp);
37
 
void amp_experiment(struct AEXP *aexp, MODEL *model, char *arg);
38
 
 
39
 
#endif