MPEG1 cleanup. Added first (non functional) video sink.
authorWim Taymans <wim.taymans@gmail.com>
Thu, 17 Feb 2000 22:50:28 +0000 (22:50 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Thu, 17 Feb 2000 22:50:28 +0000 (22:50 +0000)
Original commit message from CVS:
MPEG1 cleanup. Added first (non functional) video sink.

configure.in
gst/meta/Makefile.am
gst/meta/videoraw.h [new file with mode: 0644]

index bd586e1a6532bcb247221146b58386dee9232ba4..87d43ccb90adb1e67a7b31406029e3a6a2fa9a28 100644 (file)
@@ -308,6 +308,7 @@ plugins/visualization/spectrum/Makefile
 plugins/visualization/vumeter/Makefile
 plugins/visualization/synaesthesia/Makefile
 plugins/visualization/smoothwave/Makefile
+plugins/videosink/Makefile
 plugins/dvdsrc/Makefile
 plugins/vcdsrc/Makefile
 plugins/cobin/Makefile
index adc27ce0f5bf51d5ba34582d4491f3c286bd016c..59107c0de50781f8424c4374f0c1475b418d1840 100644 (file)
@@ -1,3 +1,4 @@
 metaincludedir = $(includedir)/gst/meta
 metainclude_HEADERS =  \
-       audioraw.h
+       audioraw.h \
+       videoraw.h
diff --git a/gst/meta/videoraw.h b/gst/meta/videoraw.h
new file mode 100644 (file)
index 0000000..6574060
--- /dev/null
@@ -0,0 +1,38 @@
+/* Gnome-Streamer
+ * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
+ *
+ * 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_META_VIDEORAW_H__
+#define __GST_META_VIDEORAW_H__
+
+#include <gst/gstmeta.h>
+
+typedef struct _MetaVideoRaw MetaVideoRaw;
+
+struct _MetaVideoRaw {
+  GstMeta meta;
+
+  /* formatting information */
+  gint format;
+  gint width;
+  gint height;
+};
+
+#endif /* __GST_META_AUDIORAW_H__ */
+