2009-07-29 20:01:28 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2003, Marcus Overhagen. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT license.
|
|
|
|
*/
|
2003-11-04 04:32:33 +03:00
|
|
|
#ifndef _MEDIA_PLUGIN_H
|
|
|
|
#define _MEDIA_PLUGIN_H
|
2003-10-18 03:55:19 +04:00
|
|
|
|
2003-11-23 21:17:35 +03:00
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
2003-10-18 03:55:19 +04:00
|
|
|
namespace BPrivate { namespace media {
|
|
|
|
|
2009-07-29 20:01:28 +04:00
|
|
|
class MediaPlugin {
|
2003-10-18 03:55:19 +04:00
|
|
|
public:
|
2009-07-29 20:01:28 +04:00
|
|
|
MediaPlugin();
|
|
|
|
virtual ~MediaPlugin();
|
2003-10-18 03:55:19 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class Decoder;
|
|
|
|
class Reader;
|
|
|
|
|
|
|
|
} } // namespace BPrivate::media
|
|
|
|
|
|
|
|
using namespace BPrivate::media;
|
|
|
|
|
2009-07-29 20:01:28 +04:00
|
|
|
extern "C" MediaPlugin* instantiate_plugin();
|
2003-11-04 04:32:33 +03:00
|
|
|
|
2009-07-29 20:01:28 +04:00
|
|
|
#endif // _MEDIA_PLUGIN_H
|