summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@collabora.com>2011-07-19 13:52:01 +0200
committerEdward Hervey <edward.hervey@collabora.co.uk>2011-09-02 15:46:02 +0200
commitc64b99339c56b504173b45748e0f93a741c68268 (patch)
treec8fd1c7d5f6341d158689955bd5f2248cd82cb9f /docs
parent4ca79463fc9a40f9450d465980cc3d72937560a0 (diff)
downloadgstreamer-plugins-bad-c64b99339c56b504173b45748e0f93a741c68268.tar.gz
codecparsers: mpeg: Add an mpeg video bitstream parsing library
Create a new codecparsers library
Diffstat (limited to 'docs')
-rw-r--r--docs/libs/gst-plugins-bad-libs-docs.sgml10
-rw-r--r--docs/libs/gst-plugins-bad-libs-sections.txt28
-rw-r--r--docs/libs/gst-plugins-bad-libs.types2
3 files changed, 40 insertions, 0 deletions
diff --git a/docs/libs/gst-plugins-bad-libs-docs.sgml b/docs/libs/gst-plugins-bad-libs-docs.sgml
index 49f0402bc..d1113bca3 100644
--- a/docs/libs/gst-plugins-bad-libs-docs.sgml
+++ b/docs/libs/gst-plugins-bad-libs-docs.sgml
@@ -20,6 +20,16 @@
package.
</para>
<xi:include href="compiling.sgml" />
+
+ <chapter id="codecparsers">
+ <title>Bitstream parsing Library</title>
+ <para>
+ This library should be linked to by getting cflags and libs from
+ <filename>gstreamer-plugins-bad-&GST_MAJORMINOR;.pc</filename> and adding
+ <filename>-lgscodeparsers-&GST_MAJORMINOR;</filename> to the library flags.
+ </para>
+ <xi:include href="xml/gstmpegvideoparser.xml" />
+ </chapter>
</part>
<part id="gstreamer-libs-hierarchy">
diff --git a/docs/libs/gst-plugins-bad-libs-sections.txt b/docs/libs/gst-plugins-bad-libs-sections.txt
index e69de29bb..a09929c04 100644
--- a/docs/libs/gst-plugins-bad-libs-sections.txt
+++ b/docs/libs/gst-plugins-bad-libs-sections.txt
@@ -0,0 +1,28 @@
+# codecparsers
+<SECTION>
+<FILE>gstmpegvideoparser</FILE>
+<TITLE>mpegvideoparser</TITLE>
+<INCLUDE>gst/codecparsers/gstmpegvideoparser.h</INCLUDE>
+GstMpegVideoPacketTypeCode
+GstMpegVideoPacketExtensionCode
+GstMpegVideoLevel
+GstMpegVideoProfile
+GstMpegVideoPictureType
+GstMpegVideoPictureStructure
+GstMpegVideoSequenceHdr
+GstMpegVideoSequenceExt
+GstMpegVideoPictureHdr
+GstMpegVideoGop
+GstMpegVideoPictureExt
+GstMpegVideoQuantMatrixExt
+GstMpegVideoTypeOffsetSize
+gst_mpeg_video_parse
+gst_mpeg_video_parse_sequence_header
+gst_mpeg_video_parse_picture_header
+gst_mpeg_video_parse_picture_extension
+gst_mpeg_video_parse_gop
+gst_mpeg_video_parse_sequence_extension
+gst_mpeg_video_parse_quant_matrix_extension
+<SUBSECTION Standard>
+<SUBSECTION Private>
+</SECTION>
diff --git a/docs/libs/gst-plugins-bad-libs.types b/docs/libs/gst-plugins-bad-libs.types
index 9f4950e70..4ca1a2b46 100644
--- a/docs/libs/gst-plugins-bad-libs.types
+++ b/docs/libs/gst-plugins-bad-libs.types
@@ -1 +1,3 @@
#include <gst/gst.h>
+
+#include <gst/codecparsers/gstmpegvideoparser.h>