update for _get_caps() -> _query_caps()
[platform/upstream/gstreamer.git] / gst / encoding / gstencodebin.c
1 /* GStreamer encoding bin
2  * Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
3  *           (C) 2009 Nokia Corporation
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include <string.h>
26 #include "gstencodebin.h"
27 #include "gstsmartencoder.h"
28 #include "gststreamsplitter.h"
29 #include "gststreamcombiner.h"
30 #include <gst/gst-i18n-plugin.h>
31
32 /**
33  * SECTION:element-encodebin
34  *
35  * EncodeBin provides a bin for encoding/muxing various streams according to
36  * a specified #GstEncodingProfile.
37  *
38  * Based on the profile that was set (via the #GstEncodeBin:profile property),
39  * EncodeBin will internally select and configure the required elements
40  * (encoders, muxers, but also audio and video converters) so that you can
41  * provide it raw or pre-encoded streams of data in input and have your
42  * encoded/muxed/converted stream in output.
43  *
44  * <refsect2>
45  * <title>Features</title>
46  * <itemizedlist>
47  * <listitem>
48  * Automatic encoder and muxer selection based on elements available on the
49  * system.
50  * </listitem>
51  * <listitem>
52  * Conversion of raw audio/video streams (scaling, framerate conversion,
53  * colorspace conversion, samplerate conversion) to conform to the profile
54  * output format.
55  * </listitem>
56  * <listitem>
57  * Variable number of streams. If the presence property for a stream encoding
58  * profile is 0, you can request any number of sink pads for it via the
59  * standard request pad gstreamer API or the #GstEncodeBin::request-pad action
60  * signal.
61  * </listitem>
62  * <listitem>
63  * Avoid reencoding (passthrough). If the input stream is already encoded and is
64  * compatible with what the #GstEncodingProfile expects, then the stream won't
65  * be re-encoded but just passed through downstream to the muxer or the output.
66  * </listitem>
67  * <listitem>
68  * Mix pre-encoded and raw streams as input. In addition to the passthrough
69  * feature above, you can feed both raw audio/video *AND* already-encoded data
70  * to a pad. #GstEncodeBin will take care of passing through the compatible
71  * segments and re-encoding the segments of media that need encoding.
72  * </listitem>
73  * <listitem>
74  * Standard behaviour is to use a #GstEncodingContainerProfile to have both
75  * encoding and muxing performed. But you can also provide a single stream
76  * profile (like #GstEncodingAudioProfile) to only have the encoding done and
77  * handle the encoded output yourself.
78  * </listitem>
79  * <listitem>
80  * Audio imperfection corrections. Incoming audio streams can have non perfect
81  * timestamps (jitter), like the streams coming from ASF files. #GstEncodeBin
82  * will automatically fix those imperfections for you. See
83  * #GstEncodeBin:audio-jitter-tolerance for more details.
84  * </listitem>
85  * <listitem>
86  * Variable or Constant video framerate. If your #GstEncodingVideoProfile has
87  * the variableframerate property deactivated (default), then the incoming
88  * raw video stream will be retimestampped in order to produce a constant
89  * framerate.
90  * </listitem>
91  * <listitem>
92  * Cross-boundary re-encoding. When feeding compatible pre-encoded streams that
93  * fall on segment boundaries, and for supported formats (right now only H263),
94  * the GOP will be decoded/reencoded when needed to produce an encoded output
95  * that fits exactly within the request GstSegment.
96  * </listitem>
97  * <listitem>
98  * Missing plugin support. If a #GstElement is missing to encode/mux to the
99  * request profile formats, a missing-plugin #GstMessage will be posted on the
100  * #GstBus, allowing systems that support the missing-plugin system to offer the
101  * user a way to install the missing element.
102  * </listitem>
103  * </itemizedlist>
104  * </refsect2>
105  */
106
107
108 /* TODO/FIXME
109  *
110  * Handling mp3!xing!idv3 and theora!ogg tagsetting scenarios:
111  *  Once we have chosen a muxer:
112  *   When a new stream is requested:
113  *    If muxer isn't 'Formatter' OR doesn't have a TagSetter interface:
114  *      Find a Formatter for the given stream (preferably with TagSetter)
115  *       Insert that before muxer
116  **/
117
118 #define fast_pad_link(a,b) gst_pad_link_full((a),(b),GST_PAD_LINK_CHECK_NOTHING)
119 #define fast_element_link(a,b) gst_element_link_pads_full((a),"src",(b),"sink",GST_PAD_LINK_CHECK_NOTHING)
120
121 typedef enum
122 {
123   GST_ENC_FLAG_NO_AUDIO_CONVERSION = (1 << 0),
124   GST_ENC_FLAG_NO_VIDEO_CONVERSION = (1 << 1)
125 } GstEncFlags;
126
127 #define GST_TYPE_ENC_FLAGS (gst_enc_flags_get_type())
128 GType gst_enc_flags_get_type (void);
129
130 /* generic templates */
131 static GstStaticPadTemplate muxer_src_template =
132 GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
133     GST_STATIC_CAPS_ANY);
134
135 static GstStaticPadTemplate video_sink_template =
136 GST_STATIC_PAD_TEMPLATE ("video_%u",
137     GST_PAD_SINK,
138     GST_PAD_REQUEST,
139     GST_STATIC_CAPS_ANY);
140 static GstStaticPadTemplate audio_sink_template =
141 GST_STATIC_PAD_TEMPLATE ("audio_%u",
142     GST_PAD_SINK,
143     GST_PAD_REQUEST,
144     GST_STATIC_CAPS_ANY);
145 /* static GstStaticPadTemplate text_sink_template = */
146 /* GST_STATIC_PAD_TEMPLATE ("text_%u", */
147 /*     GST_PAD_SINK, */
148 /*     GST_PAD_REQUEST, */
149 /*     GST_STATIC_CAPS_ANY); */
150 static GstStaticPadTemplate private_sink_template =
151 GST_STATIC_PAD_TEMPLATE ("private_%u",
152     GST_PAD_SINK,
153     GST_PAD_REQUEST,
154     GST_STATIC_CAPS_ANY);
155
156 struct _GstEncodeBin
157 {
158   GstBin parent;
159
160   /* the profile field is only valid if it could be entirely setup */
161   GstEncodingProfile *profile;
162
163   GList *streams;               /* List of StreamGroup, not sorted */
164
165   GstElement *muxer;
166   /* Ghostpad with changing target */
167   GstPad *srcpad;
168
169   /* TRUE if in PAUSED/PLAYING */
170   gboolean active;
171
172   /* available muxers, encoders and parsers */
173   GList *muxers;
174   GList *formatters;
175   GList *encoders;
176   GList *parsers;
177
178   /* Increasing counter for unique pad name */
179   guint last_pad_id;
180
181   /* Cached caps for identification */
182   GstCaps *raw_video_caps;
183   GstCaps *raw_audio_caps;
184   /* GstCaps *raw_text_caps; */
185
186   guint queue_buffers_max;
187   guint queue_bytes_max;
188   guint64 queue_time_max;
189
190   guint64 tolerance;
191   gboolean avoid_reencoding;
192
193   GstEncFlags flags;
194 };
195
196 struct _GstEncodeBinClass
197 {
198   GstBinClass parent;
199
200   /* Action Signals */
201   GstPad *(*request_pad) (GstEncodeBin * encodebin, GstCaps * caps);
202 };
203
204 typedef struct _StreamGroup StreamGroup;
205
206 struct _StreamGroup
207 {
208   GstEncodeBin *ebin;
209   GstEncodingProfile *profile;
210   GstPad *ghostpad;             /* Sink ghostpad */
211   GstElement *inqueue;          /* Queue just after the ghostpad */
212   GstElement *splitter;
213   GList *converters;            /* List of conversion GstElement */
214   GstElement *capsfilter;       /* profile->restriction (if non-NULL/ANY) */
215   GstElement *encoder;          /* Encoder (can be NULL) */
216   GstElement *combiner;
217   GstElement *parser;
218   GstElement *smartencoder;
219   GstElement *outfilter;        /* Output capsfilter (streamprofile.format) */
220   GstElement *formatter;
221   GstElement *outqueue;         /* Queue just before the muxer */
222 };
223
224 /* Default for queues (same defaults as queue element) */
225 #define DEFAULT_QUEUE_BUFFERS_MAX  200
226 #define DEFAULT_QUEUE_BYTES_MAX    10 * 1024 * 1024
227 #define DEFAULT_QUEUE_TIME_MAX     GST_SECOND
228 #define DEFAULT_AUDIO_JITTER_TOLERANCE 20 * GST_MSECOND
229 #define DEFAULT_AVOID_REENCODING   FALSE
230 #define DEFAULT_FLAGS              0
231
232 #define DEFAULT_RAW_CAPS                        \
233   "video/x-raw; "                               \
234   "audio/x-raw; "                               \
235   "text/plain; "                                \
236   "text/x-pango-markup; "                       \
237   "video/x-dvd-subpicture; "                    \
238   "subpicture/x-pgs"
239
240 /* Properties */
241 enum
242 {
243   PROP_0,
244   PROP_PROFILE,
245   PROP_QUEUE_BUFFERS_MAX,
246   PROP_QUEUE_BYTES_MAX,
247   PROP_QUEUE_TIME_MAX,
248   PROP_AUDIO_JITTER_TOLERANCE,
249   PROP_AVOID_REENCODING,
250   PROP_FLAGS,
251   PROP_LAST
252 };
253
254 /* Signals */
255 enum
256 {
257   SIGNAL_REQUEST_PAD,
258   LAST_SIGNAL
259 };
260
261 #define C_FLAGS(v) ((guint) v)
262
263 GType
264 gst_enc_flags_get_type (void)
265 {
266   static const GFlagsValue values[] = {
267     {C_FLAGS (GST_ENC_FLAG_NO_AUDIO_CONVERSION), "Do not use audio conversion "
268           "elements", "no-audio-conversion"},
269     {C_FLAGS (GST_ENC_FLAG_NO_VIDEO_CONVERSION), "Do not use video conversion "
270           "elements", "no-video-conversion"},
271     {0, NULL, NULL}
272   };
273   static volatile GType id = 0;
274
275   if (g_once_init_enter ((gsize *) & id)) {
276     GType _id;
277
278     _id = g_flags_register_static ("GstEncFlags", values);
279
280     g_once_init_leave ((gsize *) & id, _id);
281   }
282
283   return id;
284 }
285
286 static guint gst_encode_bin_signals[LAST_SIGNAL] = { 0 };
287
288 static GstStaticCaps default_raw_caps = GST_STATIC_CAPS (DEFAULT_RAW_CAPS);
289
290 GST_DEBUG_CATEGORY_STATIC (gst_encode_bin_debug);
291 #define GST_CAT_DEFAULT gst_encode_bin_debug
292
293 G_DEFINE_TYPE (GstEncodeBin, gst_encode_bin, GST_TYPE_BIN);
294
295 static void gst_encode_bin_dispose (GObject * object);
296 static void gst_encode_bin_set_property (GObject * object, guint prop_id,
297     const GValue * value, GParamSpec * pspec);
298 static void gst_encode_bin_get_property (GObject * object, guint prop_id,
299     GValue * value, GParamSpec * pspec);
300 static GstStateChangeReturn gst_encode_bin_change_state (GstElement * element,
301     GstStateChange transition);
302
303 static GstPad *gst_encode_bin_request_new_pad (GstElement * element,
304     GstPadTemplate * templ, const gchar * name, const GstCaps * caps);
305 static void gst_encode_bin_release_pad (GstElement * element, GstPad * pad);
306
307 static gboolean
308 gst_encode_bin_set_profile (GstEncodeBin * ebin, GstEncodingProfile * profile);
309 static void gst_encode_bin_tear_down_profile (GstEncodeBin * ebin);
310 static gboolean gst_encode_bin_setup_profile (GstEncodeBin * ebin,
311     GstEncodingProfile * profile);
312
313 static StreamGroup *_create_stream_group (GstEncodeBin * ebin,
314     GstEncodingProfile * sprof, const gchar * sinkpadname, GstCaps * sinkcaps);
315 static void stream_group_remove (GstEncodeBin * ebin, StreamGroup * sgroup);
316 static GstPad *gst_encode_bin_request_pad_signal (GstEncodeBin * encodebin,
317     GstCaps * caps);
318
319 static inline GstElement *_get_formatter (GstEncodeBin * ebin,
320     GstEncodingProfile * sprof);
321
322 static void
323 gst_encode_bin_class_init (GstEncodeBinClass * klass)
324 {
325   GObjectClass *gobject_klass;
326   GstElementClass *gstelement_klass;
327
328   gobject_klass = (GObjectClass *) klass;
329   gstelement_klass = (GstElementClass *) klass;
330
331   gobject_klass->dispose = gst_encode_bin_dispose;
332   gobject_klass->set_property = gst_encode_bin_set_property;
333   gobject_klass->get_property = gst_encode_bin_get_property;
334
335   /* Properties */
336
337   /**
338    * GstEncodeBin:profile:
339    *
340    * The #GstEncodingProfile to use. This property must be set before going
341    * to %GST_STATE_PAUSED or higher.
342    */
343   g_object_class_install_property (gobject_klass, PROP_PROFILE,
344       g_param_spec_object ("profile", "Profile",
345           "The GstEncodingProfile to use", GST_TYPE_ENCODING_PROFILE,
346           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
347
348   g_object_class_install_property (gobject_klass, PROP_QUEUE_BYTES_MAX,
349       g_param_spec_uint ("queue-bytes-max", "Max. size (kB)",
350           "Max. amount of data in the queue (bytes, 0=disable)",
351           0, G_MAXUINT, DEFAULT_QUEUE_BYTES_MAX,
352           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
353
354   g_object_class_install_property (gobject_klass, PROP_QUEUE_BUFFERS_MAX,
355       g_param_spec_uint ("queue-buffers-max", "Max. size (buffers)",
356           "Max. number of buffers in the queue (0=disable)", 0, G_MAXUINT,
357           DEFAULT_QUEUE_BUFFERS_MAX,
358           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
359
360   g_object_class_install_property (gobject_klass, PROP_QUEUE_TIME_MAX,
361       g_param_spec_uint64 ("queue-time-max", "Max. size (ns)",
362           "Max. amount of data in the queue (in ns, 0=disable)", 0, G_MAXUINT64,
363           DEFAULT_QUEUE_TIME_MAX, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
364
365   g_object_class_install_property (gobject_klass, PROP_AUDIO_JITTER_TOLERANCE,
366       g_param_spec_uint64 ("audio-jitter-tolerance", "Audio jitter tolerance",
367           "Amount of timestamp jitter/imperfection to allow on audio streams before inserting/dropping samples (ns)",
368           0, G_MAXUINT64, DEFAULT_AUDIO_JITTER_TOLERANCE,
369           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
370
371   g_object_class_install_property (gobject_klass, PROP_AVOID_REENCODING,
372       g_param_spec_boolean ("avoid-reencoding", "Avoid re-encoding",
373           "Whether to re-encode portions of compatible video streams that lay on segment boundaries",
374           DEFAULT_AVOID_REENCODING,
375           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
376
377   /**
378    * GstEncodeBin:flags
379    *
380    * Control the behaviour of encodebin.
381    */
382   g_object_class_install_property (gobject_klass, PROP_FLAGS,
383       g_param_spec_flags ("flags", "Flags", "Flags to control behaviour",
384           GST_TYPE_ENC_FLAGS, DEFAULT_FLAGS,
385           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
386
387   /* Signals */
388   /**
389    * GstEncodeBin::request-pad
390    * @encodebin: a #GstEncodeBin instance
391    * @caps: a #GstCaps
392    *
393    * Use this method to request an unused sink request #GstPad that can take the
394    * provided @caps as input. You must release the pad with
395    * gst_element_release_request_pad() when you are done with it.
396    *
397    * Returns: A compatible #GstPad, or %NULL if no compatible #GstPad could be
398    * created or is available.
399    */
400   gst_encode_bin_signals[SIGNAL_REQUEST_PAD] =
401       g_signal_new ("request-pad", G_TYPE_FROM_CLASS (klass),
402       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (GstEncodeBinClass,
403           request_pad), NULL, NULL, gst_encode_marshal_OBJECT__BOXED,
404       GST_TYPE_PAD, 1, GST_TYPE_CAPS);
405
406   klass->request_pad = gst_encode_bin_request_pad_signal;
407
408   gst_element_class_add_pad_template (gstelement_klass,
409       gst_static_pad_template_get (&muxer_src_template));
410   gst_element_class_add_pad_template (gstelement_klass,
411       gst_static_pad_template_get (&video_sink_template));
412   gst_element_class_add_pad_template (gstelement_klass,
413       gst_static_pad_template_get (&audio_sink_template));
414   /* gst_element_class_add_pad_template (gstelement_klass, */
415   /*     gst_static_pad_template_get (&text_sink_template)); */
416   gst_element_class_add_pad_template (gstelement_klass,
417       gst_static_pad_template_get (&private_sink_template));
418
419   gstelement_klass->change_state =
420       GST_DEBUG_FUNCPTR (gst_encode_bin_change_state);
421   gstelement_klass->request_new_pad =
422       GST_DEBUG_FUNCPTR (gst_encode_bin_request_new_pad);
423   gstelement_klass->release_pad =
424       GST_DEBUG_FUNCPTR (gst_encode_bin_release_pad);
425
426   gst_element_class_set_details_simple (gstelement_klass,
427       "Encoder Bin",
428       "Generic/Bin/Encoder",
429       "Convenience encoding/muxing element",
430       "Edward Hervey <edward.hervey@collabora.co.uk>");
431 }
432
433 static void
434 gst_encode_bin_dispose (GObject * object)
435 {
436   GstEncodeBin *ebin = (GstEncodeBin *) object;
437
438   if (ebin->muxers)
439     gst_plugin_feature_list_free (ebin->muxers);
440
441   if (ebin->formatters)
442     gst_plugin_feature_list_free (ebin->formatters);
443
444   if (ebin->encoders)
445     gst_plugin_feature_list_free (ebin->encoders);
446
447   if (ebin->parsers)
448     gst_plugin_feature_list_free (ebin->parsers);
449
450   gst_encode_bin_tear_down_profile (ebin);
451
452   if (ebin->raw_video_caps)
453     gst_caps_unref (ebin->raw_video_caps);
454   if (ebin->raw_audio_caps)
455     gst_caps_unref (ebin->raw_audio_caps);
456   /* if (ebin->raw_text_caps) */
457   /*   gst_caps_unref (ebin->raw_text_caps); */
458
459   G_OBJECT_CLASS (gst_encode_bin_parent_class)->dispose (object);
460 }
461
462 static void
463 gst_encode_bin_init (GstEncodeBin * encode_bin)
464 {
465   GstPadTemplate *tmpl;
466
467   encode_bin->muxers =
468       gst_element_factory_list_get_elements (GST_ELEMENT_FACTORY_TYPE_MUXER,
469       GST_RANK_MARGINAL);
470
471   encode_bin->formatters =
472       gst_element_factory_list_get_elements (GST_ELEMENT_FACTORY_TYPE_FORMATTER,
473       GST_RANK_SECONDARY);
474
475   encode_bin->encoders =
476       gst_element_factory_list_get_elements (GST_ELEMENT_FACTORY_TYPE_ENCODER,
477       GST_RANK_MARGINAL);
478
479   encode_bin->parsers =
480       gst_element_factory_list_get_elements (GST_ELEMENT_FACTORY_TYPE_PARSER,
481       GST_RANK_MARGINAL);
482
483   encode_bin->raw_video_caps = gst_caps_from_string ("video/x-raw");
484   encode_bin->raw_audio_caps = gst_caps_from_string ("audio/x-raw");
485   /* encode_bin->raw_text_caps = */
486   /*     gst_caps_from_string ("text/plain;text/x-pango-markup"); */
487
488   encode_bin->queue_buffers_max = DEFAULT_QUEUE_BUFFERS_MAX;
489   encode_bin->queue_bytes_max = DEFAULT_QUEUE_BYTES_MAX;
490   encode_bin->queue_time_max = DEFAULT_QUEUE_TIME_MAX;
491   encode_bin->tolerance = DEFAULT_AUDIO_JITTER_TOLERANCE;
492   encode_bin->avoid_reencoding = DEFAULT_AVOID_REENCODING;
493   encode_bin->flags = DEFAULT_FLAGS;
494
495   tmpl = gst_static_pad_template_get (&muxer_src_template);
496   encode_bin->srcpad = gst_ghost_pad_new_no_target_from_template ("src", tmpl);
497   gst_object_unref (tmpl);
498   gst_element_add_pad (GST_ELEMENT_CAST (encode_bin), encode_bin->srcpad);
499 }
500
501 static void
502 gst_encode_bin_set_property (GObject * object, guint prop_id,
503     const GValue * value, GParamSpec * pspec)
504 {
505   GstEncodeBin *ebin = (GstEncodeBin *) object;
506
507   switch (prop_id) {
508     case PROP_PROFILE:
509       gst_encode_bin_set_profile (ebin,
510           (GstEncodingProfile *) g_value_get_object (value));
511       break;
512     case PROP_QUEUE_BUFFERS_MAX:
513       ebin->queue_buffers_max = g_value_get_uint (value);
514       break;
515     case PROP_QUEUE_BYTES_MAX:
516       ebin->queue_bytes_max = g_value_get_uint (value);
517       break;
518     case PROP_QUEUE_TIME_MAX:
519       ebin->queue_time_max = g_value_get_uint64 (value);
520       break;
521     case PROP_AUDIO_JITTER_TOLERANCE:
522       ebin->tolerance = g_value_get_uint64 (value);
523       break;
524     case PROP_AVOID_REENCODING:
525       ebin->avoid_reencoding = g_value_get_boolean (value);
526       break;
527     case PROP_FLAGS:
528       ebin->flags = g_value_get_flags (value);
529       break;
530     default:
531       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
532       break;
533   }
534 }
535
536 static void
537 gst_encode_bin_get_property (GObject * object, guint prop_id,
538     GValue * value, GParamSpec * pspec)
539 {
540   GstEncodeBin *ebin = (GstEncodeBin *) object;
541
542   switch (prop_id) {
543     case PROP_PROFILE:
544       g_value_set_object (value, (GObject *) ebin->profile);
545       break;
546     case PROP_QUEUE_BUFFERS_MAX:
547       g_value_set_uint (value, ebin->queue_buffers_max);
548       break;
549     case PROP_QUEUE_BYTES_MAX:
550       g_value_set_uint (value, ebin->queue_bytes_max);
551       break;
552     case PROP_QUEUE_TIME_MAX:
553       g_value_set_uint64 (value, ebin->queue_time_max);
554       break;
555     case PROP_AUDIO_JITTER_TOLERANCE:
556       g_value_set_uint64 (value, ebin->tolerance);
557       break;
558     case PROP_AVOID_REENCODING:
559       g_value_set_boolean (value, ebin->avoid_reencoding);
560       break;
561     case PROP_FLAGS:
562       g_value_set_flags (value, ebin->flags);
563       break;
564     default:
565       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
566       break;
567   }
568 }
569
570 static inline gboolean
571 are_raw_caps (const GstCaps * caps)
572 {
573   GstCaps *raw = gst_static_caps_get (&default_raw_caps);
574
575   if (gst_caps_can_intersect (caps, raw)) {
576     gst_caps_unref (raw);
577     return TRUE;
578   }
579   gst_caps_unref (raw);
580   return FALSE;
581 }
582
583 /* Returns the number of time a given stream profile is currently used
584  * in encodebin */
585 static inline guint
586 stream_profile_used_count (GstEncodeBin * ebin, GstEncodingProfile * sprof)
587 {
588   guint nbprofused = 0;
589   GList *tmp;
590
591   for (tmp = ebin->streams; tmp; tmp = tmp->next) {
592     StreamGroup *sgroup = (StreamGroup *) tmp->data;
593
594     if (sgroup->profile == sprof)
595       nbprofused++;
596   }
597
598   return nbprofused;
599 }
600
601 static inline GstEncodingProfile *
602 next_unused_stream_profile (GstEncodeBin * ebin, GType ptype, GstCaps * caps)
603 {
604   GST_DEBUG_OBJECT (ebin, "ptype:%s, caps:%" GST_PTR_FORMAT,
605       g_type_name (ptype), caps);
606
607   if (G_UNLIKELY (ptype == G_TYPE_NONE && caps != NULL)) {
608     /* Identify the profile type based on raw caps */
609     if (gst_caps_can_intersect (ebin->raw_video_caps, caps))
610       ptype = GST_TYPE_ENCODING_VIDEO_PROFILE;
611     else if (gst_caps_can_intersect (ebin->raw_audio_caps, caps))
612       ptype = GST_TYPE_ENCODING_AUDIO_PROFILE;
613     /* else if (gst_caps_can_intersect (ebin->raw_text_caps, caps)) */
614     /*   ptype = GST_TYPE_ENCODING_TEXT_PROFILE; */
615     GST_DEBUG_OBJECT (ebin, "Detected profile type as being %s",
616         g_type_name (ptype));
617   }
618
619   if (GST_IS_ENCODING_CONTAINER_PROFILE (ebin->profile)) {
620     const GList *tmp;
621
622     for (tmp =
623         gst_encoding_container_profile_get_profiles
624         (GST_ENCODING_CONTAINER_PROFILE (ebin->profile)); tmp;
625         tmp = tmp->next) {
626       GstEncodingProfile *sprof = (GstEncodingProfile *) tmp->data;
627
628       /* Pick an available Stream profile for which:
629        * * either it is of the compatibly raw type,
630        * * OR we can pass it through directly without encoding
631        */
632       if (G_TYPE_FROM_INSTANCE (sprof) == ptype) {
633         guint presence = gst_encoding_profile_get_presence (sprof);
634         GST_DEBUG ("Found a stream profile with the same type");
635         if ((presence == 0)
636             || (presence > stream_profile_used_count (ebin, sprof)))
637           return sprof;
638       } else if ((caps != NULL) && (ptype == G_TYPE_NONE)) {
639         GstCaps *outcaps;
640         gboolean res;
641
642         outcaps = gst_encoding_profile_get_input_caps (sprof);
643         GST_DEBUG ("Unknown stream, seeing if it's compatible with %"
644             GST_PTR_FORMAT, outcaps);
645         res = gst_caps_can_intersect (outcaps, caps);
646         gst_caps_unref (outcaps);
647
648         if (res)
649           return sprof;
650       }
651     }
652   }
653
654   return NULL;
655 }
656
657 static GstPad *
658 request_pad_for_stream (GstEncodeBin * encodebin, GType ptype,
659     const gchar * name, GstCaps * caps)
660 {
661   StreamGroup *sgroup;
662   GstEncodingProfile *sprof;
663
664   GST_DEBUG_OBJECT (encodebin, "name:%s caps:%" GST_PTR_FORMAT, name, caps);
665
666   /* Figure out if we have a unused GstEncodingProfile we can use for
667    * these caps */
668   sprof = next_unused_stream_profile (encodebin, ptype, caps);
669
670   if (G_UNLIKELY (sprof == NULL))
671     goto no_stream_profile;
672
673   sgroup = _create_stream_group (encodebin, sprof, name, caps);
674   if (G_UNLIKELY (sgroup == NULL))
675     goto no_stream_group;
676
677   return sgroup->ghostpad;
678
679 no_stream_profile:
680   {
681     GST_WARNING_OBJECT (encodebin, "Couldn't find a compatible stream profile");
682     return NULL;
683   }
684
685 no_stream_group:
686   {
687     GST_WARNING_OBJECT (encodebin, "Couldn't create a StreamGroup");
688     return NULL;
689   }
690 }
691
692 static GstPad *
693 gst_encode_bin_request_new_pad (GstElement * element,
694     GstPadTemplate * templ, const gchar * name, const GstCaps * caps)
695 {
696   GstEncodeBin *ebin = (GstEncodeBin *) element;
697   GstPad *res = NULL;
698
699   GST_DEBUG_OBJECT (element, "templ:%s, name:%s", templ->name_template, name);
700
701   /* Identify the stream group */
702   if (caps != NULL) {
703     res = request_pad_for_stream (ebin, G_TYPE_NONE, name, (GstCaps *) caps);
704   }
705
706   if (res == NULL) {
707     GType ptype = G_TYPE_NONE;
708
709     if (!strcmp (templ->name_template, "video_%u"))
710       ptype = GST_TYPE_ENCODING_VIDEO_PROFILE;
711     else if (!strcmp (templ->name_template, "audio_%u"))
712       ptype = GST_TYPE_ENCODING_AUDIO_PROFILE;
713     /* else if (!strcmp (templ->name_template, "text_%u")) */
714     /*   ptype = GST_TYPE_ENCODING_TEXT_PROFILE; */
715
716     /* FIXME : Check uniqueness of pad */
717     /* FIXME : Check that the requested number is the last one, and if not,
718      * update the last_pad_id variable so that we don't create a pad with
719      * the same name/number in the future */
720
721     res = request_pad_for_stream (ebin, ptype, name, NULL);
722   }
723
724   return res;
725 }
726
727 static GstPad *
728 gst_encode_bin_request_pad_signal (GstEncodeBin * encodebin, GstCaps * caps)
729 {
730   GstPad *pad = request_pad_for_stream (encodebin, G_TYPE_NONE, NULL, caps);
731
732   return pad ? GST_PAD_CAST (gst_object_ref (pad)) : NULL;
733 }
734
735 static inline StreamGroup *
736 find_stream_group_from_pad (GstEncodeBin * ebin, GstPad * pad)
737 {
738   GList *tmp;
739
740   for (tmp = ebin->streams; tmp; tmp = tmp->next) {
741     StreamGroup *sgroup = (StreamGroup *) tmp->data;
742     if (G_UNLIKELY (sgroup->ghostpad == pad))
743       return sgroup;
744   }
745
746   return NULL;
747 }
748
749 static void
750 gst_encode_bin_release_pad (GstElement * element, GstPad * pad)
751 {
752   GstEncodeBin *ebin = (GstEncodeBin *) element;
753   StreamGroup *sgroup;
754
755   /* Find the associated StreamGroup */
756
757   sgroup = find_stream_group_from_pad (ebin, pad);
758   if (G_UNLIKELY (sgroup == NULL))
759     goto no_stream_group;
760
761   /* Release objects/data associated with the StreamGroup */
762   stream_group_remove (ebin, sgroup);
763
764   return;
765
766 no_stream_group:
767   {
768     GST_WARNING_OBJECT (ebin, "Couldn't find corresponding StreamGroup");
769     return;
770   }
771 }
772
773 /* Create a parser for the given stream profile */
774 static inline GstElement *
775 _get_parser (GstEncodeBin * ebin, GstEncodingProfile * sprof)
776 {
777   GList *parsers1, *parsers, *tmp;
778   GstElement *parser = NULL;
779   GstElementFactory *parserfact = NULL;
780   const GstCaps *format;
781
782   format = gst_encoding_profile_get_format (sprof);
783
784   GST_DEBUG ("Getting list of parsers for format %" GST_PTR_FORMAT, format);
785
786   /* FIXME : requesting twice the parsers twice is a bit ugly, we should
787    * have a method to request on more than one condition */
788   parsers1 =
789       gst_element_factory_list_filter (ebin->parsers, format,
790       GST_PAD_SRC, FALSE);
791   parsers =
792       gst_element_factory_list_filter (parsers1, format, GST_PAD_SINK, FALSE);
793   gst_plugin_feature_list_free (parsers1);
794
795   if (G_UNLIKELY (parsers == NULL)) {
796     GST_DEBUG ("Couldn't find any compatible parsers");
797     return NULL;
798   }
799
800   for (tmp = parsers; tmp; tmp = tmp->next) {
801     /* FIXME : We're only picking the first one so far */
802     /* FIXME : signal the user if he wants this */
803     parserfact = (GstElementFactory *) tmp->data;
804     break;
805   }
806
807   if (parserfact)
808     parser = gst_element_factory_create (parserfact, NULL);
809
810   gst_plugin_feature_list_free (parsers);
811
812   return parser;
813 }
814
815 static GstElement *
816 _create_element_and_set_preset (GstElementFactory * factory,
817     const gchar * preset, const gchar * name)
818 {
819   GstElement *res = NULL;
820
821   GST_DEBUG ("Creating element from factory %s", GST_OBJECT_NAME (factory));
822   res = gst_element_factory_create (factory, name);
823   if (preset && GST_IS_PRESET (res) &&
824       !gst_preset_load_preset (GST_PRESET (res), preset)) {
825     GST_WARNING ("Couldn't set preset [%s] on element [%s]",
826         preset, GST_OBJECT_NAME (factory));
827     gst_object_unref (res);
828     res = NULL;
829   }
830
831   return res;
832 }
833
834 /* Create the encoder for the given stream profile */
835 static inline GstElement *
836 _get_encoder (GstEncodeBin * ebin, GstEncodingProfile * sprof)
837 {
838   GList *encoders, *tmp;
839   GstElement *encoder = NULL;
840   GstElementFactory *encoderfact = NULL;
841   const GstCaps *format;
842   const gchar *preset;
843
844   format = gst_encoding_profile_get_format (sprof);
845   preset = gst_encoding_profile_get_preset (sprof);
846
847   GST_DEBUG ("Getting list of encoders for format %" GST_PTR_FORMAT, format);
848
849   /* If stream caps are raw, return identity */
850   if (G_UNLIKELY (are_raw_caps (format))) {
851     GST_DEBUG ("Stream format is raw, returning identity as the encoder");
852     encoder = gst_element_factory_make ("identity", NULL);
853     goto beach;
854   }
855
856   encoders =
857       gst_element_factory_list_filter (ebin->encoders, format,
858       GST_PAD_SRC, FALSE);
859
860   if (G_UNLIKELY (encoders == NULL)) {
861     GST_DEBUG ("Couldn't find any compatible encoders");
862     goto beach;
863   }
864
865   for (tmp = encoders; tmp; tmp = tmp->next) {
866     encoderfact = (GstElementFactory *) tmp->data;
867     if ((encoder = _create_element_and_set_preset (encoderfact, preset, NULL)))
868       break;
869   }
870
871   gst_plugin_feature_list_free (encoders);
872
873 beach:
874   return encoder;
875 }
876
877 static GstPad *
878 local_element_request_pad (GstElement * element, GstPadTemplate * templ,
879     const gchar * name, const GstCaps * caps)
880 {
881   GstPad *newpad = NULL;
882   GstElementClass *oclass;
883
884   oclass = GST_ELEMENT_GET_CLASS (element);
885
886   if (oclass->request_new_pad)
887     newpad = (oclass->request_new_pad) (element, templ, name, caps);
888
889   if (newpad)
890     gst_object_ref (newpad);
891
892   return newpad;
893 }
894
895 static GstPad *
896 gst_element_get_pad_from_template (GstElement * element, GstPadTemplate * templ)
897 {
898   GstPad *ret = NULL;
899   GstPadPresence presence;
900
901   /* If this function is ever exported, we need check the validity of `element'
902    * and `templ', and to make sure the template actually belongs to the
903    * element. */
904
905   presence = GST_PAD_TEMPLATE_PRESENCE (templ);
906
907   switch (presence) {
908     case GST_PAD_ALWAYS:
909     case GST_PAD_SOMETIMES:
910       ret = gst_element_get_static_pad (element, templ->name_template);
911       if (!ret && presence == GST_PAD_ALWAYS)
912         g_warning
913             ("Element %s has an ALWAYS template %s, but no pad of the same name",
914             GST_OBJECT_NAME (element), templ->name_template);
915       break;
916
917     case GST_PAD_REQUEST:
918       ret = gst_element_request_pad (element, templ, NULL, NULL);
919       break;
920   }
921
922   return ret;
923 }
924
925 /* FIXME : Improve algorithm for finding compatible muxer sink pad */
926 static inline GstPad *
927 get_compatible_muxer_sink_pad (GstEncodeBin * ebin, GstElement * encoder,
928     GstCaps * sinkcaps)
929 {
930   GstPad *sinkpad;
931   GstPadTemplate *srctempl = NULL;
932   GstPadTemplate *sinktempl;
933
934   if (encoder) {
935     GstPad *srcpad;
936     srcpad = gst_element_get_static_pad (encoder, "src");
937
938     srctempl = gst_pad_get_pad_template (srcpad);
939
940     GST_DEBUG_OBJECT (ebin,
941         "Attempting to find pad from muxer %s compatible with %s:%s",
942         GST_ELEMENT_NAME (ebin->muxer), GST_DEBUG_PAD_NAME (srcpad));
943
944     gst_object_unref (srcpad);
945     sinktempl = gst_element_get_compatible_pad_template (ebin->muxer, srctempl);
946     gst_object_unref (srctempl);
947   } else {
948     srctempl =
949         gst_pad_template_new ("whatever", GST_PAD_SRC, GST_PAD_ALWAYS,
950         sinkcaps);
951     g_assert (srctempl != NULL);
952     sinktempl = gst_element_get_compatible_pad_template (ebin->muxer, srctempl);
953     g_object_unref (srctempl);
954   }
955
956   if (G_UNLIKELY (sinktempl == NULL))
957     goto no_template;
958
959   sinkpad = gst_element_get_pad_from_template (ebin->muxer, sinktempl);
960
961   return sinkpad;
962
963 no_template:
964   {
965     GST_WARNING_OBJECT (ebin, "No compatible pad available on muxer");
966     return NULL;
967   }
968 }
969
970 static gboolean
971 _has_class (GstElement * element, const gchar * classname)
972 {
973   GstElementClass *klass;
974   const gchar *value;
975
976   klass = GST_ELEMENT_GET_CLASS (element);
977   value = gst_element_class_get_metadata (klass, GST_ELEMENT_METADATA_KLASS);
978
979   return strstr (value, classname) != NULL;
980 }
981
982 /* FIXME : Add handling of streams that don't need encoding  */
983 /* FIXME : Add handling of streams that don't require conversion elements */
984 /*
985  * Create the elements, StreamGroup, add the sink pad, link it to the muxer
986  *
987  * sinkpadname: If non-NULL, that name will be assigned to the sink ghost pad
988  * sinkcaps: If non-NULL will be used to figure out how to setup the group */
989 static StreamGroup *
990 _create_stream_group (GstEncodeBin * ebin, GstEncodingProfile * sprof,
991     const gchar * sinkpadname, GstCaps * sinkcaps)
992 {
993   StreamGroup *sgroup = NULL;
994   GstPad *sinkpad, *srcpad, *muxerpad = NULL;
995   /* Element we will link to the encoder */
996   GstElement *last = NULL;
997   GList *tmp, *tosync = NULL;
998   GstCaps *format, *restriction;
999   const gchar *missing_element_name;
1000
1001   format = gst_encoding_profile_get_format (sprof);
1002   restriction = gst_encoding_profile_get_restriction (sprof);
1003
1004   GST_DEBUG ("Creating group. format %" GST_PTR_FORMAT ", for caps %"
1005       GST_PTR_FORMAT, format, sinkcaps);
1006   GST_DEBUG ("avoid_reencoding:%d", ebin->avoid_reencoding);
1007
1008   sgroup = g_slice_new0 (StreamGroup);
1009   sgroup->ebin = ebin;
1010   sgroup->profile = sprof;
1011
1012   /* NOTE for people reading this code:
1013    * 
1014    * We construct the group starting by the furthest downstream element
1015    * and making our way up adding/syncing/linking as we go.
1016    *
1017    * There are two parallel paths:
1018    * * One for raw data which goes through converters and encoders
1019    * * One for already encoded data
1020    */
1021
1022   /* Exception to the rule above:
1023    * We check if we have an available encoder so we can abort early */
1024   /* FIXME : What if we only want to do passthrough ??? */
1025   GST_LOG ("Checking for encoder availability");
1026   sgroup->encoder = _get_encoder (ebin, sprof);
1027   if (G_UNLIKELY (sgroup->encoder == NULL))
1028     goto no_encoder;
1029
1030   /* Muxer.
1031    * If we are handling a container profile, figure out if the muxer has a
1032    * sinkpad compatible with the selected profile */
1033   if (ebin->muxer) {
1034     muxerpad = get_compatible_muxer_sink_pad (ebin, NULL, format);
1035     if (G_UNLIKELY (muxerpad == NULL))
1036       goto no_muxer_pad;
1037
1038   }
1039
1040   /* Output Queue.
1041    * We only use a 1buffer long queue here, the actual queueing will be done
1042    * in the input queue */
1043   last = sgroup->outqueue = gst_element_factory_make ("queue", NULL);
1044   g_object_set (sgroup->outqueue, "max-size-buffers", (guint32) 1,
1045       "max-size-bytes", (guint32) 0, "max-size-time", (guint64) 0,
1046       "silent", TRUE, NULL);
1047
1048   gst_bin_add (GST_BIN (ebin), sgroup->outqueue);
1049   tosync = g_list_append (tosync, sgroup->outqueue);
1050   srcpad = gst_element_get_static_pad (sgroup->outqueue, "src");
1051   if (muxerpad) {
1052     if (G_UNLIKELY (fast_pad_link (srcpad, muxerpad) != GST_PAD_LINK_OK)) {
1053       goto muxer_link_failure;
1054     }
1055     gst_object_unref (muxerpad);
1056   } else {
1057     gst_ghost_pad_set_target (GST_GHOST_PAD (ebin->srcpad), srcpad);
1058   }
1059   gst_object_unref (srcpad);
1060
1061   /* Check if we need a formatter
1062    * If we have no muxer or
1063    * if the muxer isn't a formatter and doesn't implement the tagsetter interface
1064    */
1065   if (!ebin->muxer || (!GST_IS_TAG_SETTER (ebin->muxer)
1066           && !_has_class (ebin->muxer, "Formatter"))) {
1067     sgroup->formatter = _get_formatter (ebin, sprof);
1068     if (sgroup->formatter) {
1069       GST_DEBUG ("Adding formatter for %" GST_PTR_FORMAT, format);
1070
1071       gst_bin_add (GST_BIN (ebin), sgroup->formatter);
1072       tosync = g_list_append (tosync, sgroup->formatter);
1073       if (G_UNLIKELY (!fast_element_link (sgroup->formatter, last)))
1074         goto formatter_link_failure;
1075       last = sgroup->formatter;
1076     }
1077   }
1078
1079
1080   /* Output capsfilter
1081    * This will receive the format caps from the streamprofile */
1082   GST_DEBUG ("Adding output capsfilter for %" GST_PTR_FORMAT, format);
1083   sgroup->outfilter = gst_element_factory_make ("capsfilter", NULL);
1084   g_object_set (sgroup->outfilter, "caps", format, NULL);
1085
1086   gst_bin_add (GST_BIN (ebin), sgroup->outfilter);
1087   tosync = g_list_append (tosync, sgroup->outfilter);
1088   if (G_UNLIKELY (!fast_element_link (sgroup->outfilter, last)))
1089     goto outfilter_link_failure;
1090   last = sgroup->outfilter;
1091
1092
1093   sgroup->parser = _get_parser (ebin, sprof);
1094
1095   if (sgroup->parser != NULL) {
1096     GST_DEBUG ("Got a parser %s", GST_ELEMENT_NAME (sgroup->parser));
1097     gst_bin_add (GST_BIN (ebin), sgroup->parser);
1098     tosync = g_list_append (tosync, sgroup->parser);
1099     if (G_UNLIKELY (!gst_element_link (sgroup->parser, last)))
1100       goto parser_link_failure;
1101     last = sgroup->parser;
1102   }
1103
1104   /* Stream combiner */
1105   sgroup->combiner = g_object_new (GST_TYPE_STREAM_COMBINER, NULL);
1106
1107   gst_bin_add (GST_BIN (ebin), sgroup->combiner);
1108   tosync = g_list_append (tosync, sgroup->combiner);
1109   if (G_UNLIKELY (!fast_element_link (sgroup->combiner, last)))
1110     goto combiner_link_failure;
1111
1112
1113   /* Stream splitter */
1114   sgroup->splitter = g_object_new (GST_TYPE_STREAM_SPLITTER, NULL);
1115
1116   gst_bin_add (GST_BIN (ebin), sgroup->splitter);
1117   tosync = g_list_append (tosync, sgroup->splitter);
1118
1119   /* Input queue
1120    * FIXME : figure out what max-size to use for the input queue */
1121   sgroup->inqueue = gst_element_factory_make ("queue", NULL);
1122   g_object_set (sgroup->inqueue, "max-size-buffers",
1123       (guint32) ebin->queue_buffers_max, "max-size-bytes",
1124       (guint32) ebin->queue_bytes_max, "max-size-time",
1125       (guint64) ebin->queue_time_max, "silent", TRUE, NULL);
1126
1127   gst_bin_add (GST_BIN (ebin), sgroup->inqueue);
1128   tosync = g_list_append (tosync, sgroup->inqueue);
1129   if (G_UNLIKELY (!fast_element_link (sgroup->inqueue, sgroup->splitter)))
1130     goto splitter_link_failure;
1131
1132   /* Expose input queue sink pad as ghostpad */
1133   sinkpad = gst_element_get_static_pad (sgroup->inqueue, "sink");
1134   if (sinkpadname == NULL) {
1135     gchar *pname =
1136         g_strdup_printf ("%s_%u", gst_encoding_profile_get_type_nick (sprof),
1137         ebin->last_pad_id++);
1138     GST_DEBUG ("Adding ghost pad %s", pname);
1139     sgroup->ghostpad = gst_ghost_pad_new (pname, sinkpad);
1140     g_free (pname);
1141   } else
1142     sgroup->ghostpad = gst_ghost_pad_new (sinkpadname, sinkpad);
1143   gst_object_unref (sinkpad);
1144
1145
1146   /* Path 1 : Already-encoded data */
1147   sinkpad =
1148       local_element_request_pad (sgroup->combiner, NULL, "passthroughsink",
1149       NULL);
1150   if (G_UNLIKELY (sinkpad == NULL))
1151     goto no_combiner_sinkpad;
1152
1153   if (ebin->avoid_reencoding) {
1154     GstCaps *tmpcaps;
1155
1156     GST_DEBUG ("Asked to use Smart Encoder");
1157     sgroup->smartencoder = g_object_new (GST_TYPE_SMART_ENCODER, NULL);
1158
1159     /* Check if stream format is compatible */
1160     srcpad = gst_element_get_static_pad (sgroup->smartencoder, "src");
1161     tmpcaps = gst_pad_query_caps (srcpad, NULL);
1162     if (!gst_caps_can_intersect (tmpcaps, format)) {
1163       GST_DEBUG ("We don't have a smart encoder for the stream format");
1164       gst_object_unref (sgroup->smartencoder);
1165       sgroup->smartencoder = NULL;
1166     } else {
1167       gst_bin_add ((GstBin *) ebin, sgroup->smartencoder);
1168       fast_pad_link (srcpad, sinkpad);
1169       tosync = g_list_append (tosync, sgroup->smartencoder);
1170       sinkpad = gst_element_get_static_pad (sgroup->smartencoder, "sink");
1171     }
1172     gst_caps_unref (tmpcaps);
1173     g_object_unref (srcpad);
1174   }
1175
1176   srcpad =
1177       local_element_request_pad (sgroup->splitter, NULL, "passthroughsrc",
1178       NULL);
1179   if (G_UNLIKELY (srcpad == NULL))
1180     goto no_splitter_srcpad;
1181
1182   /* Go straight to splitter */
1183   if (G_UNLIKELY (fast_pad_link (srcpad, sinkpad) != GST_PAD_LINK_OK))
1184     goto passthrough_link_failure;
1185   g_object_unref (sinkpad);
1186   g_object_unref (srcpad);
1187
1188
1189   /* Path 2 : Conversion / Encoding */
1190
1191   /* 1. Create the encoder */
1192   GST_LOG ("Adding encoder");
1193   last = sgroup->encoder;
1194   gst_bin_add ((GstBin *) ebin, sgroup->encoder);
1195   tosync = g_list_append (tosync, sgroup->encoder);
1196
1197   sinkpad =
1198       local_element_request_pad (sgroup->combiner, NULL, "encodingsink", NULL);
1199   if (G_UNLIKELY (sinkpad == NULL))
1200     goto no_combiner_sinkpad;
1201   srcpad = gst_element_get_static_pad (sgroup->encoder, "src");
1202   if (G_UNLIKELY (fast_pad_link (srcpad, sinkpad) != GST_PAD_LINK_OK))
1203     goto encoder_link_failure;
1204   g_object_unref (sinkpad);
1205   g_object_unref (srcpad);
1206
1207
1208   /* 3. Create the conversion/restriction elements */
1209   /* 3.1. capsfilter */
1210   if (restriction && !gst_caps_is_any (restriction)) {
1211     GST_LOG ("Adding capsfilter for restriction caps : %" GST_PTR_FORMAT,
1212         restriction);
1213
1214     last = sgroup->capsfilter = gst_element_factory_make ("capsfilter", NULL);
1215     g_object_set (sgroup->capsfilter, "caps", restriction, NULL);
1216     gst_bin_add ((GstBin *) ebin, sgroup->capsfilter);
1217     tosync = g_list_append (tosync, sgroup->capsfilter);
1218     fast_element_link (sgroup->capsfilter, sgroup->encoder);
1219   }
1220
1221   /* 3.2. restriction elements */
1222   /* FIXME : Once we have properties for specific converters, use those */
1223   if (GST_IS_ENCODING_VIDEO_PROFILE (sprof)) {
1224     const gboolean native_video =
1225         ! !(ebin->flags & GST_ENC_FLAG_NO_VIDEO_CONVERSION);
1226     GstElement *cspace = NULL, *scale, *vrate, *cspace2 = NULL;
1227
1228     GST_LOG ("Adding conversion elements for video stream");
1229
1230     if (!native_video) {
1231       cspace = gst_element_factory_make ("videoconvert", NULL);
1232       scale = gst_element_factory_make ("videoscale", NULL);
1233       if (!scale) {
1234         missing_element_name = "videoscale";
1235         goto missing_element;
1236       }
1237       /* 4-tap scaling and black borders */
1238       g_object_set (scale, "method", 2, "add-borders", TRUE, NULL);
1239       cspace2 = gst_element_factory_make ("videoconvert", NULL);
1240
1241       if (!cspace || !cspace2) {
1242         missing_element_name = "videoconvert";
1243         goto missing_element;
1244       }
1245
1246       gst_bin_add_many ((GstBin *) ebin, cspace, scale, cspace2, NULL);
1247       tosync = g_list_append (tosync, cspace);
1248       tosync = g_list_append (tosync, scale);
1249       tosync = g_list_append (tosync, cspace2);
1250
1251       sgroup->converters = g_list_prepend (sgroup->converters, cspace);
1252       sgroup->converters = g_list_prepend (sgroup->converters, scale);
1253       sgroup->converters = g_list_prepend (sgroup->converters, cspace2);
1254
1255       if (!fast_element_link (cspace, scale) ||
1256           !fast_element_link (scale, cspace2))
1257         goto converter_link_failure;
1258     }
1259
1260     if (!gst_encoding_video_profile_get_variableframerate
1261         (GST_ENCODING_VIDEO_PROFILE (sprof))) {
1262       vrate = gst_element_factory_make ("videorate", NULL);
1263       if (!vrate) {
1264         missing_element_name = "videorate";
1265         goto missing_element;
1266       }
1267
1268       gst_bin_add ((GstBin *) ebin, vrate);
1269       tosync = g_list_prepend (tosync, vrate);
1270       sgroup->converters = g_list_prepend (sgroup->converters, vrate);
1271
1272       if ((!native_video && !fast_element_link (cspace2, vrate))
1273           || !fast_element_link (vrate, last))
1274         goto converter_link_failure;
1275
1276       if (!native_video)
1277         last = cspace;
1278       else
1279         last = vrate;
1280     } else if (!native_video) {
1281       if (!fast_element_link (cspace2, last))
1282         goto converter_link_failure;
1283       last = cspace;
1284     }
1285
1286   } else if (GST_IS_ENCODING_AUDIO_PROFILE (sprof)
1287       && !(ebin->flags & GST_ENC_FLAG_NO_AUDIO_CONVERSION)) {
1288     GstElement *aconv, *ares, *arate, *aconv2;
1289
1290     GST_LOG ("Adding conversion elements for audio stream");
1291
1292     arate = gst_element_factory_make ("audiorate", NULL);
1293     g_object_set (arate, "tolerance", (guint64) ebin->tolerance, NULL);
1294     if (!arate) {
1295       missing_element_name = "audiorate";
1296       goto missing_element;
1297     }
1298     aconv = gst_element_factory_make ("audioconvert", NULL);
1299     aconv2 = gst_element_factory_make ("audioconvert", NULL);
1300     ares = gst_element_factory_make ("audioresample", NULL);
1301     if (!aconv || !aconv2) {
1302       missing_element_name = "audioconvert";
1303       goto missing_element;
1304     }
1305     if (!ares) {
1306       missing_element_name = "audioresample";
1307       goto missing_element;
1308     }
1309
1310     gst_bin_add_many ((GstBin *) ebin, arate, aconv, ares, aconv2, NULL);
1311     tosync = g_list_append (tosync, arate);
1312     tosync = g_list_append (tosync, aconv);
1313     tosync = g_list_append (tosync, ares);
1314     tosync = g_list_append (tosync, aconv2);
1315     if (!fast_element_link (arate, aconv) ||
1316         !fast_element_link (aconv, ares) ||
1317         !fast_element_link (ares, aconv2) || !fast_element_link (aconv2, last))
1318       goto converter_link_failure;
1319
1320     sgroup->converters = g_list_prepend (sgroup->converters, arate);
1321     sgroup->converters = g_list_prepend (sgroup->converters, aconv);
1322     sgroup->converters = g_list_prepend (sgroup->converters, ares);
1323     sgroup->converters = g_list_prepend (sgroup->converters, aconv2);
1324
1325     last = arate;
1326   }
1327
1328   /* Link to stream splitter */
1329   sinkpad = gst_element_get_static_pad (last, "sink");
1330   srcpad =
1331       local_element_request_pad (sgroup->splitter, NULL, "encodingsrc", NULL);
1332   if (G_UNLIKELY (srcpad == NULL))
1333     goto no_splitter_srcpad;
1334   if (G_UNLIKELY (fast_pad_link (srcpad, sinkpad) != GST_PAD_LINK_OK))
1335     goto splitter_encoding_failure;
1336   g_object_unref (sinkpad);
1337   g_object_unref (srcpad);
1338
1339   /* End of Stream 2 setup */
1340
1341   /* Sync all elements to parent state */
1342   for (tmp = tosync; tmp; tmp = tmp->next)
1343     gst_element_sync_state_with_parent ((GstElement *) tmp->data);
1344   g_list_free (tosync);
1345
1346   /* Add ghostpad */
1347   GST_DEBUG ("Adding ghostpad %s:%s", GST_DEBUG_PAD_NAME (sgroup->ghostpad));
1348   gst_pad_set_active (sgroup->ghostpad, TRUE);
1349   gst_element_add_pad ((GstElement *) ebin, sgroup->ghostpad);
1350
1351   /* Add StreamGroup to our list of streams */
1352
1353   GST_DEBUG
1354       ("Done creating elements, adding StreamGroup to our controlled stream list");
1355
1356   ebin->streams = g_list_prepend (ebin->streams, sgroup);
1357
1358   if (format)
1359     gst_caps_unref (format);
1360   if (restriction)
1361     gst_caps_unref (restriction);
1362
1363   return sgroup;
1364
1365 splitter_encoding_failure:
1366   GST_ERROR_OBJECT (ebin, "Error linking splitter to encoding stream");
1367   goto cleanup;
1368
1369 no_encoder:
1370   GST_ERROR_OBJECT (ebin, "Couldn't create encoder for format %" GST_PTR_FORMAT,
1371       format);
1372   /* missing plugin support */
1373   gst_element_post_message (GST_ELEMENT_CAST (ebin),
1374       gst_missing_encoder_message_new (GST_ELEMENT_CAST (ebin), format));
1375   GST_ELEMENT_ERROR (ebin, CORE, MISSING_PLUGIN, (NULL),
1376       ("Couldn't create encoder for format %" GST_PTR_FORMAT, format));
1377   goto cleanup;
1378
1379 no_muxer_pad:
1380   GST_ERROR_OBJECT (ebin,
1381       "Couldn't find a compatible muxer pad to link encoder to");
1382   goto cleanup;
1383
1384 missing_element:
1385   gst_element_post_message (GST_ELEMENT_CAST (ebin),
1386       gst_missing_element_message_new (GST_ELEMENT_CAST (ebin),
1387           missing_element_name));
1388   GST_ELEMENT_ERROR (ebin, CORE, MISSING_PLUGIN,
1389       (_("Missing element '%s' - check your GStreamer installation."),
1390           missing_element_name), (NULL));
1391   goto cleanup;
1392
1393 encoder_link_failure:
1394   GST_ERROR_OBJECT (ebin, "Failed to link the encoder");
1395   goto cleanup;
1396
1397 muxer_link_failure:
1398   GST_ERROR_OBJECT (ebin, "Couldn't link encoder to muxer");
1399   goto cleanup;
1400
1401 formatter_link_failure:
1402   GST_ERROR_OBJECT (ebin, "Couldn't link output filter to output queue");
1403   goto cleanup;
1404
1405 outfilter_link_failure:
1406   GST_ERROR_OBJECT (ebin,
1407       "Couldn't link output filter to output queue/formatter");
1408   goto cleanup;
1409
1410 passthrough_link_failure:
1411   GST_ERROR_OBJECT (ebin, "Failed linking splitter in passthrough mode");
1412   goto cleanup;
1413
1414 no_splitter_srcpad:
1415   GST_ERROR_OBJECT (ebin, "Couldn't get a source pad from the splitter");
1416   goto cleanup;
1417
1418 no_combiner_sinkpad:
1419   GST_ERROR_OBJECT (ebin, "Couldn't get a sink pad from the combiner");
1420   goto cleanup;
1421
1422 splitter_link_failure:
1423   GST_ERROR_OBJECT (ebin, "Failure linking to the splitter");
1424   goto cleanup;
1425
1426 combiner_link_failure:
1427   GST_ERROR_OBJECT (ebin, "Failure linking to the combiner");
1428   goto cleanup;
1429
1430 parser_link_failure:
1431   GST_ERROR_OBJECT (ebin, "Failure linking the parser");
1432   goto cleanup;
1433
1434 converter_link_failure:
1435   GST_ERROR_OBJECT (ebin, "Failure linking the video converters");
1436   goto cleanup;
1437
1438 cleanup:
1439   /* FIXME : Actually properly cleanup everything */
1440   if (format)
1441     gst_caps_unref (format);
1442   if (restriction)
1443     gst_caps_unref (restriction);
1444   g_slice_free (StreamGroup, sgroup);
1445   return NULL;
1446 }
1447
1448 static gboolean
1449 _gst_caps_match_foreach (GQuark field_id, const GValue * value, gpointer data)
1450 {
1451   GstStructure *structure = data;
1452   const GValue *other_value = gst_structure_id_get_value (structure, field_id);
1453
1454   if (G_UNLIKELY (other_value == NULL))
1455     return FALSE;
1456   if (gst_value_compare (value, other_value) == GST_VALUE_EQUAL) {
1457     return TRUE;
1458   }
1459
1460   return FALSE;
1461 }
1462
1463 /*
1464  * checks that there is at least one structure on caps_a that has
1465  * all its fields exactly the same as one structure on caps_b
1466  */
1467 static gboolean
1468 _gst_caps_match (const GstCaps * caps_a, const GstCaps * caps_b)
1469 {
1470   gint i, j;
1471   gboolean res = FALSE;
1472
1473   for (i = 0; i < gst_caps_get_size (caps_a); i++) {
1474     GstStructure *structure_a = gst_caps_get_structure (caps_a, i);
1475     for (j = 0; j < gst_caps_get_size (caps_b); j++) {
1476       GstStructure *structure_b = gst_caps_get_structure (caps_b, j);
1477
1478       res = gst_structure_foreach (structure_a, _gst_caps_match_foreach,
1479           structure_b);
1480       if (res)
1481         goto end;
1482     }
1483   }
1484 end:
1485   return res;
1486 }
1487
1488 static gboolean
1489 _factory_can_handle_caps (GstElementFactory * factory, const GstCaps * caps,
1490     GstPadDirection dir, gboolean exact)
1491 {
1492   GList *templates = factory->staticpadtemplates;
1493
1494   while (templates) {
1495     GstStaticPadTemplate *template = (GstStaticPadTemplate *) templates->data;
1496
1497     if (template->direction == dir) {
1498       GstCaps *tmp = gst_static_caps_get (&template->static_caps);
1499
1500       if ((exact && _gst_caps_match (caps, tmp)) ||
1501           (!exact && gst_caps_can_intersect (tmp, caps))) {
1502         gst_caps_unref (tmp);
1503         return TRUE;
1504       }
1505       gst_caps_unref (tmp);
1506     }
1507     templates = g_list_next (templates);
1508   }
1509
1510   return FALSE;
1511 }
1512
1513 static inline GstElement *
1514 _get_formatter (GstEncodeBin * ebin, GstEncodingProfile * sprof)
1515 {
1516   GList *formatters, *tmpfmtr;
1517   GstElement *formatter = NULL;
1518   GstElementFactory *formatterfact = NULL;
1519   const GstCaps *format;
1520   const gchar *preset;
1521
1522   format = gst_encoding_profile_get_format (sprof);
1523   preset = gst_encoding_profile_get_preset (sprof);
1524
1525   GST_DEBUG ("Getting list of formatters for format %" GST_PTR_FORMAT, format);
1526
1527   formatters =
1528       gst_element_factory_list_filter (ebin->formatters, format, GST_PAD_SRC,
1529       FALSE);
1530
1531   if (formatters == NULL)
1532     goto beach;
1533
1534   /* FIXME : signal the user if he wants this */
1535   for (tmpfmtr = formatters; tmpfmtr; tmpfmtr = tmpfmtr->next) {
1536     formatterfact = (GstElementFactory *) tmpfmtr->data;
1537
1538     GST_DEBUG_OBJECT (ebin, "Trying formatter %s",
1539         GST_OBJECT_NAME (formatterfact));
1540
1541     if ((formatter =
1542             _create_element_and_set_preset (formatterfact, preset, NULL)))
1543       break;
1544   }
1545
1546   gst_plugin_feature_list_free (formatters);
1547
1548 beach:
1549   return formatter;
1550 }
1551
1552 static gint
1553 compare_elements (gconstpointer a, gconstpointer b, gpointer udata)
1554 {
1555   GstCaps *caps = udata;
1556   GstElementFactory *fac_a = (GstElementFactory *) a;
1557   GstElementFactory *fac_b = (GstElementFactory *) b;
1558
1559   /* FIXME not quite sure this is the best algorithm to order the elements
1560    * Some caps similarity comparison algorithm would fit better than going
1561    * boolean (equals/not equals).
1562    */
1563   gboolean equals_a = _factory_can_handle_caps (fac_a, caps, GST_PAD_SRC, TRUE);
1564   gboolean equals_b = _factory_can_handle_caps (fac_b, caps, GST_PAD_SRC, TRUE);
1565
1566   if (equals_a == equals_b) {
1567     return gst_plugin_feature_get_rank ((GstPluginFeature *) fac_b) -
1568         gst_plugin_feature_get_rank ((GstPluginFeature *) fac_a);
1569   } else if (equals_a) {
1570     return -1;
1571   } else if (equals_b) {
1572     return 1;
1573   }
1574   return 0;
1575 }
1576
1577 static inline GstElement *
1578 _get_muxer (GstEncodeBin * ebin)
1579 {
1580   GList *muxers, *formatters, *tmpmux;
1581   GstElement *muxer = NULL;
1582   GstElementFactory *muxerfact = NULL;
1583   const GList *tmp;
1584   const GstCaps *format;
1585   const gchar *preset;
1586
1587   format = gst_encoding_profile_get_format (ebin->profile);
1588   preset = gst_encoding_profile_get_preset (ebin->profile);
1589
1590   GST_DEBUG ("Getting list of muxers for format %" GST_PTR_FORMAT, format);
1591
1592   muxers =
1593       gst_element_factory_list_filter (ebin->muxers, format, GST_PAD_SRC, TRUE);
1594
1595   formatters =
1596       gst_element_factory_list_filter (ebin->formatters, format, GST_PAD_SRC,
1597       TRUE);
1598
1599   muxers = g_list_sort_with_data (muxers, compare_elements, (gpointer) format);
1600   formatters =
1601       g_list_sort_with_data (formatters, compare_elements, (gpointer) format);
1602
1603   muxers = g_list_concat (muxers, formatters);
1604
1605   if (muxers == NULL)
1606     goto beach;
1607
1608   /* FIXME : signal the user if he wants this */
1609   for (tmpmux = muxers; tmpmux; tmpmux = tmpmux->next) {
1610     gboolean cansinkstreams = TRUE;
1611     const GList *profiles =
1612         gst_encoding_container_profile_get_profiles
1613         (GST_ENCODING_CONTAINER_PROFILE (ebin->profile));
1614
1615     muxerfact = (GstElementFactory *) tmpmux->data;
1616
1617     GST_DEBUG ("Trying muxer %s", GST_OBJECT_NAME (muxerfact));
1618
1619     /* See if the muxer can sink all of our stream profile caps */
1620     for (tmp = profiles; tmp; tmp = tmp->next) {
1621       GstEncodingProfile *sprof = (GstEncodingProfile *) tmp->data;
1622
1623       if (!_factory_can_handle_caps (muxerfact,
1624               gst_encoding_profile_get_format (sprof), GST_PAD_SINK, FALSE)) {
1625         GST_DEBUG ("Skipping muxer because it can't sink caps %"
1626             GST_PTR_FORMAT, gst_encoding_profile_get_format (sprof));
1627         cansinkstreams = FALSE;
1628         break;
1629       }
1630     }
1631
1632     /* Only use a muxer than can use all streams and than can accept the
1633      * preset (which may be present or not) */
1634     if (cansinkstreams && (muxer =
1635             _create_element_and_set_preset (muxerfact, preset, "muxer")))
1636       break;
1637   }
1638
1639   gst_plugin_feature_list_free (muxers);
1640
1641 beach:
1642   return muxer;
1643 }
1644
1645 static gboolean
1646 create_elements_and_pads (GstEncodeBin * ebin)
1647 {
1648   gboolean ret = TRUE;
1649   GstElement *muxer = NULL;
1650   GstPad *muxerpad;
1651   const GList *tmp, *profiles;
1652   GstEncodingProfile *sprof;
1653
1654   GST_DEBUG ("Current profile : %s",
1655       gst_encoding_profile_get_name (ebin->profile));
1656
1657   if (GST_IS_ENCODING_CONTAINER_PROFILE (ebin->profile)) {
1658     /* 1. Get the compatible muxer */
1659     muxer = _get_muxer (ebin);
1660     if (G_UNLIKELY (muxer == NULL))
1661       goto no_muxer;
1662
1663     /* Record the muxer */
1664     ebin->muxer = muxer;
1665     gst_bin_add ((GstBin *) ebin, muxer);
1666
1667     /* 2. Ghost the muxer source pad */
1668
1669     /* FIXME : We should figure out if it's a static/request/dyamic pad, 
1670      * but for the time being let's assume it's a static pad :) */
1671     muxerpad = gst_element_get_static_pad (muxer, "src");
1672     if (G_UNLIKELY (muxerpad == NULL))
1673       goto no_muxer_pad;
1674
1675     if (!gst_ghost_pad_set_target (GST_GHOST_PAD (ebin->srcpad), muxerpad))
1676       goto no_muxer_ghost_pad;
1677
1678     gst_object_unref (muxerpad);
1679     /* 3. Activate fixed presence streams */
1680     profiles =
1681         gst_encoding_container_profile_get_profiles
1682         (GST_ENCODING_CONTAINER_PROFILE (ebin->profile));
1683     for (tmp = profiles; tmp; tmp = tmp->next) {
1684       sprof = (GstEncodingProfile *) tmp->data;
1685
1686       GST_DEBUG ("Trying stream profile with presence %d",
1687           gst_encoding_profile_get_presence (sprof));
1688
1689       if (gst_encoding_profile_get_presence (sprof) != 0) {
1690         if (G_UNLIKELY (_create_stream_group (ebin, sprof, NULL, NULL) == NULL))
1691           goto stream_error;
1692       }
1693     }
1694   } else {
1695     if (G_UNLIKELY (_create_stream_group (ebin, ebin->profile, NULL,
1696                 NULL) == NULL))
1697       goto stream_error;
1698   }
1699
1700   return ret;
1701
1702 no_muxer:
1703   {
1704     GST_WARNING ("No available muxer for %" GST_PTR_FORMAT,
1705         gst_encoding_profile_get_format (ebin->profile));
1706     /* missing plugin support */
1707     gst_element_post_message (GST_ELEMENT_CAST (ebin),
1708         gst_missing_encoder_message_new (GST_ELEMENT_CAST (ebin),
1709             gst_encoding_profile_get_format (ebin->profile)));
1710     GST_ELEMENT_ERROR (ebin, CORE, MISSING_PLUGIN, (NULL),
1711         ("No available muxer for format %" GST_PTR_FORMAT,
1712             gst_encoding_profile_get_format (ebin->profile)));
1713     return FALSE;
1714   }
1715
1716 no_muxer_pad:
1717   {
1718     GST_WARNING ("Can't get source pad from muxer (%s)",
1719         GST_ELEMENT_NAME (muxer));
1720     gst_bin_remove (GST_BIN (ebin), muxer);
1721     return FALSE;
1722   }
1723
1724 no_muxer_ghost_pad:
1725   {
1726     GST_WARNING ("Couldn't set %s:%s as source ghostpad target",
1727         GST_DEBUG_PAD_NAME (muxerpad));
1728     gst_bin_remove (GST_BIN (ebin), muxer);
1729     gst_object_unref (muxerpad);
1730     return FALSE;
1731   }
1732
1733 stream_error:
1734   {
1735     GST_WARNING ("Could not create Streams");
1736     if (muxer)
1737       gst_bin_remove (GST_BIN (ebin), muxer);
1738     ebin->muxer = NULL;
1739     return FALSE;
1740   }
1741 }
1742
1743 static void
1744 release_pads (const GValue * item, GstElement * elt)
1745 {
1746   GstPad *pad = g_value_get_object (item);
1747   GstPad *peer = NULL;
1748
1749   GST_DEBUG_OBJECT (elt, "Releasing pad %s:%s", GST_DEBUG_PAD_NAME (pad));
1750
1751   /* Unlink from its peer pad */
1752   if ((peer = gst_pad_get_peer (pad))) {
1753     if (GST_PAD_DIRECTION (peer) == GST_PAD_SRC)
1754       gst_pad_unlink (peer, pad);
1755     else
1756       gst_pad_unlink (pad, peer);
1757     gst_object_unref (peer);
1758   }
1759
1760   /* Release it from the object */
1761   gst_element_release_request_pad (elt, pad);
1762 }
1763
1764 static void inline
1765 stream_group_free (GstEncodeBin * ebin, StreamGroup * sgroup)
1766 {
1767   GList *tmp;
1768   GstPad *tmppad;
1769   GstPad *pad;
1770
1771   GST_DEBUG_OBJECT (ebin, "Freeing StreamGroup %p", sgroup);
1772
1773   if (ebin->muxer) {
1774     /* outqueue - Muxer */
1775     tmppad = gst_element_get_static_pad (sgroup->outqueue, "src");
1776     pad = gst_pad_get_peer (tmppad);
1777
1778     /* Remove muxer request sink pad */
1779     gst_pad_unlink (tmppad, pad);
1780     gst_element_release_request_pad (ebin->muxer, pad);
1781     gst_object_unref (tmppad);
1782     gst_object_unref (pad);
1783   }
1784   if (sgroup->outqueue)
1785     gst_element_set_state (sgroup->outqueue, GST_STATE_NULL);
1786
1787   if (sgroup->formatter) {
1788     /* capsfilter - formatter - outqueue */
1789     gst_element_set_state (sgroup->formatter, GST_STATE_NULL);
1790     gst_element_set_state (sgroup->outfilter, GST_STATE_NULL);
1791     gst_element_unlink (sgroup->formatter, sgroup->outqueue);
1792     gst_element_unlink (sgroup->outfilter, sgroup->formatter);
1793   } else {
1794     /* Capsfilter - outqueue */
1795     gst_element_set_state (sgroup->outfilter, GST_STATE_NULL);
1796     gst_element_unlink (sgroup->outfilter, sgroup->outqueue);
1797   }
1798   gst_element_set_state (sgroup->outqueue, GST_STATE_NULL);
1799   gst_bin_remove (GST_BIN (ebin), sgroup->outqueue);
1800
1801   /* streamcombiner - parser - capsfilter */
1802   if (sgroup->parser) {
1803     gst_element_set_state (sgroup->parser, GST_STATE_NULL);
1804     gst_element_unlink (sgroup->parser, sgroup->outfilter);
1805     gst_element_unlink (sgroup->combiner, sgroup->parser);
1806     gst_bin_remove ((GstBin *) ebin, sgroup->parser);
1807   }
1808
1809   /* Sink Ghostpad */
1810   if (sgroup->ghostpad)
1811     gst_element_remove_pad (GST_ELEMENT_CAST (ebin), sgroup->ghostpad);
1812
1813   if (sgroup->inqueue)
1814     gst_element_set_state (sgroup->inqueue, GST_STATE_NULL);
1815
1816   if (sgroup->encoder)
1817     gst_element_set_state (sgroup->encoder, GST_STATE_NULL);
1818   if (sgroup->outfilter)
1819     gst_element_set_state (sgroup->outfilter, GST_STATE_NULL);
1820   if (sgroup->smartencoder)
1821     gst_element_set_state (sgroup->smartencoder, GST_STATE_NULL);
1822
1823   if (sgroup->capsfilter) {
1824     gst_element_set_state (sgroup->capsfilter, GST_STATE_NULL);
1825     gst_element_unlink (sgroup->capsfilter, sgroup->encoder);
1826     gst_bin_remove ((GstBin *) ebin, sgroup->capsfilter);
1827   }
1828
1829   for (tmp = sgroup->converters; tmp; tmp = tmp->next) {
1830     GstElement *elt = (GstElement *) tmp->data;
1831
1832     gst_element_set_state (elt, GST_STATE_NULL);
1833     gst_bin_remove ((GstBin *) ebin, elt);
1834   }
1835   if (sgroup->converters)
1836     g_list_free (sgroup->converters);
1837
1838   if (sgroup->combiner) {
1839     GstIterator *it = gst_element_iterate_sink_pads (sgroup->combiner);
1840     GstIteratorResult itret = GST_ITERATOR_OK;
1841
1842     while (itret == GST_ITERATOR_OK || itret == GST_ITERATOR_RESYNC) {
1843       itret =
1844           gst_iterator_foreach (it, (GstIteratorForeachFunction) release_pads,
1845           sgroup->combiner);
1846       gst_iterator_resync (it);
1847     }
1848     gst_iterator_free (it);
1849     gst_element_set_state (sgroup->combiner, GST_STATE_NULL);
1850     gst_bin_remove ((GstBin *) ebin, sgroup->combiner);
1851   }
1852
1853   if (sgroup->splitter) {
1854     GstIterator *it = gst_element_iterate_src_pads (sgroup->splitter);
1855     GstIteratorResult itret = GST_ITERATOR_OK;
1856     while (itret == GST_ITERATOR_OK || itret == GST_ITERATOR_RESYNC) {
1857       itret =
1858           gst_iterator_foreach (it, (GstIteratorForeachFunction) release_pads,
1859           sgroup->splitter);
1860       gst_iterator_resync (it);
1861     }
1862     gst_iterator_free (it);
1863
1864     gst_element_set_state (sgroup->splitter, GST_STATE_NULL);
1865     gst_bin_remove ((GstBin *) ebin, sgroup->splitter);
1866   }
1867
1868   if (sgroup->inqueue)
1869     gst_bin_remove ((GstBin *) ebin, sgroup->inqueue);
1870
1871   if (sgroup->encoder)
1872     gst_bin_remove ((GstBin *) ebin, sgroup->encoder);
1873
1874   if (sgroup->smartencoder)
1875     gst_bin_remove ((GstBin *) ebin, sgroup->smartencoder);
1876
1877   if (sgroup->outfilter)
1878     gst_bin_remove ((GstBin *) ebin, sgroup->outfilter);
1879
1880   g_slice_free (StreamGroup, sgroup);
1881 }
1882
1883 static void
1884 stream_group_remove (GstEncodeBin * ebin, StreamGroup * sgroup)
1885 {
1886   ebin->streams = g_list_remove (ebin->streams, sgroup);
1887
1888   stream_group_free (ebin, sgroup);
1889 }
1890
1891 static void
1892 gst_encode_bin_tear_down_profile (GstEncodeBin * ebin)
1893 {
1894   if (G_UNLIKELY (ebin->profile == NULL))
1895     return;
1896
1897   GST_DEBUG ("Tearing down profile %s",
1898       gst_encoding_profile_get_name (ebin->profile));
1899
1900   while (ebin->streams)
1901     stream_group_remove (ebin, (StreamGroup *) ebin->streams->data);
1902
1903   /* Set ghostpad target to NULL */
1904   gst_ghost_pad_set_target (GST_GHOST_PAD (ebin->srcpad), NULL);
1905
1906   /* Remove muxer if present */
1907   if (ebin->muxer) {
1908     gst_element_set_state (ebin->muxer, GST_STATE_NULL);
1909     gst_bin_remove (GST_BIN (ebin), ebin->muxer);
1910     ebin->muxer = NULL;
1911   }
1912
1913   /* free/clear profile */
1914   gst_encoding_profile_unref (ebin->profile);
1915   ebin->profile = NULL;
1916 }
1917
1918 static gboolean
1919 gst_encode_bin_setup_profile (GstEncodeBin * ebin, GstEncodingProfile * profile)
1920 {
1921   gboolean res;
1922
1923   g_return_val_if_fail (ebin->profile == NULL, FALSE);
1924
1925   GST_DEBUG ("Setting up profile %s (type:%s)",
1926       gst_encoding_profile_get_name (profile),
1927       gst_encoding_profile_get_type_nick (profile));
1928
1929   ebin->profile = profile;
1930   gst_mini_object_ref ((GstMiniObject *) ebin->profile);
1931
1932   /* Create elements */
1933   res = create_elements_and_pads (ebin);
1934   if (res == FALSE)
1935     gst_encode_bin_tear_down_profile (ebin);
1936
1937   return res;
1938 }
1939
1940 static gboolean
1941 gst_encode_bin_set_profile (GstEncodeBin * ebin, GstEncodingProfile * profile)
1942 {
1943   g_return_val_if_fail (GST_IS_ENCODING_PROFILE (profile), FALSE);
1944
1945   GST_DEBUG_OBJECT (ebin, "profile : %s",
1946       gst_encoding_profile_get_name (profile));
1947
1948   if (G_UNLIKELY (ebin->active)) {
1949     GST_WARNING_OBJECT (ebin, "Element already active, can't change profile");
1950     return FALSE;
1951   }
1952
1953   /* If we're not active, we can deactivate the previous profile */
1954   if (ebin->profile) {
1955     gst_encode_bin_tear_down_profile (ebin);
1956   }
1957
1958   return gst_encode_bin_setup_profile (ebin, profile);
1959 }
1960
1961 static inline gboolean
1962 gst_encode_bin_activate (GstEncodeBin * ebin)
1963 {
1964   ebin->active = ebin->profile != NULL;
1965   return ebin->active;
1966 }
1967
1968 static void
1969 gst_encode_bin_deactivate (GstEncodeBin * ebin)
1970 {
1971   ebin->active = FALSE;
1972 }
1973
1974 static GstStateChangeReturn
1975 gst_encode_bin_change_state (GstElement * element, GstStateChange transition)
1976 {
1977   GstStateChangeReturn ret;
1978   GstEncodeBin *ebin = (GstEncodeBin *) element;
1979
1980   switch (transition) {
1981     case GST_STATE_CHANGE_READY_TO_PAUSED:
1982     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
1983       if (!gst_encode_bin_activate (ebin)) {
1984         ret = GST_STATE_CHANGE_FAILURE;
1985         goto beach;
1986       }
1987       break;
1988     default:
1989       break;
1990   }
1991
1992   ret =
1993       GST_ELEMENT_CLASS (gst_encode_bin_parent_class)->change_state (element,
1994       transition);
1995   if (ret == GST_STATE_CHANGE_FAILURE)
1996     goto beach;
1997
1998   switch (transition) {
1999     case GST_STATE_CHANGE_PAUSED_TO_READY:
2000       gst_encode_bin_deactivate (ebin);
2001       break;
2002     default:
2003       break;
2004   }
2005
2006 beach:
2007   return ret;
2008 }
2009
2010
2011 static gboolean
2012 plugin_init (GstPlugin * plugin)
2013 {
2014   gboolean res;
2015
2016   GST_DEBUG_CATEGORY_INIT (gst_encode_bin_debug, "encodebin", 0, "encoder bin");
2017
2018 #ifdef ENABLE_NLS
2019   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
2020       LOCALEDIR);
2021   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
2022   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
2023 #endif /* ENABLE_NLS */
2024
2025
2026   res = gst_element_register (plugin, "encodebin", GST_RANK_NONE,
2027       GST_TYPE_ENCODE_BIN);
2028
2029   return res;
2030 }
2031
2032 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
2033     GST_VERSION_MINOR,
2034     "encoding",
2035     "various encoding-related elements", plugin_init, VERSION, GST_LICENSE,
2036     GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)