summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/wavplugin/wavplugin.h
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/wavplugin/wavplugin.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/wavplugin/wavplugin.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/wavplugin/wavplugin.h b/core/multimedia/opieplayer/wavplugin/wavplugin.h
index 6ae6e06..1c8ba14 100644
--- a/core/multimedia/opieplayer/wavplugin/wavplugin.h
+++ b/core/multimedia/opieplayer/wavplugin/wavplugin.h
@@ -15,25 +15,26 @@
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20// L.J.Potter added changes Fri 02-15-2002 20// L.J.Potter added changes Fri 02-15-2002
21 21
22#ifndef WAV_PLUGIN_H 22#ifndef WAV_PLUGIN_H
23#define WAV_PLUGIN_H 23#define WAV_PLUGIN_H
24 24
25#include <qstring.h> 25#include <qstring.h>
26#include <qapplication.h> 26#include <qapplication.h>
27#include "../mediaplayerplugininterface.h" 27/* #include "../mediaplayerplugininterface.h" */
28#include <qpe/mediaplayerplugininterface.h>
28 29
29 30
30// #define OLD_MEDIAPLAYER_API 31// #define OLD_MEDIAPLAYER_API
31 32
32 33
33class WavPluginData; 34class WavPluginData;
34 35
35 36
36class WavPlugin : public MediaPlayerDecoder { 37class WavPlugin : public MediaPlayerDecoder {
37 38
38public: 39public:
39 WavPlugin(); 40 WavPlugin();
@@ -44,25 +45,25 @@ public:
44 double pluginVersion() { return 1.0; } 45 double pluginVersion() { return 1.0; }
45 46
46 bool isFileSupported( const QString& ); 47 bool isFileSupported( const QString& );
47 bool open( const QString& ); 48 bool open( const QString& );
48 bool close(); 49 bool close();
49 bool isOpen(); 50 bool isOpen();
50 const QString &fileInfo() { return strInfo = ""; } 51 const QString &fileInfo() { return strInfo = ""; }
51 52
52 // If decoder doesn't support audio then return 0 here 53 // If decoder doesn't support audio then return 0 here
53 int audioStreams(); 54 int audioStreams();
54 int audioChannels( int stream ); 55 int audioChannels( int stream );
55 int audioFrequency( int stream ); 56 int audioFrequency( int stream );
56 int audioBitsPerSample( int stream ); 57/* int audioBitsPerSample( int stream ); */
57 int audioSamples( int stream ); 58 int audioSamples( int stream );
58 bool audioSetSample( long sample, int stream ); 59 bool audioSetSample( long sample, int stream );
59 long audioGetSample( int stream ); 60 long audioGetSample( int stream );
60#ifdef OLD_MEDIAPLAYER_API 61#ifdef OLD_MEDIAPLAYER_API
61 bool audioReadMonoSamples( short *output, long samples, long& samplesRead, int stream ); 62 bool audioReadMonoSamples( short *output, long samples, long& samplesRead, int stream );
62 bool audioReadStereoSamples( short *output, long samples, long& samplesRead, int stream ); 63 bool audioReadStereoSamples( short *output, long samples, long& samplesRead, int stream );
63 bool audioReadSamples( short *output, int channel, long samples, int stream ); 64 bool audioReadSamples( short *output, int channel, long samples, int stream );
64 bool audioReReadSamples( short *output, int channel, long samples, int stream ); 65 bool audioReReadSamples( short *output, int channel, long samples, int stream );
65#else 66#else
66 bool audioReadSamples( short *output, int channels, long samples, long& samplesRead, int stream ); 67 bool audioReadSamples( short *output, int channels, long samples, long& samplesRead, int stream );
67#endif 68#endif
68 69