flvmux: Correctly offset timestamp
[platform/upstream/gst-plugins-good.git] / gst / flv / gstflvmux.c
1 /* GStreamer
2  *
3  * Copyright (c) 2008,2009 Sebastian Dröge <sebastian.droege@collabora.co.uk>
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., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 /**
22  * SECTION:element-flvmux
23  *
24  * flvmux muxes different streams into an FLV file.
25  *
26  * <refsect2>
27  * <title>Example launch line</title>
28  * |[
29  * gst-launch-1.0 -v flvmux name=mux ! filesink location=test.flv  audiotestsrc samplesperbuffer=44100 num-buffers=10 ! faac ! mux.  videotestsrc num-buffers=250 ! video/x-raw,framerate=25/1 ! x264enc ! mux.
30  * ]| This pipeline encodes a test audio and video stream and muxes both into an FLV file.
31  * </refsect2>
32  */
33
34 #ifdef HAVE_CONFIG_H
35 #include "config.h"
36 #endif
37
38 #include <math.h>
39 #include <string.h>
40
41 #include <gst/audio/audio.h>
42
43 #include "gstflvmux.h"
44 #include "amfdefs.h"
45
46 GST_DEBUG_CATEGORY_STATIC (flvmux_debug);
47 #define GST_CAT_DEFAULT flvmux_debug
48
49 enum
50 {
51   PROP_0,
52   PROP_STREAMABLE
53 };
54
55 #define DEFAULT_STREAMABLE FALSE
56 #define MAX_INDEX_ENTRIES 128
57
58 static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src",
59     GST_PAD_SRC,
60     GST_PAD_ALWAYS,
61     GST_STATIC_CAPS ("video/x-flv")
62     );
63
64 static GstStaticPadTemplate videosink_templ = GST_STATIC_PAD_TEMPLATE ("video",
65     GST_PAD_SINK,
66     GST_PAD_REQUEST,
67     GST_STATIC_CAPS ("video/x-flash-video; "
68         "video/x-flash-screen; "
69         "video/x-vp6-flash; " "video/x-vp6-alpha; "
70         "video/x-h264, stream-format=avc;")
71     );
72
73 static GstStaticPadTemplate audiosink_templ = GST_STATIC_PAD_TEMPLATE ("audio",
74     GST_PAD_SINK,
75     GST_PAD_REQUEST,
76     GST_STATIC_CAPS
77     ("audio/x-adpcm, layout = (string) swf, channels = (int) { 1, 2 }, rate = (int) { 5512, 11025, 22050, 44100 }; "
78         "audio/mpeg, mpegversion = (int) 1, layer = (int) 3, channels = (int) { 1, 2 }, rate = (int) { 5512, 8000, 11025, 22050, 44100 }, parsed = (boolean) TRUE; "
79         "audio/mpeg, mpegversion = (int) { 4, 2 }, stream-format = (string) raw; "
80         "audio/x-nellymoser, channels = (int) { 1, 2 }, rate = (int) { 5512, 8000, 11025, 16000, 22050, 44100 }; "
81         "audio/x-raw, format = (string) { U8, S16LE}, layout = (string) interleaved, channels = (int) { 1, 2 }, rate = (int) { 5512, 11025, 22050, 44100 }; "
82         "audio/x-alaw, channels = (int) { 1, 2 }, rate = (int) { 5512, 11025, 22050, 44100 }; "
83         "audio/x-mulaw, channels = (int) { 1, 2 }, rate = (int) { 5512, 11025, 22050, 44100 }; "
84         "audio/x-speex, channels = (int) 1, rate = (int) 16000;")
85     );
86
87 #define gst_flv_mux_parent_class parent_class
88 G_DEFINE_TYPE_WITH_CODE (GstFlvMux, gst_flv_mux, GST_TYPE_ELEMENT,
89     G_IMPLEMENT_INTERFACE (GST_TYPE_TAG_SETTER, NULL));
90
91 static void gst_flv_mux_finalize (GObject * object);
92 static GstFlowReturn
93 gst_flv_mux_handle_buffer (GstCollectPads * pads, GstCollectData * cdata,
94     GstBuffer * buf, gpointer user_data);
95 static gboolean
96 gst_flv_mux_handle_sink_event (GstCollectPads * pads, GstCollectData * data,
97     GstEvent * event, gpointer user_data);
98
99 static gboolean gst_flv_mux_handle_src_event (GstPad * pad, GstObject * parent,
100     GstEvent * event);
101 static GstPad *gst_flv_mux_request_new_pad (GstElement * element,
102     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps);
103 static void gst_flv_mux_release_pad (GstElement * element, GstPad * pad);
104
105 static gboolean gst_flv_mux_video_pad_setcaps (GstPad * pad, GstCaps * caps);
106 static gboolean gst_flv_mux_audio_pad_setcaps (GstPad * pad, GstCaps * caps);
107
108 static void gst_flv_mux_get_property (GObject * object,
109     guint prop_id, GValue * value, GParamSpec * pspec);
110 static void gst_flv_mux_set_property (GObject * object,
111     guint prop_id, const GValue * value, GParamSpec * pspec);
112
113 static GstStateChangeReturn
114 gst_flv_mux_change_state (GstElement * element, GstStateChange transition);
115
116 static void gst_flv_mux_reset (GstElement * element);
117 static void gst_flv_mux_reset_pad (GstFlvMux * mux, GstFlvPad * pad,
118     gboolean video);
119
120 typedef struct
121 {
122   gdouble position;
123   gdouble time;
124 } GstFlvMuxIndexEntry;
125
126 static void
127 gst_flv_mux_index_entry_free (GstFlvMuxIndexEntry * entry)
128 {
129   g_slice_free (GstFlvMuxIndexEntry, entry);
130 }
131
132 static GstBuffer *
133 _gst_buffer_new_wrapped (gpointer mem, gsize size, GFreeFunc free_func)
134 {
135   GstBuffer *buf;
136
137   buf = gst_buffer_new ();
138   gst_buffer_append_memory (buf,
139       gst_memory_new_wrapped (free_func ? 0 : GST_MEMORY_FLAG_READONLY,
140           mem, size, 0, size, mem, free_func));
141
142   return buf;
143 }
144
145 static void
146 _gst_buffer_new_and_alloc (gsize size, GstBuffer ** buffer, guint8 ** data)
147 {
148   g_return_if_fail (data != NULL);
149   g_return_if_fail (buffer != NULL);
150
151   *data = g_malloc (size);
152   *buffer = _gst_buffer_new_wrapped (*data, size, g_free);
153 }
154
155 static void
156 gst_flv_mux_class_init (GstFlvMuxClass * klass)
157 {
158   GObjectClass *gobject_class;
159   GstElementClass *gstelement_class;
160
161   GST_DEBUG_CATEGORY_INIT (flvmux_debug, "flvmux", 0, "FLV muxer");
162
163   gobject_class = (GObjectClass *) klass;
164   gstelement_class = (GstElementClass *) klass;
165
166   gobject_class->get_property = gst_flv_mux_get_property;
167   gobject_class->set_property = gst_flv_mux_set_property;
168   gobject_class->finalize = gst_flv_mux_finalize;
169
170   /* FIXME: ideally the right mode of operation should be detected
171    * automatically using queries when parameter not specified. */
172   /**
173    * GstFlvMux:streamable
174    *
175    * If True, the output will be streaming friendly. (ie without indexes and
176    * duration)
177    */
178   g_object_class_install_property (gobject_class, PROP_STREAMABLE,
179       g_param_spec_boolean ("streamable", "streamable",
180           "If set to true, the output should be as if it is to be streamed "
181           "and hence no indexes written or duration written.",
182           DEFAULT_STREAMABLE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
183
184   gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_flv_mux_change_state);
185   gstelement_class->request_new_pad =
186       GST_DEBUG_FUNCPTR (gst_flv_mux_request_new_pad);
187   gstelement_class->release_pad = GST_DEBUG_FUNCPTR (gst_flv_mux_release_pad);
188
189   gst_element_class_add_pad_template (gstelement_class,
190       gst_static_pad_template_get (&videosink_templ));
191   gst_element_class_add_pad_template (gstelement_class,
192       gst_static_pad_template_get (&audiosink_templ));
193   gst_element_class_add_pad_template (gstelement_class,
194       gst_static_pad_template_get (&src_templ));
195   gst_element_class_set_static_metadata (gstelement_class, "FLV muxer",
196       "Codec/Muxer",
197       "Muxes video/audio streams into a FLV stream",
198       "Sebastian Dröge <sebastian.droege@collabora.co.uk>");
199
200   GST_DEBUG_CATEGORY_INIT (flvmux_debug, "flvmux", 0, "FLV muxer");
201 }
202
203 static void
204 gst_flv_mux_init (GstFlvMux * mux)
205 {
206   mux->srcpad = gst_pad_new_from_static_template (&src_templ, "src");
207   gst_pad_set_event_function (mux->srcpad, gst_flv_mux_handle_src_event);
208   gst_element_add_pad (GST_ELEMENT (mux), mux->srcpad);
209
210   /* property */
211   mux->streamable = DEFAULT_STREAMABLE;
212
213   mux->new_tags = FALSE;
214
215   mux->collect = gst_collect_pads_new ();
216   gst_collect_pads_set_buffer_function (mux->collect,
217       GST_DEBUG_FUNCPTR (gst_flv_mux_handle_buffer), mux);
218   gst_collect_pads_set_event_function (mux->collect,
219       GST_DEBUG_FUNCPTR (gst_flv_mux_handle_sink_event), mux);
220   gst_collect_pads_set_clip_function (mux->collect,
221       GST_DEBUG_FUNCPTR (gst_collect_pads_clip_running_time), mux);
222
223   gst_flv_mux_reset (GST_ELEMENT (mux));
224 }
225
226 static void
227 gst_flv_mux_finalize (GObject * object)
228 {
229   GstFlvMux *mux = GST_FLV_MUX (object);
230
231   gst_object_unref (mux->collect);
232
233   G_OBJECT_CLASS (parent_class)->finalize (object);
234 }
235
236 static void
237 gst_flv_mux_reset (GstElement * element)
238 {
239   GstFlvMux *mux = GST_FLV_MUX (element);
240   GSList *sl;
241
242   for (sl = mux->collect->data; sl != NULL; sl = g_slist_next (sl)) {
243     GstFlvPad *cpad = (GstFlvPad *) sl->data;
244
245     gst_flv_mux_reset_pad (mux, cpad, cpad->video);
246   }
247
248   g_list_foreach (mux->index, (GFunc) gst_flv_mux_index_entry_free, NULL);
249   g_list_free (mux->index);
250   mux->index = NULL;
251   mux->byte_count = 0;
252
253   mux->have_audio = mux->have_video = FALSE;
254   mux->duration = GST_CLOCK_TIME_NONE;
255   mux->new_tags = FALSE;
256   mux->first_timestamp = GST_CLOCK_TIME_NONE;
257
258   mux->state = GST_FLV_MUX_STATE_HEADER;
259
260   /* tags */
261   gst_tag_setter_reset_tags (GST_TAG_SETTER (mux));
262 }
263
264 static gboolean
265 gst_flv_mux_handle_src_event (GstPad * pad, GstObject * parent,
266     GstEvent * event)
267 {
268   GstEventType type;
269
270   type = event ? GST_EVENT_TYPE (event) : GST_EVENT_UNKNOWN;
271
272   switch (type) {
273     case GST_EVENT_SEEK:
274       /* disable seeking for now */
275       return FALSE;
276     default:
277       break;
278   }
279
280   return gst_pad_event_default (pad, parent, event);
281 }
282
283 static gboolean
284 gst_flv_mux_handle_sink_event (GstCollectPads * pads, GstCollectData * data,
285     GstEvent * event, gpointer user_data)
286 {
287   GstFlvMux *mux = GST_FLV_MUX (user_data);
288   gboolean ret = TRUE;
289
290   switch (GST_EVENT_TYPE (event)) {
291     case GST_EVENT_CAPS:
292     {
293       GstCaps *caps;
294       GstFlvPad *flvpad;
295
296       gst_event_parse_caps (event, &caps);
297
298       /* find stream data */
299       flvpad = (GstFlvPad *) data;
300       g_assert (flvpad);
301
302       if (flvpad->video) {
303         ret = gst_flv_mux_video_pad_setcaps (data->pad, caps);
304       } else {
305         ret = gst_flv_mux_audio_pad_setcaps (data->pad, caps);
306       }
307       /* and eat */
308       gst_event_unref (event);
309       event = NULL;
310       break;
311     }
312     case GST_EVENT_TAG:{
313       GstTagList *list;
314       GstTagSetter *setter = GST_TAG_SETTER (mux);
315       const GstTagMergeMode mode = gst_tag_setter_get_tag_merge_mode (setter);
316
317       gst_event_parse_tag (event, &list);
318       gst_tag_setter_merge_tags (setter, list, mode);
319       mux->new_tags = TRUE;
320       ret = TRUE;
321       gst_event_unref (event);
322       event = NULL;
323       break;
324     }
325     default:
326       break;
327   }
328
329   if (event != NULL)
330     return gst_collect_pads_event_default (pads, data, event, FALSE);
331
332   return ret;
333 }
334
335 static gboolean
336 gst_flv_mux_video_pad_setcaps (GstPad * pad, GstCaps * caps)
337 {
338   GstFlvMux *mux = GST_FLV_MUX (gst_pad_get_parent (pad));
339   GstFlvPad *cpad = (GstFlvPad *) gst_pad_get_element_private (pad);
340   gboolean ret = TRUE;
341   GstStructure *s;
342
343   s = gst_caps_get_structure (caps, 0);
344
345   if (strcmp (gst_structure_get_name (s), "video/x-flash-video") == 0) {
346     cpad->video_codec = 2;
347   } else if (strcmp (gst_structure_get_name (s), "video/x-flash-screen") == 0) {
348     cpad->video_codec = 3;
349   } else if (strcmp (gst_structure_get_name (s), "video/x-vp6-flash") == 0) {
350     cpad->video_codec = 4;
351   } else if (strcmp (gst_structure_get_name (s), "video/x-vp6-alpha") == 0) {
352     cpad->video_codec = 5;
353   } else if (strcmp (gst_structure_get_name (s), "video/x-h264") == 0) {
354     cpad->video_codec = 7;
355   } else {
356     ret = FALSE;
357   }
358
359   if (ret && gst_structure_has_field (s, "codec_data")) {
360     const GValue *val = gst_structure_get_value (s, "codec_data");
361
362     if (val)
363       cpad->video_codec_data = gst_buffer_ref (gst_value_get_buffer (val));
364   }
365
366   gst_object_unref (mux);
367
368   return ret;
369 }
370
371 static gboolean
372 gst_flv_mux_audio_pad_setcaps (GstPad * pad, GstCaps * caps)
373 {
374   GstFlvMux *mux = GST_FLV_MUX (gst_pad_get_parent (pad));
375   GstFlvPad *cpad = (GstFlvPad *) gst_pad_get_element_private (pad);
376   gboolean ret = TRUE;
377   GstStructure *s;
378
379   s = gst_caps_get_structure (caps, 0);
380
381   if (strcmp (gst_structure_get_name (s), "audio/x-adpcm") == 0) {
382     const gchar *layout = gst_structure_get_string (s, "layout");
383     if (layout && strcmp (layout, "swf") == 0) {
384       cpad->audio_codec = 1;
385     } else {
386       ret = FALSE;
387     }
388   } else if (strcmp (gst_structure_get_name (s), "audio/mpeg") == 0) {
389     gint mpegversion;
390
391     if (gst_structure_get_int (s, "mpegversion", &mpegversion)) {
392       if (mpegversion == 1) {
393         gint layer;
394
395         if (gst_structure_get_int (s, "layer", &layer) && layer == 3) {
396           gint rate;
397
398           if (gst_structure_get_int (s, "rate", &rate) && rate == 8000)
399             cpad->audio_codec = 14;
400           else
401             cpad->audio_codec = 2;
402         } else {
403           ret = FALSE;
404         }
405       } else if (mpegversion == 4 || mpegversion == 2) {
406         cpad->audio_codec = 10;
407       } else {
408         ret = FALSE;
409       }
410     } else {
411       ret = FALSE;
412     }
413   } else if (strcmp (gst_structure_get_name (s), "audio/x-nellymoser") == 0) {
414     gint rate, channels;
415
416     if (gst_structure_get_int (s, "rate", &rate)
417         && gst_structure_get_int (s, "channels", &channels)) {
418       if (channels == 1 && rate == 16000)
419         cpad->audio_codec = 4;
420       else if (channels == 1 && rate == 8000)
421         cpad->audio_codec = 5;
422       else
423         cpad->audio_codec = 6;
424     } else {
425       cpad->audio_codec = 6;
426     }
427   } else if (strcmp (gst_structure_get_name (s), "audio/x-raw") == 0) {
428     GstAudioInfo info;
429
430     if (gst_audio_info_from_caps (&info, caps)) {
431       cpad->audio_codec = 3;
432
433       if (GST_AUDIO_INFO_WIDTH (&info) == 8)
434         cpad->width = 0;
435       else if (GST_AUDIO_INFO_WIDTH (&info) == 16)
436         cpad->width = 1;
437       else
438         ret = FALSE;
439     } else
440       ret = FALSE;
441   } else if (strcmp (gst_structure_get_name (s), "audio/x-alaw") == 0) {
442     cpad->audio_codec = 7;
443   } else if (strcmp (gst_structure_get_name (s), "audio/x-mulaw") == 0) {
444     cpad->audio_codec = 8;
445   } else if (strcmp (gst_structure_get_name (s), "audio/x-speex") == 0) {
446     cpad->audio_codec = 11;
447   } else {
448     ret = FALSE;
449   }
450
451   if (ret) {
452     gint rate, channels;
453
454     if (gst_structure_get_int (s, "rate", &rate)) {
455       if (cpad->audio_codec == 10)
456         cpad->rate = 3;
457       else if (rate == 5512)
458         cpad->rate = 0;
459       else if (rate == 11025)
460         cpad->rate = 1;
461       else if (rate == 22050)
462         cpad->rate = 2;
463       else if (rate == 44100)
464         cpad->rate = 3;
465       else if (rate == 8000 && (cpad->audio_codec == 5
466               || cpad->audio_codec == 14))
467         cpad->rate = 0;
468       else if (rate == 16000 && (cpad->audio_codec == 4
469               || cpad->audio_codec == 11))
470         cpad->rate = 0;
471       else
472         ret = FALSE;
473     } else if (cpad->audio_codec == 10) {
474       cpad->rate = 3;
475     } else {
476       ret = FALSE;
477     }
478
479     if (gst_structure_get_int (s, "channels", &channels)) {
480       if (cpad->audio_codec == 4 || cpad->audio_codec == 5
481           || cpad->audio_codec == 6 || cpad->audio_codec == 11)
482         cpad->channels = 0;
483       else if (cpad->audio_codec == 10)
484         cpad->channels = 1;
485       else if (channels == 1)
486         cpad->channels = 0;
487       else if (channels == 2)
488         cpad->channels = 1;
489       else
490         ret = FALSE;
491     } else if (cpad->audio_codec == 4 || cpad->audio_codec == 5
492         || cpad->audio_codec == 6) {
493       cpad->channels = 0;
494     } else if (cpad->audio_codec == 10) {
495       cpad->channels = 1;
496     } else {
497       ret = FALSE;
498     }
499
500     if (cpad->audio_codec != 3)
501       cpad->width = 1;
502   }
503
504   if (ret && gst_structure_has_field (s, "codec_data")) {
505     const GValue *val = gst_structure_get_value (s, "codec_data");
506
507     if (val)
508       cpad->audio_codec_data = gst_buffer_ref (gst_value_get_buffer (val));
509   }
510
511   gst_object_unref (mux);
512
513   return ret;
514 }
515
516 static void
517 gst_flv_mux_reset_pad (GstFlvMux * mux, GstFlvPad * cpad, gboolean video)
518 {
519   cpad->video = video;
520
521   if (cpad->audio_codec_data)
522     gst_buffer_unref (cpad->audio_codec_data);
523   cpad->audio_codec_data = NULL;
524   cpad->audio_codec = G_MAXUINT;
525   cpad->rate = G_MAXUINT;
526   cpad->width = G_MAXUINT;
527   cpad->channels = G_MAXUINT;
528
529   if (cpad->video_codec_data)
530     gst_buffer_unref (cpad->video_codec_data);
531   cpad->video_codec_data = NULL;
532   cpad->video_codec = G_MAXUINT;
533   cpad->last_timestamp = 0;
534 }
535
536 static GstPad *
537 gst_flv_mux_request_new_pad (GstElement * element,
538     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps)
539 {
540   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
541   GstFlvMux *mux = GST_FLV_MUX (element);
542   GstFlvPad *cpad;
543   GstPad *pad = NULL;
544   const gchar *name = NULL;
545   gboolean video;
546
547   if (mux->state != GST_FLV_MUX_STATE_HEADER) {
548     GST_WARNING_OBJECT (mux, "Can't request pads after writing header");
549     return NULL;
550   }
551
552   if (templ == gst_element_class_get_pad_template (klass, "audio")) {
553     if (mux->have_audio) {
554       GST_WARNING_OBJECT (mux, "Already have an audio pad");
555       return NULL;
556     }
557     mux->have_audio = TRUE;
558     name = "audio";
559     video = FALSE;
560   } else if (templ == gst_element_class_get_pad_template (klass, "video")) {
561     if (mux->have_video) {
562       GST_WARNING_OBJECT (mux, "Already have a video pad");
563       return NULL;
564     }
565     mux->have_video = TRUE;
566     name = "video";
567     video = TRUE;
568   } else {
569     GST_WARNING_OBJECT (mux, "Invalid template");
570     return NULL;
571   }
572
573   pad = gst_pad_new_from_template (templ, name);
574   cpad = (GstFlvPad *) gst_collect_pads_add_pad (mux->collect, pad,
575       sizeof (GstFlvPad), NULL, TRUE);
576
577   cpad->audio_codec_data = NULL;
578   cpad->video_codec_data = NULL;
579   gst_flv_mux_reset_pad (mux, cpad, video);
580
581   gst_pad_set_active (pad, TRUE);
582   gst_element_add_pad (element, pad);
583
584   return pad;
585 }
586
587 static void
588 gst_flv_mux_release_pad (GstElement * element, GstPad * pad)
589 {
590   GstFlvMux *mux = GST_FLV_MUX (GST_PAD_PARENT (pad));
591   GstFlvPad *cpad = (GstFlvPad *) gst_pad_get_element_private (pad);
592
593   gst_flv_mux_reset_pad (mux, cpad, cpad->video);
594   gst_collect_pads_remove_pad (mux->collect, pad);
595   gst_element_remove_pad (element, pad);
596 }
597
598 static GstFlowReturn
599 gst_flv_mux_push (GstFlvMux * mux, GstBuffer * buffer)
600 {
601   /* pushing the buffer that rewrites the header will make it no longer be the
602    * total output size in bytes, but it doesn't matter at that point */
603   mux->byte_count += gst_buffer_get_size (buffer);
604
605   return gst_pad_push (mux->srcpad, buffer);
606 }
607
608 static GstBuffer *
609 gst_flv_mux_create_header (GstFlvMux * mux)
610 {
611   GstBuffer *header;
612   guint8 *data;
613
614   _gst_buffer_new_and_alloc (9 + 4, &header, &data);
615
616   data[0] = 'F';
617   data[1] = 'L';
618   data[2] = 'V';
619   data[3] = 0x01;               /* Version */
620
621   data[4] = (mux->have_audio << 2) | mux->have_video;   /* flags */
622   GST_WRITE_UINT32_BE (data + 5, 9);    /* data offset */
623   GST_WRITE_UINT32_BE (data + 9, 0);    /* previous tag size */
624
625   return header;
626 }
627
628 static GstBuffer *
629 gst_flv_mux_preallocate_index (GstFlvMux * mux)
630 {
631   GstBuffer *tmp;
632   guint8 *data;
633   gint preallocate_size;
634
635   /* preallocate index of size:
636    *  - 'keyframes' ECMA array key: 2 + 9 = 11 bytes
637    *  - nested ECMA array header, length and end marker: 8 bytes
638    *  - 'times' and 'filepositions' keys: 22 bytes
639    *  - two strict arrays headers and lengths: 10 bytes
640    *  - each index entry: 18 bytes
641    */
642   preallocate_size = 11 + 8 + 22 + 10 + MAX_INDEX_ENTRIES * 18;
643   GST_DEBUG_OBJECT (mux, "preallocating %d bytes for the index",
644       preallocate_size);
645
646   _gst_buffer_new_and_alloc (preallocate_size, &tmp, &data);
647
648   /* prefill the space with a gstfiller: <spaces> script tag variable */
649   GST_WRITE_UINT16_BE (data, 9);        /* 9 characters */
650   memcpy (data + 2, "gstfiller", 9);
651   GST_WRITE_UINT8 (data + 11, AMF0_STRING_MARKER);      /* a string value */
652   GST_WRITE_UINT16_BE (data + 12, preallocate_size - 14);
653   memset (data + 14, ' ', preallocate_size - 14);       /* the rest is spaces */
654   return tmp;
655 }
656
657 static GstBuffer *
658 gst_flv_mux_create_number_script_value (const gchar * name, gdouble value)
659 {
660   GstBuffer *tmp;
661   guint8 *data;
662   gsize len = strlen (name);
663
664   _gst_buffer_new_and_alloc (2 + len + 1 + 8, &tmp, &data);
665
666   GST_WRITE_UINT16_BE (data, len);
667   data += 2;                    /* name length */
668   memcpy (data, name, len);
669   data += len;
670   *data++ = AMF0_NUMBER_MARKER; /* double type */
671   GST_WRITE_DOUBLE_BE (data, value);
672
673   return tmp;
674 }
675
676 static GstBuffer *
677 gst_flv_mux_create_metadata (GstFlvMux * mux, gboolean full)
678 {
679   const GstTagList *tags;
680   GstBuffer *script_tag, *tmp;
681   GstMapInfo map;
682   guint8 *data;
683   gint i, n_tags, tags_written = 0;
684
685   tags = gst_tag_setter_get_tag_list (GST_TAG_SETTER (mux));
686
687   GST_DEBUG_OBJECT (mux, "tags = %" GST_PTR_FORMAT, tags);
688
689   /* FIXME perhaps some bytewriter'ing here ... */
690
691   _gst_buffer_new_and_alloc (11, &script_tag, &data);
692
693   data[0] = 18;
694
695   /* Data size, unknown for now */
696   data[1] = 0;
697   data[2] = 0;
698   data[3] = 0;
699
700   /* Timestamp */
701   data[4] = data[5] = data[6] = data[7] = 0;
702
703   /* Stream ID */
704   data[8] = data[9] = data[10] = 0;
705
706   _gst_buffer_new_and_alloc (13, &tmp, &data);
707   data[0] = AMF0_STRING_MARKER; /* string */
708   data[1] = 0;
709   data[2] = 10;                 /* length 10 */
710   memcpy (&data[3], "onMetaData", 10);
711
712   script_tag = gst_buffer_append (script_tag, tmp);
713
714   n_tags = (tags) ? gst_tag_list_n_tags (tags) : 0;
715   _gst_buffer_new_and_alloc (5, &tmp, &data);
716   data[0] = 8;                  /* ECMA array */
717   GST_WRITE_UINT32_BE (data + 1, n_tags);
718   script_tag = gst_buffer_append (script_tag, tmp);
719
720   if (!full)
721     goto tags;
722
723   /* Some players expect the 'duration' to be always set. Fill it out later,
724      after querying the pads or after getting EOS */
725   if (!mux->streamable) {
726     tmp = gst_flv_mux_create_number_script_value ("duration", 86400);
727     script_tag = gst_buffer_append (script_tag, tmp);
728     tags_written++;
729
730     /* Sometimes the information about the total file size is useful for the
731        player. It will be filled later, after getting EOS */
732     tmp = gst_flv_mux_create_number_script_value ("filesize", 0);
733     script_tag = gst_buffer_append (script_tag, tmp);
734     tags_written++;
735
736     /* Preallocate space for the index to be written at EOS */
737     tmp = gst_flv_mux_preallocate_index (mux);
738     script_tag = gst_buffer_append (script_tag, tmp);
739   } else {
740     GST_DEBUG_OBJECT (mux, "not preallocating index, streamable mode");
741   }
742
743 tags:
744   for (i = 0; tags && i < n_tags; i++) {
745     const gchar *tag_name = gst_tag_list_nth_tag_name (tags, i);
746     if (!strcmp (tag_name, GST_TAG_DURATION)) {
747       guint64 dur;
748
749       if (!gst_tag_list_get_uint64 (tags, GST_TAG_DURATION, &dur))
750         continue;
751       mux->duration = dur;
752     } else if (!strcmp (tag_name, GST_TAG_ARTIST) ||
753         !strcmp (tag_name, GST_TAG_TITLE)) {
754       gchar *s;
755       const gchar *t = NULL;
756
757       if (!strcmp (tag_name, GST_TAG_ARTIST))
758         t = "creator";
759       else if (!strcmp (tag_name, GST_TAG_TITLE))
760         t = "title";
761
762       if (!gst_tag_list_get_string (tags, tag_name, &s))
763         continue;
764
765       _gst_buffer_new_and_alloc (2 + strlen (t) + 1 + 2 + strlen (s),
766           &tmp, &data);
767       data[0] = 0;              /* tag name length */
768       data[1] = strlen (t);
769       memcpy (&data[2], t, strlen (t));
770       data[2 + strlen (t)] = 2; /* string */
771       data[3 + strlen (t)] = (strlen (s) >> 8) & 0xff;
772       data[4 + strlen (t)] = (strlen (s)) & 0xff;
773       memcpy (&data[5 + strlen (t)], s, strlen (s));
774       script_tag = gst_buffer_append (script_tag, tmp);
775
776       g_free (s);
777       tags_written++;
778     }
779   }
780
781   if (!full)
782     goto end;
783
784   if (mux->duration == GST_CLOCK_TIME_NONE) {
785     GSList *l;
786     guint64 dur;
787
788     for (l = mux->collect->data; l; l = l->next) {
789       GstCollectData *cdata = l->data;
790
791       if (gst_pad_peer_query_duration (cdata->pad, GST_FORMAT_TIME,
792               (gint64 *) & dur) && dur != GST_CLOCK_TIME_NONE) {
793         if (mux->duration == GST_CLOCK_TIME_NONE)
794           mux->duration = dur;
795         else
796           mux->duration = MAX (dur, mux->duration);
797       }
798     }
799   }
800
801   if (!mux->streamable && mux->duration != GST_CLOCK_TIME_NONE) {
802     gdouble d;
803     GstMapInfo map;
804
805     d = gst_guint64_to_gdouble (mux->duration);
806     d /= (gdouble) GST_SECOND;
807
808     GST_DEBUG_OBJECT (mux, "determined the duration to be %f", d);
809     gst_buffer_map (script_tag, &map, GST_MAP_WRITE);
810     GST_WRITE_DOUBLE_BE (map.data + 29 + 2 + 8 + 1, d);
811     gst_buffer_unmap (script_tag, &map);
812   }
813
814   if (mux->have_video) {
815     GstPad *video_pad = NULL;
816     GstFlvPad *cpad;
817     GSList *l = mux->collect->data;
818
819     for (; l; l = l->next) {
820       cpad = l->data;
821       if (cpad && cpad->video) {
822         video_pad = cpad->collect.pad;
823         break;
824       }
825     }
826
827     if (video_pad && gst_pad_has_current_caps (video_pad)) {
828       GstCaps *caps;
829       GstStructure *s;
830       gint size;
831       gint num, den;
832
833       GST_DEBUG_OBJECT (mux, "putting videocodecid %d in the metadata",
834           cpad->video_codec);
835
836       tmp = gst_flv_mux_create_number_script_value ("videocodecid",
837           cpad->video_codec);
838       script_tag = gst_buffer_append (script_tag, tmp);
839       tags_written++;
840
841       caps = gst_pad_get_current_caps (video_pad);
842       s = gst_caps_get_structure (caps, 0);
843       gst_caps_unref (caps);
844
845       if (gst_structure_get_int (s, "width", &size)) {
846         GST_DEBUG_OBJECT (mux, "putting width %d in the metadata", size);
847
848         tmp = gst_flv_mux_create_number_script_value ("width", size);
849         script_tag = gst_buffer_append (script_tag, tmp);
850         tags_written++;
851       }
852
853       if (gst_structure_get_int (s, "height", &size)) {
854         GST_DEBUG_OBJECT (mux, "putting height %d in the metadata", size);
855
856         tmp = gst_flv_mux_create_number_script_value ("height", size);
857         script_tag = gst_buffer_append (script_tag, tmp);
858         tags_written++;
859       }
860
861       if (gst_structure_get_fraction (s, "pixel-aspect-ratio", &num, &den)) {
862         gdouble d;
863
864         d = num;
865         GST_DEBUG_OBJECT (mux, "putting AspectRatioX %f in the metadata", d);
866
867         tmp = gst_flv_mux_create_number_script_value ("AspectRatioX", d);
868         script_tag = gst_buffer_append (script_tag, tmp);
869         tags_written++;
870
871         d = den;
872         GST_DEBUG_OBJECT (mux, "putting AspectRatioY %f in the metadata", d);
873
874         tmp = gst_flv_mux_create_number_script_value ("AspectRatioY", d);
875         script_tag = gst_buffer_append (script_tag, tmp);
876         tags_written++;
877       }
878
879       if (gst_structure_get_fraction (s, "framerate", &num, &den)) {
880         gdouble d;
881
882         gst_util_fraction_to_double (num, den, &d);
883         GST_DEBUG_OBJECT (mux, "putting framerate %f in the metadata", d);
884
885         tmp = gst_flv_mux_create_number_script_value ("framerate", d);
886         script_tag = gst_buffer_append (script_tag, tmp);
887         tags_written++;
888       }
889     }
890   }
891
892   if (mux->have_audio) {
893     GstPad *audio_pad = NULL;
894     GstFlvPad *cpad;
895     GSList *l = mux->collect->data;
896
897     for (; l; l = l->next) {
898       cpad = l->data;
899       if (cpad && !cpad->video) {
900         audio_pad = cpad->collect.pad;
901         break;
902       }
903     }
904
905     if (audio_pad) {
906       GST_DEBUG_OBJECT (mux, "putting audiocodecid %d in the metadata",
907           cpad->audio_codec);
908
909       tmp = gst_flv_mux_create_number_script_value ("audiocodecid",
910           cpad->audio_codec);
911       script_tag = gst_buffer_append (script_tag, tmp);
912       tags_written++;
913     }
914   }
915
916   {
917     const gchar *s = "GStreamer FLV muxer";
918
919     _gst_buffer_new_and_alloc (2 + 15 + 1 + 2 + strlen (s), &tmp, &data);
920     data[0] = 0;                /* 15 bytes name */
921     data[1] = 15;
922     memcpy (&data[2], "metadatacreator", 15);
923     data[17] = 2;               /* string */
924     data[18] = (strlen (s) >> 8) & 0xff;
925     data[19] = (strlen (s)) & 0xff;
926     memcpy (&data[20], s, strlen (s));
927     script_tag = gst_buffer_append (script_tag, tmp);
928
929     tags_written++;
930   }
931
932   {
933     GTimeVal tv = { 0, };
934     time_t secs;
935     struct tm *tm;
936     gchar *s;
937     static const gchar *weekdays[] = {
938       "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
939     };
940     static const gchar *months[] = {
941       "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
942       "Aug", "Sep", "Oct", "Nov", "Dec"
943     };
944
945     g_get_current_time (&tv);
946     secs = tv.tv_sec;
947     tm = gmtime (&secs);
948
949     s = g_strdup_printf ("%s %s %d %d:%d:%d %d", weekdays[tm->tm_wday],
950         months[tm->tm_mon], tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec,
951         tm->tm_year + 1900);
952
953     _gst_buffer_new_and_alloc (2 + 12 + 1 + 2 + strlen (s), &tmp, &data);
954     data[0] = 0;                /* 12 bytes name */
955     data[1] = 12;
956     memcpy (&data[2], "creationdate", 12);
957     data[14] = 2;               /* string */
958     data[15] = (strlen (s) >> 8) & 0xff;
959     data[16] = (strlen (s)) & 0xff;
960     memcpy (&data[17], s, strlen (s));
961     script_tag = gst_buffer_append (script_tag, tmp);
962
963     g_free (s);
964     tags_written++;
965   }
966
967 end:
968
969   if (!tags_written) {
970     gst_buffer_unref (script_tag);
971     script_tag = NULL;
972     goto exit;
973   }
974
975   _gst_buffer_new_and_alloc (2 + 0 + 1, &tmp, &data);
976   data[0] = 0;                  /* 0 byte size */
977   data[1] = 0;
978   data[2] = 9;                  /* end marker */
979   script_tag = gst_buffer_append (script_tag, tmp);
980   tags_written++;
981
982   _gst_buffer_new_and_alloc (4, &tmp, &data);
983   GST_WRITE_UINT32_BE (data, gst_buffer_get_size (script_tag));
984   script_tag = gst_buffer_append (script_tag, tmp);
985
986   gst_buffer_map (script_tag, &map, GST_MAP_WRITE);
987   map.data[1] = ((gst_buffer_get_size (script_tag) - 11 - 4) >> 16) & 0xff;
988   map.data[2] = ((gst_buffer_get_size (script_tag) - 11 - 4) >> 8) & 0xff;
989   map.data[3] = ((gst_buffer_get_size (script_tag) - 11 - 4) >> 0) & 0xff;
990
991   GST_WRITE_UINT32_BE (map.data + 11 + 13 + 1, tags_written);
992   gst_buffer_unmap (script_tag, &map);
993
994 exit:
995   return script_tag;
996 }
997
998 static GstBuffer *
999 gst_flv_mux_buffer_to_tag_internal (GstFlvMux * mux, GstBuffer * buffer,
1000     GstFlvPad * cpad, gboolean is_codec_data)
1001 {
1002   GstBuffer *tag;
1003   GstMapInfo map;
1004   guint size;
1005   guint32 pts, dts, cts;
1006   guint8 *data, *bdata;
1007   gsize bsize;
1008
1009   if (GST_BUFFER_DTS_IS_VALID (buffer))
1010     dts = GST_BUFFER_DTS (buffer) / GST_MSECOND;
1011   else
1012     dts = cpad->last_timestamp / GST_MSECOND;
1013
1014   if (GST_BUFFER_PTS_IS_VALID (buffer))
1015     pts = GST_BUFFER_PTS (buffer) / GST_MSECOND;
1016   else
1017     pts = dts;
1018
1019   if (pts > dts)
1020     cts = pts - dts;
1021   else
1022     cts = 0;
1023
1024   /* Timestamp must start at zero */
1025   if (GST_CLOCK_TIME_IS_VALID (mux->first_timestamp)) {
1026     dts -= mux->first_timestamp / GST_MSECOND;
1027     pts = dts + cts;
1028   }
1029
1030   GST_LOG_OBJECT (mux, "got pts %i dts %i cts %i\n", pts, dts, cts);
1031
1032   gst_buffer_map (buffer, &map, GST_MAP_READ);
1033   bdata = map.data;
1034   bsize = map.size;
1035
1036   size = 11;
1037   if (cpad->video) {
1038     size += 1;
1039     if (cpad->video_codec == 7)
1040       size += 4 + bsize;
1041     else
1042       size += bsize;
1043   } else {
1044     size += 1;
1045     if (cpad->audio_codec == 10)
1046       size += 1 + bsize;
1047     else
1048       size += bsize;
1049   }
1050   size += 4;
1051
1052   _gst_buffer_new_and_alloc (size, &tag, &data);
1053   memset (data, 0, size);
1054
1055   data[0] = (cpad->video) ? 9 : 8;
1056
1057   data[1] = ((size - 11 - 4) >> 16) & 0xff;
1058   data[2] = ((size - 11 - 4) >> 8) & 0xff;
1059   data[3] = ((size - 11 - 4) >> 0) & 0xff;
1060
1061   GST_WRITE_UINT24_BE (data + 4, dts);
1062   data[7] = (((guint) dts) >> 24) & 0xff;
1063
1064   data[8] = data[9] = data[10] = 0;
1065
1066   if (cpad->video) {
1067     if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DELTA_UNIT))
1068       data[11] |= 2 << 4;
1069     else
1070       data[11] |= 1 << 4;
1071
1072     data[11] |= cpad->video_codec & 0x0f;
1073
1074     if (cpad->video_codec == 7) {
1075       if (is_codec_data) {
1076         data[12] = 0;
1077         GST_WRITE_UINT24_BE (data + 13, 0);
1078       } else {
1079         /* ACV NALU */
1080         data[12] = 1;
1081         GST_WRITE_UINT24_BE (data + 13, cts);
1082       }
1083       memcpy (data + 11 + 1 + 4, bdata, bsize);
1084     } else {
1085       memcpy (data + 11 + 1, bdata, bsize);
1086     }
1087   } else {
1088     data[11] |= (cpad->audio_codec << 4) & 0xf0;
1089     data[11] |= (cpad->rate << 2) & 0x0c;
1090     data[11] |= (cpad->width << 1) & 0x02;
1091     data[11] |= (cpad->channels << 0) & 0x01;
1092
1093     if (cpad->audio_codec == 10) {
1094       data[12] = is_codec_data ? 0 : 1;
1095
1096       memcpy (data + 11 + 1 + 1, bdata, bsize);
1097     } else {
1098       memcpy (data + 11 + 1, bdata, bsize);
1099     }
1100   }
1101
1102   gst_buffer_unmap (buffer, &map);
1103
1104   GST_WRITE_UINT32_BE (data + size - 4, size - 4);
1105
1106   GST_BUFFER_PTS (tag) = GST_CLOCK_TIME_NONE;
1107   GST_BUFFER_DTS (tag) = GST_CLOCK_TIME_NONE;
1108   GST_BUFFER_DURATION (tag) = GST_CLOCK_TIME_NONE;
1109   GST_BUFFER_OFFSET (tag) = GST_BUFFER_OFFSET (buffer);
1110   GST_BUFFER_OFFSET_END (tag) = GST_BUFFER_OFFSET_END (buffer);
1111
1112   /* mark the buffer if it's an audio buffer and there's also video being muxed
1113    * or it's a video interframe */
1114   if ((mux->have_video && !cpad->video) ||
1115       GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DELTA_UNIT))
1116     GST_BUFFER_FLAG_SET (tag, GST_BUFFER_FLAG_DELTA_UNIT);
1117
1118   GST_BUFFER_OFFSET (tag) = GST_BUFFER_OFFSET_END (tag) =
1119       GST_BUFFER_OFFSET_NONE;
1120
1121   return tag;
1122 }
1123
1124 static inline GstBuffer *
1125 gst_flv_mux_buffer_to_tag (GstFlvMux * mux, GstBuffer * buffer,
1126     GstFlvPad * cpad)
1127 {
1128   return gst_flv_mux_buffer_to_tag_internal (mux, buffer, cpad, FALSE);
1129 }
1130
1131 static inline GstBuffer *
1132 gst_flv_mux_codec_data_buffer_to_tag (GstFlvMux * mux, GstBuffer * buffer,
1133     GstFlvPad * cpad)
1134 {
1135   return gst_flv_mux_buffer_to_tag_internal (mux, buffer, cpad, TRUE);
1136 }
1137
1138 static void
1139 gst_flv_mux_put_buffer_in_streamheader (GValue * streamheader,
1140     GstBuffer * buffer)
1141 {
1142   GValue value = { 0 };
1143   GstBuffer *buf;
1144
1145   g_value_init (&value, GST_TYPE_BUFFER);
1146   buf = gst_buffer_copy (buffer);
1147   gst_value_set_buffer (&value, buf);
1148   gst_buffer_unref (buf);
1149   gst_value_array_append_value (streamheader, &value);
1150   g_value_unset (&value);
1151 }
1152
1153 static GstFlowReturn
1154 gst_flv_mux_write_header (GstFlvMux * mux)
1155 {
1156   GstBuffer *header, *metadata;
1157   GstBuffer *video_codec_data, *audio_codec_data;
1158   GstCaps *caps;
1159   GstStructure *structure;
1160   GValue streamheader = { 0 };
1161   GSList *l;
1162   GstFlowReturn ret;
1163   GstSegment segment;
1164   gchar s_id[32];
1165
1166   /* if not streaming, check if downstream is seekable */
1167   if (!mux->streamable) {
1168     gboolean seekable;
1169     GstQuery *query;
1170
1171     query = gst_query_new_seeking (GST_FORMAT_BYTES);
1172     if (gst_pad_peer_query (mux->srcpad, query)) {
1173       gst_query_parse_seeking (query, NULL, &seekable, NULL, NULL);
1174       GST_INFO_OBJECT (mux, "downstream is %sseekable", seekable ? "" : "not ");
1175     } else {
1176       /* have to assume seeking is supported if query not handled downstream */
1177       GST_WARNING_OBJECT (mux, "downstream did not handle seeking query");
1178       seekable = FALSE;
1179     }
1180     if (!seekable) {
1181       mux->streamable = TRUE;
1182       g_object_notify (G_OBJECT (mux), "streamable");
1183       GST_WARNING_OBJECT (mux, "downstream is not seekable, but "
1184           "streamable=false. Will ignore that and create streamable output "
1185           "instead");
1186     }
1187     gst_query_unref (query);
1188   }
1189
1190   header = gst_flv_mux_create_header (mux);
1191   metadata = gst_flv_mux_create_metadata (mux, TRUE);
1192   video_codec_data = NULL;
1193   audio_codec_data = NULL;
1194
1195   for (l = mux->collect->data; l != NULL; l = l->next) {
1196     GstFlvPad *cpad = l->data;
1197
1198     /* Get H.264 and AAC codec data, if present */
1199     if (cpad && cpad->video && cpad->video_codec == 7) {
1200       if (cpad->video_codec_data == NULL)
1201         GST_WARNING_OBJECT (mux, "Codec data for video stream not found, "
1202             "output might not be playable");
1203       else
1204         video_codec_data =
1205             gst_flv_mux_codec_data_buffer_to_tag (mux, cpad->video_codec_data,
1206             cpad);
1207     } else if (cpad && !cpad->video && cpad->audio_codec == 10) {
1208       if (cpad->audio_codec_data == NULL)
1209         GST_WARNING_OBJECT (mux, "Codec data for audio stream not found, "
1210             "output might not be playable");
1211       else
1212         audio_codec_data =
1213             gst_flv_mux_codec_data_buffer_to_tag (mux, cpad->audio_codec_data,
1214             cpad);
1215     }
1216   }
1217
1218   /* mark buffers that will go in the streamheader */
1219   GST_BUFFER_FLAG_SET (header, GST_BUFFER_FLAG_HEADER);
1220   GST_BUFFER_FLAG_SET (metadata, GST_BUFFER_FLAG_HEADER);
1221   if (video_codec_data != NULL) {
1222     GST_BUFFER_FLAG_SET (video_codec_data, GST_BUFFER_FLAG_HEADER);
1223     /* mark as a delta unit, so downstream will not try to synchronize on that
1224      * buffer - to actually start playback you need a real video keyframe */
1225     GST_BUFFER_FLAG_SET (video_codec_data, GST_BUFFER_FLAG_DELTA_UNIT);
1226   }
1227   if (audio_codec_data != NULL) {
1228     GST_BUFFER_FLAG_SET (audio_codec_data, GST_BUFFER_FLAG_HEADER);
1229   }
1230
1231   /* put buffers in streamheader */
1232   g_value_init (&streamheader, GST_TYPE_ARRAY);
1233   gst_flv_mux_put_buffer_in_streamheader (&streamheader, header);
1234   gst_flv_mux_put_buffer_in_streamheader (&streamheader, metadata);
1235   if (video_codec_data != NULL)
1236     gst_flv_mux_put_buffer_in_streamheader (&streamheader, video_codec_data);
1237   if (audio_codec_data != NULL)
1238     gst_flv_mux_put_buffer_in_streamheader (&streamheader, audio_codec_data);
1239
1240   /* stream-start (FIXME: create id based on input ids) */
1241   g_snprintf (s_id, sizeof (s_id), "flvmux-%08x", g_random_int ());
1242   gst_pad_push_event (mux->srcpad, gst_event_new_stream_start (s_id));
1243
1244   /* create the caps and put the streamheader in them */
1245   caps = gst_caps_new_empty_simple ("video/x-flv");
1246   structure = gst_caps_get_structure (caps, 0);
1247   gst_structure_set_value (structure, "streamheader", &streamheader);
1248   g_value_unset (&streamheader);
1249
1250   gst_pad_set_caps (mux->srcpad, caps);
1251
1252   gst_caps_unref (caps);
1253
1254   /* segment */
1255   gst_segment_init (&segment, GST_FORMAT_BYTES);
1256   gst_pad_push_event (mux->srcpad, gst_event_new_segment (&segment));
1257
1258   /* push the header buffer, the metadata and the codec info, if any */
1259   ret = gst_flv_mux_push (mux, header);
1260   if (ret != GST_FLOW_OK)
1261     return ret;
1262   ret = gst_flv_mux_push (mux, metadata);
1263   if (ret != GST_FLOW_OK)
1264     return ret;
1265   if (video_codec_data != NULL) {
1266     ret = gst_flv_mux_push (mux, video_codec_data);
1267     if (ret != GST_FLOW_OK)
1268       return ret;
1269   }
1270   if (audio_codec_data != NULL) {
1271     ret = gst_flv_mux_push (mux, audio_codec_data);
1272     if (ret != GST_FLOW_OK)
1273       return ret;
1274   }
1275   return GST_FLOW_OK;
1276 }
1277
1278 static void
1279 gst_flv_mux_update_index (GstFlvMux * mux, GstBuffer * buffer, GstFlvPad * cpad)
1280 {
1281   /*
1282    * Add the tag byte offset and to the index if it's a valid seek point, which
1283    * means it's either a video keyframe or if there is no video pad (in that
1284    * case every FLV tag is a valid seek point)
1285    */
1286   if (mux->have_video &&
1287       (!cpad->video ||
1288           GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DELTA_UNIT)))
1289     return;
1290
1291   if (GST_BUFFER_PTS_IS_VALID (buffer)) {
1292     GstFlvMuxIndexEntry *entry = g_slice_new (GstFlvMuxIndexEntry);
1293     entry->position = mux->byte_count;
1294     entry->time = gst_guint64_to_gdouble (GST_BUFFER_PTS (buffer)) / GST_SECOND;
1295     mux->index = g_list_prepend (mux->index, entry);
1296   }
1297 }
1298
1299 static GstFlowReturn
1300 gst_flv_mux_write_buffer (GstFlvMux * mux, GstFlvPad * cpad, GstBuffer * buffer)
1301 {
1302   GstBuffer *tag;
1303   GstFlowReturn ret;
1304   GstClockTime dts = GST_BUFFER_DTS (buffer);
1305
1306   /* clipping function arranged for running_time */
1307
1308   if (!mux->streamable)
1309     gst_flv_mux_update_index (mux, buffer, cpad);
1310
1311   tag = gst_flv_mux_buffer_to_tag (mux, buffer, cpad);
1312
1313   gst_buffer_unref (buffer);
1314
1315   ret = gst_flv_mux_push (mux, tag);
1316
1317   if (ret == GST_FLOW_OK && GST_CLOCK_TIME_IS_VALID (dts))
1318     cpad->last_timestamp = dts;
1319
1320
1321   return ret;
1322 }
1323
1324 static guint64
1325 gst_flv_mux_determine_duration (GstFlvMux * mux)
1326 {
1327   GSList *l;
1328   GstClockTime duration = GST_CLOCK_TIME_NONE;
1329
1330   GST_DEBUG_OBJECT (mux, "trying to determine the duration "
1331       "from pad timestamps");
1332
1333   for (l = mux->collect->data; l != NULL; l = l->next) {
1334     GstFlvPad *cpad = l->data;
1335
1336     if (cpad && (cpad->last_timestamp != GST_CLOCK_TIME_NONE)) {
1337       if (duration == GST_CLOCK_TIME_NONE)
1338         duration = cpad->last_timestamp;
1339       else
1340         duration = MAX (duration, cpad->last_timestamp);
1341     }
1342   }
1343
1344   return duration;
1345 }
1346
1347 static GstFlowReturn
1348 gst_flv_mux_rewrite_header (GstFlvMux * mux)
1349 {
1350   GstBuffer *rewrite, *index, *tmp;
1351   GstEvent *event;
1352   guint8 *data;
1353   gdouble d;
1354   GList *l;
1355   guint32 index_len, allocate_size;
1356   guint32 i, index_skip;
1357   GstSegment segment;
1358   GstClockTime dur;
1359
1360   if (mux->streamable)
1361     return GST_FLOW_OK;
1362
1363   /* seek back to the preallocated index space */
1364   gst_segment_init (&segment, GST_FORMAT_BYTES);
1365   segment.start = segment.time = 13 + 29;
1366   event = gst_event_new_segment (&segment);
1367   if (!gst_pad_push_event (mux->srcpad, event)) {
1368     GST_WARNING_OBJECT (mux, "Seek to rewrite header failed");
1369     return GST_FLOW_OK;
1370   }
1371
1372   /* determine duration now based on our own timestamping,
1373    * so that it is likely many times better and consistent
1374    * than whatever obtained by some query */
1375   dur = gst_flv_mux_determine_duration (mux);
1376   if (dur != GST_CLOCK_TIME_NONE)
1377     mux->duration = dur;
1378
1379   /* rewrite the duration tag */
1380   d = gst_guint64_to_gdouble (mux->duration);
1381   d /= (gdouble) GST_SECOND;
1382
1383   GST_DEBUG_OBJECT (mux, "determined the final duration to be %f", d);
1384
1385   rewrite = gst_flv_mux_create_number_script_value ("duration", d);
1386
1387   /* rewrite the filesize tag */
1388   d = gst_guint64_to_gdouble (mux->byte_count);
1389
1390   GST_DEBUG_OBJECT (mux, "putting total filesize %f in the metadata", d);
1391
1392   tmp = gst_flv_mux_create_number_script_value ("filesize", d);
1393   rewrite = gst_buffer_append (rewrite, tmp);
1394
1395   if (!mux->index) {
1396     /* no index, so push buffer and return */
1397     return gst_flv_mux_push (mux, rewrite);
1398   }
1399
1400   /* rewrite the index */
1401   mux->index = g_list_reverse (mux->index);
1402   index_len = g_list_length (mux->index);
1403
1404   /* We write at most MAX_INDEX_ENTRIES elements */
1405   if (index_len > MAX_INDEX_ENTRIES) {
1406     index_skip = 1 + index_len / MAX_INDEX_ENTRIES;
1407     index_len = (index_len + index_skip - 1) / index_skip;
1408   } else {
1409     index_skip = 1;
1410   }
1411
1412   GST_DEBUG_OBJECT (mux, "Index length is %d", index_len);
1413   /* see size calculation in gst_flv_mux_preallocate_index */
1414   allocate_size = 11 + 8 + 22 + 10 + index_len * 18;
1415   GST_DEBUG_OBJECT (mux, "Allocating %d bytes for index", allocate_size);
1416   _gst_buffer_new_and_alloc (allocate_size, &index, &data);
1417
1418   GST_WRITE_UINT16_BE (data, 9);        /* the 'keyframes' key */
1419   memcpy (data + 2, "keyframes", 9);
1420   GST_WRITE_UINT8 (data + 11, 8);       /* nested ECMA array */
1421   GST_WRITE_UINT32_BE (data + 12, 2);   /* two elements */
1422   GST_WRITE_UINT16_BE (data + 16, 5);   /* first string key: 'times' */
1423   memcpy (data + 18, "times", 5);
1424   GST_WRITE_UINT8 (data + 23, 10);      /* strict array */
1425   GST_WRITE_UINT32_BE (data + 24, index_len);
1426   data += 28;
1427
1428   /* the keyframes' times */
1429   for (i = 0, l = mux->index; l; l = l->next, i++) {
1430     GstFlvMuxIndexEntry *entry = l->data;
1431
1432     if (i % index_skip != 0)
1433       continue;
1434     GST_WRITE_UINT8 (data, 0);  /* numeric (aka double) */
1435     GST_WRITE_DOUBLE_BE (data + 1, entry->time);
1436     data += 9;
1437   }
1438
1439   GST_WRITE_UINT16_BE (data, 13);       /* second string key: 'filepositions' */
1440   memcpy (data + 2, "filepositions", 13);
1441   GST_WRITE_UINT8 (data + 15, 10);      /* strict array */
1442   GST_WRITE_UINT32_BE (data + 16, index_len);
1443   data += 20;
1444
1445   /* the keyframes' file positions */
1446   for (i = 0, l = mux->index; l; l = l->next, i++) {
1447     GstFlvMuxIndexEntry *entry = l->data;
1448
1449     if (i % index_skip != 0)
1450       continue;
1451     GST_WRITE_UINT8 (data, 0);
1452     GST_WRITE_DOUBLE_BE (data + 1, entry->position);
1453     data += 9;
1454   }
1455
1456   GST_WRITE_UINT24_BE (data, 9);        /* finish the ECMA array */
1457
1458   /* If there is space left in the prefilled area, reinsert the filler.
1459      There is at least 18  bytes free, so it will always fit. */
1460   if (index_len < MAX_INDEX_ENTRIES) {
1461     GstBuffer *tmp;
1462     guint8 *data;
1463     guint32 remaining_filler_size;
1464
1465     _gst_buffer_new_and_alloc (14, &tmp, &data);
1466     GST_WRITE_UINT16_BE (data, 9);
1467     memcpy (data + 2, "gstfiller", 9);
1468     GST_WRITE_UINT8 (data + 11, 2);     /* string */
1469
1470     /* There is 18 bytes per remaining index entry minus what is used for
1471      * the'gstfiller' key. The rest is already filled with spaces, so just need
1472      * to update length. */
1473     remaining_filler_size = (MAX_INDEX_ENTRIES - index_len) * 18 - 14;
1474     GST_DEBUG_OBJECT (mux, "Remaining filler size is %d bytes",
1475         remaining_filler_size);
1476     GST_WRITE_UINT16_BE (data + 12, remaining_filler_size);
1477     index = gst_buffer_append (index, tmp);
1478   }
1479
1480   rewrite = gst_buffer_append (rewrite, index);
1481
1482   return gst_flv_mux_push (mux, rewrite);
1483 }
1484
1485 static GstFlowReturn
1486 gst_flv_mux_handle_buffer (GstCollectPads * pads, GstCollectData * cdata,
1487     GstBuffer * buffer, gpointer user_data)
1488 {
1489   GstFlvMux *mux = GST_FLV_MUX (user_data);
1490   GstFlvPad *best;
1491   GstClockTime best_time;
1492   GstFlowReturn ret;
1493
1494   if (mux->state == GST_FLV_MUX_STATE_HEADER) {
1495     if (mux->collect->data == NULL) {
1496       GST_ELEMENT_ERROR (mux, STREAM, MUX, (NULL),
1497           ("No input streams configured"));
1498       return GST_FLOW_ERROR;
1499     }
1500
1501     ret = gst_flv_mux_write_header (mux);
1502     if (ret != GST_FLOW_OK)
1503       return ret;
1504     mux->state = GST_FLV_MUX_STATE_DATA;
1505
1506     if (GST_BUFFER_DTS_IS_VALID (buffer))
1507       mux->first_timestamp = GST_BUFFER_DTS (buffer);
1508     else
1509       mux->first_timestamp = 0;
1510   }
1511
1512   if (mux->new_tags) {
1513     GstBuffer *buf = gst_flv_mux_create_metadata (mux, FALSE);
1514     if (buf)
1515       gst_flv_mux_push (mux, buf);
1516     mux->new_tags = FALSE;
1517   }
1518
1519   best = (GstFlvPad *) cdata;
1520   if (best) {
1521     g_assert (buffer);
1522     best_time = GST_BUFFER_DTS (buffer);
1523   } else {
1524     best_time = GST_CLOCK_TIME_NONE;
1525   }
1526
1527   /* The FLV timestamp is an int32 field. For non-live streams error out if a
1528      bigger timestamp is seen, for live the timestamp will get wrapped in
1529      gst_flv_mux_buffer_to_tag */
1530   if (!mux->streamable && GST_CLOCK_TIME_IS_VALID (best_time)
1531       && best_time / GST_MSECOND > G_MAXINT32) {
1532     GST_WARNING_OBJECT (mux, "Timestamp larger than FLV supports - EOS");
1533     gst_buffer_unref (buffer);
1534     buffer = NULL;
1535     best = NULL;
1536   }
1537
1538   if (best) {
1539     return gst_flv_mux_write_buffer (mux, best, buffer);
1540   } else {
1541     gst_flv_mux_rewrite_header (mux);
1542     gst_pad_push_event (mux->srcpad, gst_event_new_eos ());
1543     return GST_FLOW_EOS;
1544   }
1545 }
1546
1547 static void
1548 gst_flv_mux_get_property (GObject * object,
1549     guint prop_id, GValue * value, GParamSpec * pspec)
1550 {
1551   GstFlvMux *mux = GST_FLV_MUX (object);
1552
1553   switch (prop_id) {
1554     case PROP_STREAMABLE:
1555       g_value_set_boolean (value, mux->streamable);
1556       break;
1557     default:
1558       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1559       break;
1560   }
1561 }
1562
1563 static void
1564 gst_flv_mux_set_property (GObject * object,
1565     guint prop_id, const GValue * value, GParamSpec * pspec)
1566 {
1567   GstFlvMux *mux = GST_FLV_MUX (object);
1568
1569   switch (prop_id) {
1570     case PROP_STREAMABLE:
1571       mux->streamable = g_value_get_boolean (value);
1572       if (mux->streamable)
1573         gst_tag_setter_set_tag_merge_mode (GST_TAG_SETTER (mux),
1574             GST_TAG_MERGE_REPLACE);
1575       else
1576         gst_tag_setter_set_tag_merge_mode (GST_TAG_SETTER (mux),
1577             GST_TAG_MERGE_KEEP);
1578       break;
1579     default:
1580       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1581       break;
1582   }
1583 }
1584
1585 static GstStateChangeReturn
1586 gst_flv_mux_change_state (GstElement * element, GstStateChange transition)
1587 {
1588   GstStateChangeReturn ret;
1589   GstFlvMux *mux = GST_FLV_MUX (element);
1590
1591   switch (transition) {
1592     case GST_STATE_CHANGE_NULL_TO_READY:
1593       break;
1594     case GST_STATE_CHANGE_READY_TO_PAUSED:
1595       gst_collect_pads_start (mux->collect);
1596       break;
1597     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
1598       break;
1599     case GST_STATE_CHANGE_PAUSED_TO_READY:
1600       gst_collect_pads_stop (mux->collect);
1601       break;
1602     default:
1603       break;
1604   }
1605
1606   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1607
1608   switch (transition) {
1609     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1610       break;
1611     case GST_STATE_CHANGE_PAUSED_TO_READY:
1612       gst_flv_mux_reset (GST_ELEMENT (mux));
1613       break;
1614     case GST_STATE_CHANGE_READY_TO_NULL:
1615       break;
1616     default:
1617       break;
1618   }
1619
1620   return ret;
1621 }