parse: better error message when linking two elements with capsfilter fails
[platform/upstream/gstreamer.git] / gst / parse / grammar.y
1 %{
2 #include "../gst_private.h"
3
4 #include <glib-object.h>
5 #include <glib.h>
6 #include <stdio.h>
7 #include <string.h>
8 #include <stdlib.h>
9
10 #include "../gst-i18n-lib.h"
11
12 #include "../gstconfig.h"
13 #include "../gstparse.h"
14 #include "../gstinfo.h"
15 #include "../gsterror.h"
16 #include "../gststructure.h"
17 #include "../gsturi.h"
18 #include "../gstutils.h"
19 #include "../gstvalue.h"
20 #include "../gstchildproxy.h"
21 #include "types.h"
22
23 /* All error messages in this file are user-visible and need to be translated.
24  * Don't start the message with a capital, and don't end them with a period,
25  * as they will be presented inside a sentence/error.
26  */
27
28 #define YYERROR_VERBOSE 1
29
30 #define YYENABLE_NLS 0
31
32 #ifndef YYLTYPE_IS_TRIVIAL
33 #define YYLTYPE_IS_TRIVIAL 0
34 #endif
35
36 /*******************************************************************************************
37 *** Tracing memory leaks
38 *******************************************************************************************/
39
40 #ifdef __GST_PARSE_TRACE
41 static guint __strings;
42 static guint __links;
43 static guint __chains;
44 gchar *
45 __gst_parse_strdup (gchar *org)
46 {
47   gchar *ret;
48   __strings++;
49   ret = g_strdup (org);
50   /* g_print ("ALLOCATED STR   (%3u): %p %s\n", __strings, ret, ret); */
51   return ret;
52 }
53 void
54 __gst_parse_strfree (gchar *str)
55 {
56   if (str) {
57     /* g_print ("FREEING STR     (%3u): %p %s\n", __strings - 1, str, str); */
58     g_free (str);
59     g_return_if_fail (__strings > 0);
60     __strings--;
61   }
62 }
63 link_t *__gst_parse_link_new (void)
64 {
65   link_t *ret;
66   __links++;
67   ret = g_slice_new0 (link_t);
68   /* g_print ("ALLOCATED LINK  (%3u): %p\n", __links, ret); */
69   return ret;
70 }
71 void
72 __gst_parse_link_free (link_t *data)
73 {
74   if (data) {
75     /* g_print ("FREEING LINK    (%3u): %p\n", __links - 1, data); */
76     g_slice_free (link_t, data);
77     g_return_if_fail (__links > 0);
78     __links--;
79   }
80 }
81 chain_t *
82 __gst_parse_chain_new (void)
83 {
84   chain_t *ret;
85   __chains++;
86   ret = g_slice_new0 (chain_t);
87   /* g_print ("@%p: ALLOCATED CHAIN (%3u):\n", ret, __chains); */
88   return ret;
89 }
90 void
91 __gst_parse_chain_free (chain_t *data)
92 {
93   /* g_print ("@%p: FREEING CHAIN   (%3u):\n", data, __chains - 1); */
94   g_slice_free (chain_t, data);
95   g_return_if_fail (__chains > 0);
96   __chains--;
97 }
98
99 #endif /* __GST_PARSE_TRACE */
100
101 /*******************************************************************************************
102 *** define SET_ERROR macro/function
103 *******************************************************************************************/
104 #ifdef G_HAVE_ISO_VARARGS
105
106 #  define SET_ERROR(error, type, ...) \
107 G_STMT_START { \
108   GST_CAT_ERROR (GST_CAT_PIPELINE, __VA_ARGS__); \
109   if ((error) && !*(error)) { \
110     g_set_error ((error), GST_PARSE_ERROR, (type), __VA_ARGS__); \
111   } \
112 } G_STMT_END
113
114 #elif defined(G_HAVE_GNUC_VARARGS)
115
116 #  define SET_ERROR(error, type, args...) \
117 G_STMT_START { \
118   GST_CAT_ERROR (GST_CAT_PIPELINE, args ); \
119   if ((error) && !*(error)) { \
120     g_set_error ((error), GST_PARSE_ERROR, (type), args ); \
121   } \
122 } G_STMT_END
123
124 #else
125
126 static inline void
127 SET_ERROR (GError **error, gint type, const char *format, ...)
128 {
129   if (error) {
130     if (*error) {
131       g_warning ("error while parsing");
132     } else {
133       va_list varargs;
134       char *string;
135
136       va_start (varargs, format);
137       string = g_strdup_vprintf (format, varargs);
138       va_end (varargs);
139
140       g_set_error (error, GST_PARSE_ERROR, type, string);
141
142       g_free (string);
143     }
144   }
145 }
146
147 #endif /* G_HAVE_ISO_VARARGS */
148
149 /*** define YYPRINTF macro/function if we're debugging */
150
151 /* bison 1.35 calls this macro with side effects, we need to make sure the
152    side effects work - crappy bison */
153
154 #ifndef GST_DISABLE_GST_DEBUG
155 #  define YYDEBUG 1
156
157 #  ifdef G_HAVE_ISO_VARARGS
158
159 /* #  define YYFPRINTF(a, ...) GST_CAT_DEBUG (GST_CAT_PIPELINE, __VA_ARGS__) */
160 #    define YYFPRINTF(a, ...) \
161 G_STMT_START { \
162      GST_CAT_LOG (GST_CAT_PIPELINE, __VA_ARGS__); \
163 } G_STMT_END
164
165 #  elif defined(G_HAVE_GNUC_VARARGS)
166
167 #    define YYFPRINTF(a, args...) \
168 G_STMT_START { \
169      GST_CAT_LOG (GST_CAT_PIPELINE, args); \
170 } G_STMT_END
171
172 #  else
173
174 static inline void
175 YYPRINTF(const char *format, ...)
176 {
177   va_list varargs;
178   gchar *temp;
179
180   va_start (varargs, format);
181   temp = g_strdup_vprintf (format, varargs);
182   GST_CAT_LOG (GST_CAT_PIPELINE, "%s", temp);
183   g_free (temp);
184   va_end (varargs);
185 }
186
187 #  endif /* G_HAVE_ISO_VARARGS */
188
189 #endif /* GST_DISABLE_GST_DEBUG */
190
191
192 /*
193  * include headers generated by bison & flex, after defining (or not defining) YYDEBUG
194  */
195 #include "grammar.tab.h"
196 #include "parse_lex.h"
197
198 /*******************************************************************************************
199 *** report missing elements/bins/..
200 *******************************************************************************************/
201
202
203 static void  add_missing_element(graph_t *graph,gchar *name){
204   if ((graph)->ctx){
205     (graph)->ctx->missing_elements = g_list_append ((graph)->ctx->missing_elements, g_strdup (name));
206     }
207 }
208
209
210 /*******************************************************************************************
211 *** helpers for pipeline-setup
212 *******************************************************************************************/
213
214 #define TRY_SETUP_LINK(l) G_STMT_START { \
215    if( (!(l)->src.element) && (!(l)->src.name) ){ \
216      SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("link has no source [sink=%s@%p]"), \
217         (l)->sink.name ? (l)->sink.name : "", \
218         (l)->sink.element); \
219      gst_parse_free_link (l); \
220    }else if( (!(l)->sink.element) && (!(l)->sink.name) ){ \
221      SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("link has no sink [source=%s@%p]"), \
222         (l)->src.name ? (l)->src.name : "", \
223         (l)->src.element); \
224      gst_parse_free_link (l); \
225    }else{ \
226      graph->links = g_slist_append (graph->links, l ); \
227    }   \
228 } G_STMT_END
229
230 typedef struct {
231   gchar *src_pad;
232   gchar *sink_pad;
233   GstElement *sink;
234   GstCaps *caps;
235   gulong pad_added_signal_id, no_more_pads_signal_id;
236   gboolean all_pads;
237 } DelayedLink;
238
239 typedef struct {
240   gchar *name;
241   gchar *value_str;
242   gulong signal_id;
243 } DelayedSet;
244
245 static int  gst_resolve_reference(reference_t *rr, GstElement *pipeline){
246   GstBin *bin;
247
248   if(rr->element) return  0;  /* already resolved! */
249   if(!rr->name)   return -2;  /* no chance! */
250
251   if (GST_IS_BIN (pipeline)){
252     bin = GST_BIN (pipeline);
253     rr->element = gst_bin_get_by_name_recurse_up (bin, rr->name);
254   } else {
255     rr->element = strcmp (GST_ELEMENT_NAME (pipeline), rr->name) == 0 ?
256                 gst_object_ref(pipeline) : NULL;
257   }
258   if(rr->element) return 0; /* resolved */
259   else            return -1; /* not found */
260 }
261
262 static void gst_parse_free_delayed_set (DelayedSet *set)
263 {
264   g_free(set->name);
265   g_free(set->value_str);
266   g_slice_free(DelayedSet, set);
267 }
268
269 static void gst_parse_new_child(GstChildProxy *child_proxy, GObject *object,
270     const gchar * name, gpointer data);
271
272 static void gst_parse_add_delayed_set (GstElement *element, gchar *name, gchar *value_str)
273 {
274   DelayedSet *data = g_slice_new0 (DelayedSet);
275
276   GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, element, "delaying property set %s to %s",
277     name, value_str);
278
279   data->name = g_strdup(name);
280   data->value_str = g_strdup(value_str);
281   data->signal_id = g_signal_connect_data(element, "child-added",
282       G_CALLBACK (gst_parse_new_child), data, (GClosureNotify)
283       gst_parse_free_delayed_set, (GConnectFlags) 0);
284
285   /* FIXME: we would need to listen on all intermediate bins too */
286   if (GST_IS_BIN (element)) {
287     gchar **names, **current;
288     GstElement *parent, *child;
289
290     current = names = g_strsplit (name, "::", -1);
291     parent = gst_bin_get_by_name (GST_BIN_CAST (element), current[0]);
292     current++;
293     while (parent && current[0]) {
294       child = gst_bin_get_by_name (GST_BIN (parent), current[0]);
295       if (!child && current[1]) {
296         char *sub_name = g_strjoinv ("::", &current[0]);
297
298         gst_parse_add_delayed_set(parent, sub_name, value_str);
299         g_free (sub_name);
300       }
301       gst_object_unref (parent);
302       parent = child;
303       current++;
304     }
305     if (parent)
306       gst_object_unref (parent);
307     g_strfreev (names);
308   }
309 }
310
311 static void gst_parse_new_child(GstChildProxy *child_proxy, GObject *object,
312     const gchar * name, gpointer data)
313 {
314   DelayedSet *set = (DelayedSet *) data;
315   GParamSpec *pspec;
316   GValue v = { 0, };
317   GObject *target = NULL;
318   GType value_type;
319
320   GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, child_proxy, "new child %s, checking property %s",
321       name, set->name);
322
323   if (gst_child_proxy_lookup (child_proxy, set->name, &target, &pspec)) {
324     gboolean got_value = FALSE;
325
326     value_type = pspec->value_type;
327
328     GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, child_proxy, "parsing delayed property %s as a %s from %s",
329       pspec->name, g_type_name (value_type), set->value_str);
330     g_value_init (&v, value_type);
331     if (gst_value_deserialize (&v, set->value_str))
332       got_value = TRUE;
333     else if (g_type_is_a (value_type, GST_TYPE_ELEMENT)) {
334        GstElement *bin;
335
336        bin = gst_parse_bin_from_description_full (set->value_str, TRUE, NULL,
337            GST_PARSE_FLAG_NO_SINGLE_ELEMENT_BINS | GST_PARSE_FLAG_PLACE_IN_BIN, NULL);
338        if (bin) {
339          g_value_set_object (&v, bin);
340          got_value = TRUE;
341        }
342     }
343     g_signal_handler_disconnect (child_proxy, set->signal_id);
344     if (!got_value)
345       goto error;
346     g_object_set_property (target, pspec->name, &v);
347   } else {
348     const gchar *obj_name = GST_OBJECT_NAME(object);
349     gint len = strlen (obj_name);
350
351     /* do a delayed set */
352     if ((strlen (set->name) > (len + 2)) && !strncmp (set->name, obj_name, len) && !strncmp (&set->name[len], "::", 2)) {
353       gst_parse_add_delayed_set (GST_ELEMENT(child_proxy), set->name, set->value_str);
354     }
355   }
356
357 out:
358   if (G_IS_VALUE (&v))
359     g_value_unset (&v);
360   if (target)
361     g_object_unref (target);
362   return;
363
364 error:
365   GST_CAT_ERROR (GST_CAT_PIPELINE, "could not set property \"%s\" in %"
366       GST_PTR_FORMAT, pspec->name, target);
367   goto out;
368 }
369
370 static void gst_parse_element_set (gchar *value, GstElement *element, graph_t *graph)
371 {
372   GParamSpec *pspec = NULL;
373   gchar *pos = value;
374   GValue v = { 0, };
375   GObject *target = NULL;
376   GType value_type;
377
378   /* do nothing if assignment is for missing element */
379   if (element == NULL)
380     goto out;
381
382   /* parse the string, so the property name is null-terminated and pos points
383      to the beginning of the value */
384   while (!g_ascii_isspace (*pos) && (*pos != '=')) pos++;
385   if (*pos == '=') {
386     *pos = '\0';
387   } else {
388     *pos = '\0';
389     pos++;
390     while (g_ascii_isspace (*pos)) pos++;
391   }
392   pos++;
393   while (g_ascii_isspace (*pos)) pos++;
394   /* truncate a string if it is delimited with double quotes */
395   if (*pos == '"' && pos[strlen (pos) - 1] == '"') {
396     pos++;
397     pos[strlen (pos) - 1] = '\0';
398   }
399   gst_parse_unescape (pos);
400
401   if (GST_IS_CHILD_PROXY (element)) {
402     if (!gst_child_proxy_lookup (GST_CHILD_PROXY (element), value, &target, &pspec)) {
403       /* do a delayed set */
404       gst_parse_add_delayed_set (element, value, pos);
405     }
406   } else {
407     pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (element), value);
408     if (pspec != NULL) {
409       target = g_object_ref (element);
410       GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, target, "found %s property", value);
411     } else {
412       SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_PROPERTY, \
413           _("no property \"%s\" in element \"%s\""), value, \
414           GST_ELEMENT_NAME (element));
415     }
416   }
417
418   if (pspec != NULL && target != NULL) {
419     gboolean got_value = FALSE;
420
421     value_type = pspec->value_type;
422
423     GST_CAT_LOG_OBJECT (GST_CAT_PIPELINE, element, "parsing property %s as a %s",
424         pspec->name, g_type_name (value_type));
425
426     g_value_init (&v, value_type);
427     if (gst_value_deserialize (&v, pos))
428       got_value = TRUE;
429     else if (g_type_is_a (value_type, GST_TYPE_ELEMENT)) {
430        GstElement *bin;
431
432        bin = gst_parse_bin_from_description_full (pos, TRUE, NULL,
433            GST_PARSE_FLAG_NO_SINGLE_ELEMENT_BINS | GST_PARSE_FLAG_PLACE_IN_BIN, NULL);
434        if (bin) {
435          g_value_set_object (&v, bin);
436          got_value = TRUE;
437        }
438     }
439     if (!got_value)
440       goto error;
441     g_object_set_property (target, pspec->name, &v);
442   }
443
444 out:
445   gst_parse_strfree (value);
446   if (G_IS_VALUE (&v))
447     g_value_unset (&v);
448   if (target)
449     g_object_unref (target);
450   return;
451
452 error:
453   SET_ERROR (graph->error, GST_PARSE_ERROR_COULD_NOT_SET_PROPERTY,
454          _("could not set property \"%s\" in element \"%s\" to \"%s\""),
455          value, GST_ELEMENT_NAME (element), pos);
456   goto out;
457 }
458
459 static void gst_parse_free_reference (reference_t *rr)
460 {
461   if(rr->element) gst_object_unref(rr->element);
462   gst_parse_strfree (rr->name);
463   g_slist_foreach (rr->pads, (GFunc) gst_parse_strfree, NULL);
464   g_slist_free (rr->pads);
465 }
466
467 static void gst_parse_free_link (link_t *link)
468 {
469   gst_parse_free_reference (&(link->src));
470   gst_parse_free_reference (&(link->sink));
471   if (link->caps) gst_caps_unref (link->caps);
472   gst_parse_link_free (link);
473 }
474
475 static void gst_parse_free_chain (chain_t *ch)
476 {
477   GSList *walk;
478   gst_parse_free_reference (&(ch->first));
479   gst_parse_free_reference (&(ch->last));
480   for(walk=ch->elements;walk;walk=walk->next)
481     gst_object_unref (walk->data);
482   g_slist_free (ch->elements);
483   gst_parse_chain_free (ch);
484 }
485
486 static void gst_parse_free_delayed_link (DelayedLink *link)
487 {
488   g_free (link->src_pad);
489   g_free (link->sink_pad);
490   if (link->caps) gst_caps_unref (link->caps);
491   g_slice_free (DelayedLink, link);
492 }
493
494 #define PRETTY_PAD_NAME_FMT "%s %s of %s named %s"
495 #define PRETTY_PAD_NAME_ARGS(elem, pad_name) \
496   (pad_name ? "pad " : "some"), (pad_name ? pad_name : "pad"), \
497   G_OBJECT_TYPE_NAME(elem), GST_STR_NULL (GST_ELEMENT_NAME (elem))
498
499 static void gst_parse_no_more_pads (GstElement *src, gpointer data)
500 {
501   DelayedLink *link = data;
502
503   /* Don't warn for all-pads links, as we expect those to
504    * still be active at no-more-pads */
505   if (!link->all_pads) {
506     GST_ELEMENT_WARNING(src, PARSE, DELAYED_LINK,
507       (_("Delayed linking failed.")),
508       ("failed delayed linking " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
509           PRETTY_PAD_NAME_ARGS (src, link->src_pad),
510           PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad)));
511   }
512   /* we keep the handlers connected, so that in case an element still adds a pad
513    * despite no-more-pads, we will consider it for pending delayed links */
514 }
515
516 static void gst_parse_found_pad (GstElement *src, GstPad *pad, gpointer data)
517 {
518   DelayedLink *link = data;
519
520   GST_CAT_INFO (GST_CAT_PIPELINE,
521                 "trying delayed linking %s " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
522                             link->all_pads ? "all pads" : "one pad",
523                 PRETTY_PAD_NAME_ARGS (src, link->src_pad),
524                 PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad));
525
526   if (gst_element_link_pads_filtered (src, link->src_pad, link->sink,
527       link->sink_pad, link->caps)) {
528     /* do this here, we don't want to get any problems later on when
529      * unlocking states */
530     GST_CAT_DEBUG (GST_CAT_PIPELINE,
531                    "delayed linking %s " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT " worked",
532                                link->all_pads ? "all pads" : "one pad",
533                    PRETTY_PAD_NAME_ARGS (src, link->src_pad),
534                    PRETTY_PAD_NAME_ARGS (link->sink, link->sink_pad));
535     g_signal_handler_disconnect (src, link->no_more_pads_signal_id);
536     /* releases 'link' */
537     if (!link->all_pads)
538       g_signal_handler_disconnect (src, link->pad_added_signal_id);
539   }
540 }
541
542 /* both padnames and the caps may be NULL */
543 static gboolean
544 gst_parse_perform_delayed_link (GstElement *src, const gchar *src_pad,
545                                 GstElement *sink, const gchar *sink_pad,
546                                 GstCaps *caps, gboolean all_pads)
547 {
548   GList *templs = gst_element_class_get_pad_template_list (
549       GST_ELEMENT_GET_CLASS (src));
550
551   for (; templs; templs = templs->next) {
552     GstPadTemplate *templ = (GstPadTemplate *) templs->data;
553     if ((GST_PAD_TEMPLATE_DIRECTION (templ) == GST_PAD_SRC) &&
554         (GST_PAD_TEMPLATE_PRESENCE(templ) == GST_PAD_SOMETIMES))
555     {
556       DelayedLink *data = g_slice_new (DelayedLink);
557
558       data->all_pads = all_pads;
559
560       /* TODO: maybe we should check if src_pad matches this template's names */
561
562       GST_CAT_DEBUG (GST_CAT_PIPELINE,
563                      "trying delayed link " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT,
564                      PRETTY_PAD_NAME_ARGS (src, src_pad),
565                      PRETTY_PAD_NAME_ARGS (sink, sink_pad));
566
567       data->src_pad = g_strdup (src_pad);
568       data->sink = sink;
569       data->sink_pad = g_strdup (sink_pad);
570       if (caps) {
571         data->caps = gst_caps_copy (caps);
572       } else {
573         data->caps = NULL;
574       }
575       data->pad_added_signal_id = g_signal_connect_data (src, "pad-added",
576           G_CALLBACK (gst_parse_found_pad), data,
577           (GClosureNotify) gst_parse_free_delayed_link, (GConnectFlags) 0);
578       data->no_more_pads_signal_id = g_signal_connect (src, "no-more-pads",
579           G_CALLBACK (gst_parse_no_more_pads), data);
580       return TRUE;
581     }
582   }
583   return FALSE;
584 }
585
586 static gboolean
587 gst_parse_element_can_do_caps (GstElement * e, GstPadDirection dir,
588     GstCaps * link_caps)
589 {
590   gboolean can_do = FALSE;
591   GList *pads;
592
593   GST_OBJECT_LOCK (e);
594
595   pads = (dir == GST_PAD_SRC) ? e->srcpads : e->sinkpads;
596
597   while (!can_do && pads != NULL) {
598     GstPad *pad = pads->data;
599     GstCaps *caps;
600
601     caps = gst_pad_get_current_caps (pad);
602     if (caps == NULL)
603       caps = gst_pad_query_caps (pad, NULL);
604
605     can_do = gst_caps_can_intersect (caps, link_caps);
606
607     GST_TRACE ("can_do: %d for %" GST_PTR_FORMAT " and %" GST_PTR_FORMAT,
608         can_do, caps, link_caps);
609
610     gst_caps_unref (caps);
611
612     pads = pads->next;
613   }
614
615   GST_OBJECT_UNLOCK (e);
616
617   return can_do;
618 }
619
620 /*
621  * performs a link and frees the struct. src and sink elements must be given
622  * return values   0 - link performed
623  *                 1 - link delayed
624  *                <0 - error
625  */
626 static gint
627 gst_parse_perform_link (link_t *link, graph_t *graph)
628 {
629   GstElement *src = link->src.element;
630   GstElement *sink = link->sink.element;
631   GSList *srcs = link->src.pads;
632   GSList *sinks = link->sink.pads;
633   g_assert (GST_IS_ELEMENT (src));
634   g_assert (GST_IS_ELEMENT (sink));
635
636   GST_CAT_INFO (GST_CAT_PIPELINE,
637       "linking " PRETTY_PAD_NAME_FMT " to " PRETTY_PAD_NAME_FMT " (%u/%u) with caps \"%" GST_PTR_FORMAT "\"",
638       PRETTY_PAD_NAME_ARGS (src, link->src.name),
639       PRETTY_PAD_NAME_ARGS (sink, link->sink.name),
640       g_slist_length (srcs), g_slist_length (sinks), link->caps);
641
642   if (!srcs || !sinks) {
643     gboolean found_one = gst_element_link_pads_filtered (src,
644         srcs ? (const gchar *) srcs->data : NULL, sink,
645         sinks ? (const gchar *) sinks->data : NULL, link->caps);
646
647     if (found_one) {
648       if (!link->all_pads)
649         goto success; /* Linked one, and not an all-pads link = we're done */
650
651       /* Try and link more available pads */
652       while (gst_element_link_pads_filtered (src,
653         srcs ? (const gchar *) srcs->data : NULL, sink,
654         sinks ? (const gchar *) sinks->data : NULL, link->caps));
655     }
656
657     /* We either didn't find any static pads, or this is a all-pads link,
658      * in which case watch for future pads and link those. Not a failure
659      * in the all-pads case if there's no sometimes pads to watch */
660     if (gst_parse_perform_delayed_link (src,
661           srcs ? (const gchar *) srcs->data : NULL,
662           sink, sinks ? (const gchar *) sinks->data : NULL, link->caps,
663           link->all_pads) || link->all_pads) {
664       goto success;
665     } else {
666       goto error;
667     }
668   }
669   if (g_slist_length (link->src.pads) != g_slist_length (link->sink.pads)) {
670     goto error;
671   }
672   while (srcs && sinks) {
673     const gchar *src_pad = (const gchar *) srcs->data;
674     const gchar *sink_pad = (const gchar *) sinks->data;
675     srcs = g_slist_next (srcs);
676     sinks = g_slist_next (sinks);
677     if (gst_element_link_pads_filtered (src, src_pad, sink, sink_pad,
678         link->caps)) {
679       continue;
680     } else {
681       if (gst_parse_perform_delayed_link (src, src_pad,
682                                           sink, sink_pad,
683                                           link->caps, link->all_pads)) {
684         continue;
685       } else {
686         goto error;
687       }
688     }
689   }
690
691 success:
692   gst_parse_free_link (link);
693   return 0;
694
695 error:
696   if (link->caps != NULL) {
697     gboolean src_can_do_caps, sink_can_do_caps;
698     gchar *caps_str = gst_caps_to_string (link->caps);
699
700     src_can_do_caps =
701         gst_parse_element_can_do_caps (src, GST_PAD_SRC, link->caps);
702     sink_can_do_caps =
703         gst_parse_element_can_do_caps (sink, GST_PAD_SINK, link->caps);
704
705     if (!src_can_do_caps && sink_can_do_caps) {
706       SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
707           _("could not link %s to %s, %s can't handle caps %s"),
708           GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink),
709           GST_ELEMENT_NAME (src), caps_str);
710     } else if (src_can_do_caps && !sink_can_do_caps) {
711       SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
712           _("could not link %s to %s, %s can't handle caps %s"),
713           GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink),
714           GST_ELEMENT_NAME (sink), caps_str);
715     } else if (!src_can_do_caps && !sink_can_do_caps) {
716       SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
717           _("could not link %s to %s, neither element can handle caps %s"),
718           GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink), caps_str);
719     } else {
720       SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
721           _("could not link %s to %s with caps %s"),
722           GST_ELEMENT_NAME (src), GST_ELEMENT_NAME (sink), caps_str);
723     }
724     g_free (caps_str);
725   } else {
726     SET_ERROR (graph->error, GST_PARSE_ERROR_LINK,
727         _("could not link %s to %s"), GST_ELEMENT_NAME (src),
728         GST_ELEMENT_NAME (sink));
729   }
730   gst_parse_free_link (link);
731   return -1;
732 }
733
734
735 static int yyerror (void *scanner, graph_t *graph, const char *s);
736 %}
737
738 %union {
739     gchar *ss;
740     chain_t *cc;
741     link_t *ll;
742     reference_t rr;
743     GstElement *ee;
744     GSList *pp;
745     graph_t *gg;
746 }
747
748 /* No grammar ambiguities expected, FAIL otherwise */
749 %expect 0
750
751 %token <ss> PARSE_URL
752 %token <ss> IDENTIFIER
753 %left  <ss> REF PADREF BINREF
754 %token <ss> ASSIGNMENT
755 %token <ss> LINK
756 %token <ss> LINK_ALL
757
758 %type <ss> binopener
759 %type <gg> graph
760 %type <cc> chain bin chainlist openchain elementary
761 %type <rr> reference
762 %type <ll> link
763 %type <ee> element
764 %type <pp> morepads pads assignments
765
766 %destructor {   gst_parse_strfree ($$);         } <ss>
767 %destructor {   if($$)
768                   gst_parse_free_chain($$);     } <cc>
769 %destructor {   gst_parse_free_link ($$);       } <ll>
770 %destructor {   gst_parse_free_reference(&($$));} <rr>
771 %destructor {   gst_object_unref ($$);          } <ee>
772 %destructor {   GSList *walk;
773                 for(walk=$$;walk;walk=walk->next)
774                   gst_parse_strfree (walk->data);
775                 g_slist_free ($$);              } <pp>
776
777
778
779 %left '(' ')'
780 %left ','
781 %right '.'
782 %left '!' '=' ':'
783
784 %lex-param { void *scanner }
785 %parse-param { void *scanner }
786 %parse-param { graph_t *graph }
787 %pure-parser
788
789 %start graph
790 %%
791
792 /*************************************************************
793 * Grammar explanation:
794 *   _element_s are specified by an identifier of their type.
795 *   a name can be give in the optional property-assignments
796 *       coffeeelement
797 *       fakesrc name=john
798 *       identity silence=false name=frodo
799 *   (cont'd)
800 **************************************************************/
801 element:        IDENTIFIER                    { $$ = gst_element_factory_make ($1, NULL);
802                                                 if ($$ == NULL) {
803                                                   add_missing_element(graph, $1);
804                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT, _("no element \"%s\""), $1);
805                                                 }
806                                                 gst_parse_strfree ($1);
807                                               }
808         |       element ASSIGNMENT            { gst_parse_element_set ($2, $1, graph);
809                                                 $$ = $1;
810                                               }
811         ;
812
813 /*************************************************************
814 * Grammar explanation: (cont'd)
815 *   a graph has (pure) _element_s, _bin_s and _link_s.
816 *   since bins are special elements, bins and elements can
817 *   be generalized as _elementary_.
818 *   The construction of _bin_s will be discussed later.
819 *   (cont'd)
820 *
821 **************************************************************/
822 elementary:
823         element                               { $$ = gst_parse_chain_new ();
824                                                 /* g_print ("@%p: CHAINing elementary\n", $$); */
825                                                 $$->first.element = $1? gst_object_ref($1) : NULL;
826                                                 $$->last.element = $1? gst_object_ref($1) : NULL;
827                                                 $$->first.name = $$->last.name = NULL;
828                                                 $$->first.pads = $$->last.pads = NULL;
829                                                 $$->elements = $1 ? g_slist_prepend (NULL, $1) : NULL;
830                                               }
831         | bin                                 { $$=$1; }
832         ;
833
834 /*************************************************************
835 * Grammar explanation: (cont'd)
836 *   a _chain_ is a list of _elementary_s that have _link_s inbetween
837 *   which are represented through infix-notation.
838 *
839 *       fakesrc ! sometransformation ! fakesink
840 *
841 *   every _link_ can be augmented with _pads_.
842 *
843 *       coffeesrc .sound ! speakersink
844 *       multisrc  .movie,ads ! .projector,smallscreen multisink
845 *
846 *   and every _link_ can be setup to filter media-types
847 *       mediasrc ! audio/x-raw, signed=TRUE ! stereosink
848 *
849 * User HINT:
850 *   if the lexer does not recognize your media-type it
851 *   will make it an element name. that results in errors
852 *   like
853 *       NO SUCH ELEMENT: no element audio7x-raw
854 *   '7' vs. '/' in https://en.wikipedia.org/wiki/QWERTZ
855 *
856 * Parsing HINT:
857 *   in the parser we need to differ between chains that can
858 *   be extended by more elementaries (_openchain_) and others
859 *   that are syntactically closed (handled later in this file).
860 *       (e.g. fakesrc ! sinkreferencename.padname)
861 **************************************************************/
862 chain:  openchain                             { $$=$1;
863                                                 if($$->last.name){
864                                                         SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX,
865                                                         _("unexpected reference \"%s\" - ignoring"), $$->last.name);
866                                                         gst_parse_strfree($$->last.name);
867                                                         $$->last.name=NULL;
868                                                 }
869                                                 if($$->last.pads){
870                                                         SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX,
871                                                         _("unexpected pad-reference \"%s\" - ignoring"), (gchar*)$$->last.pads->data);
872                                                         g_slist_foreach ($$->last.pads, (GFunc) gst_parse_strfree, NULL);
873                                                         g_slist_free ($$->last.pads);
874                                                         $$->last.pads=NULL;
875                                                 }
876                                               }
877         ;
878
879 openchain:
880         elementary pads                       { $$=$1;
881                                                 $$->last.pads = g_slist_concat ($$->last.pads, $2);
882                                                 /* g_print ("@%p@%p: FKI elementary pads\n", $1, $$->last.pads); */
883                                               }
884         | openchain link pads elementary pads
885                                               {
886                                                 $2->src  = $1->last;
887                                                 $2->sink = $4->first;
888                                                 $2->sink.pads = g_slist_concat ($3, $2->sink.pads);
889                                                 TRY_SETUP_LINK($2);
890                                                 $4->first = $1->first;
891                                                 $4->elements = g_slist_concat ($1->elements, $4->elements);
892                                                 gst_parse_chain_free($1);
893                                                 $$ = $4;
894                                                 $$->last.pads = g_slist_concat ($$->last.pads, $5);
895                                               }
896         ;
897
898 link:   LINK                                  { $$ = gst_parse_link_new ();
899                                                 $$->all_pads = FALSE;
900                                                 if ($1) {
901                                                   $$->caps = gst_caps_from_string ($1);
902                                                   if ($$->caps == NULL)
903                                                     SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("could not parse caps \"%s\""), $1);
904                                                   gst_parse_strfree ($1);
905                                                 }
906                                               }
907         | LINK_ALL                            { $$ = gst_parse_link_new ();
908                                                 $$->all_pads = TRUE;
909                                                 if ($1) {
910                                                   $$->caps = gst_caps_from_string ($1);
911                                                   if ($$->caps == NULL)
912                                                     SET_ERROR (graph->error, GST_PARSE_ERROR_LINK, _("could not parse caps \"%s\""), $1);
913                                                   gst_parse_strfree ($1);
914                                                 }
915                                               }
916         ;
917 pads:           /* NOP */                     { $$ = NULL; }
918         |       PADREF morepads               { $$ = $2;
919                                                 $$ = g_slist_prepend ($$, $1);
920                                               }
921         ;
922 morepads:       /* NOP */                     { $$ = NULL; }
923         |       ',' IDENTIFIER morepads       { $$ = g_slist_prepend ($3, $2); }
924         ;
925
926 /*************************************************************
927 * Grammar explanation: (cont'd)
928 *   the first and last elements of a _chain_ can be give
929 *   as URL. This creates special elements that fit the URL.
930 *
931 *       fakesrc ! http://fake-sink.org
932 *       http://somesource.org ! fakesink
933 **************************************************************/
934
935 chain:  openchain link PARSE_URL              { GstElement *element =
936                                                           gst_element_make_from_uri (GST_URI_SINK, $3, NULL, NULL);
937                                                 /* FIXME: get and parse error properly */
938                                                 if (!element) {
939                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
940                                                           _("no sink element for URI \"%s\""), $3);
941                                                 }
942                                                 $$ = $1;
943                                                 $2->sink.element = element?gst_object_ref(element):NULL;
944                                                 $2->src = $1->last;
945                                                 TRY_SETUP_LINK($2);
946                                                 $$->last.element = NULL;
947                                                 $$->last.name = NULL;
948                                                 $$->last.pads = NULL;
949                                                 if(element) $$->elements = g_slist_append ($$->elements, element);
950                                                 g_free ($3);
951                                               }
952         ;
953 openchain:
954         PARSE_URL                             { GstElement *element =
955                                                           gst_element_make_from_uri (GST_URI_SRC, $1, NULL, NULL);
956                                                 /* FIXME: get and parse error properly */
957                                                 if (!element) {
958                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
959                                                     _("no source element for URI \"%s\""), $1);
960                                                 }
961                                                 $$ = gst_parse_chain_new ();
962                                                 /* g_print ("@%p: CHAINing srcURL\n", $$); */
963                                                 $$->first.element = NULL;
964                                                 $$->first.name = NULL;
965                                                 $$->first.pads = NULL;
966                                                 $$->last.element = element ? gst_object_ref(element):NULL;
967                                                 $$->last.name = NULL;
968                                                 $$->last.pads = NULL;
969                                                 $$->elements = element ? g_slist_prepend (NULL, element)  : NULL;
970                                                 g_free($1);
971                                               }
972         ;
973
974
975 /*************************************************************
976 * Grammar explanation: (cont'd)
977 *   the first and last elements of a _chain_ can be linked
978 *   to a named _reference_ (with optional pads).
979 *
980 *       fakesrc ! nameOfSinkElement.
981 *       fakesrc ! nameOfSinkElement.Padname
982 *       fakesrc ! nameOfSinkElement.Padname, anotherPad
983 *       nameOfSource.Padname ! fakesink
984 **************************************************************/
985
986 chain:  openchain link reference              { $$ = $1;
987                                                 $2->sink= $3;
988                                                 $2->src = $1->last;
989                                                 TRY_SETUP_LINK($2);
990                                                 $$->last.element = NULL;
991                                                 $$->last.name = NULL;
992                                                 $$->last.pads = NULL;
993                                               }
994         ;
995
996
997 openchain:
998         reference                             { $$ = gst_parse_chain_new ();
999                                                 $$->last=$1;
1000                                                 $$->first.element = NULL;
1001                                                 $$->first.name = NULL;
1002                                                 $$->first.pads = NULL;
1003                                                 $$->elements = NULL;
1004                                               }
1005         ;
1006 reference:      REF morepads                  {
1007                                                 gchar *padname = $1;
1008                                                 GSList *pads = $2;
1009                                                 if (padname) {
1010                                                   while (*padname != '.') padname++;
1011                                                   *padname = '\0';
1012                                                   padname++;
1013                                                   if (*padname != '\0')
1014                                                     pads = g_slist_prepend (pads, gst_parse_strdup (padname));
1015                                                 }
1016                                                 $$.element=NULL;
1017                                                 $$.name=$1;
1018                                                 $$.pads=pads;
1019                                               }
1020         ;
1021
1022
1023 /*************************************************************
1024 * Grammar explanation: (cont'd)
1025 *   a _chainlist_ is just a list of _chain_s.
1026 *
1027 *   You can specify _link_s with named
1028 *   _reference_ on each side. That
1029 *   works already after the explanations above.
1030 *       someSourceName.Pad ! someSinkName.
1031 *       someSourceName.Pad,anotherPad ! someSinkName.Apad,Bpad
1032 *
1033 *   If a syntax error occurs, the already finished _chain_s
1034 *   and _links_ are kept intact.
1035 *************************************************************/
1036
1037 chainlist: /* NOP */                          { $$ = NULL; }
1038         | chainlist chain                     { if ($1){
1039                                                   gst_parse_free_reference(&($1->last));
1040                                                   gst_parse_free_reference(&($2->first));
1041                                                   $2->first = $1->first;
1042                                                   $2->elements = g_slist_concat ($1->elements, $2->elements);
1043                                                   gst_parse_chain_free ($1);
1044                                                 }
1045                                                 $$ = $2;
1046                                               }
1047         | chainlist error                     { $$=$1;
1048                                                 GST_CAT_DEBUG (GST_CAT_PIPELINE,"trying to recover from syntax error");
1049                                                 SET_ERROR (graph->error, GST_PARSE_ERROR_SYNTAX, _("syntax error"));
1050                                               }
1051         ;
1052
1053 /*************************************************************
1054 * Grammar explanation: (cont'd)
1055 *   _bins_
1056 *************************************************************/
1057
1058
1059 assignments:    /* NOP */                     { $$ = NULL; }
1060         |       ASSIGNMENT assignments        { $$ = g_slist_prepend ($2, $1); }
1061         ;
1062
1063 binopener:      '('                           { $$ = gst_parse_strdup(_("bin")); }
1064         |       BINREF                        { $$ = $1; }
1065         ;
1066 bin:    binopener assignments chainlist ')'   {
1067                                                 chain_t *chain = $3;
1068                                                 GSList *walk;
1069                                                 GstBin *bin = (GstBin *) gst_element_factory_make ($1, NULL);
1070                                                 if (!chain) {
1071                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_EMPTY_BIN,
1072                                                     _("specified empty bin \"%s\", not allowed"), $1);
1073                                                   chain = gst_parse_chain_new ();
1074                                                   chain->first.element = chain->last.element = NULL;
1075                                                   chain->first.name    = chain->last.name    = NULL;
1076                                                   chain->first.pads    = chain->last.pads    = NULL;
1077                                                   chain->elements = NULL;
1078                                                 }
1079                                                 if (!bin) {
1080                                                   add_missing_element(graph, $1);
1081                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1082                                                     _("no bin \"%s\", unpacking elements"), $1);
1083                                                   /* clear property-list */
1084                                                   g_slist_foreach ($2, (GFunc) gst_parse_strfree, NULL);
1085                                                   g_slist_free ($2);
1086                                                   $2 = NULL;
1087                                                 } else {
1088                                                   for (walk = chain->elements; walk; walk = walk->next )
1089                                                     gst_bin_add (bin, GST_ELEMENT (walk->data));
1090                                                   g_slist_free (chain->elements);
1091                                                   chain->elements = g_slist_prepend (NULL, bin);
1092                                                 }
1093                                                 $$ = chain;
1094                                                 /* set the properties now
1095                                                  * HINT: property-list cleared above, if bin==NULL
1096                                                  */
1097                                                 for (walk = $2; walk; walk = walk->next)
1098                                                   gst_parse_element_set ((gchar *) walk->data,
1099                                                         GST_ELEMENT (bin), graph);
1100                                                 g_slist_free ($2);
1101                                                 gst_parse_strfree ($1);
1102                                               }
1103         ;
1104
1105 /*************************************************************
1106 * Grammar explanation: (cont'd)
1107 *   _graph_
1108 *************************************************************/
1109
1110 graph:  chainlist                             { $$ = graph;
1111                                                 $$->chain = $1;
1112                                                 if(!$1) {
1113                                                   SET_ERROR (graph->error, GST_PARSE_ERROR_EMPTY, _("empty pipeline not allowed"));
1114                                                 }
1115                                               }
1116         ;
1117
1118 %%
1119
1120
1121 static int
1122 yyerror (void *scanner, graph_t *graph, const char *s)
1123 {
1124   /* FIXME: This should go into the GError somehow, but how? */
1125   GST_WARNING ("Error during parsing: %s", s);
1126   return -1;
1127 }
1128
1129
1130 GstElement *
1131 priv_gst_parse_launch (const gchar *str, GError **error, GstParseContext *ctx,
1132     GstParseFlags flags)
1133 {
1134   graph_t g;
1135   gchar *dstr;
1136   GSList *walk;
1137   GstBin *bin = NULL;
1138   GstElement *ret;
1139   yyscan_t scanner;
1140
1141   g_return_val_if_fail (str != NULL, NULL);
1142   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1143
1144   g.chain = NULL;
1145   g.links = NULL;
1146   g.error = error;
1147   g.ctx = ctx;
1148   g.flags = flags;
1149
1150 #ifdef __GST_PARSE_TRACE
1151   GST_CAT_DEBUG (GST_CAT_PIPELINE, "TRACE: tracing enabled");
1152   __strings = __chains = __links = 0;
1153 #endif /* __GST_PARSE_TRACE */
1154
1155   /* g_print("Now scanning: %s\n", str); */
1156
1157   dstr = g_strdup (str);
1158   priv_gst_parse_yylex_init (&scanner);
1159   priv_gst_parse_yy_scan_string (dstr, scanner);
1160
1161 #if YYDEBUG
1162   yydebug = 1;
1163 #endif
1164
1165   if (yyparse (scanner, &g) != 0) {
1166     SET_ERROR (error, GST_PARSE_ERROR_SYNTAX,
1167         "Unrecoverable syntax error while parsing pipeline %s", str);
1168
1169     priv_gst_parse_yylex_destroy (scanner);
1170     g_free (dstr);
1171
1172     goto error1;
1173   }
1174   priv_gst_parse_yylex_destroy (scanner);
1175   g_free (dstr);
1176
1177   GST_CAT_DEBUG (GST_CAT_PIPELINE, "got %u elements and %u links",
1178       g.chain ? g_slist_length (g.chain->elements) : 0,
1179       g_slist_length (g.links));
1180
1181   /* ensure chain is not NULL */
1182   if (!g.chain){
1183     g.chain=gst_parse_chain_new ();
1184     g.chain->elements=NULL;
1185     g.chain->first.element=NULL;
1186     g.chain->first.name=NULL;
1187     g.chain->first.pads=NULL;
1188     g.chain->last.element=NULL;
1189     g.chain->last.name=NULL;
1190     g.chain->last.pads=NULL;
1191   };
1192
1193   /* ensure elements is not empty */
1194   if(!g.chain->elements){
1195     g.chain->elements= g_slist_prepend (NULL, NULL);
1196   };
1197
1198   /* put all elements in our bin if necessary */
1199   if(g.chain->elements->next){
1200     if (flags & GST_PARSE_FLAG_PLACE_IN_BIN)
1201       bin = GST_BIN (gst_element_factory_make ("bin", NULL));
1202     else
1203       bin = GST_BIN (gst_element_factory_make ("pipeline", NULL));
1204     g_assert (bin);
1205
1206     for (walk = g.chain->elements; walk; walk = walk->next) {
1207       if (walk->data != NULL)
1208         gst_bin_add (bin, GST_ELEMENT (walk->data));
1209     }
1210     g_slist_free (g.chain->elements);
1211     g.chain->elements = g_slist_prepend (NULL, bin);
1212   }
1213
1214   ret = (GstElement *) g.chain->elements->data;
1215   g_slist_free (g.chain->elements);
1216   g.chain->elements=NULL;
1217   if (GST_IS_BIN (ret))
1218     bin = GST_BIN (ret);
1219   gst_parse_free_chain (g.chain);
1220   g.chain = NULL;
1221
1222
1223   /* resolve and perform links */
1224   for (walk = g.links; walk; walk = walk->next) {
1225     link_t *l = (link_t *) walk->data;
1226     int err;
1227     err=gst_resolve_reference( &(l->src), ret);
1228     if (err) {
1229        if(-1==err){
1230           SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1231               "No src-element named \"%s\" - omitting link", l->src.name);
1232        }else{
1233           /* probably a missing element which we've handled already */
1234           SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1235               "No src-element found - omitting link");
1236        }
1237        gst_parse_free_link (l);
1238        continue;
1239     }
1240
1241     err=gst_resolve_reference( &(l->sink), ret);
1242     if (err) {
1243        if(-1==err){
1244           SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1245               "No sink-element named \"%s\" - omitting link", l->src.name);
1246        }else{
1247           /* probably a missing element which we've handled already */
1248           SET_ERROR (error, GST_PARSE_ERROR_NO_SUCH_ELEMENT,
1249               "No sink-element found - omitting link");
1250        }
1251        gst_parse_free_link (l);
1252        continue;
1253     }
1254     gst_parse_perform_link (l, &g);
1255   }
1256   g_slist_free (g.links);
1257
1258 out:
1259 #ifdef __GST_PARSE_TRACE
1260   GST_CAT_DEBUG (GST_CAT_PIPELINE,
1261       "TRACE: %u strings, %u chains and %u links left", __strings, __chains,
1262       __links);
1263   if (__strings || __chains || __links) {
1264     g_warning ("TRACE: %u strings, %u chains and %u links left", __strings,
1265         __chains, __links);
1266   }
1267 #endif /* __GST_PARSE_TRACE */
1268
1269   return ret;
1270
1271 error1:
1272   if (g.chain) {
1273     gst_parse_free_chain (g.chain);
1274     g.chain=NULL;
1275   }
1276
1277   g_slist_foreach (g.links, (GFunc)gst_parse_free_link, NULL);
1278   g_slist_free (g.links);
1279
1280   if (error)
1281     g_assert (*error);
1282   ret = NULL;
1283
1284   goto out;
1285 }