1/* vim: set filetype=c: */ 2 3% instance-members 4% prototypes 5% pad-template 6static GstStaticPadTemplate gst_replace_sink_template = 7GST_STATIC_PAD_TEMPLATE ("sink", 8 GST_PAD_SINK, 9 GST_PAD_ALWAYS, 10 GST_STATIC_CAPS ("application/unknown") 11 ); 12 13% base-init 14 gst_element_class_add_static_pad_template (element_class, 15 &gst_replace_sink_template); 16% instance-init 17% methods 18% end 19 20