mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
gst/elements/: Make element details static.
Original commit message from CVS: * gst/elements/gstcapsfilter.c: * gst/elements/gstfakesink.c: * gst/elements/gstfakesrc.c: * gst/elements/gstfdsink.c: * gst/elements/gstfdsrc.c: * gst/elements/gstfilesink.c: * gst/elements/gstfilesrc.c: * gst/elements/gstidentity.c: * gst/elements/gsttee.c: * gst/elements/gsttypefindelement.c: Make element details static.
This commit is contained in:
parent
cacb844d6f
commit
99d855fdc9
21 changed files with 46 additions and 20 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
||||||
|
2005-09-28 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/elements/gstcapsfilter.c:
|
||||||
|
* gst/elements/gstfakesink.c:
|
||||||
|
* gst/elements/gstfakesrc.c:
|
||||||
|
* gst/elements/gstfdsink.c:
|
||||||
|
* gst/elements/gstfdsrc.c:
|
||||||
|
* gst/elements/gstfilesink.c:
|
||||||
|
* gst/elements/gstfilesrc.c:
|
||||||
|
* gst/elements/gstidentity.c:
|
||||||
|
* gst/elements/gsttee.c:
|
||||||
|
* gst/elements/gsttypefindelement.c:
|
||||||
|
Make element details static.
|
||||||
|
|
||||||
2005-09-28 Wim Taymans <wim@fluendo.com>
|
2005-09-28 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
|
* gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
|
||||||
|
|
|
@ -29,7 +29,8 @@
|
||||||
#include <gst/base/gstbasetransform.h>
|
#include <gst/base/gstbasetransform.h>
|
||||||
|
|
||||||
|
|
||||||
GstElementDetails gst_capsfilter_details = GST_ELEMENT_DETAILS ("CapsFilter",
|
static GstElementDetails gst_capsfilter_details =
|
||||||
|
GST_ELEMENT_DETAILS ("CapsFilter",
|
||||||
"Generic",
|
"Generic",
|
||||||
"Pass data without modification, limiting formats",
|
"Pass data without modification, limiting formats",
|
||||||
"David Schleef <ds@schleef.org>");
|
"David Schleef <ds@schleef.org>");
|
||||||
|
|
|
@ -42,7 +42,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_fake_sink_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_fake_sink_debug);
|
||||||
#define GST_CAT_DEFAULT gst_fake_sink_debug
|
#define GST_CAT_DEFAULT gst_fake_sink_debug
|
||||||
|
|
||||||
GstElementDetails gst_fake_sink_details = GST_ELEMENT_DETAILS ("Fake Sink",
|
static GstElementDetails gst_fake_sink_details =
|
||||||
|
GST_ELEMENT_DETAILS ("Fake Sink",
|
||||||
"Sink",
|
"Sink",
|
||||||
"Black hole for data",
|
"Black hole for data",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
||||||
|
|
|
@ -45,7 +45,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_fake_src_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_fake_src_debug);
|
||||||
#define GST_CAT_DEFAULT gst_fake_src_debug
|
#define GST_CAT_DEFAULT gst_fake_src_debug
|
||||||
|
|
||||||
GstElementDetails gst_fake_src_details = GST_ELEMENT_DETAILS ("Fake Source",
|
static GstElementDetails gst_fake_src_details =
|
||||||
|
GST_ELEMENT_DETAILS ("Fake Source",
|
||||||
"Source",
|
"Source",
|
||||||
"Push empty (no data) buffers around",
|
"Push empty (no data) buffers around",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
||||||
|
|
|
@ -37,7 +37,7 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_fdsink_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_fdsink_debug);
|
||||||
#define GST_CAT_DEFAULT gst_fdsink_debug
|
#define GST_CAT_DEFAULT gst_fdsink_debug
|
||||||
|
|
||||||
GstElementDetails gst_fdsink_details =
|
static GstElementDetails gst_fdsink_details =
|
||||||
GST_ELEMENT_DETAILS ("Filedescriptor Sink",
|
GST_ELEMENT_DETAILS ("Filedescriptor Sink",
|
||||||
"Sink/File",
|
"Sink/File",
|
||||||
"Write data to a file descriptor",
|
"Write data to a file descriptor",
|
||||||
|
|
|
@ -67,7 +67,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_fdsrc_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_fdsrc_debug);
|
||||||
#define GST_CAT_DEFAULT gst_fdsrc_debug
|
#define GST_CAT_DEFAULT gst_fdsrc_debug
|
||||||
|
|
||||||
GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
|
static GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
|
||||||
"Source/File",
|
"Source/File",
|
||||||
"Synchronous read from a file",
|
"Synchronous read from a file",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>");
|
"Erik Walthinsen <omega@cse.ogi.edu>");
|
||||||
|
|
|
@ -52,7 +52,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_file_sink_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_file_sink_debug);
|
||||||
#define GST_CAT_DEFAULT gst_file_sink_debug
|
#define GST_CAT_DEFAULT gst_file_sink_debug
|
||||||
|
|
||||||
GstElementDetails gst_file_sink_details = GST_ELEMENT_DETAILS ("File Sink",
|
static GstElementDetails gst_file_sink_details =
|
||||||
|
GST_ELEMENT_DETAILS ("File Sink",
|
||||||
"Sink/File",
|
"Sink/File",
|
||||||
"Write stream to a file",
|
"Write stream to a file",
|
||||||
"Thomas <thomas@apestaart.org>");
|
"Thomas <thomas@apestaart.org>");
|
||||||
|
|
|
@ -108,7 +108,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_file_src_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_file_src_debug);
|
||||||
#define GST_CAT_DEFAULT gst_file_src_debug
|
#define GST_CAT_DEFAULT gst_file_src_debug
|
||||||
|
|
||||||
GstElementDetails gst_file_src_details = GST_ELEMENT_DETAILS ("File Source",
|
static GstElementDetails gst_file_src_details =
|
||||||
|
GST_ELEMENT_DETAILS ("File Source",
|
||||||
"Source/File",
|
"Source/File",
|
||||||
"Read from arbitrary point in a file",
|
"Read from arbitrary point in a file",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>");
|
"Erik Walthinsen <omega@cse.ogi.edu>");
|
||||||
|
|
|
@ -45,7 +45,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_identity_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_identity_debug);
|
||||||
#define GST_CAT_DEFAULT gst_identity_debug
|
#define GST_CAT_DEFAULT gst_identity_debug
|
||||||
|
|
||||||
GstElementDetails gst_identity_details = GST_ELEMENT_DETAILS ("Identity",
|
static GstElementDetails gst_identity_details = GST_ELEMENT_DETAILS ("Identity",
|
||||||
"Generic",
|
"Generic",
|
||||||
"Pass data without modification",
|
"Pass data without modification",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>");
|
"Erik Walthinsen <omega@cse.ogi.edu>");
|
||||||
|
|
|
@ -37,7 +37,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
|
||||||
#define GST_CAT_DEFAULT gst_tee_debug
|
#define GST_CAT_DEFAULT gst_tee_debug
|
||||||
|
|
||||||
GstElementDetails gst_tee_details = GST_ELEMENT_DETAILS ("Tee pipe fitting",
|
static GstElementDetails gst_tee_details =
|
||||||
|
GST_ELEMENT_DETAILS ("Tee pipe fitting",
|
||||||
"Generic",
|
"Generic",
|
||||||
"1-to-N pipe fitting",
|
"1-to-N pipe fitting",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_type_find_element_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_type_find_element_debug);
|
||||||
#define GST_CAT_DEFAULT gst_type_find_element_debug
|
#define GST_CAT_DEFAULT gst_type_find_element_debug
|
||||||
|
|
||||||
GstElementDetails gst_type_find_element_details =
|
static GstElementDetails gst_type_find_element_details =
|
||||||
GST_ELEMENT_DETAILS ("TypeFind",
|
GST_ELEMENT_DETAILS ("TypeFind",
|
||||||
"Generic",
|
"Generic",
|
||||||
"Finds the media type of a stream",
|
"Finds the media type of a stream",
|
||||||
|
|
|
@ -29,7 +29,8 @@
|
||||||
#include <gst/base/gstbasetransform.h>
|
#include <gst/base/gstbasetransform.h>
|
||||||
|
|
||||||
|
|
||||||
GstElementDetails gst_capsfilter_details = GST_ELEMENT_DETAILS ("CapsFilter",
|
static GstElementDetails gst_capsfilter_details =
|
||||||
|
GST_ELEMENT_DETAILS ("CapsFilter",
|
||||||
"Generic",
|
"Generic",
|
||||||
"Pass data without modification, limiting formats",
|
"Pass data without modification, limiting formats",
|
||||||
"David Schleef <ds@schleef.org>");
|
"David Schleef <ds@schleef.org>");
|
||||||
|
|
|
@ -42,7 +42,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_fake_sink_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_fake_sink_debug);
|
||||||
#define GST_CAT_DEFAULT gst_fake_sink_debug
|
#define GST_CAT_DEFAULT gst_fake_sink_debug
|
||||||
|
|
||||||
GstElementDetails gst_fake_sink_details = GST_ELEMENT_DETAILS ("Fake Sink",
|
static GstElementDetails gst_fake_sink_details =
|
||||||
|
GST_ELEMENT_DETAILS ("Fake Sink",
|
||||||
"Sink",
|
"Sink",
|
||||||
"Black hole for data",
|
"Black hole for data",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
||||||
|
|
|
@ -45,7 +45,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_fake_src_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_fake_src_debug);
|
||||||
#define GST_CAT_DEFAULT gst_fake_src_debug
|
#define GST_CAT_DEFAULT gst_fake_src_debug
|
||||||
|
|
||||||
GstElementDetails gst_fake_src_details = GST_ELEMENT_DETAILS ("Fake Source",
|
static GstElementDetails gst_fake_src_details =
|
||||||
|
GST_ELEMENT_DETAILS ("Fake Source",
|
||||||
"Source",
|
"Source",
|
||||||
"Push empty (no data) buffers around",
|
"Push empty (no data) buffers around",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
||||||
|
|
|
@ -37,7 +37,7 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_fdsink_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_fdsink_debug);
|
||||||
#define GST_CAT_DEFAULT gst_fdsink_debug
|
#define GST_CAT_DEFAULT gst_fdsink_debug
|
||||||
|
|
||||||
GstElementDetails gst_fdsink_details =
|
static GstElementDetails gst_fdsink_details =
|
||||||
GST_ELEMENT_DETAILS ("Filedescriptor Sink",
|
GST_ELEMENT_DETAILS ("Filedescriptor Sink",
|
||||||
"Sink/File",
|
"Sink/File",
|
||||||
"Write data to a file descriptor",
|
"Write data to a file descriptor",
|
||||||
|
|
|
@ -67,7 +67,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_fdsrc_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_fdsrc_debug);
|
||||||
#define GST_CAT_DEFAULT gst_fdsrc_debug
|
#define GST_CAT_DEFAULT gst_fdsrc_debug
|
||||||
|
|
||||||
GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
|
static GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
|
||||||
"Source/File",
|
"Source/File",
|
||||||
"Synchronous read from a file",
|
"Synchronous read from a file",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>");
|
"Erik Walthinsen <omega@cse.ogi.edu>");
|
||||||
|
|
|
@ -52,7 +52,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_file_sink_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_file_sink_debug);
|
||||||
#define GST_CAT_DEFAULT gst_file_sink_debug
|
#define GST_CAT_DEFAULT gst_file_sink_debug
|
||||||
|
|
||||||
GstElementDetails gst_file_sink_details = GST_ELEMENT_DETAILS ("File Sink",
|
static GstElementDetails gst_file_sink_details =
|
||||||
|
GST_ELEMENT_DETAILS ("File Sink",
|
||||||
"Sink/File",
|
"Sink/File",
|
||||||
"Write stream to a file",
|
"Write stream to a file",
|
||||||
"Thomas <thomas@apestaart.org>");
|
"Thomas <thomas@apestaart.org>");
|
||||||
|
|
|
@ -108,7 +108,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_file_src_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_file_src_debug);
|
||||||
#define GST_CAT_DEFAULT gst_file_src_debug
|
#define GST_CAT_DEFAULT gst_file_src_debug
|
||||||
|
|
||||||
GstElementDetails gst_file_src_details = GST_ELEMENT_DETAILS ("File Source",
|
static GstElementDetails gst_file_src_details =
|
||||||
|
GST_ELEMENT_DETAILS ("File Source",
|
||||||
"Source/File",
|
"Source/File",
|
||||||
"Read from arbitrary point in a file",
|
"Read from arbitrary point in a file",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>");
|
"Erik Walthinsen <omega@cse.ogi.edu>");
|
||||||
|
|
|
@ -45,7 +45,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_identity_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_identity_debug);
|
||||||
#define GST_CAT_DEFAULT gst_identity_debug
|
#define GST_CAT_DEFAULT gst_identity_debug
|
||||||
|
|
||||||
GstElementDetails gst_identity_details = GST_ELEMENT_DETAILS ("Identity",
|
static GstElementDetails gst_identity_details = GST_ELEMENT_DETAILS ("Identity",
|
||||||
"Generic",
|
"Generic",
|
||||||
"Pass data without modification",
|
"Pass data without modification",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>");
|
"Erik Walthinsen <omega@cse.ogi.edu>");
|
||||||
|
|
|
@ -37,7 +37,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
|
||||||
#define GST_CAT_DEFAULT gst_tee_debug
|
#define GST_CAT_DEFAULT gst_tee_debug
|
||||||
|
|
||||||
GstElementDetails gst_tee_details = GST_ELEMENT_DETAILS ("Tee pipe fitting",
|
static GstElementDetails gst_tee_details =
|
||||||
|
GST_ELEMENT_DETAILS ("Tee pipe fitting",
|
||||||
"Generic",
|
"Generic",
|
||||||
"1-to-N pipe fitting",
|
"1-to-N pipe fitting",
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_type_find_element_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_type_find_element_debug);
|
||||||
#define GST_CAT_DEFAULT gst_type_find_element_debug
|
#define GST_CAT_DEFAULT gst_type_find_element_debug
|
||||||
|
|
||||||
GstElementDetails gst_type_find_element_details =
|
static GstElementDetails gst_type_find_element_details =
|
||||||
GST_ELEMENT_DETAILS ("TypeFind",
|
GST_ELEMENT_DETAILS ("TypeFind",
|
||||||
"Generic",
|
"Generic",
|
||||||
"Finds the media type of a stream",
|
"Finds the media type of a stream",
|
||||||
|
|
Loading…
Reference in a new issue