summaryrefslogtreecommitdiffstats
path: root/ext/mplex/gstmplexjob.hh
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mplex/gstmplexjob.hh')
-rw-r--r--ext/mplex/gstmplexjob.hh42
1 files changed, 42 insertions, 0 deletions
diff --git a/ext/mplex/gstmplexjob.hh b/ext/mplex/gstmplexjob.hh
new file mode 100644
index 00000000..8aa5b14d
--- /dev/null
+++ b/ext/mplex/gstmplexjob.hh
@@ -0,0 +1,42 @@
+/* GStreamer mplex (mjpegtools) wrapper
+ * (c) 2003 Ronald Bultje <rbultje@ronald.bitfreak.net>
+ *
+ * gstmplexjob.hh: gstreamer/mplex multiplex-job wrapper
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GST_MPLEXJOB_H__
+#define __GST_MPLEXJOB_H__
+
+#include <glib-object.h>
+#include <interact.hpp>
+
+class GstMplexJob : public MultiplexJob {
+public:
+ GstMplexJob (void);
+
+ /* gobject properties */
+ static void initProperties (GObjectClass *klass);
+
+ /* set/get gobject properties */
+ void getProperty (guint prop_id,
+ GValue *value);
+ void setProperty (guint prop_id,
+ const GValue *value);
+};
+
+#endif /* __GST_MPLEXJOB_H__ */