diff options
author | David Schleef <ds@schleef.org> | 2003-09-14 11:21:55 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-09-14 11:21:55 +0000 |
commit | ea1f88abb680c699b40a9f3ee8905cf70b405859 (patch) | |
tree | 19a1bd02cb907ffaccbd7adaed036b353cd5c2b8 /gst | |
parent | 87af2ca109bc5bc2bf712173106788d5c851e458 (diff) |
change caps in template to GST_CAPS_ANY
Original commit message from CVS:
change caps in template to GST_CAPS_ANY
Diffstat (limited to 'gst')
-rw-r--r-- | gst/debug/efence.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/debug/efence.c b/gst/debug/efence.c index d5b9fcd6..505be406 100644 --- a/gst/debug/efence.c +++ b/gst/debug/efence.c @@ -63,14 +63,14 @@ GST_PAD_TEMPLATE_FACTORY (gst_efence_sink_factory, "sink", GST_PAD_SINK, GST_PAD_ALWAYS, - NULL /* no caps */ + GST_CAPS_ANY ); GST_PAD_TEMPLATE_FACTORY (gst_efence_src_factory, "src", GST_PAD_SRC, GST_PAD_ALWAYS, - NULL /* no caps */ + GST_CAPS_ANY ); static void gst_efence_class_init (GstEFenceClass *klass); |