~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/transcode/mpglib/mpglib/layer3.h

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2007-12-31 09:49:54 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071231094954-ix1amvcsj9pk61ya
Tags: 1:1.4.1.57486.dfsg-1ubuntu1
* Merge from Debian unstable (LP: #180254), remaining changes:
  - debian/rules;
    - Added dh_icons
  - Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
** Copyright (C) 2000 Albert L. Faber
 
3
**  
 
4
** This program is free software; you can redistribute it and/or modify
 
5
** it under the terms of the GNU General Public License as published by
 
6
** the Free Software Foundation; either version 2 of the License, or
 
7
** (at your option) any later version.
 
8
** 
 
9
** This program is distributed in the hope that it will be useful,
 
10
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
** GNU General Public License for more details.
 
13
** 
 
14
** You should have received a copy of the GNU General Public License
 
15
** along with this program; if not, write to the Free Software 
 
16
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02110-1301, USA.
 
17
*/
 
18
 
 
19
#ifndef LAYER3_H_INCLUDED
 
20
#define LAYER3_H_INCLUDED
 
21
 
 
22
void init_layer3(int);
 
23
int  do_layer3_sideinfo(struct frame *fr);
 
24
int  do_layer3( PMPSTR mp,unsigned char *pcm_sample,int *pcm_point,
 
25
                int (*synth_1to1_mono_ptr)(PMPSTR,real *,unsigned char *,int *),
 
26
                int (*synth_1to1_ptr)(PMPSTR,real *,int,unsigned char *, int *) );
 
27
 
 
28
#endif
 
29
 
 
30