~ubuntu-branches/debian/sid/mplayer/sid

« back to all changes in this revision

Viewing changes to libaf/dsp.h

  • Committer: Bazaar Package Importer
  • Author(s): A Mennucc1
  • Date: 2009-03-23 10:05:45 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090323100545-x8h79obawnnte7kk
Tags: 1.0~rc2+svn20090303-5
debian/control : move docbook-xml,docbook-xsl,xsltproc from 
Build-Depends-Indep to Build-Depends, since they are needed to run
configure

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*=============================================================================
2
 
//      
3
 
//  This software has been released under the terms of the GNU General Public
4
 
//  license. See http://www.gnu.org/copyleft/gpl.html for details.
5
 
//
6
 
//  Copyright 2002 Anders Johansson ajh@atri.curtin.edu.au
7
 
//
8
 
//=============================================================================
9
 
*/
 
1
/*
 
2
 * Copyright (C) 2002 Anders Johansson ajh@atri.curtin.edu.au
 
3
 *
 
4
 * This file is part of MPlayer.
 
5
 *
 
6
 * MPlayer is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * MPlayer is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License along
 
17
 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
 
18
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
19
 */
10
20
 
11
 
#ifndef DSP_H
12
 
#define DSP_H
 
21
#ifndef MPLAYER_DSP_H
 
22
#define MPLAYER_DSP_H
13
23
 
14
24
/* Implementation of routines used for DSP */
15
25
 
16
26
/* Size of floating point type used in routines */
17
 
#define _ftype_t float
18
 
 
19
 
#include <window.h>
20
 
#include <filter.h>
21
 
 
22
 
#endif
 
27
#define FLOAT_TYPE float
 
28
 
 
29
#include "window.h"
 
30
#include "filter.h"
 
31
 
 
32
#endif /* MPLAYER_DSP_H */