parts of the patch submitted in bug #113913
[platform/upstream/gstreamer.git] / docs / gst / tmpl / gstpadtemplate.sgml
1 <!-- ##### SECTION Title ##### -->
2 GstPadTemplate
3
4 <!-- ##### SECTION Short_Description ##### -->
5 Describe the media type of a pad.
6
7 <!-- ##### SECTION Long_Description ##### -->
8 <para>
9 Padtemplates describe the possible media types a pad or an elementfactory can
10 handle. 
11 </para>
12 <para>
13 Pad and PadTemplates have #GstCaps attached to it to describe the media type they
14 are capable of dealing with.  gst_pad_template_get_caps() is used to get the
15 caps of a padtemplate. It's not possible to modify the caps of a padtemplate after
16 creation. 
17 </para>
18 <para>
19 Padtemplates can be created with gst_pad_template_new() or with the convenient
20 GST_PAD_TEMPLATE_FACTORY() macro. A padtemplate can be used to create a pad or 
21 to add to an elementfactory.
22 </para>
23 <para>
24 The following code example shows the code to create a pad from a padtemplate.
25 <programlisting>
26   GST_PAD_TEMPLATE_FACTORY (my_template_factory,
27     "sink",             /* the name of the pad */
28     GST_PAD_SINK,       /* the direction of the pad */
29     GST_PAD_ALWAYS,     /* when this pad will be present */
30     GST_CAPS_NEW (      /* the capabilities of the padtemplate */
31       "my_caps",
32       "audio/raw",
33         "format",       GST_PROPS_STRING ("int"),
34         "channels",     GST_PROPS_INT_RANGE (1, 6)
35     )
36   )
37
38   void
39   my_method (void) 
40   {
41     GstPad *pad;
42   
43     pad = gst_pad_new_from_template (GST_PAD_TEMPLATE_GET (my_template_factory), "sink");
44     ...
45   }
46 </programlisting>
47 </para>
48 <para>
49 The following example shows you how to add the padtemplate to an elementfactory:
50 <programlisting>
51   gboolean
52   my_factory_init (GstPlugin *plugin)
53   {
54     GstElementFactory *factory;
55
56     factory = gst_element_factory_new ("my_factory", GST_TYPE_MYFACTORY, &amp;gst_myfactory_details);
57     g_return_val_if_fail (factory != NULL, FALSE);
58
59     gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (my_template_factory));
60
61     gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
62
63     return TRUE;
64   }
65
66 </programlisting>
67 </para>
68
69 <!-- ##### SECTION See_Also ##### -->
70 <para>
71 #GstPad, #GstElementFactory
72 </para>
73
74 <!-- ##### ENUM GstPadPresence ##### -->
75 <para>
76 Indicates when this pad will become available.
77 </para>
78
79 @GST_PAD_ALWAYS: the pad is always available
80 @GST_PAD_SOMETIMES: the pad will become available depending on the media stream
81 @GST_PAD_REQUEST: th pad is only available on request with 
82 gst_element_request_pad_by_name() or gst_element_request_compatible_pad().
83
84 <!-- ##### STRUCT GstPadTemplate ##### -->
85 <para>
86 The padtemplate object.
87 </para>
88
89
90 <!-- ##### SIGNAL GstPadTemplate::pad-created ##### -->
91 <para>
92 This signal is fired when an element creates a pad from this 
93 template.
94 </para>
95
96 @gstpadtemplate: the object which received the signal.
97 @arg1: The pad that was created.
98
99 <!-- ##### ENUM GstPadTemplateFlags ##### -->
100 <para>
101 Flags for the padtemplate
102 </para>
103
104 @GST_PAD_TEMPLATE_FIXED: The padtemplate has no variable properties
105 @GST_PAD_TEMPLATE_FLAG_LAST: first flag that can be used by subclasses.
106
107 <!-- ##### MACRO GST_PAD_TEMPLATE_CAPS ##### -->
108 <para>
109 Get a handle to the padtemplate #GstCaps
110 </para>
111
112 @templ: the template to query
113
114
115 <!-- ##### MACRO GST_PAD_TEMPLATE_DIRECTION ##### -->
116 <para>
117 Get the direction of the padtemplate.
118 </para>
119
120 @templ: the template to query
121
122
123 <!-- ##### MACRO GST_PAD_TEMPLATE_NAME_TEMPLATE ##### -->
124 <para>
125 Get the nametemplate of the padtemplate.
126 </para>
127
128 @templ: the template to query
129
130
131 <!-- ##### MACRO GST_PAD_TEMPLATE_PRESENCE ##### -->
132 <para>
133 Get the presence of the padtemplate.
134 </para>
135
136 @templ: the template to query
137
138
139 <!-- ##### MACRO GST_PAD_TEMPLATE_IS_FIXED ##### -->
140 <para>
141 Check if the properties of the padtemplate are fixed
142 </para>
143
144 @templ: the template to query
145
146
147 <!-- ##### FUNCTION gst_pad_template_new ##### -->
148 <para>
149
150 </para>
151
152 @name_template: 
153 @direction: 
154 @presence: 
155 @caps: 
156 @Returns: 
157 <!-- # Unused Parameters # -->
158 @Varargs: 
159
160
161 <!-- ##### FUNCTION gst_pad_template_get_caps ##### -->
162 <para>
163
164 </para>
165
166 @templ: 
167 @Returns: 
168
169
170 <!-- ##### FUNCTION gst_pad_template_get_caps_by_name ##### -->
171 <para>
172
173 </para>
174
175 @templ: 
176 @name: 
177 @Returns: 
178
179