ffmpegurisessionbuilder.h Example File
ffmpeg/ffmpegurisessionbuilder.h
#ifndef __FFMPEG_URISESSIONBUILDER_H
#define __FFMPEG_URISESSIONBUILDER_H
#include <qobject.h>
#include <qmediasessionbuilder.h>
class QMediaCodecPlugin;
namespace ffmpeg
{
class Engine;
class UriSessionBuilderPrivate;
class UriSessionBuilder :
public QObject,
public QMediaSessionBuilder
{
Q_OBJECT
public:
UriSessionBuilder(Engine* engine);
~UriSessionBuilder();
QString type() const;
Attributes const& attributes() const;
QMediaServerSession* createSession(QMediaSessionRequest sessionRequest);
void destroySession(QMediaServerSession* serverSession);
private:
UriSessionBuilderPrivate* d;
};
}
#endif
Copyright © 2009 Trolltech |
Trademarks |
Qt Extended 4.4.3 |