2003-11-04 04:32:33 +03:00
|
|
|
#ifndef _READER_PLUGIN_H
|
|
|
|
#define _READER_PLUGIN_H
|
|
|
|
|
2003-10-18 03:55:19 +04:00
|
|
|
#include <MediaTrack.h>
|
|
|
|
#include "MediaPlugin.h"
|
|
|
|
|
|
|
|
namespace BPrivate { namespace media {
|
|
|
|
|
2009-06-07 22:11:05 +04:00
|
|
|
class PluginManager;
|
|
|
|
|
2003-11-04 04:32:33 +03:00
|
|
|
enum {
|
|
|
|
B_MEDIA_SEEK_TO_TIME = 0x10000,
|
|
|
|
B_MEDIA_SEEK_TO_FRAME = 0x20000
|
|
|
|
};
|
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
class Reader {
|
2003-10-18 03:55:19 +04:00
|
|
|
public:
|
2008-03-21 02:36:14 +03:00
|
|
|
Reader();
|
|
|
|
virtual ~Reader();
|
2003-10-18 03:55:19 +04:00
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
virtual const char* Copyright() = 0;
|
2003-10-18 03:55:19 +04:00
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
virtual status_t Sniff(int32* streamCount) = 0;
|
2003-10-18 03:55:19 +04:00
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
virtual void GetFileFormatInfo(media_file_format* mff) = 0;
|
2003-12-06 23:32:40 +03:00
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
virtual status_t AllocateCookie(int32 streamNumber,
|
|
|
|
void** cookie) = 0;
|
|
|
|
virtual status_t FreeCookie(void* cookie) = 0;
|
2003-10-18 03:55:19 +04:00
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
virtual status_t GetStreamInfo(void* cookie, int64* frameCount,
|
|
|
|
bigtime_t *duration, media_format* format,
|
|
|
|
const void** infoBuffer,
|
|
|
|
size_t* infoSize) = 0;
|
|
|
|
|
|
|
|
virtual status_t Seek(void* cookie, uint32 flags, int64* frame,
|
|
|
|
bigtime_t* time);
|
|
|
|
virtual status_t FindKeyFrame(void* cookie, uint32 flags,
|
|
|
|
int64* frame, bigtime_t* time);
|
|
|
|
|
|
|
|
virtual status_t GetNextChunk(void* cookie,
|
|
|
|
const void** chunkBuffer, size_t* chunkSize,
|
|
|
|
media_header* mediaHeader) = 0;
|
2003-10-18 03:55:19 +04:00
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
BDataIO* Source() const;
|
2009-06-07 22:11:05 +04:00
|
|
|
|
|
|
|
virtual status_t Perform(perform_code code, void* data);
|
|
|
|
|
2003-10-18 03:55:19 +04:00
|
|
|
private:
|
2009-06-07 22:11:05 +04:00
|
|
|
virtual void _ReservedReader1();
|
|
|
|
virtual void _ReservedReader2();
|
|
|
|
virtual void _ReservedReader3();
|
|
|
|
virtual void _ReservedReader4();
|
|
|
|
virtual void _ReservedReader5();
|
|
|
|
|
2003-11-04 04:32:33 +03:00
|
|
|
public: // XXX for test programs only
|
2008-03-21 02:36:14 +03:00
|
|
|
void Setup(BDataIO* source);
|
2003-10-18 03:55:19 +04:00
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
BDataIO* fSource;
|
2009-06-07 22:11:05 +04:00
|
|
|
|
|
|
|
// needed for plug-in reference count management
|
|
|
|
friend class PluginManager;
|
|
|
|
MediaPlugin* fMediaPlugin;
|
|
|
|
|
|
|
|
uint32 fReserved[5];
|
2003-10-18 03:55:19 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
class ReaderPlugin : public virtual MediaPlugin {
|
2003-10-18 03:55:19 +04:00
|
|
|
public:
|
2008-03-21 02:36:14 +03:00
|
|
|
virtual Reader* NewReader() = 0;
|
2003-10-18 03:55:19 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} } // namespace BPrivate::media
|
|
|
|
|
|
|
|
using namespace BPrivate::media;
|
|
|
|
|
2008-03-21 02:36:14 +03:00
|
|
|
#endif // _READER_PLUGIN_H
|