mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
more autistic cleanliness in functions/names/defines
Original commit message from CVS: more autistic cleanliness in functions/names/defines
This commit is contained in:
parent
5852e82a04
commit
d143d256a6
11 changed files with 28 additions and 30 deletions
16
ChangeLog
16
ChangeLog
|
@ -1,3 +1,19 @@
|
|||
2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* docs/libs/tmpl/gstaudio.sgml:
|
||||
* docs/libs/tmpl/gstcolorbalance.sgml:
|
||||
* docs/libs/tmpl/gstgconf.sgml:
|
||||
* docs/libs/tmpl/gstmixer.sgml:
|
||||
* docs/libs/tmpl/gstringbuffer.sgml:
|
||||
* docs/libs/tmpl/gsttuner.sgml:
|
||||
* gst-libs/gst/audio/gstbaseaudiosrc.c:
|
||||
* gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
|
||||
(gst_tcpclientsrc_class_init):
|
||||
* gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
|
||||
(gst_tcpserversrc_class_init):
|
||||
* sys/v4l/gstv4lelement.c:
|
||||
more autistic cleanliness in functions/names/defines
|
||||
|
||||
2005-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -14,9 +14,6 @@ a support library for audio elements
|
|||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### ENUM GstAudioFieldFlag ##### -->
|
||||
<para>
|
||||
|
||||
|
|
|
@ -14,9 +14,6 @@ interface for elements that provide color balance operations
|
|||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GstColorBalance ##### -->
|
||||
<para>
|
||||
|
||||
|
|
|
@ -14,9 +14,6 @@ gconf default elements support
|
|||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gst_gconf_get_string ##### -->
|
||||
<para>
|
||||
|
||||
|
|
|
@ -14,9 +14,6 @@ gstmixer
|
|||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GstMixer ##### -->
|
||||
<para>
|
||||
|
||||
|
|
|
@ -14,9 +14,6 @@ an implementation of an audio ringbuffer
|
|||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GstRingBuffer ##### -->
|
||||
<para>
|
||||
|
||||
|
|
|
@ -14,9 +14,6 @@ interface for elements that provide tuner operations
|
|||
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GstTuner ##### -->
|
||||
<para>
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ enum
|
|||
GST_DEBUG_CATEGORY_INIT (gst_base_audio_src_debug, "baseaudiosrc", 0, "baseaudiosrc element");
|
||||
|
||||
GST_BOILERPLATE_FULL (GstBaseAudioSrc, gst_base_audio_src, GstPushSrc,
|
||||
GST_TYPE_PUSHSRC, _do_init);
|
||||
GST_TYPE_PUSH_SRC, _do_init);
|
||||
|
||||
static void gst_base_audio_src_set_property (GObject * object, guint prop_id,
|
||||
const GValue * value, GParamSpec * pspec);
|
||||
|
|
|
@ -108,7 +108,7 @@ gst_tcpclientsrc_get_type (void)
|
|||
};
|
||||
|
||||
tcpclientsrc_type =
|
||||
g_type_register_static (GST_TYPE_PUSHSRC, "GstTCPClientSrc",
|
||||
g_type_register_static (GST_TYPE_PUSH_SRC, "GstTCPClientSrc",
|
||||
&tcpclientsrc_info, 0);
|
||||
}
|
||||
return tcpclientsrc_type;
|
||||
|
@ -131,14 +131,14 @@ gst_tcpclientsrc_class_init (GstTCPClientSrc * klass)
|
|||
GObjectClass *gobject_class;
|
||||
GstElementClass *gstelement_class;
|
||||
GstBaseSrcClass *gstbasesrc_class;
|
||||
GstPushSrcClass *gstpushsrc_class;
|
||||
GstPushSrcClass *gstpush_src_class;
|
||||
|
||||
gobject_class = (GObjectClass *) klass;
|
||||
gstelement_class = (GstElementClass *) klass;
|
||||
gstbasesrc_class = (GstBaseSrcClass *) klass;
|
||||
gstpushsrc_class = (GstPushSrcClass *) klass;
|
||||
gstpush_src_class = (GstPushSrcClass *) klass;
|
||||
|
||||
parent_class = g_type_class_ref (GST_TYPE_PUSHSRC);
|
||||
parent_class = g_type_class_ref (GST_TYPE_PUSH_SRC);
|
||||
|
||||
gobject_class->set_property = gst_tcpclientsrc_set_property;
|
||||
gobject_class->get_property = gst_tcpclientsrc_get_property;
|
||||
|
@ -161,7 +161,7 @@ gst_tcpclientsrc_class_init (GstTCPClientSrc * klass)
|
|||
gstbasesrc_class->stop = gst_tcpclientsrc_stop;
|
||||
gstbasesrc_class->unlock = gst_tcpclientsrc_unlock;
|
||||
|
||||
gstpushsrc_class->create = gst_tcpclientsrc_create;
|
||||
gstpush_src_class->create = gst_tcpclientsrc_create;
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (tcpclientsrc_debug, "tcpclientsrc", 0,
|
||||
"TCP Client Source");
|
||||
|
|
|
@ -106,7 +106,7 @@ gst_tcpserversrc_get_type (void)
|
|||
};
|
||||
|
||||
tcpserversrc_type =
|
||||
g_type_register_static (GST_TYPE_PUSHSRC, "GstTCPServerSrc",
|
||||
g_type_register_static (GST_TYPE_PUSH_SRC, "GstTCPServerSrc",
|
||||
&tcpserversrc_info, 0);
|
||||
}
|
||||
return tcpserversrc_type;
|
||||
|
@ -129,14 +129,14 @@ gst_tcpserversrc_class_init (GstTCPServerSrc * klass)
|
|||
GObjectClass *gobject_class;
|
||||
GstElementClass *gstelement_class;
|
||||
GstBaseSrcClass *gstbasesrc_class;
|
||||
GstPushSrcClass *gstpushsrc_class;
|
||||
GstPushSrcClass *gstpush_src_class;
|
||||
|
||||
gobject_class = (GObjectClass *) klass;
|
||||
gstelement_class = (GstElementClass *) klass;
|
||||
gstbasesrc_class = (GstBaseSrcClass *) klass;
|
||||
gstpushsrc_class = (GstPushSrcClass *) klass;
|
||||
gstpush_src_class = (GstPushSrcClass *) klass;
|
||||
|
||||
parent_class = g_type_class_ref (GST_TYPE_PUSHSRC);
|
||||
parent_class = g_type_class_ref (GST_TYPE_PUSH_SRC);
|
||||
|
||||
gobject_class->set_property = gst_tcpserversrc_set_property;
|
||||
gobject_class->get_property = gst_tcpserversrc_get_property;
|
||||
|
@ -156,7 +156,7 @@ gst_tcpserversrc_class_init (GstTCPServerSrc * klass)
|
|||
gstbasesrc_class->start = gst_tcpserversrc_start;
|
||||
gstbasesrc_class->stop = gst_tcpserversrc_stop;
|
||||
|
||||
gstpushsrc_class->create = gst_tcpserversrc_create;
|
||||
gstpush_src_class->create = gst_tcpserversrc_create;
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (tcpserversrc_debug, "tcpserversrc", 0,
|
||||
"TCP Server Source");
|
||||
|
|
|
@ -52,7 +52,7 @@ enum
|
|||
static void gst_v4lelement_init_interfaces (GType type);
|
||||
|
||||
GST_BOILERPLATE_FULL (GstV4lElement, gst_v4lelement, GstPushSrc,
|
||||
GST_TYPE_PUSHSRC, gst_v4lelement_init_interfaces)
|
||||
GST_TYPE_PUSH_SRC, gst_v4lelement_init_interfaces)
|
||||
|
||||
|
||||
static void gst_v4lelement_dispose (GObject * object);
|
||||
|
|
Loading…
Reference in a new issue