diff --git a/ChangeLog b/ChangeLog index 6c6ee4de8f..94c3165bc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-05-28 Stefan Kost + + * docs/plugins/Makefile.am: + * docs/plugins/gst-plugins-good-plugins-docs.sgml: + * docs/plugins/gst-plugins-good-plugins-sections.txt: + * ext/raw1394/gstdv1394src.c: + Document whats first shown on the fdo plugin docs page :) + 2008-05-28 Stefan Kost * docs/plugins/Makefile.am: diff --git a/common b/common index 032f2d973b..130fa8f739 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 032f2d973bd5c9a9b457cb5fc72d13dafe85c01e +Subproject commit 130fa8f739ff09aedb520c33239f53d06cfe9bd5 diff --git a/docs/plugins/Makefile.am b/docs/plugins/Makefile.am index 00d31b853b..008aa1f334 100644 --- a/docs/plugins/Makefile.am +++ b/docs/plugins/Makefile.am @@ -94,6 +94,7 @@ EXTRA_HFILES = \ $(top_srcdir)/ext/libcaca/gstcacasink.h \ $(top_srcdir)/ext/libpng/gstpngdec.h \ $(top_srcdir)/ext/libpng/gstpngenc.h \ + $(top_srcdir)/ext/raw1394/gstdv1394src.h \ $(top_srcdir)/ext/soup/gstsouphttpsrc.h \ $(top_srcdir)/ext/taglib/gstapev2mux.h \ $(top_srcdir)/ext/taglib/gstid3v2mux.h \ diff --git a/docs/plugins/gst-plugins-good-plugins-docs.sgml b/docs/plugins/gst-plugins-good-plugins-docs.sgml index 1dea9b9699..c5fdb27492 100644 --- a/docs/plugins/gst-plugins-good-plugins-docs.sgml +++ b/docs/plugins/gst-plugins-good-plugins-docs.sgml @@ -37,6 +37,7 @@ + diff --git a/docs/plugins/gst-plugins-good-plugins-sections.txt b/docs/plugins/gst-plugins-good-plugins-sections.txt index b30bc3c641..d35edaf662 100644 --- a/docs/plugins/gst-plugins-good-plugins-sections.txt +++ b/docs/plugins/gst-plugins-good-plugins-sections.txt @@ -390,6 +390,20 @@ GST_DSOUND_LOCK GST_DSOUND_UNLOCK +
+element-dv1394src +dv1394src +GstDV1394Src + +GstDV1394SrcClass +GST_TYPE_DV1394SRC +GST_DV1394SRC +GST_DV1394SRC_CLASS +GST_IS_DV1394SRC +GST_IS_DV1394SRC_CLASS +gst_dv1394src_get_type +
+
element-dvdec dvdec diff --git a/ext/raw1394/gstdv1394src.c b/ext/raw1394/gstdv1394src.c index 34a354f309..e5ea28894b 100644 --- a/ext/raw1394/gstdv1394src.c +++ b/ext/raw1394/gstdv1394src.c @@ -19,6 +19,23 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-dv1394src + * + * + * + * Read DV (digital video) data from firewire port. + * + * Example launch line + * + * + * gst-launch dv1394src ! dvdemux name=d ! queue ! dvdec ! xvimagesink d. ! queue ! alsasink + * + * This pipeline captures from the firewire port and displays it (might need + * format converters for audio/video). + * + * + */ #ifdef HAVE_CONFIG_H #include "config.h"