summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-03-03 15:50:40 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-03-03 15:50:40 +0000
commit188bd155cde994b5c2a69b1a25a900c8b30d1608 (patch)
treedb7cab9fcb72f9aedf01f0224609061ae5283a9c /docs
parente85d1638c3e2199998ed8a31af1a2c654354fcba (diff)
docs/plugins/: Added smoke and jpeg to the docs.
Original commit message from CVS: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: * docs/plugins/gst-plugins-good-plugins.hierarchy: Added smoke and jpeg to the docs. * ext/jpeg/Makefile.am: * ext/jpeg/gstjpeg.c: (plugin_init): * ext/jpeg/gstjpegdec.c: (gst_jpeg_dec_chain): * ext/jpeg/gstjpegenc.h: * ext/jpeg/gstsmokedec.c: (gst_smokedec_init), (gst_smokedec_chain): * ext/jpeg/gstsmokedec.h: * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_chain): * ext/jpeg/gstsmokeenc.h: * ext/jpeg/smokecodec.h: Port smokedec (fixes #331905). Added some docs. Some cleanups.
Diffstat (limited to 'docs')
-rw-r--r--docs/plugins/Makefile.am4
-rw-r--r--docs/plugins/gst-plugins-good-plugins-docs.sgml4
-rw-r--r--docs/plugins/gst-plugins-good-plugins-sections.txt58
-rw-r--r--docs/plugins/gst-plugins-good-plugins.hierarchy1
4 files changed, 67 insertions, 0 deletions
diff --git a/docs/plugins/Makefile.am b/docs/plugins/Makefile.am
index 5a307da3..990e1fa1 100644
--- a/docs/plugins/Makefile.am
+++ b/docs/plugins/Makefile.am
@@ -87,6 +87,10 @@ EXTRA_HFILES = \
$(top_srcdir)/ext/flac/gstflacdec.h \
$(top_srcdir)/ext/hal/gsthalaudiosink.h \
$(top_srcdir)/ext/hal/gsthalaudiosrc.h \
+ $(top_srcdir)/ext/jpeg/gstjpegdec.h \
+ $(top_srcdir)/ext/jpeg/gstjpegenc.h \
+ $(top_srcdir)/ext/jpeg/gstsmokedec.h \
+ $(top_srcdir)/ext/jpeg/gstsmokeenc.h \
$(top_srcdir)/gst/multipart/multipartmux.c \
$(top_srcdir)/gst/multipart/multipartdemux.c \
$(top_srcdir)/gst/udp/gstudpsrc.h \
diff --git a/docs/plugins/gst-plugins-good-plugins-docs.sgml b/docs/plugins/gst-plugins-good-plugins-docs.sgml
index a7d51e0a..721ebfea 100644
--- a/docs/plugins/gst-plugins-good-plugins-docs.sgml
+++ b/docs/plugins/gst-plugins-good-plugins-docs.sgml
@@ -24,11 +24,15 @@
<xi:include href="xml/element-halaudiosink.xml" />
<xi:include href="xml/element-halaudiosrc.xml" />
<xi:include href="xml/element-id3demux.xml" />
+ <xi:include href="xml/element-jpegdec.xml" />
+ <xi:include href="xml/element-jpegenc.xml" />
<xi:include href="xml/element-level.xml" />
<xi:include href="xml/element-udpsrc.xml" />
<xi:include href="xml/element-multiudpsink.xml" />
<xi:include href="xml/element-multipartmux.xml" />
<xi:include href="xml/element-multipartdemux.xml" />
+ <xi:include href="xml/element-smokedec.xml" />
+ <xi:include href="xml/element-smokeenc.xml" />
<xi:include href="xml/element-videobalance.xml" />
<xi:include href="xml/element-videoflip.xml" />
<xi:include href="xml/element-videomixer.xml" />
diff --git a/docs/plugins/gst-plugins-good-plugins-sections.txt b/docs/plugins/gst-plugins-good-plugins-sections.txt
index d9cc9178..a3e1ba48 100644
--- a/docs/plugins/gst-plugins-good-plugins-sections.txt
+++ b/docs/plugins/gst-plugins-good-plugins-sections.txt
@@ -95,6 +95,64 @@ GstHalAudioSrcClass
</SECTION>
<SECTION>
+<FILE>element-jpegdec</FILE>
+GstJpegDec
+GstJpegDecErrorMgr
+GstJpegDecSourceMgr
+<TITLE>jpegdec</TITLE>
+<SUBSECTION Standard>
+GstJpegDecClass
+GST_JPEG_DEC
+GST_IS_JPEG_DEC
+GST_TYPE_JPEG_DEC
+gst_jpeg_dec_get_type
+GST_JPEG_DEC_CLASS
+GST_IS_JPEG_DEC_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>element-jpegenc</FILE>
+<TITLE>jpegenc</TITLE>
+GstJpegEnc
+<SUBSECTION Standard>
+GstJpegEncClass
+GST_JPEGENC
+GST_IS_JPEGENC
+GST_TYPE_JPEGENC
+gst_jpegenc_get_type
+GST_JPEGENC_CLASS
+GST_IS_JPEGENC_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>element-smokedec</FILE>
+GstSmokeDec
+<TITLE>smokedec</TITLE>
+<SUBSECTION Standard>
+GstSmokeDecClass
+GST_SMOKEDEC
+GST_IS_SMOKEDEC
+GST_TYPE_SMOKEDEC
+gst_smokedec_get_type
+GST_SMOKEDEC_CLASS
+GST_IS_SMOKEDEC_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>element-smokeenc</FILE>
+GstSmokeEnc
+<TITLE>smokeenc</TITLE>
+<SUBSECTION Standard>
+GstSmokeEncClass
+GST_SMOKEENC
+GST_IS_SMOKEENC
+GST_TYPE_SMOKEENC
+gst_smokeenc_get_type
+GST_SMOKEENC_CLASS
+GST_IS_SMOKEENC_CLASS
+</SECTION>
+
+<SECTION>
<FILE>element-id3demux</FILE>
GstID3Demux
<TITLE>id3demux</TITLE>
diff --git a/docs/plugins/gst-plugins-good-plugins.hierarchy b/docs/plugins/gst-plugins-good-plugins.hierarchy
index c1120017..6210a5ec 100644
--- a/docs/plugins/gst-plugins-good-plugins.hierarchy
+++ b/docs/plugins/gst-plugins-good-plugins.hierarchy
@@ -39,6 +39,7 @@ GObject
GstPngEnc
GstJpegEnc
GstJpegDec
+ GstSmokeDec
GstSmokeEnc
GstFlacEnc
GstFlacDec