And yet more docs enabled.

Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
* docs/plugins/gst-plugins-ugly-plugins-sections.txt:
* gst/synaesthesia/Makefile.am:
* gst/synaesthesia/gstsynaesthesia.c:
* gst/synaesthesia/gstsynaesthesia.h:
And yet more docs enabled.
This commit is contained in:
Stefan Kost 2007-07-03 13:05:01 +00:00
parent bebdf0837e
commit 2c006cfccc
7 changed files with 120 additions and 61 deletions

View file

@ -1,3 +1,13 @@
2007-07-03 Stefan Kost <ensonic@users.sf.net>
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
* docs/plugins/gst-plugins-ugly-plugins-sections.txt:
* gst/synaesthesia/Makefile.am:
* gst/synaesthesia/gstsynaesthesia.c:
* gst/synaesthesia/gstsynaesthesia.h:
And yet more docs enabled.
2007-07-03 Stefan Kost <ensonic@users.sf.net>
* docs/plugins/Makefile.am:

View file

@ -90,7 +90,8 @@ EXTRA_HFILES = \
$(top_srcdir)/ext/amrnb/amrnbparse.h \
$(top_srcdir)/ext/lame/gstlame.h \
$(top_srcdir)/ext/mad/gstmad.h \
$(top_srcdir)/ext/sidplay/gstsiddec.h
$(top_srcdir)/ext/sidplay/gstsiddec.h \
$(top_srcdir)/gst/synaesthesia/gstsynaesthesia.h
# Images to copy into HTML directory.
HTML_IMAGES =

View file

@ -18,6 +18,7 @@
<xi:include href="xml/element-lame.xml" />
<xi:include href="xml/element-mad.xml" />
<xi:include href="xml/element-siddec.xml" />
<xi:include href="xml/element-synaesthesia.xml" />
</chapter>
<chapter>
@ -30,6 +31,7 @@
<xi:include href="xml/plugin-mpegstream.xml" />
<xi:include href="xml/plugin-rmdemux.xml" />
<xi:include href="xml/plugin-siddec.xml" />
<xi:include href="xml/plugin-synaesthesia.xml" />
</chapter>
</book>

View file

@ -84,3 +84,17 @@ GST_TYPE_SIDDEC
gst_siddec_get_type
</SECTION>
<SECTION>
<FILE>element-synaesthesia</FILE>
<TITLE>synaesthesia</TITLE>
GstSynaesthesia
<SUBSECTION Standard>
GstSynaesthesiaClass
GST_SYNAESTHESIA
GST_SYNAESTHESIA_CLASS
GST_IS_SYNAESTHESIA
GST_IS_SYNAESTHESIA_CLASS
GST_TYPE_SYNAESTHESIA
gst_synaesthesia_get_type
</SECTION>

View file

@ -2,7 +2,7 @@ plugin_LTLIBRARIES = libgstsynaesthesia.la
libgstsynaesthesia_la_SOURCES = gstsynaesthesia.c synaescope.c
noinst_HEADERS = synaescope.h
noinst_HEADERS = synaescope.h gstsynaesthesia.h
libgstsynaesthesia_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
libgstsynaesthesia_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)

View file

@ -1,6 +1,8 @@
/* gstsynaesthesia.c: implementation of synaesthesia drawing element
/* GStreamer
* Copyright (C) <2001> Richard Boulton <richard@tartarus.org>
*
* gstsynaesthesia.c: implementation of synaesthesia drawing element
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@ -38,64 +40,7 @@
#include "config.h"
#endif
#include <string.h>
#include <gst/gst.h>
#include <gst/video/video.h>
#include <gst/audio/audio.h>
#include <gst/base/gstadapter.h>
#include "synaescope.h"
#define SYNAES_SAMPLES 512
#define SYNAES_WIDTH 320
#define SYNAES_HEIGHT 200
#define GST_TYPE_SYNAESTHESIA (gst_synaesthesia_get_type())
#define GST_SYNAESTHESIA(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SYNAESTHESIA,GstSynaesthesia))
#define GST_SYNAESTHESIA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SYNAESTHESIA,GstSynaesthesiaClass))
#define GST_IS_SYNAESTHESIA(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SYNAESTHESIA))
#define GST_IS_SYNAESTHESIA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SYNAESTHESIA))
typedef struct _GstSynaesthesia GstSynaesthesia;
typedef struct _GstSynaesthesiaClass GstSynaesthesiaClass;
GST_DEBUG_CATEGORY_STATIC (synaesthesia_debug);
#define GST_CAT_DEFAULT (synaesthesia_debug)
struct _GstSynaesthesia
{
GstElement element;
/* pads */
GstPad *sinkpad, *srcpad;
GstAdapter *adapter;
guint64 next_ts; /* the timestamp of the next frame */
guint64 frame_duration;
guint bps; /* bytes per sample */
guint spf; /* samples per video frame */
gint16 datain[2][SYNAES_SAMPLES];
/* video state */
gint fps_n, fps_d;
gint width;
gint height;
gint channels;
/* Audio state */
gint sample_rate;
gint rate;
/* Synaesthesia instance */
syn_instance *si;
};
struct _GstSynaesthesiaClass
{
GstElementClass parent_class;
};
GType gst_synaesthesia_get_type (void);
#include "gstsynaesthesia.h"
/* elementfactory information */

View file

@ -0,0 +1,87 @@
/* GStreamer
* Copyright (C) <2001> Richard Boulton <richard@tartarus.org>
*
* gstsynaesthesia.c: implementation of synaesthesia drawing element
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __GST_SYNAESTHESIA_H__
#define __GST_SYNAESTHESIA_H__
#include <string.h>
#include <gst/gst.h>
#include <gst/video/video.h>
#include <gst/audio/audio.h>
#include <gst/base/gstadapter.h>
#include "synaescope.h"
G_BEGIN_DECLS
#define SYNAES_SAMPLES 512
#define SYNAES_WIDTH 320
#define SYNAES_HEIGHT 200
#define GST_TYPE_SYNAESTHESIA (gst_synaesthesia_get_type())
#define GST_SYNAESTHESIA(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SYNAESTHESIA,GstSynaesthesia))
#define GST_SYNAESTHESIA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SYNAESTHESIA,GstSynaesthesiaClass))
#define GST_IS_SYNAESTHESIA(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SYNAESTHESIA))
#define GST_IS_SYNAESTHESIA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SYNAESTHESIA))
typedef struct _GstSynaesthesia GstSynaesthesia;
typedef struct _GstSynaesthesiaClass GstSynaesthesiaClass;
GST_DEBUG_CATEGORY_STATIC (synaesthesia_debug);
#define GST_CAT_DEFAULT (synaesthesia_debug)
struct _GstSynaesthesia
{
GstElement element;
/* pads */
GstPad *sinkpad, *srcpad;
GstAdapter *adapter;
guint64 next_ts; /* the timestamp of the next frame */
guint64 frame_duration;
guint bps; /* bytes per sample */
guint spf; /* samples per video frame */
gint16 datain[2][SYNAES_SAMPLES];
/* video state */
gint fps_n, fps_d;
gint width;
gint height;
gint channels;
/* Audio state */
gint sample_rate;
gint rate;
/* Synaesthesia instance */
syn_instance *si;
};
struct _GstSynaesthesiaClass
{
GstElementClass parent_class;
};
GType gst_synaesthesia_get_type (void);
G_END_DECLS
#endif /* __GST_SYNAESTHESIA_H__ */