summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/mediaplayerplugininterface.h
Side-by-side diff
Diffstat (limited to 'core/multimedia/opieplayer/mediaplayerplugininterface.h') (more/less context) (show whitespace changes)
-rw-r--r--core/multimedia/opieplayer/mediaplayerplugininterface.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/core/multimedia/opieplayer/mediaplayerplugininterface.h b/core/multimedia/opieplayer/mediaplayerplugininterface.h
index aeeffde..339b2e4 100644
--- a/core/multimedia/opieplayer/mediaplayerplugininterface.h
+++ b/core/multimedia/opieplayer/mediaplayerplugininterface.h
@@ -19,9 +19,8 @@
**********************************************************************/
#ifndef MEDIA_PLAYER_PLUGIN_INTERFACE_H
#define MEDIA_PLAYER_PLUGIN_INTERFACE_H
-
#include <qpe/qcom.h>
#ifndef QT_NO_COMPONENT
// {c0093632-b44c-4cf7-a279-d82fe8a8890c}
@@ -61,14 +60,9 @@ public:
virtual int audioFrequency( int stream ) = 0;
virtual int audioSamples( int stream ) = 0;
virtual bool audioSetSample( long sample, int stream ) = 0;
virtual long audioGetSample( int stream ) = 0;
-// virtual bool audioReadMonoSamples( short *samples, long samples, long& samplesRead, int stream ) = 0;
-// virtual bool audioReadStereoSamples( short *samples, long samples, long& samplesRead, int stream ) = 0;
virtual bool audioReadSamples( short *samples, int channels, long samples, long& samplesRead, int stream ) = 0;
- // Libmpeg3 functions, perhaps good for reading an audio file with 5 channels or something!
-// virtual bool audioReadSamples( short *samples, int channel, long samples, int stream ) = 0;
-// virtual bool audioReReadSamples( short *samples, int channel, long samples, int stream ) = 0;
// If decoder doesn't support video then return 0 here
virtual int videoStreams() = 0;
virtual int videoWidth( int stream ) = 0;
@@ -96,8 +90,11 @@ public:
virtual bool supportsSMP() = 0;
virtual bool supportsStereo() = 0;
virtual bool supportsScaling() = 0;
+ // File Properies
+ virtual long getPlayTime() { return -1; }
+ virtual int audioBitsPerSample( int stream ) = 0;
};
class MediaPlayerEncoder;