haiku/headers/private/media/PluginManager.h
Axel Dörfler c38d73ee4c New meta_format structure that is used internally by BMediaFormats and
the FormatManager in the server.
Update the plugin API.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6241 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-01-23 07:24:51 +00:00

41 lines
852 B
C++

#ifndef _PLUGIN_MANAGER_H
#define _PLUGIN_MANAGER_H
#include "ReaderPlugin.h"
#include "DecoderPlugin.h"
#include <TList.h>
#include <Locker.h>
status_t _CreateReader(Reader **reader, int32 *streamCount, media_file_format *mff, BDataIO *source);
status_t _CreateDecoder(Decoder **decoder, media_codec_info *mci, const media_format *format);
void _DestroyReader(Reader *reader);
void _DestroyDecoder(Decoder *decoder);
class PluginManager
{
public:
PluginManager();
~PluginManager();
MediaPlugin * GetPlugin(const entry_ref &ref);
void PutPlugin(MediaPlugin *plugin);
private:
bool LoadPlugin(const entry_ref &ref, MediaPlugin **plugin, image_id *image);
struct plugin_info
{
char name[260];
int usecount;
MediaPlugin *plugin;
image_id image;
};
List<plugin_info> *fPluginList;
BLocker *fLocker;
};
#endif