summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-08-19 04:18:19 +0000
committerDavid Schleef <ds@schleef.org>2003-08-19 04:18:19 +0000
commit7cd75b0ae04eb8a79c9bb2754f5ceb3b0015f25d (patch)
tree7133271f7f526670de5fde8224c2cf4f7e7da767
parentdd7878f38cac1b6fe30d79b90449eb0fe45748ee (diff)
downloadgstreamer-7cd75b0ae04eb8a79c9bb2754f5ceb3b0015f25d.tar.gz
convert pad templates to GST_CAPS_ANY
Original commit message from CVS: convert pad templates to GST_CAPS_ANY
-rw-r--r--gst/elements/gstaggregator.c2
-rw-r--r--gst/elements/gstfakesink.c2
-rw-r--r--gst/elements/gstfakesrc.c2
-rw-r--r--gst/elements/gstmd5sink.c2
-rw-r--r--gst/elements/gstshaper.c4
-rw-r--r--gst/elements/gsttee.c2
-rw-r--r--plugins/elements/gstaggregator.c2
-rw-r--r--plugins/elements/gstfakesink.c2
-rw-r--r--plugins/elements/gstfakesrc.c2
-rw-r--r--plugins/elements/gstmd5sink.c2
-rw-r--r--plugins/elements/gstshaper.c4
-rw-r--r--plugins/elements/gsttee.c2
12 files changed, 14 insertions, 14 deletions
diff --git a/gst/elements/gstaggregator.c b/gst/elements/gstaggregator.c
index 1f13b87602..0ac2bd90a8 100644
--- a/gst/elements/gstaggregator.c
+++ b/gst/elements/gstaggregator.c
@@ -58,7 +58,7 @@ GST_PAD_TEMPLATE_FACTORY (aggregator_src_factory,
"sink%d",
GST_PAD_SINK,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
#define GST_TYPE_AGGREGATOR_SCHED (gst_aggregator_sched_get_type())
diff --git a/gst/elements/gstfakesink.c b/gst/elements/gstfakesink.c
index dbfe94a350..0050939ae7 100644
--- a/gst/elements/gstfakesink.c
+++ b/gst/elements/gstfakesink.c
@@ -63,7 +63,7 @@ GST_PAD_TEMPLATE_FACTORY (fakesink_sink_factory,
"sink%d",
GST_PAD_SINK,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
#define GST_TYPE_FAKESINK_STATE_ERROR (gst_fakesink_state_error_get_type())
diff --git a/gst/elements/gstfakesrc.c b/gst/elements/gstfakesrc.c
index 525bde106d..9d088beac7 100644
--- a/gst/elements/gstfakesrc.c
+++ b/gst/elements/gstfakesrc.c
@@ -80,7 +80,7 @@ GST_PAD_TEMPLATE_FACTORY (fakesrc_src_factory,
"src%d",
GST_PAD_SRC,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
#define GST_TYPE_FAKESRC_OUTPUT (gst_fakesrc_output_get_type())
diff --git a/gst/elements/gstmd5sink.c b/gst/elements/gstmd5sink.c
index 15dc9d1996..e5781506b3 100644
--- a/gst/elements/gstmd5sink.c
+++ b/gst/elements/gstmd5sink.c
@@ -51,7 +51,7 @@ GST_PAD_TEMPLATE_FACTORY (md5_sink_factory,
"sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
- NULL /* no caps */
+ GST_CAPS_ANY
);
/* GObject stuff */
diff --git a/gst/elements/gstshaper.c b/gst/elements/gstshaper.c
index cf981c8f50..7d163e25cf 100644
--- a/gst/elements/gstshaper.c
+++ b/gst/elements/gstshaper.c
@@ -67,14 +67,14 @@ GST_PAD_TEMPLATE_FACTORY (shaper_src_factory,
"src%d",
GST_PAD_SRC,
GST_PAD_SOMETIMES,
- NULL /* no caps */
+ GST_CAPS_ANY
);
GST_PAD_TEMPLATE_FACTORY (shaper_sink_factory,
"sink%d",
GST_PAD_SINK,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
#define GST_TYPE_SHAPER_POLICY (gst_shaper_policy_get_type())
diff --git a/gst/elements/gsttee.c b/gst/elements/gsttee.c
index 2d9f4b1073..f29a258ca2 100644
--- a/gst/elements/gsttee.c
+++ b/gst/elements/gsttee.c
@@ -58,7 +58,7 @@ GST_PAD_TEMPLATE_FACTORY (tee_src_factory,
"src%d",
GST_PAD_SRC,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
static void gst_tee_class_init (GstTeeClass *klass);
diff --git a/plugins/elements/gstaggregator.c b/plugins/elements/gstaggregator.c
index 1f13b87602..0ac2bd90a8 100644
--- a/plugins/elements/gstaggregator.c
+++ b/plugins/elements/gstaggregator.c
@@ -58,7 +58,7 @@ GST_PAD_TEMPLATE_FACTORY (aggregator_src_factory,
"sink%d",
GST_PAD_SINK,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
#define GST_TYPE_AGGREGATOR_SCHED (gst_aggregator_sched_get_type())
diff --git a/plugins/elements/gstfakesink.c b/plugins/elements/gstfakesink.c
index dbfe94a350..0050939ae7 100644
--- a/plugins/elements/gstfakesink.c
+++ b/plugins/elements/gstfakesink.c
@@ -63,7 +63,7 @@ GST_PAD_TEMPLATE_FACTORY (fakesink_sink_factory,
"sink%d",
GST_PAD_SINK,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
#define GST_TYPE_FAKESINK_STATE_ERROR (gst_fakesink_state_error_get_type())
diff --git a/plugins/elements/gstfakesrc.c b/plugins/elements/gstfakesrc.c
index 525bde106d..9d088beac7 100644
--- a/plugins/elements/gstfakesrc.c
+++ b/plugins/elements/gstfakesrc.c
@@ -80,7 +80,7 @@ GST_PAD_TEMPLATE_FACTORY (fakesrc_src_factory,
"src%d",
GST_PAD_SRC,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
#define GST_TYPE_FAKESRC_OUTPUT (gst_fakesrc_output_get_type())
diff --git a/plugins/elements/gstmd5sink.c b/plugins/elements/gstmd5sink.c
index 15dc9d1996..e5781506b3 100644
--- a/plugins/elements/gstmd5sink.c
+++ b/plugins/elements/gstmd5sink.c
@@ -51,7 +51,7 @@ GST_PAD_TEMPLATE_FACTORY (md5_sink_factory,
"sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
- NULL /* no caps */
+ GST_CAPS_ANY
);
/* GObject stuff */
diff --git a/plugins/elements/gstshaper.c b/plugins/elements/gstshaper.c
index cf981c8f50..7d163e25cf 100644
--- a/plugins/elements/gstshaper.c
+++ b/plugins/elements/gstshaper.c
@@ -67,14 +67,14 @@ GST_PAD_TEMPLATE_FACTORY (shaper_src_factory,
"src%d",
GST_PAD_SRC,
GST_PAD_SOMETIMES,
- NULL /* no caps */
+ GST_CAPS_ANY
);
GST_PAD_TEMPLATE_FACTORY (shaper_sink_factory,
"sink%d",
GST_PAD_SINK,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
#define GST_TYPE_SHAPER_POLICY (gst_shaper_policy_get_type())
diff --git a/plugins/elements/gsttee.c b/plugins/elements/gsttee.c
index 2d9f4b1073..f29a258ca2 100644
--- a/plugins/elements/gsttee.c
+++ b/plugins/elements/gsttee.c
@@ -58,7 +58,7 @@ GST_PAD_TEMPLATE_FACTORY (tee_src_factory,
"src%d",
GST_PAD_SRC,
GST_PAD_REQUEST,
- NULL /* no caps */
+ GST_CAPS_ANY
);
static void gst_tee_class_init (GstTeeClass *klass);