summaryrefslogtreecommitdiff
path: root/examples/qmlplayer2/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qmlplayer2/player.h')
-rw-r--r--examples/qmlplayer2/player.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/examples/qmlplayer2/player.h b/examples/qmlplayer2/player.h
new file mode 100644
index 0000000..a3188e8
--- /dev/null
+++ b/examples/qmlplayer2/player.h
@@ -0,0 +1,47 @@
+/*
+ Copyright (C) 2010 Marco Ballesio <gibrovacco@gmail.com>
+ Copyright (C) 2011-2013 Collabora Ltd.
+ @author George Kiagiadakis <george.kiagiadakis@collabora.co.uk>
+
+ This library is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+#ifndef PLAYER_H
+#define PLAYER_H
+
+#include <QObject>
+#include <QGst/Pipeline>
+#include <QGst/Message>
+
+class Player : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Player(QObject *parent = 0);
+
+ void setVideoSink(const QGst::ElementPtr & sink);
+
+public Q_SLOTS:
+ void play();
+ void pause();
+ void stop();
+ void setUri(const QString & uri);
+
+private:
+ void onBusMessage(const QGst::MessagePtr & message);
+
+ QGst::PipelinePtr m_pipeline;
+ QGst::ElementPtr m_videoSink;
+};
+
+#endif // PLAYER_H