~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to extras/faad2/plugins/winamp3/cnv_FAAD.h

Tags: upstream-0.7.2.final
ImportĀ upstreamĀ versionĀ 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
cnv_FAAD - MP4-AAC decoder plugin for Winamp3
 
3
Copyright (C) 2002 Antonio Foranna
 
4
 
 
5
This program is free software; you can redistribute it and/or modify
 
6
it under the terms of the GNU General Public License as published by
 
7
the Free Software Foundation.
 
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., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
                        
 
18
The author can be contacted at:
 
19
kreel@tiscali.it
 
20
*/
 
21
 
 
22
#ifndef _CNV_FAAD_H
 
23
#define _CNV_FAAD_H
 
24
 
 
25
#include <studio/wac.h>
 
26
#include <common/rootcomp.h>
 
27
#include <attribs/cfgitemi.h>
 
28
#include <attribs/attrint.h>
 
29
#include "Defines.h"
 
30
 
 
31
#define WACNAME WACcnv_FAAD
 
32
 
 
33
 
 
34
 
 
35
#include <attribs/attrstr.h>
 
36
extern _string cfg_samplerate;
 
37
extern _string cfg_profile;
 
38
extern _string cfg_bps;
 
39
 
 
40
 
 
41
class WACNAME : public WAComponentClient
 
42
{
 
43
public:
 
44
    WACNAME();
 
45
    virtual ~WACNAME();
 
46
 
 
47
    virtual const char *getName() { return FILES_SUPPORT " to PCM converter"; };
 
48
    virtual GUID getGUID();
 
49
 
 
50
        virtual void onRegisterServices();
 
51
    virtual void onDestroy();
 
52
        virtual void onCreate();
 
53
    
 
54
    virtual int getDisplayComponent() { return FALSE; };
 
55
 
 
56
    virtual CfgItem *getCfgInterface(int n) { return this; }
 
57
};
 
58
 
 
59
#endif