00001 #pragma once 00002 00003 // QStreamer 00004 // A GStreamer replacement for Qt. 00005 // 00006 // Authors : 00007 // Darren R. Starr <submux at gmail dot com> 00008 // 00009 // Copyright : 2010 The QStreamer Project 00010 // License : BSD (until we're informed that we're in violation of some other license) 00011 // Donations : Appreciated and possible through SourceForge donation page. 00012 // 00013 // All code included in this project can be used freely in whatever way the user feels fit. 00014 // If you want to take it, close it and be a weasel that doesn't even contribute back patches, 00015 // so be it. Patches are however appreciated. Wrappers for other open source components are 00016 // also appreciated. 00017 // 00018 // If you wish to be nice to us so we can see how our code is being used. Drop us a mail and let us 00019 // know you're using it in your project. 00020 // 00021 // Support : By default the support is "you get what you pay for". Paid nothing, there's no implied 00022 // requirement to support you. On the other hand, some project developers are likely to 00023 // make fixes, changes, features on request or contract. 00024 // 00025 // Enjoy 00026 00027 #include <QtCore/QObject> 00028 00029 #include "qmediaerror.h" 00030 #include "qelementlist.h" 00031 00032 namespace QStreamer 00033 { 00034 class QPipeline : public QObject 00035 { 00036 friend class QElement; 00037 public: 00038 QPipeline(QObject *parent); 00039 00040 ~QPipeline(void); 00041 00042 QMediaError &error(); 00043 00044 QElementList &children(); 00045 00046 const QElementList &children() const; 00047 00048 class QMediaClock *clock(); 00049 00050 void setClock(QMediaClock *clock); 00051 00052 protected: 00053 bool addChild(QElement *child); 00054 00055 bool removeChild(QElement *child); 00056 00057 private: 00058 QMediaError m_error; 00059 QElementList m_children; 00060 00061 class QMediaClock *m_clock; 00062 class QMediaClock *m_rootClock; 00063 }; 00064 } 00065 00066 00067