~ubuntu-branches/ubuntu/feisty/avidemux/feisty

« back to all changes in this revision

Viewing changes to avidemux/libtoolame/subband.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 *  tooLAME: an optimized mpeg 1/2 layer 2 audio encoder
 
2
 *  TwoLAME: an optimized MPEG Audio Layer Two encoder
3
3
 *
4
4
 *  Copyright (C) 2001-2004 Michael Cheng
 
5
 *  Copyright (C) 2004-2005 The TwoLAME Project
5
6
 *
6
7
 *  This library is free software; you can redistribute it and/or
7
8
 *  modify it under the terms of the GNU Lesser General Public
23
24
#ifndef _SUBBAND_H_
24
25
#define _SUBBAND_H_
25
26
 
26
 
void window_filter_subband( short *pBuffer, int ch, FLOAT s[SBLIMIT] );
 
27
int init_subband (subband_mem *smem);
 
28
void window_filter_subband(subband_mem *smem, short *pBuffer, int ch, FLOAT s[SBLIMIT]);
27
29
 
28
30
#endif