qtmux: Don't calculate PTS offset and DTS with GST_CLOCK_TIME_NONE
[platform/upstream/gst-plugins-good.git] / gst / isomp4 / gstqtmux.c
1 /* Quicktime muxer plugin for GStreamer
2  * Copyright (C) 2008-2010 Thiago Santos <thiagoss@embedded.ufcg.edu.br>
3  * Copyright (C) 2008 Mark Nauwelaerts <mnauw@users.sf.net>
4  * Copyright (C) 2010 Nokia Corporation. All rights reserved.
5  * Copyright (C) 2014 Jan Schmidt <jan@centricular.com>
6  * Contact: Stefan Kost <stefan.kost@nokia.com>
7
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23 /*
24  * Unless otherwise indicated, Source Code is licensed under MIT license.
25  * See further explanation attached in License Statement (distributed in the file
26  * LICENSE).
27  *
28  * Permission is hereby granted, free of charge, to any person obtaining a copy of
29  * this software and associated documentation files (the "Software"), to deal in
30  * the Software without restriction, including without limitation the rights to
31  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
32  * of the Software, and to permit persons to whom the Software is furnished to do
33  * so, subject to the following conditions:
34  *
35  * The above copyright notice and this permission notice shall be included in all
36  * copies or substantial portions of the Software.
37  *
38  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
39  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
40  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
41  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
42  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
43  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
44  * SOFTWARE.
45  */
46
47
48 /**
49  * SECTION:element-qtmux
50  * @short_description: Muxer for quicktime(.mov) files
51  *
52  * This element merges streams (audio and video) into QuickTime(.mov) files.
53  *
54  * The following background intends to explain why various similar muxers
55  * are present in this plugin.
56  *
57  * The <ulink url="http://www.apple.com/quicktime/resources/qtfileformat.pdf">
58  * QuickTime file format specification</ulink> served as basis for the MP4 file
59  * format specification (mp4mux), and as such the QuickTime file structure is
60  * nearly identical to the so-called ISO Base Media file format defined in
61  * ISO 14496-12 (except for some media specific parts).
62  * In turn, the latter ISO Base Media format was further specialized as a
63  * Motion JPEG-2000 file format in ISO 15444-3 (mj2mux)
64  * and in various 3GPP(2) specs (gppmux).
65  * The fragmented file features defined (only) in ISO Base Media are used by
66  * ISMV files making up (a.o.) Smooth Streaming (ismlmux).
67  *
68  * A few properties (#GstQTMux:movie-timescale, #GstQTMux:trak-timescale) allow
69  * adjusting some technical parameters, which might be useful in (rare) cases to
70  * resolve compatibility issues in some situations.
71  *
72  * Some other properties influence the result more fundamentally.
73  * A typical mov/mp4 file's metadata (aka moov) is located at the end of the
74  * file, somewhat contrary to this usually being called "the header".
75  * However, a #GstQTMux:faststart file will (with some effort) arrange this to
76  * be located near start of the file, which then allows it e.g. to be played
77  * while downloading. Alternatively, rather than having one chunk of metadata at
78  * start (or end), there can be some metadata at start and most of the other
79  * data can be spread out into fragments of #GstQTMux:fragment-duration.
80  * If such fragmented layout is intended for streaming purposes, then
81  * #GstQTMux:streamable allows foregoing to add index metadata (at the end of
82  * file).
83  *
84  * When the maximum duration to be recorded can be known in advance, #GstQTMux
85  * also supports a 'Robust Muxing' mode. In robust muxing mode,  space for the
86  * headers are reserved at the start of muxing, and rewritten at a configurable
87  * interval, so that the output file is always playable, even if the recording
88  * is interrupted uncleanly by a crash. Robust muxing mode requires a seekable
89  * output, such as filesink, because it needs to rewrite the start of the file.
90  *
91  * To enable robust muxing mode, set the #GstQTMux::reserved-moov-update-period
92  * and #GstQTMux::reserved-max-duration property. Also present is the
93  * #GstQTMux::reserved-bytes-per-sec property, which can be increased if
94  * for some reason the default is not large enough and the initial reserved
95  * space for headers is too small. Applications can monitor the
96  * #GstQTMux::reserved-duration-remaining property to see how close to full
97  * the reserved space is becoming.
98  *
99  * <refsect2>
100  * <title>Example pipelines</title>
101  * |[
102  * gst-launch-1.0 v4l2src num-buffers=500 ! video/x-raw,width=320,height=240 ! videoconvert ! qtmux ! filesink location=video.mov
103  * ]|
104  * Records a video stream captured from a v4l2 device and muxes it into a qt file.
105  * </refsect2>
106  */
107
108 /*
109  * Based on avimux
110  */
111
112 #ifdef HAVE_CONFIG_H
113 #include "config.h"
114 #endif
115
116 #include <glib/gstdio.h>
117
118 #include <gst/gst.h>
119 #include <gst/base/gstcollectpads.h>
120 #include <gst/base/gstbytereader.h>
121 #include <gst/base/gstbitreader.h>
122 #include <gst/audio/audio.h>
123 #include <gst/video/video.h>
124 #include <gst/tag/tag.h>
125 #include <gst/pbutils/pbutils.h>
126
127 #include <sys/types.h>
128 #ifdef G_OS_WIN32
129 #include <io.h>                 /* lseek, open, close, read */
130 #undef lseek
131 #define lseek _lseeki64
132 #undef off_t
133 #define off_t guint64
134 #endif
135
136 #ifdef _MSC_VER
137 #define ftruncate g_win32_ftruncate
138 #endif
139
140 #ifdef HAVE_UNISTD_H
141 #  include <unistd.h>
142 #endif
143
144 #include "gstqtmux.h"
145
146 GST_DEBUG_CATEGORY_STATIC (gst_qt_mux_debug);
147 #define GST_CAT_DEFAULT gst_qt_mux_debug
148
149 /* Hacker notes.
150  *
151  * The basic building blocks of MP4 files are:
152  *  - an 'ftyp' box at the very start
153  *  - an 'mdat' box which contains the raw audio/video/subtitle data;
154  *    this is just a bunch of bytes, completely unframed and possibly
155  *    unordered with no additional meta-information
156  *  - a 'moov' box that contains information about the different streams
157  *    and what they contain, as well as sample tables for each stream
158  *    that tell the demuxer where in the mdat box each buffer/sample is
159  *    and what its duration/timestamp etc. is, and whether it's a
160  *    keyframe etc.
161  * Additionally, fragmented MP4 works by writing chunks of data in
162  * pairs of 'moof' and 'mdat' boxes:
163  *  - 'moof' boxes, header preceding each mdat fragment describing the
164  *    contents, like a moov but only for that fragment.
165  *  - a 'mfra' box for Fragmented MP4, which is written at the end and
166  *    contains a summary of all fragments and seek tables.
167  *
168  * Currently mp4mux can work in 4 different modes / generate 4 types
169  * of output files/streams:
170  *
171  * - Normal mp4: mp4mux will write a little ftyp identifier at the
172  *   beginning, then start an mdat box into which it will write all the
173  *   sample data. At EOS it will then write the moov header with track
174  *   headers and sample tables at the end of the file, and rewrite the
175  *   start of the file to fix up the mdat box size at the beginning.
176  *   It has to wait for EOS to write the moov (which includes the
177  *   sample tables) because it doesn't know how much space those
178  *   tables will be. The output downstream must be seekable to rewrite
179  *   the mdat box at EOS.
180  *
181  * - Fragmented mp4: moov header with track headers at start
182  *   but no sample table, followed by N fragments, each containing
183  *   track headers with sample tables followed by some data. Downstream
184  *   does not need to be seekable if the 'streamable' flag is TRUE,
185  *   as the final mfra and total duration will be omitted.
186  *
187  * - Fast-start mp4: the goal here is to create a file where the moov
188  *   headers are at the beginning; what mp4mux will do is write all
189  *   sample data into a temp file and build moov header plus sample
190  *   tables in memory and then when EOS comes, it will push out the
191  *   moov header plus sample tables at the beginning, followed by the
192  *   mdat sample data at the end which is read in from the temp file
193  *   Files created in this mode are better for streaming over the
194  *   network, since the client doesn't have to seek to the end of the
195  *   file to get the headers, but it requires copying all sample data
196  *   out of the temp file at EOS, which can be expensive. Downstream does
197  *   not need to be seekable, because of the use of the temp file.
198  *
199  * - Robust Muxing mode: In this mode, qtmux uses the reserved-max-duration
200  *   and reserved-moov-update-period properties to reserve free space
201  *   at the start of the file and periodically write the MOOV atom out
202  *   to it. That means that killing the muxing at any point still
203  *   results in a playable file, at the cost of wasting some amount of
204  *   free space at the start of file. The approximate recording duration
205  *   has to be known in advance to estimate how much free space to reserve
206  *   for the moov, and the downstream must be seekable.
207  *   If the moov header grows larger than the reserved space, an error
208  *   is generated - so it's better to over-estimate the amount of space
209  *   to reserve. To ensure the file is playable at any point, the moov
210  *   is updated using a 'ping-pong' strategy, so the output is never in
211  *   an invalid state.
212  */
213
214 #ifndef GST_REMOVE_DEPRECATED
215 enum
216 {
217   DTS_METHOD_DD,
218   DTS_METHOD_REORDER,
219   DTS_METHOD_ASC
220 };
221
222 static GType
223 gst_qt_mux_dts_method_get_type (void)
224 {
225   static GType gst_qt_mux_dts_method = 0;
226
227   if (!gst_qt_mux_dts_method) {
228     static const GEnumValue dts_methods[] = {
229       {DTS_METHOD_DD, "delta/duration", "dd"},
230       {DTS_METHOD_REORDER, "reorder", "reorder"},
231       {DTS_METHOD_ASC, "ascending", "asc"},
232       {0, NULL, NULL},
233     };
234
235     gst_qt_mux_dts_method =
236         g_enum_register_static ("GstQTMuxDtsMethods", dts_methods);
237   }
238
239   return gst_qt_mux_dts_method;
240 }
241
242 #define GST_TYPE_QT_MUX_DTS_METHOD \
243   (gst_qt_mux_dts_method_get_type ())
244 #endif
245
246 /* QTMux signals and args */
247 enum
248 {
249   /* FILL ME */
250   LAST_SIGNAL
251 };
252
253 enum
254 {
255   PROP_0,
256   PROP_MOVIE_TIMESCALE,
257   PROP_TRAK_TIMESCALE,
258   PROP_FAST_START,
259   PROP_FAST_START_TEMP_FILE,
260   PROP_MOOV_RECOV_FILE,
261   PROP_FRAGMENT_DURATION,
262   PROP_STREAMABLE,
263   PROP_RESERVED_MAX_DURATION,
264   PROP_RESERVED_DURATION_REMAINING,
265   PROP_RESERVED_MOOV_UPDATE_PERIOD,
266   PROP_RESERVED_BYTES_PER_SEC,
267 #ifndef GST_REMOVE_DEPRECATED
268   PROP_DTS_METHOD,
269 #endif
270   PROP_DO_CTTS,
271 };
272
273 /* some spare for header size as well */
274 #define MDAT_LARGE_FILE_LIMIT           ((guint64) 1024 * 1024 * 1024 * 2)
275
276 #define DEFAULT_MOVIE_TIMESCALE         1800
277 #define DEFAULT_TRAK_TIMESCALE          0
278 #define DEFAULT_DO_CTTS                 TRUE
279 #define DEFAULT_FAST_START              FALSE
280 #define DEFAULT_FAST_START_TEMP_FILE    NULL
281 #define DEFAULT_MOOV_RECOV_FILE         NULL
282 #define DEFAULT_FRAGMENT_DURATION       0
283 #define DEFAULT_STREAMABLE              TRUE
284 #ifndef GST_REMOVE_DEPRECATED
285 #define DEFAULT_DTS_METHOD              DTS_METHOD_REORDER
286 #endif
287 #define DEFAULT_RESERVED_MAX_DURATION   GST_CLOCK_TIME_NONE
288 #define DEFAULT_RESERVED_MOOV_UPDATE_PERIOD   GST_CLOCK_TIME_NONE
289 #define DEFAULT_RESERVED_BYTES_PER_SEC_PER_TRAK 550
290
291 static void gst_qt_mux_finalize (GObject * object);
292
293 static GstStateChangeReturn gst_qt_mux_change_state (GstElement * element,
294     GstStateChange transition);
295
296 /* property functions */
297 static void gst_qt_mux_set_property (GObject * object,
298     guint prop_id, const GValue * value, GParamSpec * pspec);
299 static void gst_qt_mux_get_property (GObject * object,
300     guint prop_id, GValue * value, GParamSpec * pspec);
301
302 /* pad functions */
303 static GstPad *gst_qt_mux_request_new_pad (GstElement * element,
304     GstPadTemplate * templ, const gchar * name, const GstCaps * caps);
305 static void gst_qt_mux_release_pad (GstElement * element, GstPad * pad);
306
307 /* event */
308 static gboolean gst_qt_mux_sink_event (GstCollectPads * pads,
309     GstCollectData * data, GstEvent * event, gpointer user_data);
310
311 static GstFlowReturn gst_qt_mux_handle_buffer (GstCollectPads * pads,
312     GstCollectData * cdata, GstBuffer * buf, gpointer user_data);
313 static GstFlowReturn gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad,
314     GstBuffer * buf);
315
316 static GstFlowReturn
317 gst_qt_mux_robust_recording_rewrite_moov (GstQTMux * qtmux);
318
319 static GstElementClass *parent_class = NULL;
320
321 static void
322 gst_qt_mux_base_init (gpointer g_class)
323 {
324   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
325   GstQTMuxClass *klass = (GstQTMuxClass *) g_class;
326   GstQTMuxClassParams *params;
327   GstPadTemplate *videosinktempl, *audiosinktempl, *subtitlesinktempl;
328   GstPadTemplate *srctempl;
329   gchar *longname, *description;
330
331   params =
332       (GstQTMuxClassParams *) g_type_get_qdata (G_OBJECT_CLASS_TYPE (g_class),
333       GST_QT_MUX_PARAMS_QDATA);
334   g_assert (params != NULL);
335
336   /* construct the element details struct */
337   longname = g_strdup_printf ("%s Muxer", params->prop->long_name);
338   description = g_strdup_printf ("Multiplex audio and video into a %s file",
339       params->prop->long_name);
340   gst_element_class_set_static_metadata (element_class, longname,
341       "Codec/Muxer", description,
342       "Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br>");
343   g_free (longname);
344   g_free (description);
345
346   /* pad templates */
347   srctempl = gst_pad_template_new ("src", GST_PAD_SRC,
348       GST_PAD_ALWAYS, params->src_caps);
349   gst_element_class_add_pad_template (element_class, srctempl);
350
351   if (params->audio_sink_caps) {
352     audiosinktempl = gst_pad_template_new ("audio_%u",
353         GST_PAD_SINK, GST_PAD_REQUEST, params->audio_sink_caps);
354     gst_element_class_add_pad_template (element_class, audiosinktempl);
355   }
356
357   if (params->video_sink_caps) {
358     videosinktempl = gst_pad_template_new ("video_%u",
359         GST_PAD_SINK, GST_PAD_REQUEST, params->video_sink_caps);
360     gst_element_class_add_pad_template (element_class, videosinktempl);
361   }
362
363   if (params->subtitle_sink_caps) {
364     subtitlesinktempl = gst_pad_template_new ("subtitle_%u",
365         GST_PAD_SINK, GST_PAD_REQUEST, params->subtitle_sink_caps);
366     gst_element_class_add_pad_template (element_class, subtitlesinktempl);
367   }
368
369   klass->format = params->prop->format;
370 }
371
372 static void
373 gst_qt_mux_class_init (GstQTMuxClass * klass)
374 {
375   GObjectClass *gobject_class;
376   GstElementClass *gstelement_class;
377   GParamFlags streamable_flags;
378   const gchar *streamable_desc;
379   gboolean streamable;
380 #define STREAMABLE_DESC "If set to true, the output should be as if it is to "\
381   "be streamed and hence no indexes written or duration written."
382
383   gobject_class = (GObjectClass *) klass;
384   gstelement_class = (GstElementClass *) klass;
385
386   parent_class = g_type_class_peek_parent (klass);
387
388   gobject_class->finalize = gst_qt_mux_finalize;
389   gobject_class->get_property = gst_qt_mux_get_property;
390   gobject_class->set_property = gst_qt_mux_set_property;
391
392   streamable_flags = G_PARAM_READWRITE | G_PARAM_CONSTRUCT;
393   if (klass->format == GST_QT_MUX_FORMAT_ISML) {
394     streamable_desc = STREAMABLE_DESC;
395     streamable = DEFAULT_STREAMABLE;
396   } else {
397     streamable_desc =
398         STREAMABLE_DESC " (DEPRECATED, only valid for fragmented MP4)";
399     streamable_flags |= G_PARAM_DEPRECATED;
400     streamable = FALSE;
401   }
402
403   g_object_class_install_property (gobject_class, PROP_MOVIE_TIMESCALE,
404       g_param_spec_uint ("movie-timescale", "Movie timescale",
405           "Timescale to use in the movie (units per second)",
406           1, G_MAXUINT32, DEFAULT_MOVIE_TIMESCALE,
407           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
408   g_object_class_install_property (gobject_class, PROP_TRAK_TIMESCALE,
409       g_param_spec_uint ("trak-timescale", "Track timescale",
410           "Timescale to use for the tracks (units per second, 0 is automatic)",
411           0, G_MAXUINT32, DEFAULT_TRAK_TIMESCALE,
412           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
413   g_object_class_install_property (gobject_class, PROP_DO_CTTS,
414       g_param_spec_boolean ("presentation-time",
415           "Include presentation-time info",
416           "Calculate and include presentation/composition time "
417           "(in addition to decoding time)", DEFAULT_DO_CTTS,
418           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
419 #ifndef GST_REMOVE_DEPRECATED
420   g_object_class_install_property (gobject_class, PROP_DTS_METHOD,
421       g_param_spec_enum ("dts-method", "dts-method",
422           "Method to determine DTS time (DEPRECATED)",
423           GST_TYPE_QT_MUX_DTS_METHOD, DEFAULT_DTS_METHOD,
424           G_PARAM_DEPRECATED | G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
425           G_PARAM_STATIC_STRINGS));
426 #endif
427   g_object_class_install_property (gobject_class, PROP_FAST_START,
428       g_param_spec_boolean ("faststart", "Format file to faststart",
429           "If the file should be formatted for faststart (headers first)",
430           DEFAULT_FAST_START, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
431   g_object_class_install_property (gobject_class, PROP_FAST_START_TEMP_FILE,
432       g_param_spec_string ("faststart-file", "File to use for storing buffers",
433           "File that will be used temporarily to store data from the stream "
434           "when creating a faststart file. If null a filepath will be "
435           "created automatically", DEFAULT_FAST_START_TEMP_FILE,
436           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
437   g_object_class_install_property (gobject_class, PROP_MOOV_RECOV_FILE,
438       g_param_spec_string ("moov-recovery-file",
439           "File to store data for posterior moov atom recovery",
440           "File to be used to store "
441           "data for moov atom making movie file recovery possible in case "
442           "of a crash during muxing. Null for disabled. (Experimental)",
443           DEFAULT_MOOV_RECOV_FILE,
444           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
445   g_object_class_install_property (gobject_class, PROP_FRAGMENT_DURATION,
446       g_param_spec_uint ("fragment-duration", "Fragment duration",
447           "Fragment durations in ms (produce a fragmented file if > 0)",
448           0, G_MAXUINT32, klass->format == GST_QT_MUX_FORMAT_ISML ?
449           2000 : DEFAULT_FRAGMENT_DURATION,
450           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
451   g_object_class_install_property (gobject_class, PROP_STREAMABLE,
452       g_param_spec_boolean ("streamable", "Streamable", streamable_desc,
453           streamable, streamable_flags | G_PARAM_STATIC_STRINGS));
454   g_object_class_install_property (gobject_class, PROP_RESERVED_MAX_DURATION,
455       g_param_spec_uint64 ("reserved-max-duration",
456           "Reserved maximum file duration (ns)",
457           "When set to a value > 0, reserves space for index tables at the "
458           "beginning of the file.",
459           0, G_MAXUINT64, DEFAULT_RESERVED_MAX_DURATION,
460           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
461   g_object_class_install_property (gobject_class,
462       PROP_RESERVED_DURATION_REMAINING,
463       g_param_spec_uint64 ("reserved-duration-remaining",
464           "Report the approximate amount of remaining recording space (ns)",
465           "Reports the approximate amount of remaining moov header space "
466           "reserved using reserved-max-duration", 0, G_MAXUINT64, 0,
467           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
468   g_object_class_install_property (gobject_class,
469       PROP_RESERVED_MOOV_UPDATE_PERIOD,
470       g_param_spec_uint64 ("reserved-moov-update-period",
471           "Interval at which to update index tables (ns)",
472           "When used with reserved-max-duration, periodically updates the "
473           "index tables with information muxed so far.", 0, G_MAXUINT64,
474           DEFAULT_RESERVED_MOOV_UPDATE_PERIOD,
475           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
476   g_object_class_install_property (gobject_class, PROP_RESERVED_BYTES_PER_SEC,
477       g_param_spec_uint ("reserved-bytes-per-sec",
478           "Reserved MOOV bytes per second, per track",
479           "Multiplier for converting reserved-max-duration into bytes of header to reserve, per second, per track",
480           0, 10000, DEFAULT_RESERVED_BYTES_PER_SEC_PER_TRAK,
481           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
482
483   gstelement_class->request_new_pad =
484       GST_DEBUG_FUNCPTR (gst_qt_mux_request_new_pad);
485   gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_qt_mux_change_state);
486   gstelement_class->release_pad = GST_DEBUG_FUNCPTR (gst_qt_mux_release_pad);
487 }
488
489 static void
490 gst_qt_mux_pad_reset (GstQTPad * qtpad)
491 {
492   qtpad->fourcc = 0;
493   qtpad->is_out_of_order = FALSE;
494   qtpad->sample_size = 0;
495   qtpad->sync = FALSE;
496   qtpad->last_dts = 0;
497   qtpad->dts_adjustment = GST_CLOCK_TIME_NONE;
498   qtpad->first_ts = GST_CLOCK_TIME_NONE;
499   qtpad->first_dts = GST_CLOCK_TIME_NONE;
500   qtpad->prepare_buf_func = NULL;
501   qtpad->create_empty_buffer = NULL;
502   qtpad->avg_bitrate = 0;
503   qtpad->max_bitrate = 0;
504   qtpad->total_duration = 0;
505   qtpad->total_bytes = 0;
506   qtpad->sparse = FALSE;
507   qtpad->tc_trak = NULL;
508
509   qtpad->buf_head = 0;
510   qtpad->buf_tail = 0;
511
512   gst_buffer_replace (&qtpad->last_buf, NULL);
513
514   if (qtpad->tags) {
515     gst_tag_list_unref (qtpad->tags);
516     qtpad->tags = NULL;
517   }
518
519   /* reference owned elsewhere */
520   qtpad->trak = NULL;
521
522   if (qtpad->traf) {
523     atom_traf_free (qtpad->traf);
524     qtpad->traf = NULL;
525   }
526   atom_array_clear (&qtpad->fragment_buffers);
527
528   /* reference owned elsewhere */
529   qtpad->tfra = NULL;
530 }
531
532 /*
533  * Takes GstQTMux back to its initial state
534  */
535 static void
536 gst_qt_mux_reset (GstQTMux * qtmux, gboolean alloc)
537 {
538   GSList *walk;
539
540   qtmux->state = GST_QT_MUX_STATE_NONE;
541   qtmux->header_size = 0;
542   qtmux->mdat_size = 0;
543   qtmux->moov_pos = 0;
544   qtmux->mdat_pos = 0;
545   qtmux->longest_chunk = GST_CLOCK_TIME_NONE;
546   qtmux->video_pads = 0;
547   qtmux->audio_pads = 0;
548   qtmux->fragment_sequence = 0;
549
550   if (qtmux->ftyp) {
551     atom_ftyp_free (qtmux->ftyp);
552     qtmux->ftyp = NULL;
553   }
554   if (qtmux->moov) {
555     atom_moov_free (qtmux->moov);
556     qtmux->moov = NULL;
557   }
558   if (qtmux->mfra) {
559     atom_mfra_free (qtmux->mfra);
560     qtmux->mfra = NULL;
561   }
562   if (qtmux->fast_start_file) {
563     fclose (qtmux->fast_start_file);
564     g_remove (qtmux->fast_start_file_path);
565     qtmux->fast_start_file = NULL;
566   }
567   if (qtmux->moov_recov_file) {
568     fclose (qtmux->moov_recov_file);
569     qtmux->moov_recov_file = NULL;
570   }
571   for (walk = qtmux->extra_atoms; walk; walk = g_slist_next (walk)) {
572     AtomInfo *ainfo = (AtomInfo *) walk->data;
573     ainfo->free_func (ainfo->atom);
574     g_free (ainfo);
575   }
576   g_slist_free (qtmux->extra_atoms);
577   qtmux->extra_atoms = NULL;
578
579   GST_OBJECT_LOCK (qtmux);
580   gst_tag_setter_reset_tags (GST_TAG_SETTER (qtmux));
581   GST_OBJECT_UNLOCK (qtmux);
582
583   /* reset pad data */
584   for (walk = qtmux->sinkpads; walk; walk = g_slist_next (walk)) {
585     GstQTPad *qtpad = (GstQTPad *) walk->data;
586     gst_qt_mux_pad_reset (qtpad);
587
588     /* hm, moov_free above yanked the traks away from us,
589      * so do not free, but do clear */
590     qtpad->trak = NULL;
591   }
592
593   if (alloc) {
594     qtmux->moov = atom_moov_new (qtmux->context);
595     /* ensure all is as nice and fresh as request_new_pad would provide it */
596     for (walk = qtmux->sinkpads; walk; walk = g_slist_next (walk)) {
597       GstQTPad *qtpad = (GstQTPad *) walk->data;
598
599       qtpad->trak = atom_trak_new (qtmux->context);
600       atom_moov_add_trak (qtmux->moov, qtpad->trak);
601     }
602   }
603
604   qtmux->reserved_moov_size = 0;
605   qtmux->last_moov_update = GST_CLOCK_TIME_NONE;
606   qtmux->muxed_since_last_update = 0;
607   qtmux->reserved_duration_remaining = GST_CLOCK_TIME_NONE;
608   qtmux->first_pts = GST_CLOCK_TIME_NONE;
609   qtmux->tc_pos = -1;
610 }
611
612 static void
613 gst_qt_mux_init (GstQTMux * qtmux, GstQTMuxClass * qtmux_klass)
614 {
615   GstElementClass *klass = GST_ELEMENT_CLASS (qtmux_klass);
616   GstPadTemplate *templ;
617
618   templ = gst_element_class_get_pad_template (klass, "src");
619   qtmux->srcpad = gst_pad_new_from_template (templ, "src");
620   gst_pad_use_fixed_caps (qtmux->srcpad);
621   gst_element_add_pad (GST_ELEMENT (qtmux), qtmux->srcpad);
622
623   qtmux->sinkpads = NULL;
624   qtmux->collect = gst_collect_pads_new ();
625   gst_collect_pads_set_buffer_function (qtmux->collect,
626       GST_DEBUG_FUNCPTR (gst_qt_mux_handle_buffer), qtmux);
627   gst_collect_pads_set_event_function (qtmux->collect,
628       GST_DEBUG_FUNCPTR (gst_qt_mux_sink_event), qtmux);
629   gst_collect_pads_set_clip_function (qtmux->collect,
630       GST_DEBUG_FUNCPTR (gst_collect_pads_clip_running_time), qtmux);
631
632   /* properties set to default upon construction */
633
634   qtmux->reserved_max_duration = DEFAULT_RESERVED_MAX_DURATION;
635   qtmux->reserved_moov_update_period = DEFAULT_RESERVED_MOOV_UPDATE_PERIOD;
636   qtmux->reserved_bytes_per_sec_per_trak =
637       DEFAULT_RESERVED_BYTES_PER_SEC_PER_TRAK;
638
639   /* always need this */
640   qtmux->context =
641       atoms_context_new (gst_qt_mux_map_format_to_flavor (qtmux_klass->format));
642
643   /* internals to initial state */
644   gst_qt_mux_reset (qtmux, TRUE);
645 }
646
647
648 static void
649 gst_qt_mux_finalize (GObject * object)
650 {
651   GstQTMux *qtmux = GST_QT_MUX_CAST (object);
652
653   gst_qt_mux_reset (qtmux, FALSE);
654
655   g_free (qtmux->fast_start_file_path);
656   g_free (qtmux->moov_recov_file_path);
657
658   atoms_context_free (qtmux->context);
659   gst_object_unref (qtmux->collect);
660
661   g_slist_free (qtmux->sinkpads);
662
663   G_OBJECT_CLASS (parent_class)->finalize (object);
664 }
665
666 static GstBuffer *
667 gst_qt_mux_prepare_jpc_buffer (GstQTPad * qtpad, GstBuffer * buf,
668     GstQTMux * qtmux)
669 {
670   GstBuffer *newbuf;
671   GstMapInfo map;
672   gsize size;
673
674   GST_LOG_OBJECT (qtmux, "Preparing jpc buffer");
675
676   if (buf == NULL)
677     return NULL;
678
679   size = gst_buffer_get_size (buf);
680   newbuf = gst_buffer_new_and_alloc (size + 8);
681   gst_buffer_copy_into (newbuf, buf, GST_BUFFER_COPY_ALL, 8, size);
682
683   gst_buffer_map (newbuf, &map, GST_MAP_WRITE);
684   GST_WRITE_UINT32_BE (map.data, map.size);
685   GST_WRITE_UINT32_LE (map.data + 4, FOURCC_jp2c);
686
687   gst_buffer_unmap (buf, &map);
688   gst_buffer_unref (buf);
689
690   return newbuf;
691 }
692
693 static GstBuffer *
694 gst_qt_mux_prepare_tx3g_buffer (GstQTPad * qtpad, GstBuffer * buf,
695     GstQTMux * qtmux)
696 {
697   GstBuffer *newbuf;
698   GstMapInfo frommap;
699   GstMapInfo tomap;
700   gsize size;
701   const guint8 *dataend;
702
703   GST_LOG_OBJECT (qtmux, "Preparing tx3g buffer %" GST_PTR_FORMAT, buf);
704
705   if (buf == NULL)
706     return NULL;
707
708   gst_buffer_map (buf, &frommap, GST_MAP_READ);
709
710   dataend = memchr (frommap.data, 0, frommap.size);
711   size = dataend ? dataend - frommap.data : frommap.size;
712   newbuf = gst_buffer_new_and_alloc (size + 2);
713
714   gst_buffer_map (newbuf, &tomap, GST_MAP_WRITE);
715
716   GST_WRITE_UINT16_BE (tomap.data, size);
717   memcpy (tomap.data + 2, frommap.data, size);
718
719   gst_buffer_unmap (newbuf, &tomap);
720   gst_buffer_unmap (buf, &frommap);
721
722   gst_buffer_copy_into (newbuf, buf, GST_BUFFER_COPY_METADATA, 0, size);
723
724   /* gst_buffer_copy_into is trying to be too clever and
725    * won't copy duration when size is different */
726   GST_BUFFER_DURATION (newbuf) = GST_BUFFER_DURATION (buf);
727
728   gst_buffer_unref (buf);
729
730   return newbuf;
731 }
732
733 static void
734 gst_qt_mux_pad_add_ac3_extension (GstQTMux * qtmux, GstQTPad * qtpad,
735     guint8 fscod, guint8 frmsizcod, guint8 bsid, guint8 bsmod, guint8 acmod,
736     guint8 lfe_on)
737 {
738   AtomInfo *ext;
739
740   g_return_if_fail (qtpad->trak_ste);
741
742   ext = build_ac3_extension (fscod, bsid, bsmod, acmod, lfe_on, frmsizcod >> 1);        /* bitrate_code is inside frmsizcod */
743
744   sample_table_entry_add_ext_atom (qtpad->trak_ste, ext);
745 }
746
747 static GstBuffer *
748 gst_qt_mux_prepare_parse_ac3_frame (GstQTPad * qtpad, GstBuffer * buf,
749     GstQTMux * qtmux)
750 {
751   GstMapInfo map;
752   GstByteReader reader;
753   guint off;
754
755   if (!gst_buffer_map (buf, &map, GST_MAP_READ)) {
756     GST_WARNING_OBJECT (qtpad->collect.pad, "Failed to map buffer");
757     return buf;
758   }
759
760   if (G_UNLIKELY (map.size < 8))
761     goto done;
762
763   gst_byte_reader_init (&reader, map.data, map.size);
764   off = gst_byte_reader_masked_scan_uint32 (&reader, 0xffff0000, 0x0b770000,
765       0, map.size);
766
767   if (off != -1) {
768     GstBitReader bits;
769     guint8 fscod, frmsizcod, bsid, bsmod, acmod, lfe_on;
770
771     GST_DEBUG_OBJECT (qtpad->collect.pad, "Found ac3 sync point at offset: %u",
772         off);
773
774     gst_bit_reader_init (&bits, map.data, map.size);
775
776     /* off + sync + crc */
777     gst_bit_reader_skip_unchecked (&bits, off * 8 + 16 + 16);
778
779     fscod = gst_bit_reader_get_bits_uint8_unchecked (&bits, 2);
780     frmsizcod = gst_bit_reader_get_bits_uint8_unchecked (&bits, 6);
781     bsid = gst_bit_reader_get_bits_uint8_unchecked (&bits, 5);
782     bsmod = gst_bit_reader_get_bits_uint8_unchecked (&bits, 3);
783     acmod = gst_bit_reader_get_bits_uint8_unchecked (&bits, 3);
784
785     if ((acmod & 0x1) && (acmod != 0x1))        /* 3 front channels */
786       gst_bit_reader_skip_unchecked (&bits, 2);
787     if ((acmod & 0x4))          /* if a surround channel exists */
788       gst_bit_reader_skip_unchecked (&bits, 2);
789     if (acmod == 0x2)           /* if in 2/0 mode */
790       gst_bit_reader_skip_unchecked (&bits, 2);
791
792     lfe_on = gst_bit_reader_get_bits_uint8_unchecked (&bits, 1);
793
794     gst_qt_mux_pad_add_ac3_extension (qtmux, qtpad, fscod, frmsizcod, bsid,
795         bsmod, acmod, lfe_on);
796
797     /* AC-3 spec says that those values should be constant for the
798      * whole stream when muxed in mp4. We trust the input follows it */
799     GST_DEBUG_OBJECT (qtpad->collect.pad, "Data parsed, removing "
800         "prepare buffer function");
801     qtpad->prepare_buf_func = NULL;
802   }
803
804 done:
805   gst_buffer_unmap (buf, &map);
806   return buf;
807 }
808
809 static GstBuffer *
810 gst_qt_mux_create_empty_tx3g_buffer (GstQTPad * qtpad, gint64 duration)
811 {
812   guint8 *data;
813
814   data = g_malloc (2);
815   GST_WRITE_UINT16_BE (data, 0);
816
817   return gst_buffer_new_wrapped (data, 2);
818 }
819
820 static void
821 gst_qt_mux_add_mp4_tag (GstQTMux * qtmux, const GstTagList * list,
822     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
823 {
824   switch (gst_tag_get_type (tag)) {
825       /* strings */
826     case G_TYPE_STRING:
827     {
828       gchar *str = NULL;
829
830       if (!gst_tag_list_get_string (list, tag, &str) || !str)
831         break;
832       GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
833           GST_FOURCC_ARGS (fourcc), str);
834       atom_udta_add_str_tag (udta, fourcc, str);
835       g_free (str);
836       break;
837     }
838       /* double */
839     case G_TYPE_DOUBLE:
840     {
841       gdouble value;
842
843       if (!gst_tag_list_get_double (list, tag, &value))
844         break;
845       GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %u",
846           GST_FOURCC_ARGS (fourcc), (gint) value);
847       atom_udta_add_uint_tag (udta, fourcc, 21, (gint) value);
848       break;
849     }
850     case G_TYPE_UINT:
851     {
852       guint value = 0;
853       if (tag2) {
854         /* paired unsigned integers */
855         guint count = 0;
856         gboolean got_tag;
857
858         got_tag = gst_tag_list_get_uint (list, tag, &value);
859         got_tag = gst_tag_list_get_uint (list, tag2, &count) || got_tag;
860         if (!got_tag)
861           break;
862         GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %u/%u",
863             GST_FOURCC_ARGS (fourcc), value, count);
864         atom_udta_add_uint_tag (udta, fourcc, 0,
865             value << 16 | (count & 0xFFFF));
866       } else {
867         /* unpaired unsigned integers */
868         if (!gst_tag_list_get_uint (list, tag, &value))
869           break;
870         GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %u",
871             GST_FOURCC_ARGS (fourcc), value);
872         atom_udta_add_uint_tag (udta, fourcc, 1, value);
873       }
874       break;
875     }
876     default:
877       g_assert_not_reached ();
878       break;
879   }
880 }
881
882 static void
883 gst_qt_mux_add_mp4_date (GstQTMux * qtmux, const GstTagList * list,
884     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
885 {
886   GDate *date = NULL;
887   GDateYear year;
888   GDateMonth month;
889   GDateDay day;
890   gchar *str;
891
892   g_return_if_fail (gst_tag_get_type (tag) == G_TYPE_DATE);
893
894   if (!gst_tag_list_get_date (list, tag, &date) || !date)
895     return;
896
897   year = g_date_get_year (date);
898   month = g_date_get_month (date);
899   day = g_date_get_day (date);
900
901   g_date_free (date);
902
903   if (year == G_DATE_BAD_YEAR && month == G_DATE_BAD_MONTH &&
904       day == G_DATE_BAD_DAY) {
905     GST_WARNING_OBJECT (qtmux, "invalid date in tag");
906     return;
907   }
908
909   str = g_strdup_printf ("%u-%u-%u", year, month, day);
910   GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
911       GST_FOURCC_ARGS (fourcc), str);
912   atom_udta_add_str_tag (udta, fourcc, str);
913   g_free (str);
914 }
915
916 static void
917 gst_qt_mux_add_mp4_cover (GstQTMux * qtmux, const GstTagList * list,
918     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
919 {
920   GValue value = { 0, };
921   GstBuffer *buf;
922   GstSample *sample;
923   GstCaps *caps;
924   GstStructure *structure;
925   gint flags = 0;
926   GstMapInfo map;
927
928   g_return_if_fail (gst_tag_get_type (tag) == GST_TYPE_SAMPLE);
929
930   if (!gst_tag_list_copy_value (&value, list, tag))
931     return;
932
933   sample = gst_value_get_sample (&value);
934
935   if (!sample)
936     goto done;
937
938   buf = gst_sample_get_buffer (sample);
939   if (!buf)
940     goto done;
941
942   caps = gst_sample_get_caps (sample);
943   if (!caps) {
944     GST_WARNING_OBJECT (qtmux, "preview image without caps");
945     goto done;
946   }
947
948   GST_DEBUG_OBJECT (qtmux, "preview image caps %" GST_PTR_FORMAT, caps);
949
950   structure = gst_caps_get_structure (caps, 0);
951   if (gst_structure_has_name (structure, "image/jpeg"))
952     flags = 13;
953   else if (gst_structure_has_name (structure, "image/png"))
954     flags = 14;
955
956   if (!flags) {
957     GST_WARNING_OBJECT (qtmux, "preview image format not supported");
958     goto done;
959   }
960
961   gst_buffer_map (buf, &map, GST_MAP_READ);
962   GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT
963       " -> image size %" G_GSIZE_FORMAT "", GST_FOURCC_ARGS (fourcc), map.size);
964   atom_udta_add_tag (udta, fourcc, flags, map.data, map.size);
965   gst_buffer_unmap (buf, &map);
966 done:
967   g_value_unset (&value);
968 }
969
970 static void
971 gst_qt_mux_add_3gp_str (GstQTMux * qtmux, const GstTagList * list,
972     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
973 {
974   gchar *str = NULL;
975   guint number;
976
977   g_return_if_fail (gst_tag_get_type (tag) == G_TYPE_STRING);
978   g_return_if_fail (!tag2 || gst_tag_get_type (tag2) == G_TYPE_UINT);
979
980   if (!gst_tag_list_get_string (list, tag, &str) || !str)
981     return;
982
983   if (tag2)
984     if (!gst_tag_list_get_uint (list, tag2, &number))
985       tag2 = NULL;
986
987   if (!tag2) {
988     GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
989         GST_FOURCC_ARGS (fourcc), str);
990     atom_udta_add_3gp_str_tag (udta, fourcc, str);
991   } else {
992     GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s/%d",
993         GST_FOURCC_ARGS (fourcc), str, number);
994     atom_udta_add_3gp_str_int_tag (udta, fourcc, str, number);
995   }
996
997   g_free (str);
998 }
999
1000 static void
1001 gst_qt_mux_add_3gp_date (GstQTMux * qtmux, const GstTagList * list,
1002     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1003 {
1004   GDate *date = NULL;
1005   GDateYear year;
1006
1007   g_return_if_fail (gst_tag_get_type (tag) == G_TYPE_DATE);
1008
1009   if (!gst_tag_list_get_date (list, tag, &date) || !date)
1010     return;
1011
1012   year = g_date_get_year (date);
1013   g_date_free (date);
1014
1015   if (year == G_DATE_BAD_YEAR) {
1016     GST_WARNING_OBJECT (qtmux, "invalid date in tag");
1017     return;
1018   }
1019
1020   GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %d",
1021       GST_FOURCC_ARGS (fourcc), year);
1022   atom_udta_add_3gp_uint_tag (udta, fourcc, year);
1023 }
1024
1025 static void
1026 gst_qt_mux_add_3gp_location (GstQTMux * qtmux, const GstTagList * list,
1027     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1028 {
1029   gdouble latitude = -360, longitude = -360, altitude = 0;
1030   gchar *location = NULL;
1031   guint8 *data, *ddata;
1032   gint size = 0, len = 0;
1033   gboolean ret = FALSE;
1034
1035   g_return_if_fail (strcmp (tag, GST_TAG_GEO_LOCATION_NAME) == 0);
1036
1037   ret = gst_tag_list_get_string (list, tag, &location);
1038   ret |= gst_tag_list_get_double (list, GST_TAG_GEO_LOCATION_LONGITUDE,
1039       &longitude);
1040   ret |= gst_tag_list_get_double (list, GST_TAG_GEO_LOCATION_LATITUDE,
1041       &latitude);
1042   ret |= gst_tag_list_get_double (list, GST_TAG_GEO_LOCATION_ELEVATION,
1043       &altitude);
1044
1045   if (!ret)
1046     return;
1047
1048   if (location)
1049     len = strlen (location);
1050   size += len + 1 + 2;
1051
1052   /* role + (long, lat, alt) + body + notes */
1053   size += 1 + 3 * 4 + 1 + 1;
1054
1055   data = ddata = g_malloc (size);
1056
1057   /* language tag */
1058   GST_WRITE_UINT16_BE (data, language_code (GST_QT_MUX_DEFAULT_TAG_LANGUAGE));
1059   /* location */
1060   if (location)
1061     memcpy (data + 2, location, len);
1062   GST_WRITE_UINT8 (data + 2 + len, 0);
1063   data += len + 1 + 2;
1064   /* role */
1065   GST_WRITE_UINT8 (data, 0);
1066   /* long, lat, alt */
1067 #define QT_WRITE_SFP32(data, fp) GST_WRITE_UINT32_BE(data, (guint32) ((gint) (fp * 65536.0)))
1068   QT_WRITE_SFP32 (data + 1, longitude);
1069   QT_WRITE_SFP32 (data + 5, latitude);
1070   QT_WRITE_SFP32 (data + 9, altitude);
1071   /* neither astronomical body nor notes */
1072   GST_WRITE_UINT16_BE (data + 13, 0);
1073
1074   GST_DEBUG_OBJECT (qtmux, "Adding tag 'loci'");
1075   atom_udta_add_3gp_tag (udta, fourcc, ddata, size);
1076   g_free (ddata);
1077 }
1078
1079 static void
1080 gst_qt_mux_add_3gp_keywords (GstQTMux * qtmux, const GstTagList * list,
1081     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1082 {
1083   gchar *keywords = NULL;
1084   guint8 *data, *ddata;
1085   gint size = 0, i;
1086   gchar **kwds;
1087
1088   g_return_if_fail (strcmp (tag, GST_TAG_KEYWORDS) == 0);
1089
1090   if (!gst_tag_list_get_string (list, tag, &keywords) || !keywords)
1091     return;
1092
1093   kwds = g_strsplit (keywords, ",", 0);
1094   g_free (keywords);
1095
1096   size = 0;
1097   for (i = 0; kwds[i]; i++) {
1098     /* size byte + null-terminator */
1099     size += strlen (kwds[i]) + 1 + 1;
1100   }
1101
1102   /* language tag + count + keywords */
1103   size += 2 + 1;
1104
1105   data = ddata = g_malloc (size);
1106
1107   /* language tag */
1108   GST_WRITE_UINT16_BE (data, language_code (GST_QT_MUX_DEFAULT_TAG_LANGUAGE));
1109   /* count */
1110   GST_WRITE_UINT8 (data + 2, i);
1111   data += 3;
1112   /* keywords */
1113   for (i = 0; kwds[i]; ++i) {
1114     gint len = strlen (kwds[i]);
1115
1116     GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
1117         GST_FOURCC_ARGS (fourcc), kwds[i]);
1118     /* size */
1119     GST_WRITE_UINT8 (data, len + 1);
1120     memcpy (data + 1, kwds[i], len + 1);
1121     data += len + 2;
1122   }
1123
1124   g_strfreev (kwds);
1125
1126   atom_udta_add_3gp_tag (udta, fourcc, ddata, size);
1127   g_free (ddata);
1128 }
1129
1130 static gboolean
1131 gst_qt_mux_parse_classification_string (GstQTMux * qtmux, const gchar * input,
1132     guint32 * p_fourcc, guint16 * p_table, gchar ** p_content)
1133 {
1134   guint32 fourcc;
1135   gint table;
1136   gint size;
1137   const gchar *data;
1138
1139   data = input;
1140   size = strlen (input);
1141
1142   if (size < 4 + 3 + 1 + 1 + 1) {
1143     /* at least the minimum xxxx://y/z */
1144     GST_WARNING_OBJECT (qtmux, "Classification tag input (%s) too short, "
1145         "ignoring", input);
1146     return FALSE;
1147   }
1148
1149   /* read the fourcc */
1150   memcpy (&fourcc, data, 4);
1151   size -= 4;
1152   data += 4;
1153
1154   if (strncmp (data, "://", 3) != 0) {
1155     goto mismatch;
1156   }
1157   data += 3;
1158   size -= 3;
1159
1160   /* read the table number */
1161   if (sscanf (data, "%d", &table) != 1) {
1162     goto mismatch;
1163   }
1164   if (table < 0) {
1165     GST_WARNING_OBJECT (qtmux, "Invalid table number in classification tag (%d)"
1166         ", table numbers should be positive, ignoring tag", table);
1167     return FALSE;
1168   }
1169
1170   /* find the next / */
1171   while (size > 0 && data[0] != '/') {
1172     data += 1;
1173     size -= 1;
1174   }
1175   if (size == 0) {
1176     goto mismatch;
1177   }
1178   g_assert (data[0] == '/');
1179
1180   /* skip the '/' */
1181   data += 1;
1182   size -= 1;
1183   if (size == 0) {
1184     goto mismatch;
1185   }
1186
1187   /* read up the rest of the string */
1188   *p_content = g_strdup (data);
1189   *p_table = (guint16) table;
1190   *p_fourcc = fourcc;
1191   return TRUE;
1192
1193 mismatch:
1194   {
1195     GST_WARNING_OBJECT (qtmux, "Ignoring classification tag as "
1196         "input (%s) didn't match the expected entitycode://table/content",
1197         input);
1198     return FALSE;
1199   }
1200 }
1201
1202 static void
1203 gst_qt_mux_add_3gp_classification (GstQTMux * qtmux, const GstTagList * list,
1204     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1205 {
1206   gchar *clsf_data = NULL;
1207   gint size = 0;
1208   guint32 entity = 0;
1209   guint16 table = 0;
1210   gchar *content = NULL;
1211   guint8 *data;
1212
1213   g_return_if_fail (strcmp (tag, GST_TAG_3GP_CLASSIFICATION) == 0);
1214
1215   if (!gst_tag_list_get_string (list, tag, &clsf_data) || !clsf_data)
1216     return;
1217
1218   GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
1219       GST_FOURCC_ARGS (fourcc), clsf_data);
1220
1221   /* parse the string, format is:
1222    * entityfourcc://table/content
1223    */
1224   gst_qt_mux_parse_classification_string (qtmux, clsf_data, &entity, &table,
1225       &content);
1226   g_free (clsf_data);
1227   /* +1 for the \0 */
1228   size = strlen (content) + 1;
1229
1230   /* now we have everything, build the atom
1231    * atom description is at 3GPP TS 26.244 V8.2.0 (2009-09) */
1232   data = g_malloc (4 + 2 + 2 + size);
1233   GST_WRITE_UINT32_LE (data, entity);
1234   GST_WRITE_UINT16_BE (data + 4, (guint16) table);
1235   GST_WRITE_UINT16_BE (data + 6, 0);
1236   memcpy (data + 8, content, size);
1237   g_free (content);
1238
1239   atom_udta_add_3gp_tag (udta, fourcc, data, 4 + 2 + 2 + size);
1240   g_free (data);
1241 }
1242
1243 typedef void (*GstQTMuxAddUdtaTagFunc) (GstQTMux * mux,
1244     const GstTagList * list, AtomUDTA * udta, const char *tag,
1245     const char *tag2, guint32 fourcc);
1246
1247 /*
1248  * Struct to record mappings from gstreamer tags to fourcc codes
1249  */
1250 typedef struct _GstTagToFourcc
1251 {
1252   guint32 fourcc;
1253   const gchar *gsttag;
1254   const gchar *gsttag2;
1255   const GstQTMuxAddUdtaTagFunc func;
1256 } GstTagToFourcc;
1257
1258 /* tag list tags to fourcc matching */
1259 static const GstTagToFourcc tag_matches_mp4[] = {
1260   {FOURCC__alb, GST_TAG_ALBUM, NULL, gst_qt_mux_add_mp4_tag},
1261   {FOURCC_soal, GST_TAG_ALBUM_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1262   {FOURCC__ART, GST_TAG_ARTIST, NULL, gst_qt_mux_add_mp4_tag},
1263   {FOURCC_soar, GST_TAG_ARTIST_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1264   {FOURCC_aART, GST_TAG_ALBUM_ARTIST, NULL, gst_qt_mux_add_mp4_tag},
1265   {FOURCC_soaa, GST_TAG_ALBUM_ARTIST_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1266   {FOURCC__swr, GST_TAG_APPLICATION_NAME, NULL, gst_qt_mux_add_mp4_tag},
1267   {FOURCC__cmt, GST_TAG_COMMENT, NULL, gst_qt_mux_add_mp4_tag},
1268   {FOURCC__wrt, GST_TAG_COMPOSER, NULL, gst_qt_mux_add_mp4_tag},
1269   {FOURCC_soco, GST_TAG_COMPOSER_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1270   {FOURCC_tvsh, GST_TAG_SHOW_NAME, NULL, gst_qt_mux_add_mp4_tag},
1271   {FOURCC_sosn, GST_TAG_SHOW_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1272   {FOURCC_tvsn, GST_TAG_SHOW_SEASON_NUMBER, NULL, gst_qt_mux_add_mp4_tag},
1273   {FOURCC_tves, GST_TAG_SHOW_EPISODE_NUMBER, NULL, gst_qt_mux_add_mp4_tag},
1274   {FOURCC__gen, GST_TAG_GENRE, NULL, gst_qt_mux_add_mp4_tag},
1275   {FOURCC__nam, GST_TAG_TITLE, NULL, gst_qt_mux_add_mp4_tag},
1276   {FOURCC_sonm, GST_TAG_TITLE_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1277   {FOURCC_perf, GST_TAG_PERFORMER, NULL, gst_qt_mux_add_mp4_tag},
1278   {FOURCC__grp, GST_TAG_GROUPING, NULL, gst_qt_mux_add_mp4_tag},
1279   {FOURCC__des, GST_TAG_DESCRIPTION, NULL, gst_qt_mux_add_mp4_tag},
1280   {FOURCC__lyr, GST_TAG_LYRICS, NULL, gst_qt_mux_add_mp4_tag},
1281   {FOURCC__too, GST_TAG_ENCODER, NULL, gst_qt_mux_add_mp4_tag},
1282   {FOURCC_cprt, GST_TAG_COPYRIGHT, NULL, gst_qt_mux_add_mp4_tag},
1283   {FOURCC_keyw, GST_TAG_KEYWORDS, NULL, gst_qt_mux_add_mp4_tag},
1284   {FOURCC__day, GST_TAG_DATE, NULL, gst_qt_mux_add_mp4_date},
1285   {FOURCC_tmpo, GST_TAG_BEATS_PER_MINUTE, NULL, gst_qt_mux_add_mp4_tag},
1286   {FOURCC_trkn, GST_TAG_TRACK_NUMBER, GST_TAG_TRACK_COUNT,
1287       gst_qt_mux_add_mp4_tag},
1288   {FOURCC_disk, GST_TAG_ALBUM_VOLUME_NUMBER, GST_TAG_ALBUM_VOLUME_COUNT,
1289       gst_qt_mux_add_mp4_tag},
1290   {FOURCC_covr, GST_TAG_PREVIEW_IMAGE, NULL, gst_qt_mux_add_mp4_cover},
1291   {FOURCC_covr, GST_TAG_IMAGE, NULL, gst_qt_mux_add_mp4_cover},
1292   {0, NULL,}
1293 };
1294
1295 static const GstTagToFourcc tag_matches_3gp[] = {
1296   {FOURCC_titl, GST_TAG_TITLE, NULL, gst_qt_mux_add_3gp_str},
1297   {FOURCC_dscp, GST_TAG_DESCRIPTION, NULL, gst_qt_mux_add_3gp_str},
1298   {FOURCC_cprt, GST_TAG_COPYRIGHT, NULL, gst_qt_mux_add_3gp_str},
1299   {FOURCC_perf, GST_TAG_ARTIST, NULL, gst_qt_mux_add_3gp_str},
1300   {FOURCC_auth, GST_TAG_COMPOSER, NULL, gst_qt_mux_add_3gp_str},
1301   {FOURCC_gnre, GST_TAG_GENRE, NULL, gst_qt_mux_add_3gp_str},
1302   {FOURCC_kywd, GST_TAG_KEYWORDS, NULL, gst_qt_mux_add_3gp_keywords},
1303   {FOURCC_yrrc, GST_TAG_DATE, NULL, gst_qt_mux_add_3gp_date},
1304   {FOURCC_albm, GST_TAG_ALBUM, GST_TAG_TRACK_NUMBER, gst_qt_mux_add_3gp_str},
1305   {FOURCC_loci, GST_TAG_GEO_LOCATION_NAME, NULL, gst_qt_mux_add_3gp_location},
1306   {FOURCC_clsf, GST_TAG_3GP_CLASSIFICATION, NULL,
1307       gst_qt_mux_add_3gp_classification},
1308   {0, NULL,}
1309 };
1310
1311 /* qtdemux produces these for atoms it cannot parse */
1312 #define GST_QT_DEMUX_PRIVATE_TAG "private-qt-tag"
1313
1314 static void
1315 gst_qt_mux_add_xmp_tags (GstQTMux * qtmux, const GstTagList * list)
1316 {
1317   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
1318   GstBuffer *xmp = NULL;
1319
1320   /* adobe specs only have 'quicktime' and 'mp4',
1321    * but I guess we can extrapolate to gpp.
1322    * Keep mj2 out for now as we don't add any tags for it yet.
1323    * If you have further info about xmp on these formats, please share */
1324   if (qtmux_klass->format == GST_QT_MUX_FORMAT_MJ2)
1325     return;
1326
1327   GST_DEBUG_OBJECT (qtmux, "Adding xmp tags");
1328
1329   if (qtmux_klass->format == GST_QT_MUX_FORMAT_QT) {
1330     xmp = gst_tag_xmp_writer_tag_list_to_xmp_buffer (GST_TAG_XMP_WRITER (qtmux),
1331         list, TRUE);
1332     if (xmp)
1333       atom_udta_add_xmp_tags (&qtmux->moov->udta, xmp);
1334   } else {
1335     AtomInfo *ainfo;
1336     /* for isom/mp4, it is a top level uuid atom */
1337     xmp = gst_tag_xmp_writer_tag_list_to_xmp_buffer (GST_TAG_XMP_WRITER (qtmux),
1338         list, TRUE);
1339     if (xmp) {
1340       ainfo = build_uuid_xmp_atom (xmp);
1341       if (ainfo) {
1342         qtmux->extra_atoms = g_slist_prepend (qtmux->extra_atoms, ainfo);
1343       }
1344     }
1345   }
1346   if (xmp)
1347     gst_buffer_unref (xmp);
1348 }
1349
1350 static void
1351 gst_qt_mux_add_metadata_tags (GstQTMux * qtmux, const GstTagList * list,
1352     AtomUDTA * udta)
1353 {
1354   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
1355   guint32 fourcc;
1356   gint i;
1357   const gchar *tag, *tag2;
1358   const GstTagToFourcc *tag_matches;
1359
1360   switch (qtmux_klass->format) {
1361     case GST_QT_MUX_FORMAT_3GP:
1362       tag_matches = tag_matches_3gp;
1363       break;
1364     case GST_QT_MUX_FORMAT_MJ2:
1365       tag_matches = NULL;
1366       break;
1367     default:
1368       /* sort of iTunes style for mp4 and QT (?) */
1369       tag_matches = tag_matches_mp4;
1370       break;
1371   }
1372
1373   if (!tag_matches)
1374     return;
1375
1376   /* Clear existing tags so we don't add them over and over */
1377   atom_udta_clear_tags (udta);
1378
1379   for (i = 0; tag_matches[i].fourcc; i++) {
1380     fourcc = tag_matches[i].fourcc;
1381     tag = tag_matches[i].gsttag;
1382     tag2 = tag_matches[i].gsttag2;
1383
1384     g_assert (tag_matches[i].func);
1385     tag_matches[i].func (qtmux, list, udta, tag, tag2, fourcc);
1386   }
1387
1388   /* add unparsed blobs if present */
1389   if (gst_tag_exists (GST_QT_DEMUX_PRIVATE_TAG)) {
1390     guint num_tags;
1391
1392     num_tags = gst_tag_list_get_tag_size (list, GST_QT_DEMUX_PRIVATE_TAG);
1393     for (i = 0; i < num_tags; ++i) {
1394       GstSample *sample = NULL;
1395       GstBuffer *buf;
1396       const GstStructure *s;
1397
1398       if (!gst_tag_list_get_sample_index (list, GST_QT_DEMUX_PRIVATE_TAG, i,
1399               &sample))
1400         continue;
1401       buf = gst_sample_get_buffer (sample);
1402
1403       if (buf && (s = gst_sample_get_info (sample))) {
1404         const gchar *style = NULL;
1405         GstMapInfo map;
1406
1407         gst_buffer_map (buf, &map, GST_MAP_READ);
1408         GST_DEBUG_OBJECT (qtmux,
1409             "Found private tag %d/%d; size %" G_GSIZE_FORMAT ", info %"
1410             GST_PTR_FORMAT, i, num_tags, map.size, s);
1411         if (s && (style = gst_structure_get_string (s, "style"))) {
1412           /* try to prevent some style tag ending up into another variant
1413            * (todo: make into a list if more cases) */
1414           if ((strcmp (style, "itunes") == 0 &&
1415                   qtmux_klass->format == GST_QT_MUX_FORMAT_MP4) ||
1416               (strcmp (style, "iso") == 0 &&
1417                   qtmux_klass->format == GST_QT_MUX_FORMAT_3GP)) {
1418             GST_DEBUG_OBJECT (qtmux, "Adding private tag");
1419             atom_udta_add_blob_tag (udta, map.data, map.size);
1420           }
1421         }
1422         gst_buffer_unmap (buf, &map);
1423       }
1424       gst_sample_unref (sample);
1425     }
1426   }
1427
1428   return;
1429 }
1430
1431 /*
1432  * Gets the tagsetter iface taglist and puts the known tags
1433  * into the output stream
1434  */
1435 static void
1436 gst_qt_mux_setup_metadata (GstQTMux * qtmux)
1437 {
1438   const GstTagList *tags = NULL;
1439   GSList *walk;
1440
1441   GST_OBJECT_LOCK (qtmux);
1442   if (qtmux->tags_changed) {
1443     tags = gst_tag_setter_get_tag_list (GST_TAG_SETTER (qtmux));
1444     qtmux->tags_changed = FALSE;
1445   }
1446   GST_OBJECT_UNLOCK (qtmux);
1447
1448   GST_LOG_OBJECT (qtmux, "tags: %" GST_PTR_FORMAT, tags);
1449
1450   if (tags && !gst_tag_list_is_empty (tags)) {
1451     GstTagList *copy = gst_tag_list_copy (tags);
1452
1453     GST_DEBUG_OBJECT (qtmux, "Removing bogus tags");
1454     gst_tag_list_remove_tag (copy, GST_TAG_VIDEO_CODEC);
1455     gst_tag_list_remove_tag (copy, GST_TAG_AUDIO_CODEC);
1456     gst_tag_list_remove_tag (copy, GST_TAG_CONTAINER_FORMAT);
1457
1458     GST_DEBUG_OBJECT (qtmux, "Formatting tags");
1459     gst_qt_mux_add_metadata_tags (qtmux, copy, &qtmux->moov->udta);
1460     gst_qt_mux_add_xmp_tags (qtmux, copy);
1461     gst_tag_list_unref (copy);
1462   } else {
1463     GST_DEBUG_OBJECT (qtmux, "No new tags received");
1464   }
1465
1466   for (walk = qtmux->sinkpads; walk; walk = g_slist_next (walk)) {
1467     GstCollectData *cdata = (GstCollectData *) walk->data;
1468     GstQTPad *qpad = (GstQTPad *) cdata;
1469     GstPad *pad = qpad->collect.pad;
1470
1471     if (qpad->tags_changed && qpad->tags) {
1472       GST_DEBUG_OBJECT (pad, "Adding tags");
1473       gst_tag_list_remove_tag (qpad->tags, GST_TAG_CONTAINER_FORMAT);
1474       gst_qt_mux_add_metadata_tags (qtmux, qpad->tags, &qpad->trak->udta);
1475       qpad->tags_changed = FALSE;
1476       GST_DEBUG_OBJECT (pad, "Tags added");
1477     } else {
1478       GST_DEBUG_OBJECT (pad, "No new tags received");
1479     }
1480   }
1481 }
1482
1483 static inline GstBuffer *
1484 _gst_buffer_new_take_data (guint8 * data, guint size)
1485 {
1486   GstBuffer *buf;
1487
1488   buf = gst_buffer_new ();
1489   gst_buffer_append_memory (buf,
1490       gst_memory_new_wrapped (0, data, size, 0, size, data, g_free));
1491
1492   return buf;
1493 }
1494
1495 static GstFlowReturn
1496 gst_qt_mux_send_buffer (GstQTMux * qtmux, GstBuffer * buf, guint64 * offset,
1497     gboolean mind_fast)
1498 {
1499   GstFlowReturn res;
1500   gsize size;
1501
1502   g_return_val_if_fail (buf != NULL, GST_FLOW_ERROR);
1503
1504   size = gst_buffer_get_size (buf);
1505   GST_LOG_OBJECT (qtmux, "sending buffer size %" G_GSIZE_FORMAT, size);
1506
1507   if (mind_fast && qtmux->fast_start_file) {
1508     GstMapInfo map;
1509     gint ret;
1510
1511     GST_LOG_OBJECT (qtmux, "to temporary file");
1512     gst_buffer_map (buf, &map, GST_MAP_READ);
1513     ret = fwrite (map.data, sizeof (guint8), map.size, qtmux->fast_start_file);
1514     gst_buffer_unmap (buf, &map);
1515     gst_buffer_unref (buf);
1516     if (ret != size)
1517       goto write_error;
1518     else
1519       res = GST_FLOW_OK;
1520   } else {
1521     GST_LOG_OBJECT (qtmux, "downstream");
1522     res = gst_pad_push (qtmux->srcpad, buf);
1523   }
1524
1525   if (G_LIKELY (offset))
1526     *offset += size;
1527
1528   return res;
1529
1530   /* ERRORS */
1531 write_error:
1532   {
1533     GST_ELEMENT_ERROR (qtmux, RESOURCE, WRITE,
1534         ("Failed to write to temporary file"), GST_ERROR_SYSTEM);
1535     return GST_FLOW_ERROR;
1536   }
1537 }
1538
1539 static gboolean
1540 gst_qt_mux_seek_to_beginning (FILE * f)
1541 {
1542 #ifdef HAVE_FSEEKO
1543   if (fseeko (f, (off_t) 0, SEEK_SET) != 0)
1544     return FALSE;
1545 #elif defined (G_OS_UNIX) || defined (G_OS_WIN32)
1546   if (lseek (fileno (f), (off_t) 0, SEEK_SET) == (off_t) - 1)
1547     return FALSE;
1548 #else
1549   if (fseek (f, (long) 0, SEEK_SET) != 0)
1550     return FALSE;
1551 #endif
1552   return TRUE;
1553 }
1554
1555 static GstFlowReturn
1556 gst_qt_mux_send_buffered_data (GstQTMux * qtmux, guint64 * offset)
1557 {
1558   GstFlowReturn ret = GST_FLOW_OK;
1559   GstBuffer *buf = NULL;
1560
1561   if (fflush (qtmux->fast_start_file))
1562     goto flush_failed;
1563
1564   if (!gst_qt_mux_seek_to_beginning (qtmux->fast_start_file))
1565     goto seek_failed;
1566
1567   /* hm, this could all take a really really long time,
1568    * but there may not be another way to get moov atom first
1569    * (somehow optimize copy?) */
1570   GST_DEBUG_OBJECT (qtmux, "Sending buffered data");
1571   while (ret == GST_FLOW_OK) {
1572     const int bufsize = 4096;
1573     GstMapInfo map;
1574     gsize size;
1575
1576     buf = gst_buffer_new_and_alloc (bufsize);
1577     gst_buffer_map (buf, &map, GST_MAP_WRITE);
1578     size = fread (map.data, sizeof (guint8), bufsize, qtmux->fast_start_file);
1579     if (size == 0) {
1580       gst_buffer_unmap (buf, &map);
1581       break;
1582     }
1583     GST_LOG_OBJECT (qtmux, "Pushing buffered buffer of size %d", (gint) size);
1584     gst_buffer_unmap (buf, &map);
1585     if (size != bufsize)
1586       gst_buffer_set_size (buf, size);
1587     ret = gst_qt_mux_send_buffer (qtmux, buf, offset, FALSE);
1588     buf = NULL;
1589   }
1590   if (buf)
1591     gst_buffer_unref (buf);
1592
1593   if (ftruncate (fileno (qtmux->fast_start_file), 0))
1594     goto seek_failed;
1595   if (!gst_qt_mux_seek_to_beginning (qtmux->fast_start_file))
1596     goto seek_failed;
1597
1598   return ret;
1599
1600   /* ERRORS */
1601 flush_failed:
1602   {
1603     GST_ELEMENT_ERROR (qtmux, RESOURCE, WRITE,
1604         ("Failed to flush temporary file"), GST_ERROR_SYSTEM);
1605     ret = GST_FLOW_ERROR;
1606     goto fail;
1607   }
1608 seek_failed:
1609   {
1610     GST_ELEMENT_ERROR (qtmux, RESOURCE, SEEK,
1611         ("Failed to seek temporary file"), GST_ERROR_SYSTEM);
1612     ret = GST_FLOW_ERROR;
1613     goto fail;
1614   }
1615 fail:
1616   {
1617     /* clear descriptor so we don't remove temp file later on,
1618      * might be possible to recover */
1619     fclose (qtmux->fast_start_file);
1620     qtmux->fast_start_file = NULL;
1621     return ret;
1622   }
1623 }
1624
1625 /*
1626  * Sends the initial mdat atom fields (size fields and fourcc type),
1627  * the subsequent buffers are considered part of it's data.
1628  * As we can't predict the amount of data that we are going to place in mdat
1629  * we need to record the position of the size field in the stream so we can
1630  * seek back to it later and update when the streams have finished.
1631  */
1632 static GstFlowReturn
1633 gst_qt_mux_send_mdat_header (GstQTMux * qtmux, guint64 * off, guint64 size,
1634     gboolean extended, gboolean fsync_after)
1635 {
1636   GstBuffer *buf;
1637   GstMapInfo map;
1638
1639   GST_DEBUG_OBJECT (qtmux, "Sending mdat's atom header, "
1640       "size %" G_GUINT64_FORMAT, size);
1641
1642   /* if the qtmux state is EOS, really write the mdat, otherwise
1643    * allow size == 0 for a placeholder atom */
1644   if (qtmux->state == GST_QT_MUX_STATE_EOS || size > 0)
1645     size += 8;
1646
1647   if (extended) {
1648     gboolean large_file = (size > MDAT_LARGE_FILE_LIMIT);
1649     /* Always write 16-bytes, but put a free atom first
1650      * if the size is < 4GB. */
1651     buf = gst_buffer_new_and_alloc (16);
1652     gst_buffer_map (buf, &map, GST_MAP_WRITE);
1653
1654     if (large_file) {
1655       /* Write extended mdat header and large_size field */
1656       GST_WRITE_UINT32_BE (map.data, 1);
1657       GST_WRITE_UINT32_LE (map.data + 4, FOURCC_mdat);
1658       GST_WRITE_UINT64_BE (map.data + 8, size + 8);
1659     } else {
1660       /* Write an empty free atom, then standard 32-bit mdat */
1661       GST_WRITE_UINT32_BE (map.data, 8);
1662       GST_WRITE_UINT32_LE (map.data + 4, FOURCC_free);
1663       GST_WRITE_UINT32_BE (map.data + 8, size);
1664       GST_WRITE_UINT32_LE (map.data + 12, FOURCC_mdat);
1665     }
1666     gst_buffer_unmap (buf, &map);
1667   } else {
1668     buf = gst_buffer_new_and_alloc (8);
1669     gst_buffer_map (buf, &map, GST_MAP_WRITE);
1670
1671     /* Vanilla 32-bit mdat */
1672     GST_WRITE_UINT32_BE (map.data, size);
1673     GST_WRITE_UINT32_LE (map.data + 4, FOURCC_mdat);
1674     gst_buffer_unmap (buf, &map);
1675   }
1676
1677   GST_LOG_OBJECT (qtmux, "Pushing mdat header");
1678   if (fsync_after)
1679     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_SYNC_AFTER);
1680
1681   return gst_qt_mux_send_buffer (qtmux, buf, off, FALSE);
1682
1683 }
1684
1685 /*
1686  * We get the position of the mdat size field, seek back to it
1687  * and overwrite with the real value
1688  */
1689 static GstFlowReturn
1690 gst_qt_mux_update_mdat_size (GstQTMux * qtmux, guint64 mdat_pos,
1691     guint64 mdat_size, guint64 * offset, gboolean fsync_after)
1692 {
1693   GstSegment segment;
1694
1695   /* We must have recorded the mdat position for this to work */
1696   g_assert (mdat_pos != 0);
1697
1698   /* seek and rewrite the header */
1699   gst_segment_init (&segment, GST_FORMAT_BYTES);
1700   segment.start = mdat_pos;
1701   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
1702
1703   return gst_qt_mux_send_mdat_header (qtmux, offset, mdat_size, TRUE,
1704       fsync_after);
1705 }
1706
1707 static GstFlowReturn
1708 gst_qt_mux_send_ftyp (GstQTMux * qtmux, guint64 * off)
1709 {
1710   GstBuffer *buf;
1711   guint64 size = 0, offset = 0;
1712   guint8 *data = NULL;
1713
1714   GST_DEBUG_OBJECT (qtmux, "Sending ftyp atom");
1715
1716   if (!atom_ftyp_copy_data (qtmux->ftyp, &data, &size, &offset))
1717     goto serialize_error;
1718
1719   buf = _gst_buffer_new_take_data (data, offset);
1720
1721   GST_LOG_OBJECT (qtmux, "Pushing ftyp");
1722   return gst_qt_mux_send_buffer (qtmux, buf, off, FALSE);
1723
1724   /* ERRORS */
1725 serialize_error:
1726   {
1727     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
1728         ("Failed to serialize ftyp"));
1729     return GST_FLOW_ERROR;
1730   }
1731 }
1732
1733 static void
1734 gst_qt_mux_prepare_ftyp (GstQTMux * qtmux, AtomFTYP ** p_ftyp,
1735     GstBuffer ** p_prefix)
1736 {
1737   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
1738   guint32 major, version;
1739   GList *comp;
1740   GstBuffer *prefix = NULL;
1741   AtomFTYP *ftyp = NULL;
1742
1743   GST_DEBUG_OBJECT (qtmux, "Preparing ftyp and possible prefix atom");
1744
1745   /* init and send context and ftyp based on current property state */
1746   gst_qt_mux_map_format_to_header (qtmux_klass->format, &prefix, &major,
1747       &version, &comp, qtmux->moov, qtmux->longest_chunk,
1748       qtmux->fast_start_file != NULL);
1749   ftyp = atom_ftyp_new (qtmux->context, major, version, comp);
1750   if (comp)
1751     g_list_free (comp);
1752   if (prefix) {
1753     if (p_prefix)
1754       *p_prefix = prefix;
1755     else
1756       gst_buffer_unref (prefix);
1757   }
1758   *p_ftyp = ftyp;
1759 }
1760
1761 static GstFlowReturn
1762 gst_qt_mux_prepare_and_send_ftyp (GstQTMux * qtmux)
1763 {
1764   GstFlowReturn ret = GST_FLOW_OK;
1765   GstBuffer *prefix = NULL;
1766
1767   GST_DEBUG_OBJECT (qtmux, "Preparing to send ftyp atom");
1768
1769   /* init and send context and ftyp based on current property state */
1770   if (qtmux->ftyp) {
1771     atom_ftyp_free (qtmux->ftyp);
1772     qtmux->ftyp = NULL;
1773   }
1774   gst_qt_mux_prepare_ftyp (qtmux, &qtmux->ftyp, &prefix);
1775   if (prefix) {
1776     ret = gst_qt_mux_send_buffer (qtmux, prefix, &qtmux->header_size, FALSE);
1777     if (ret != GST_FLOW_OK)
1778       return ret;
1779   }
1780   return gst_qt_mux_send_ftyp (qtmux, &qtmux->header_size);
1781 }
1782
1783 static void
1784 gst_qt_mux_set_header_on_caps (GstQTMux * mux, GstBuffer * buf)
1785 {
1786   GstStructure *structure;
1787   GValue array = { 0 };
1788   GValue value = { 0 };
1789   GstCaps *caps, *tcaps;
1790
1791   tcaps = gst_pad_get_current_caps (mux->srcpad);
1792   caps = gst_caps_copy (tcaps);
1793   gst_caps_unref (tcaps);
1794
1795   structure = gst_caps_get_structure (caps, 0);
1796
1797   g_value_init (&array, GST_TYPE_ARRAY);
1798
1799   GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_HEADER);
1800   g_value_init (&value, GST_TYPE_BUFFER);
1801   gst_value_take_buffer (&value, gst_buffer_ref (buf));
1802   gst_value_array_append_value (&array, &value);
1803   g_value_unset (&value);
1804
1805   gst_structure_set_value (structure, "streamheader", &array);
1806   g_value_unset (&array);
1807   gst_pad_set_caps (mux->srcpad, caps);
1808   gst_caps_unref (caps);
1809 }
1810
1811 /*
1812  * Write out a free space atom. The offset is adjusted by the full
1813  * size, but a smaller buffer is sent
1814  */
1815 static GstFlowReturn
1816 gst_qt_mux_send_free_atom (GstQTMux * qtmux, guint64 * off, guint32 size,
1817     gboolean fsync_after)
1818 {
1819   Atom *node_header;
1820   GstBuffer *buf;
1821   guint8 *data = NULL;
1822   guint64 offset = 0, bsize = 0;
1823   GstFlowReturn ret;
1824
1825   GST_DEBUG_OBJECT (qtmux, "Sending free atom header of size %u", size);
1826
1827   /* We can't make a free space atom smaller than the header */
1828   if (size < 8)
1829     goto too_small;
1830
1831   node_header = g_malloc0 (sizeof (Atom));
1832   node_header->type = FOURCC_free;
1833   node_header->size = size;
1834
1835   bsize = offset = 0;
1836   if (atom_copy_data (node_header, &data, &bsize, &offset) == 0)
1837     goto serialize_error;
1838
1839   buf = _gst_buffer_new_take_data (data, offset);
1840   g_free (node_header);
1841
1842   if (fsync_after)
1843     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_SYNC_AFTER);
1844
1845   GST_LOG_OBJECT (qtmux, "Pushing free atom");
1846   ret = gst_qt_mux_send_buffer (qtmux, buf, off, FALSE);
1847
1848   if (off) {
1849     GstSegment segment;
1850
1851     *off += size - 8;
1852
1853     /* Make sure downstream position ends up at the end of this free box */
1854     gst_segment_init (&segment, GST_FORMAT_BYTES);
1855     segment.start = *off;
1856     gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
1857   }
1858
1859   return ret;
1860
1861   /* ERRORS */
1862 too_small:
1863   {
1864     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
1865         ("Not enough free reserved space"));
1866     return GST_FLOW_ERROR;
1867   }
1868 serialize_error:
1869   {
1870     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
1871         ("Failed to serialize mdat"));
1872     g_free (node_header);
1873     return GST_FLOW_ERROR;
1874   }
1875 }
1876
1877 static void
1878 gst_qt_mux_configure_moov (GstQTMux * qtmux)
1879 {
1880   gboolean fragmented = FALSE;
1881   guint32 timescale;
1882
1883   GST_OBJECT_LOCK (qtmux);
1884   timescale = qtmux->timescale;
1885   if (qtmux->mux_mode == GST_QT_MUX_MODE_FRAGMENTED ||
1886       qtmux->mux_mode == GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE)
1887     fragmented = TRUE;
1888   GST_OBJECT_UNLOCK (qtmux);
1889
1890   /* inform lower layers of our property wishes, and determine duration.
1891    * Let moov take care of this using its list of traks;
1892    * so that released pads are also included */
1893   GST_DEBUG_OBJECT (qtmux, "Updating timescale to %" G_GUINT32_FORMAT,
1894       timescale);
1895   atom_moov_update_timescale (qtmux->moov, timescale);
1896   atom_moov_set_fragmented (qtmux->moov, fragmented);
1897
1898   atom_moov_update_duration (qtmux->moov);
1899 }
1900
1901 static GstFlowReturn
1902 gst_qt_mux_send_moov (GstQTMux * qtmux, guint64 * _offset,
1903     guint64 padded_moov_size, gboolean mind_fast, gboolean fsync_after)
1904 {
1905   guint64 offset = 0, size = 0;
1906   guint8 *data;
1907   GstBuffer *buf;
1908   GstFlowReturn ret = GST_FLOW_OK;
1909
1910   /* serialize moov */
1911   offset = size = 0;
1912   data = NULL;
1913   GST_LOG_OBJECT (qtmux, "Copying movie header into buffer");
1914   if (!atom_moov_copy_data (qtmux->moov, &data, &size, &offset))
1915     goto serialize_error;
1916   qtmux->last_moov_size = offset;
1917
1918   /* Check we have enough reserved space for this and a Free atom */
1919   if (padded_moov_size > 0 && offset + 8 > padded_moov_size)
1920     goto too_small_reserved;
1921   buf = _gst_buffer_new_take_data (data, offset);
1922   GST_DEBUG_OBJECT (qtmux, "Pushing moov atoms");
1923
1924   /* If at EOS, this is the final moov, put in the streamheader
1925    * (apparently used by a flumotion util) */
1926   if (qtmux->state == GST_QT_MUX_STATE_EOS)
1927     gst_qt_mux_set_header_on_caps (qtmux, buf);
1928
1929   if (fsync_after)
1930     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_SYNC_AFTER);
1931   ret = gst_qt_mux_send_buffer (qtmux, buf, _offset, mind_fast);
1932
1933   /* Write out a free atom if needed */
1934   if (ret == GST_FLOW_OK && offset < padded_moov_size) {
1935     GST_LOG_OBJECT (qtmux, "Writing out free atom of size %u",
1936         (guint32) (padded_moov_size - offset));
1937     ret =
1938         gst_qt_mux_send_free_atom (qtmux, _offset, padded_moov_size - offset,
1939         fsync_after);
1940   }
1941
1942   return ret;
1943 too_small_reserved:
1944   {
1945     GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
1946         ("Not enough free reserved header space"),
1947         ("Needed %" G_GUINT64_FORMAT " bytes, reserved %" G_GUINT64_FORMAT,
1948             offset, padded_moov_size));
1949     return GST_FLOW_ERROR;
1950   }
1951 serialize_error:
1952   {
1953     g_free (data);
1954     return GST_FLOW_ERROR;
1955   }
1956 }
1957
1958 /* either calculates size of extra atoms or pushes them */
1959 static GstFlowReturn
1960 gst_qt_mux_send_extra_atoms (GstQTMux * qtmux, gboolean send, guint64 * offset,
1961     gboolean mind_fast)
1962 {
1963   GSList *walk;
1964   guint64 loffset = 0, size = 0;
1965   guint8 *data;
1966   GstFlowReturn ret = GST_FLOW_OK;
1967
1968   for (walk = qtmux->extra_atoms; walk; walk = g_slist_next (walk)) {
1969     AtomInfo *ainfo = (AtomInfo *) walk->data;
1970
1971     loffset = size = 0;
1972     data = NULL;
1973     if (!ainfo->copy_data_func (ainfo->atom,
1974             send ? &data : NULL, &size, &loffset))
1975       goto serialize_error;
1976
1977     if (send) {
1978       GstBuffer *buf;
1979
1980       GST_DEBUG_OBJECT (qtmux,
1981           "Pushing extra top-level atom %" GST_FOURCC_FORMAT,
1982           GST_FOURCC_ARGS (ainfo->atom->type));
1983       buf = _gst_buffer_new_take_data (data, loffset);
1984       ret = gst_qt_mux_send_buffer (qtmux, buf, offset, FALSE);
1985       if (ret != GST_FLOW_OK)
1986         break;
1987     } else {
1988       if (offset)
1989         *offset += loffset;
1990     }
1991   }
1992
1993   return ret;
1994
1995 serialize_error:
1996   {
1997     g_free (data);
1998     return GST_FLOW_ERROR;
1999   }
2000 }
2001
2002 static gboolean
2003 gst_qt_mux_downstream_is_seekable (GstQTMux * qtmux)
2004 {
2005   gboolean seekable = FALSE;
2006   GstQuery *query = gst_query_new_seeking (GST_FORMAT_BYTES);
2007
2008   if (gst_pad_peer_query (qtmux->srcpad, query)) {
2009     gst_query_parse_seeking (query, NULL, &seekable, NULL, NULL);
2010     GST_INFO_OBJECT (qtmux, "downstream is %sseekable", seekable ? "" : "not ");
2011   } else {
2012     /* have to assume seeking is not supported if query not handled downstream */
2013     GST_WARNING_OBJECT (qtmux, "downstream did not handle seeking query");
2014     seekable = FALSE;
2015   }
2016   gst_query_unref (query);
2017
2018   return seekable;
2019 }
2020
2021 static void
2022 gst_qt_mux_prepare_moov_recovery (GstQTMux * qtmux)
2023 {
2024   GSList *walk;
2025   gboolean fail = FALSE;
2026   AtomFTYP *ftyp = NULL;
2027   GstBuffer *prefix = NULL;
2028
2029   GST_DEBUG_OBJECT (qtmux, "Openning moov recovery file: %s",
2030       qtmux->moov_recov_file_path);
2031
2032   qtmux->moov_recov_file = g_fopen (qtmux->moov_recov_file_path, "wb+");
2033   if (qtmux->moov_recov_file == NULL) {
2034     GST_WARNING_OBJECT (qtmux, "Failed to open moov recovery file in %s",
2035         qtmux->moov_recov_file_path);
2036     return;
2037   }
2038
2039   gst_qt_mux_prepare_ftyp (qtmux, &ftyp, &prefix);
2040
2041   if (!atoms_recov_write_headers (qtmux->moov_recov_file, ftyp, prefix,
2042           qtmux->moov, qtmux->timescale, g_slist_length (qtmux->sinkpads))) {
2043     GST_WARNING_OBJECT (qtmux, "Failed to write moov recovery file " "headers");
2044     goto fail;
2045   }
2046
2047   atom_ftyp_free (ftyp);
2048   if (prefix)
2049     gst_buffer_unref (prefix);
2050
2051   for (walk = qtmux->sinkpads; walk && !fail; walk = g_slist_next (walk)) {
2052     GstCollectData *cdata = (GstCollectData *) walk->data;
2053     GstQTPad *qpad = (GstQTPad *) cdata;
2054     /* write info for each stream */
2055     fail = atoms_recov_write_trak_info (qtmux->moov_recov_file, qpad->trak);
2056     if (fail) {
2057       GST_WARNING_OBJECT (qtmux, "Failed to write trak info to recovery "
2058           "file");
2059       break;
2060     }
2061   }
2062
2063 fail:
2064   /* cleanup */
2065   fclose (qtmux->moov_recov_file);
2066   qtmux->moov_recov_file = NULL;
2067   GST_WARNING_OBJECT (qtmux, "An error was detected while writing to "
2068       "recover file, moov recovery won't work");
2069 }
2070
2071 static GstFlowReturn
2072 gst_qt_mux_start_file (GstQTMux * qtmux)
2073 {
2074   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
2075   GstFlowReturn ret = GST_FLOW_OK;
2076   GstCaps *caps;
2077   GstSegment segment;
2078   gchar s_id[32];
2079   GstClockTime reserved_max_duration;
2080   guint reserved_bytes_per_sec_per_trak;
2081
2082   GST_DEBUG_OBJECT (qtmux, "starting file");
2083
2084   GST_OBJECT_LOCK (qtmux);
2085   reserved_max_duration = qtmux->reserved_max_duration;
2086   reserved_bytes_per_sec_per_trak = qtmux->reserved_bytes_per_sec_per_trak;
2087   GST_OBJECT_UNLOCK (qtmux);
2088
2089   /* stream-start (FIXME: create id based on input ids) */
2090   g_snprintf (s_id, sizeof (s_id), "qtmux-%08x", g_random_int ());
2091   gst_pad_push_event (qtmux->srcpad, gst_event_new_stream_start (s_id));
2092
2093   caps = gst_caps_copy (gst_pad_get_pad_template_caps (qtmux->srcpad));
2094   /* qtmux has structure with and without variant, remove all but the first */
2095   while (gst_caps_get_size (caps) > 1)
2096     gst_caps_remove_structure (caps, 1);
2097   gst_pad_set_caps (qtmux->srcpad, caps);
2098   gst_caps_unref (caps);
2099
2100   /* Default is 'normal' mode */
2101   qtmux->mux_mode = GST_QT_MUX_MODE_MOOV_AT_END;
2102
2103   /* Require a sensible fragment duration when muxing
2104    * using the ISML muxer */
2105   if (qtmux_klass->format == GST_QT_MUX_FORMAT_ISML &&
2106       qtmux->fragment_duration == 0)
2107     goto invalid_isml;
2108
2109   if (qtmux->fragment_duration > 0) {
2110     if (qtmux->streamable)
2111       qtmux->mux_mode = GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE;
2112     else
2113       qtmux->mux_mode = GST_QT_MUX_MODE_FRAGMENTED;
2114   } else if (qtmux->fast_start) {
2115     qtmux->mux_mode = GST_QT_MUX_MODE_FAST_START;
2116   } else if (reserved_max_duration != GST_CLOCK_TIME_NONE) {
2117     qtmux->mux_mode = GST_QT_MUX_MODE_ROBUST_RECORDING;
2118   }
2119
2120   switch (qtmux->mux_mode) {
2121     case GST_QT_MUX_MODE_MOOV_AT_END:
2122     case GST_QT_MUX_MODE_ROBUST_RECORDING:
2123       /* We have to be able to seek to rewrite the mdat header, or any
2124        * moov atom we write will not be visible in the file, because an
2125        * MDAT with 0 as the size covers the rest of the file. A file
2126        * with no moov is not playable, so error out now. */
2127       if (!gst_qt_mux_downstream_is_seekable (qtmux)) {
2128         GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
2129             ("Downstream is not seekable - will not be able to create a playable file"),
2130             (NULL));
2131         return GST_FLOW_ERROR;
2132       }
2133       break;
2134     case GST_QT_MUX_MODE_FAST_START:
2135     case GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE:
2136       break;                    /* Don't need seekability, ignore */
2137     case GST_QT_MUX_MODE_FRAGMENTED:
2138       if (!gst_qt_mux_downstream_is_seekable (qtmux)) {
2139         GST_WARNING_OBJECT (qtmux, "downstream is not seekable, but "
2140             "streamable=false. Will ignore that and create streamable output "
2141             "instead");
2142         qtmux->streamable = TRUE;
2143         g_object_notify (G_OBJECT (qtmux), "streamable");
2144       }
2145       break;
2146   }
2147
2148   /* let downstream know we think in BYTES and expect to do seeking later on */
2149   gst_segment_init (&segment, GST_FORMAT_BYTES);
2150   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2151
2152   /* initialize our moov recovery file */
2153   GST_OBJECT_LOCK (qtmux);
2154   if (qtmux->moov_recov_file_path) {
2155     gst_qt_mux_prepare_moov_recovery (qtmux);
2156   }
2157
2158   /* Make sure the first time we update the moov, we'll
2159    * include any tagsetter tags */
2160   qtmux->tags_changed = TRUE;
2161
2162   GST_OBJECT_UNLOCK (qtmux);
2163
2164   /*
2165    * send mdat header if already needed, and mark position for later update.
2166    * We don't send ftyp now if we are on fast start mode, because we can
2167    * better fine tune using the information we gather to create the whole moov
2168    * atom.
2169    */
2170   switch (qtmux->mux_mode) {
2171     case GST_QT_MUX_MODE_MOOV_AT_END:
2172       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
2173       if (ret != GST_FLOW_OK)
2174         break;
2175
2176       /* Store this as the mdat offset for later updating
2177        * when we write the moov */
2178       qtmux->mdat_pos = qtmux->header_size;
2179       /* extended atom in case we go over 4GB while writing and need
2180        * the full 64-bit atom */
2181       ret =
2182           gst_qt_mux_send_mdat_header (qtmux, &qtmux->header_size, 0, TRUE,
2183           FALSE);
2184       break;
2185     case GST_QT_MUX_MODE_ROBUST_RECORDING:
2186
2187       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
2188       if (ret != GST_FLOW_OK)
2189         break;
2190
2191       /* Pad ftyp out to an 8-byte boundary before starting the moov
2192        * ping pong region. It should be well less than 1 disk sector,
2193        * unless there's a bajillion compatible types listed,
2194        * but let's be sure the free atom doesn't cross a sector
2195        * boundary anyway */
2196       if (qtmux->header_size % 8) {
2197         /* Extra 8 bytes for the padding free atom header */
2198         guint padding = (guint) (16 - (qtmux->header_size % 8));
2199         GST_LOG_OBJECT (qtmux, "Rounding ftyp by %u bytes", padding);
2200         ret =
2201             gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size, padding,
2202             FALSE);
2203         if (ret != GST_FLOW_OK)
2204           return ret;
2205       }
2206
2207       /* Store this as the moov offset for later updating.
2208        * We record mdat position below */
2209       qtmux->moov_pos = qtmux->header_size;
2210
2211       /* Set up the initial 'ping' state of the ping-pong buffers */
2212       qtmux->reserved_moov_first_active = TRUE;
2213
2214       gst_qt_mux_configure_moov (qtmux);
2215       gst_qt_mux_setup_metadata (qtmux);
2216       /* Empty free atom to begin, starting on an 8-byte boundary */
2217       ret = gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size, 8, FALSE);
2218       if (ret != GST_FLOW_OK)
2219         return ret;
2220       /* Moov header, not padded yet */
2221       ret = gst_qt_mux_send_moov (qtmux, &qtmux->header_size, 0, FALSE, FALSE);
2222       if (ret != GST_FLOW_OK)
2223         return ret;
2224       /* The moov we just sent contains the 'base' size of the moov, before
2225        * we put in any time-dependent per-trak data. Use that to make
2226        * a good estimate of how much extra to reserve */
2227       /* Calculate how much space to reserve for our MOOV atom.
2228        * We actually reserve twice that, for ping-pong buffers */
2229       qtmux->base_moov_size = qtmux->last_moov_size;
2230       GST_LOG_OBJECT (qtmux, "Base moov size is %u before any indexes",
2231           qtmux->base_moov_size);
2232       qtmux->reserved_moov_size = qtmux->base_moov_size +
2233           gst_util_uint64_scale (reserved_max_duration,
2234           reserved_bytes_per_sec_per_trak *
2235           atom_moov_get_trak_count (qtmux->moov), GST_SECOND);
2236
2237       /* Need space for at least 4 atom headers. More really, but
2238        * this as an absolute minimum */
2239       if (qtmux->reserved_moov_size < 4 * 8)
2240         goto reserved_moov_too_small;
2241
2242       GST_DEBUG_OBJECT (qtmux, "reserving header area of size %u",
2243           2 * qtmux->reserved_moov_size + 16);
2244
2245       GST_OBJECT_LOCK (qtmux);
2246       qtmux->reserved_duration_remaining =
2247           gst_util_uint64_scale (qtmux->reserved_moov_size -
2248           qtmux->base_moov_size, GST_SECOND,
2249           reserved_bytes_per_sec_per_trak *
2250           atom_moov_get_trak_count (qtmux->moov));
2251       GST_OBJECT_UNLOCK (qtmux);
2252
2253       /* Now that we know how much reserved space is targetted,
2254        * output a free atom to fill the extra reserved */
2255       ret = gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size,
2256           qtmux->reserved_moov_size - qtmux->base_moov_size, FALSE);
2257       if (ret != GST_FLOW_OK)
2258         return ret;
2259
2260       /* Then a free atom containing 'pong' buffer, with an
2261        * extra 8 bytes to account for the free atom header itself */
2262       ret = gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size,
2263           qtmux->reserved_moov_size + 8, FALSE);
2264       if (ret != GST_FLOW_OK)
2265         return ret;
2266
2267       /* extra atoms go after the free/moov(s), before the mdat */
2268       ret =
2269           gst_qt_mux_send_extra_atoms (qtmux, TRUE, &qtmux->header_size, FALSE);
2270       if (ret != GST_FLOW_OK)
2271         return ret;
2272
2273       qtmux->mdat_pos = qtmux->header_size;
2274       /* extended atom in case we go over 4GB while writing and need
2275        * the full 64-bit atom */
2276       ret =
2277           gst_qt_mux_send_mdat_header (qtmux, &qtmux->header_size, 0, TRUE,
2278           FALSE);
2279       break;
2280     case GST_QT_MUX_MODE_FAST_START:
2281       GST_OBJECT_LOCK (qtmux);
2282       qtmux->fast_start_file = g_fopen (qtmux->fast_start_file_path, "wb+");
2283       if (!qtmux->fast_start_file)
2284         goto open_failed;
2285       GST_OBJECT_UNLOCK (qtmux);
2286       /* send a dummy buffer for preroll */
2287       ret = gst_qt_mux_send_buffer (qtmux, gst_buffer_new (), NULL, FALSE);
2288       break;
2289     case GST_QT_MUX_MODE_FRAGMENTED:
2290     case GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE:
2291       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
2292       if (ret != GST_FLOW_OK)
2293         break;
2294       /* store the moov pos so we can update the duration later
2295        * in non-streamable mode */
2296       qtmux->moov_pos = qtmux->header_size;
2297
2298       GST_DEBUG_OBJECT (qtmux, "fragment duration %d ms, writing headers",
2299           qtmux->fragment_duration);
2300       /* also used as snapshot marker to indicate fragmented file */
2301       qtmux->fragment_sequence = 1;
2302       /* prepare moov and/or tags */
2303       gst_qt_mux_configure_moov (qtmux);
2304       gst_qt_mux_setup_metadata (qtmux);
2305       ret = gst_qt_mux_send_moov (qtmux, &qtmux->header_size, 0, FALSE, FALSE);
2306       if (ret != GST_FLOW_OK)
2307         return ret;
2308       /* extra atoms */
2309       ret =
2310           gst_qt_mux_send_extra_atoms (qtmux, TRUE, &qtmux->header_size, FALSE);
2311       if (ret != GST_FLOW_OK)
2312         break;
2313       /* prepare index if not streamable */
2314       if (qtmux->mux_mode == GST_QT_MUX_MODE_FRAGMENTED)
2315         qtmux->mfra = atom_mfra_new (qtmux->context);
2316       break;
2317   }
2318
2319   return ret;
2320   /* ERRORS */
2321 invalid_isml:
2322   {
2323     GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
2324         ("Cannot create an ISML file with 0 fragment duration"), (NULL));
2325     return GST_FLOW_ERROR;
2326   }
2327 reserved_moov_too_small:
2328   {
2329     GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
2330         ("Not enough reserved space for creating headers"), (NULL));
2331     return GST_FLOW_ERROR;
2332   }
2333 open_failed:
2334   {
2335     GST_ELEMENT_ERROR (qtmux, RESOURCE, OPEN_READ_WRITE,
2336         (("Could not open temporary file \"%s\""),
2337             qtmux->fast_start_file_path), GST_ERROR_SYSTEM);
2338     GST_OBJECT_UNLOCK (qtmux);
2339     return GST_FLOW_ERROR;
2340   }
2341 }
2342
2343 static GstFlowReturn
2344 gst_qt_mux_send_last_buffers (GstQTMux * qtmux)
2345 {
2346   GstFlowReturn ret = GST_FLOW_OK;
2347   GSList *walk;
2348
2349   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2350     GstCollectData *cdata = (GstCollectData *) walk->data;
2351     GstQTPad *qtpad = (GstQTPad *) cdata;
2352
2353     /* avoid add_buffer complaining if not negotiated
2354      * in which case no buffers either, so skipping */
2355     if (!qtpad->fourcc) {
2356       GST_DEBUG_OBJECT (qtmux, "Pad %s has never had buffers",
2357           GST_PAD_NAME (qtpad->collect.pad));
2358       continue;
2359     }
2360
2361     /* send last buffer; also flushes possibly queued buffers/ts */
2362     GST_DEBUG_OBJECT (qtmux, "Sending the last buffer for pad %s",
2363         GST_PAD_NAME (qtpad->collect.pad));
2364     ret = gst_qt_mux_add_buffer (qtmux, qtpad, NULL);
2365     if (ret != GST_FLOW_OK) {
2366       GST_WARNING_OBJECT (qtmux, "Failed to send last buffer for %s, "
2367           "flow return: %s", GST_PAD_NAME (qtpad->collect.pad),
2368           gst_flow_get_name (ret));
2369     }
2370   }
2371
2372   return ret;
2373 }
2374
2375 static void
2376 gst_qt_mux_update_global_statistics (GstQTMux * qtmux)
2377 {
2378   GSList *walk;
2379
2380   /* for setting some subtitles fields */
2381   guint max_width = 0;
2382   guint max_height = 0;
2383
2384   qtmux->first_ts = qtmux->last_dts = GST_CLOCK_TIME_NONE;
2385
2386   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2387     GstCollectData *cdata = (GstCollectData *) walk->data;
2388     GstQTPad *qtpad = (GstQTPad *) cdata;
2389
2390     if (!qtpad->fourcc) {
2391       GST_DEBUG_OBJECT (qtmux, "Pad %s has never had buffers",
2392           GST_PAD_NAME (qtpad->collect.pad));
2393       continue;
2394     }
2395
2396     /* having flushed above, can check for buffers now */
2397     if (GST_CLOCK_TIME_IS_VALID (qtpad->first_ts)) {
2398       /* determine max stream duration */
2399       if (!GST_CLOCK_TIME_IS_VALID (qtmux->last_dts)
2400           || qtpad->last_dts > qtmux->last_dts) {
2401         qtmux->last_dts = qtpad->last_dts;
2402       }
2403       if (!GST_CLOCK_TIME_IS_VALID (qtmux->first_ts)
2404           || qtpad->first_ts < qtmux->first_ts) {
2405         qtmux->first_ts = qtpad->first_ts;
2406       }
2407     }
2408
2409     /* subtitles need to know the video width/height,
2410      * it is stored shifted 16 bits to the left according to the
2411      * spec */
2412     max_width = MAX (max_width, (qtpad->trak->tkhd.width >> 16));
2413     max_height = MAX (max_height, (qtpad->trak->tkhd.height >> 16));
2414
2415     /* update average bitrate of streams if needed */
2416     {
2417       guint32 avgbitrate = 0;
2418       guint32 maxbitrate = qtpad->max_bitrate;
2419
2420       if (qtpad->avg_bitrate)
2421         avgbitrate = qtpad->avg_bitrate;
2422       else if (qtpad->total_duration > 0)
2423         avgbitrate = (guint32) gst_util_uint64_scale_round (qtpad->total_bytes,
2424             8 * GST_SECOND, qtpad->total_duration);
2425
2426       atom_trak_update_bitrates (qtpad->trak, avgbitrate, maxbitrate);
2427     }
2428   }
2429
2430   /* need to update values on subtitle traks now that we know the
2431    * max width and height */
2432   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2433     GstCollectData *cdata = (GstCollectData *) walk->data;
2434     GstQTPad *qtpad = (GstQTPad *) cdata;
2435
2436     if (!qtpad->fourcc) {
2437       GST_DEBUG_OBJECT (qtmux, "Pad %s has never had buffers",
2438           GST_PAD_NAME (qtpad->collect.pad));
2439       continue;
2440     }
2441
2442     if (qtpad->fourcc == FOURCC_tx3g) {
2443       atom_trak_tx3g_update_dimension (qtpad->trak, max_width, max_height);
2444     }
2445   }
2446 }
2447
2448 /* Called after gst_qt_mux_update_global_statistics() updates the
2449  * first_ts tracking, to create/set edit lists for delayed streams */
2450 static void
2451 gst_qt_mux_update_edit_lists (GstQTMux * qtmux)
2452 {
2453   GSList *walk;
2454
2455   GST_DEBUG_OBJECT (qtmux, "Media first ts selected: %" GST_TIME_FORMAT,
2456       GST_TIME_ARGS (qtmux->first_ts));
2457   /* add/update EDTSs for late streams. configure_moov will have
2458    * set the trak durations above by summing the sample tables,
2459    * here we extend that if needing to insert an empty segment */
2460   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2461     GstCollectData *cdata = (GstCollectData *) walk->data;
2462     GstQTPad *qtpad = (GstQTPad *) cdata;
2463
2464     if (GST_CLOCK_TIME_IS_VALID (qtpad->first_ts)) {
2465       guint32 lateness = 0;
2466       guint32 duration = qtpad->trak->tkhd.duration;
2467       gboolean has_gap;
2468
2469       has_gap = (qtpad->first_ts > (qtmux->first_ts + qtpad->dts_adjustment));
2470
2471       if (has_gap) {
2472         GstClockTime diff;
2473
2474         diff = qtpad->first_ts - (qtmux->first_ts + qtpad->dts_adjustment);
2475         lateness = gst_util_uint64_scale_round (diff,
2476             qtmux->timescale, GST_SECOND);
2477
2478         GST_DEBUG_OBJECT (qtmux, "Pad %s is a late stream by %" GST_TIME_FORMAT,
2479             GST_PAD_NAME (qtpad->collect.pad), GST_TIME_ARGS (lateness));
2480
2481         atom_trak_set_elst_entry (qtpad->trak, 0, lateness, (guint32) - 1,
2482             (guint32) (1 * 65536.0));
2483       }
2484
2485       /* has shift */
2486       if (has_gap || (qtpad->dts_adjustment > 0)) {
2487         GstClockTime ctts = 0;
2488         guint32 media_start;
2489
2490         if (qtpad->first_ts > qtpad->first_dts)
2491           ctts = qtpad->first_ts - qtpad->first_dts;
2492
2493         media_start = gst_util_uint64_scale_round (ctts,
2494             atom_trak_get_timescale (qtpad->trak), GST_SECOND);
2495
2496         atom_trak_set_elst_entry (qtpad->trak, 1, duration, media_start,
2497             (guint32) (1 * 65536.0));
2498       }
2499
2500       /* need to add the empty time to the trak duration */
2501       duration += lateness;
2502
2503       qtpad->trak->tkhd.duration = duration;
2504       if (qtpad->tc_trak) {
2505         qtpad->tc_trak->tkhd.duration = duration;
2506         qtpad->tc_trak->mdia.mdhd.time_info.duration = duration;
2507       }
2508
2509       /* And possibly grow the moov duration */
2510       if (duration > qtmux->moov->mvhd.time_info.duration) {
2511         qtmux->moov->mvhd.time_info.duration = duration;
2512         qtmux->moov->mvex.mehd.fragment_duration = duration;
2513       }
2514     }
2515   }
2516 }
2517
2518 static GstFlowReturn
2519 gst_qt_mux_update_timecode (GstQTMux * qtmux)
2520 {
2521   GstSegment segment;
2522   GstBuffer *buf;
2523   GstMapInfo map;
2524   guint64 offset = qtmux->tc_pos;
2525
2526   g_assert (qtmux->tc_pos != -1);
2527
2528   gst_segment_init (&segment, GST_FORMAT_BYTES);
2529   segment.start = offset;
2530   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2531
2532   buf = gst_buffer_new_and_alloc (4);
2533   gst_buffer_map (buf, &map, GST_MAP_WRITE);
2534
2535   GST_WRITE_UINT32_BE (map.data,
2536       gst_video_time_code_frames_since_daily_jam (qtmux->first_tc));
2537   gst_buffer_unmap (buf, &map);
2538
2539   /* Reset this value, so the timecode won't be re-rewritten */
2540   qtmux->tc_pos = -1;
2541
2542   return gst_qt_mux_send_buffer (qtmux, buf, &offset, FALSE);
2543 }
2544
2545 static GstFlowReturn
2546 gst_qt_mux_stop_file (GstQTMux * qtmux)
2547 {
2548   gboolean ret = GST_FLOW_OK;
2549   guint64 offset = 0, size = 0;
2550   gboolean large_file;
2551
2552   GST_DEBUG_OBJECT (qtmux, "Updating remaining values and sending last data");
2553
2554   /* pushing last buffers for each pad */
2555   if ((ret = gst_qt_mux_send_last_buffers (qtmux)) != GST_FLOW_OK)
2556     return ret;
2557
2558   if (qtmux->mux_mode == GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE) {
2559     /* Streamable mode; no need to write duration or MFRA */
2560     GST_DEBUG_OBJECT (qtmux, "streamable file; nothing to stop");
2561     return GST_FLOW_OK;
2562   }
2563
2564   gst_qt_mux_update_global_statistics (qtmux);
2565   if (qtmux->tc_pos != -1) {
2566     /* File is being stopped and timecode hasn't been updated. Update it now
2567      * with whatever we have */
2568     ret = gst_qt_mux_update_timecode (qtmux);
2569     if (ret != GST_FLOW_OK)
2570       return ret;
2571   }
2572
2573   switch (qtmux->mux_mode) {
2574     case GST_QT_MUX_MODE_FRAGMENTED:{
2575       GstSegment segment;
2576       guint8 *data = NULL;
2577       GstBuffer *buf;
2578
2579       size = offset = 0;
2580       GST_DEBUG_OBJECT (qtmux, "adding mfra");
2581       if (!atom_mfra_copy_data (qtmux->mfra, &data, &size, &offset))
2582         goto serialize_error;
2583       buf = _gst_buffer_new_take_data (data, offset);
2584       ret = gst_qt_mux_send_buffer (qtmux, buf, NULL, FALSE);
2585       if (ret != GST_FLOW_OK)
2586         return ret;
2587
2588       /* only mvex duration is updated,
2589        * mvhd should be consistent with empty moov
2590        * (but TODO maybe some clients do not handle that well ?) */
2591       qtmux->moov->mvex.mehd.fragment_duration =
2592           gst_util_uint64_scale (qtmux->last_dts, qtmux->timescale, GST_SECOND);
2593       GST_DEBUG_OBJECT (qtmux, "rewriting moov with mvex duration %"
2594           GST_TIME_FORMAT, GST_TIME_ARGS (qtmux->last_dts));
2595       /* seek and rewrite the header */
2596       gst_segment_init (&segment, GST_FORMAT_BYTES);
2597       segment.start = qtmux->moov_pos;
2598       gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2599       /* no need to seek back */
2600       return gst_qt_mux_send_moov (qtmux, NULL, 0, FALSE, FALSE);
2601     }
2602     case GST_QT_MUX_MODE_ROBUST_RECORDING:{
2603       ret = gst_qt_mux_robust_recording_rewrite_moov (qtmux);
2604       if (G_UNLIKELY (ret != GST_FLOW_OK))
2605         return ret;
2606       /* Finalise by writing the final size into the mdat. Up until now
2607        * it's been 0, which means 'rest of the file'
2608        * No need to seek back after this, we won't write any more */
2609       return gst_qt_mux_update_mdat_size (qtmux, qtmux->mdat_pos,
2610           qtmux->mdat_size, NULL, TRUE);
2611     }
2612     default:
2613       break;
2614   }
2615
2616   /* Moov-at-end or fast-start mode from here down */
2617   gst_qt_mux_configure_moov (qtmux);
2618
2619   gst_qt_mux_update_edit_lists (qtmux);
2620
2621   /* tags into file metadata */
2622   gst_qt_mux_setup_metadata (qtmux);
2623
2624   large_file = (qtmux->mdat_size > MDAT_LARGE_FILE_LIMIT);
2625
2626   switch (qtmux->mux_mode) {
2627     case GST_QT_MUX_MODE_FAST_START:{
2628       /* if faststart, update the offset of the atoms in the movie with the offset
2629        * that the movie headers before mdat will cause.
2630        * Also, send the ftyp */
2631       offset = size = 0;
2632
2633       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
2634       if (ret != GST_FLOW_OK) {
2635         goto ftyp_error;
2636       }
2637       /* copy into NULL to obtain size */
2638       if (!atom_moov_copy_data (qtmux->moov, NULL, &size, &offset))
2639         goto serialize_error;
2640       GST_DEBUG_OBJECT (qtmux, "calculated moov atom size %" G_GUINT64_FORMAT,
2641           offset);
2642       offset += qtmux->header_size + (large_file ? 16 : 8);
2643
2644       /* sum up with the extra atoms size */
2645       ret = gst_qt_mux_send_extra_atoms (qtmux, FALSE, &offset, FALSE);
2646       if (ret != GST_FLOW_OK)
2647         return ret;
2648       break;
2649     }
2650     default:
2651       offset = qtmux->header_size;
2652       break;
2653   }
2654
2655   /* Now that we know the size of moov + extra atoms, we can adjust
2656    * the chunk offsets stored into the moov */
2657   atom_moov_chunks_set_offset (qtmux->moov, offset);
2658
2659   /* write out moov and extra atoms */
2660   /* note: as of this point, we no longer care about tracking written data size,
2661    * since there is no more use for it anyway */
2662   ret = gst_qt_mux_send_moov (qtmux, NULL, 0, FALSE, FALSE);
2663   if (ret != GST_FLOW_OK)
2664     return ret;
2665
2666   /* extra atoms */
2667   ret = gst_qt_mux_send_extra_atoms (qtmux, TRUE, NULL, FALSE);
2668   if (ret != GST_FLOW_OK)
2669     return ret;
2670
2671   switch (qtmux->mux_mode) {
2672     case GST_QT_MUX_MODE_MOOV_AT_END:
2673     {
2674       /* mdat needs update iff not using faststart */
2675       GST_DEBUG_OBJECT (qtmux, "updating mdat size");
2676       ret = gst_qt_mux_update_mdat_size (qtmux, qtmux->mdat_pos,
2677           qtmux->mdat_size, NULL, FALSE);
2678       /* note; no seeking back to the end of file is done,
2679        * since we no longer write anything anyway */
2680       break;
2681     }
2682     case GST_QT_MUX_MODE_FAST_START:
2683     {
2684       /* send mdat atom and move buffered data into it */
2685       /* mdat_size = accumulated (buffered data) */
2686       ret = gst_qt_mux_send_mdat_header (qtmux, NULL, qtmux->mdat_size,
2687           large_file, FALSE);
2688       if (ret != GST_FLOW_OK)
2689         return ret;
2690       ret = gst_qt_mux_send_buffered_data (qtmux, NULL);
2691       if (ret != GST_FLOW_OK)
2692         return ret;
2693       break;
2694     }
2695     default:
2696       g_assert_not_reached ();
2697   }
2698
2699   return ret;
2700
2701   /* ERRORS */
2702 serialize_error:
2703   {
2704     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
2705         ("Failed to serialize moov"));
2706     return GST_FLOW_ERROR;
2707   }
2708 ftyp_error:
2709   {
2710     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL), ("Failed to send ftyp"));
2711     return GST_FLOW_ERROR;
2712   }
2713 }
2714
2715 static GstFlowReturn
2716 gst_qt_mux_pad_fragment_add_buffer (GstQTMux * qtmux, GstQTPad * pad,
2717     GstBuffer * buf, gboolean force, guint32 nsamples, gint64 dts,
2718     guint32 delta, guint32 size, gboolean sync, gint64 pts_offset)
2719 {
2720   GstFlowReturn ret = GST_FLOW_OK;
2721
2722   /* setup if needed */
2723   if (G_UNLIKELY (!pad->traf || force))
2724     goto init;
2725
2726 flush:
2727   /* flush pad fragment if threshold reached,
2728    * or at new keyframe if we should be minding those in the first place */
2729   if (G_UNLIKELY (force || (sync && pad->sync) ||
2730           pad->fragment_duration < (gint64) delta)) {
2731     AtomMOOF *moof;
2732     guint64 size = 0, offset = 0;
2733     guint8 *data = NULL;
2734     GstBuffer *buffer;
2735     guint i, total_size;
2736
2737     /* now we know where moof ends up, update offset in tfra */
2738     if (pad->tfra)
2739       atom_tfra_update_offset (pad->tfra, qtmux->header_size);
2740
2741     moof = atom_moof_new (qtmux->context, qtmux->fragment_sequence);
2742     /* takes ownership */
2743     atom_moof_add_traf (moof, pad->traf);
2744     pad->traf = NULL;
2745     atom_moof_copy_data (moof, &data, &size, &offset);
2746     buffer = _gst_buffer_new_take_data (data, offset);
2747     GST_LOG_OBJECT (qtmux, "writing moof size %" G_GSIZE_FORMAT,
2748         gst_buffer_get_size (buffer));
2749     ret = gst_qt_mux_send_buffer (qtmux, buffer, &qtmux->header_size, FALSE);
2750
2751     /* and actual data */
2752     total_size = 0;
2753     for (i = 0; i < atom_array_get_len (&pad->fragment_buffers); i++) {
2754       total_size +=
2755           gst_buffer_get_size (atom_array_index (&pad->fragment_buffers, i));
2756     }
2757
2758     GST_LOG_OBJECT (qtmux, "writing %d buffers, total_size %d",
2759         atom_array_get_len (&pad->fragment_buffers), total_size);
2760     if (ret == GST_FLOW_OK)
2761       ret = gst_qt_mux_send_mdat_header (qtmux, &qtmux->header_size, total_size,
2762           FALSE, FALSE);
2763     for (i = 0; i < atom_array_get_len (&pad->fragment_buffers); i++) {
2764       if (G_LIKELY (ret == GST_FLOW_OK))
2765         ret = gst_qt_mux_send_buffer (qtmux,
2766             atom_array_index (&pad->fragment_buffers, i), &qtmux->header_size,
2767             FALSE);
2768       else
2769         gst_buffer_unref (atom_array_index (&pad->fragment_buffers, i));
2770     }
2771
2772     atom_array_clear (&pad->fragment_buffers);
2773     atom_moof_free (moof);
2774     qtmux->fragment_sequence++;
2775     force = FALSE;
2776   }
2777
2778 init:
2779   if (G_UNLIKELY (!pad->traf)) {
2780     GST_LOG_OBJECT (qtmux, "setting up new fragment");
2781     pad->traf = atom_traf_new (qtmux->context, atom_trak_get_id (pad->trak));
2782     atom_array_init (&pad->fragment_buffers, 512);
2783     pad->fragment_duration = gst_util_uint64_scale (qtmux->fragment_duration,
2784         atom_trak_get_timescale (pad->trak), 1000);
2785
2786     if (G_UNLIKELY (qtmux->mfra && !pad->tfra)) {
2787       pad->tfra = atom_tfra_new (qtmux->context, atom_trak_get_id (pad->trak));
2788       atom_mfra_add_tfra (qtmux->mfra, pad->tfra);
2789     }
2790   }
2791
2792   /* add buffer and metadata */
2793   atom_traf_add_samples (pad->traf, delta, size, sync, pts_offset,
2794       pad->sync && sync);
2795   atom_array_append (&pad->fragment_buffers, buf, 256);
2796   pad->fragment_duration -= delta;
2797
2798   if (pad->tfra) {
2799     guint32 sn = atom_traf_get_sample_num (pad->traf);
2800
2801     if ((sync && pad->sync) || (sn == 1 && !pad->sync))
2802       atom_tfra_add_entry (pad->tfra, dts, sn);
2803   }
2804
2805   if (G_UNLIKELY (force))
2806     goto flush;
2807
2808   return ret;
2809 }
2810
2811 /* Here's the clever bit of robust recording: Updating the moov
2812  * header is done using a ping-pong scheme inside 2 blocks of size
2813  * 'reserved_moov_size' at the start of the file, in such a way that the
2814  * file on-disk is always valid if interrupted.
2815  * Inside the reserved space, we have 2 pairs of free + moov atoms
2816  * (in that order), free-A + moov-A @ offset 0 and free-B + moov-B at
2817  * at offset "reserved_moov_size".
2818  *
2819  * 1. Free-A has 0 size payload, moov-A immediately after is
2820  *    active/current, and is padded with an internal Free atom to
2821  *    end at reserved_space/2. Free-B is at reserved_space/2, sized
2822  *    to cover the remaining free space (including moov-B).
2823  * 2. We write moov-B (which is invisible inside free-B), and pad it to
2824  *    end at the end of free space. Then, we update free-A to size
2825  *    reserved_space/2 + sizeof(free-B), which hides moov-A and the
2826  *    free-B header, and makes moov-B active.
2827  * 3. Rewrite moov-A inside free-A, with padding out to free-B.
2828  *    Change the size of free-A to make moov-A active again.
2829  * 4. Rinse and repeat.
2830  *
2831  */
2832 static GstFlowReturn
2833 gst_qt_mux_robust_recording_rewrite_moov (GstQTMux * qtmux)
2834 {
2835   GstSegment segment;
2836   GstFlowReturn ret;
2837   guint64 freeA_offset;
2838   guint32 new_freeA_size;
2839   guint64 new_moov_offset;
2840
2841   /* Update moov info, then seek and rewrite the MOOV atom */
2842   gst_qt_mux_update_global_statistics (qtmux);
2843   gst_qt_mux_configure_moov (qtmux);
2844
2845   gst_qt_mux_update_edit_lists (qtmux);
2846
2847   /* tags into file metadata */
2848   gst_qt_mux_setup_metadata (qtmux);
2849
2850   /* chunks position is set relative to the first byte of the
2851    * MDAT atom payload. Set the overall offset into the file */
2852   atom_moov_chunks_set_offset (qtmux->moov, qtmux->header_size);
2853
2854   /* Calculate which moov to rewrite. qtmux->moov_pos points to
2855    * the start of the free-A header */
2856   freeA_offset = qtmux->moov_pos;
2857   if (qtmux->reserved_moov_first_active) {
2858     GST_DEBUG_OBJECT (qtmux, "Updating pong moov header");
2859     /* After this, freeA will include itself, moovA, plus the freeB
2860      * header */
2861     new_freeA_size = qtmux->reserved_moov_size + 16;
2862   } else {
2863     GST_DEBUG_OBJECT (qtmux, "Updating ping moov header");
2864     new_freeA_size = 8;
2865   }
2866   /* the moov we update is after free-A, calculate its offset */
2867   new_moov_offset = freeA_offset + new_freeA_size;
2868
2869   /* Swap ping-pong cadence marker */
2870   qtmux->reserved_moov_first_active = !qtmux->reserved_moov_first_active;
2871
2872   /* seek and rewrite the MOOV atom */
2873   gst_segment_init (&segment, GST_FORMAT_BYTES);
2874   segment.start = new_moov_offset;
2875   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2876
2877   ret =
2878       gst_qt_mux_send_moov (qtmux, NULL, qtmux->reserved_moov_size, FALSE,
2879       TRUE);
2880   if (ret != GST_FLOW_OK)
2881     return ret;
2882
2883   /* Update the estimated recording space remaining, based on amount used so
2884    * far and duration muxed so far */
2885   if (qtmux->last_moov_size > qtmux->base_moov_size && qtmux->last_dts > 0) {
2886     GstClockTime remain;
2887     GstClockTime time_muxed = qtmux->last_dts;
2888
2889     remain =
2890         gst_util_uint64_scale (qtmux->reserved_moov_size -
2891         qtmux->last_moov_size, time_muxed,
2892         qtmux->last_moov_size - qtmux->base_moov_size);
2893     /* Always under-estimate slightly, so users
2894      * have time to stop muxing before we run out */
2895     if (remain < GST_SECOND / 2)
2896       remain = 0;
2897     else
2898       remain -= GST_SECOND / 2;
2899
2900     GST_INFO_OBJECT (qtmux,
2901         "Reserved %u header bytes. Used %u in %" GST_TIME_FORMAT
2902         ". Remaining now %u or approx %" G_GUINT64_FORMAT " ns\n",
2903         qtmux->reserved_moov_size, qtmux->last_moov_size,
2904         GST_TIME_ARGS (qtmux->last_dts),
2905         qtmux->reserved_moov_size - qtmux->last_moov_size, remain);
2906
2907     GST_OBJECT_LOCK (qtmux);
2908     qtmux->reserved_duration_remaining = remain;
2909     qtmux->muxed_since_last_update = 0;
2910     GST_DEBUG_OBJECT (qtmux, "reserved remaining duration now %"
2911         G_GUINT64_FORMAT, qtmux->reserved_duration_remaining);
2912     GST_OBJECT_UNLOCK (qtmux);
2913   }
2914
2915
2916   /* Now update the moov-A size. Don't pass offset, since we don't need
2917    * send_free_atom() to seek for us - all our callers seek back to
2918    * where they need after this, or they don't need it */
2919   gst_segment_init (&segment, GST_FORMAT_BYTES);
2920   segment.start = freeA_offset;
2921   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2922
2923   ret = gst_qt_mux_send_free_atom (qtmux, NULL, new_freeA_size, TRUE);
2924
2925   return ret;
2926 }
2927
2928 static GstFlowReturn
2929 gst_qt_mux_robust_recording_update (GstQTMux * qtmux, GstClockTime position)
2930 {
2931   GstSegment segment;
2932   GstFlowReturn flow_ret;
2933
2934   guint64 mdat_offset = qtmux->mdat_pos + 16 + qtmux->mdat_size;
2935
2936   GST_OBJECT_LOCK (qtmux);
2937   if (qtmux->reserved_moov_update_period == GST_CLOCK_TIME_NONE) {
2938     GST_OBJECT_UNLOCK (qtmux);
2939     return GST_FLOW_OK;
2940   }
2941
2942   /* Update if position is > the threshold or there's been no update yet */
2943   if (qtmux->last_moov_update != GST_CLOCK_TIME_NONE &&
2944       (position <= qtmux->last_moov_update ||
2945           (position - qtmux->last_moov_update) <
2946           qtmux->reserved_moov_update_period)) {
2947     /* Update the offset of how much we've muxed, so the
2948      * report of remaining space keeps counting down */
2949     if (position > qtmux->last_moov_update &&
2950         position - qtmux->last_moov_update > qtmux->muxed_since_last_update) {
2951       GST_LOG_OBJECT (qtmux,
2952           "Muxed time %" G_GUINT64_FORMAT " since last moov update",
2953           qtmux->muxed_since_last_update);
2954       qtmux->muxed_since_last_update = position - qtmux->last_moov_update;
2955     }
2956     GST_OBJECT_UNLOCK (qtmux);
2957     return GST_FLOW_OK;         /* No update needed yet */
2958   }
2959
2960   qtmux->last_moov_update = position;
2961   GST_OBJECT_UNLOCK (qtmux);
2962
2963   GST_DEBUG_OBJECT (qtmux, "Update moov atom, position %" GST_TIME_FORMAT
2964       " mdat starts @ %" G_GUINT64_FORMAT " we were a %" G_GUINT64_FORMAT,
2965       GST_TIME_ARGS (position), qtmux->mdat_pos, mdat_offset);
2966
2967   flow_ret = gst_qt_mux_robust_recording_rewrite_moov (qtmux);
2968   if (G_UNLIKELY (flow_ret != GST_FLOW_OK))
2969     return flow_ret;
2970
2971   /* Seek back to previous position */
2972   gst_segment_init (&segment, GST_FORMAT_BYTES);
2973   segment.start = mdat_offset;
2974   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2975
2976   return flow_ret;
2977 }
2978
2979 static GstFlowReturn
2980 gst_qt_mux_register_and_push_sample (GstQTMux * qtmux, GstQTPad * pad,
2981     GstBuffer * buffer, gboolean is_last_buffer, guint nsamples,
2982     gint64 last_dts, gint64 scaled_duration, guint sample_size,
2983     guint64 chunk_offset, gboolean sync, gboolean do_pts, gint64 pts_offset)
2984 {
2985   GstFlowReturn ret = GST_FLOW_OK;
2986
2987   /* note that a new chunk is started each time (not fancy but works) */
2988   if (qtmux->moov_recov_file) {
2989     if (!atoms_recov_write_trak_samples (qtmux->moov_recov_file, pad->trak,
2990             nsamples, (gint32) scaled_duration, sample_size, chunk_offset, sync,
2991             do_pts, pts_offset)) {
2992       GST_WARNING_OBJECT (qtmux, "Failed to write sample information to "
2993           "recovery file, disabling recovery");
2994       fclose (qtmux->moov_recov_file);
2995       qtmux->moov_recov_file = NULL;
2996     }
2997   }
2998
2999   switch (qtmux->mux_mode) {
3000     case GST_QT_MUX_MODE_MOOV_AT_END:
3001     case GST_QT_MUX_MODE_FAST_START:
3002     case GST_QT_MUX_MODE_ROBUST_RECORDING:
3003       atom_trak_add_samples (pad->trak, nsamples, (gint32) scaled_duration,
3004           sample_size, chunk_offset, sync, pts_offset);
3005       ret = gst_qt_mux_send_buffer (qtmux, buffer, &qtmux->mdat_size, TRUE);
3006       /* Check if it's time to re-write the headers in robust-recording mode */
3007       if (ret == GST_FLOW_OK
3008           && qtmux->mux_mode == GST_QT_MUX_MODE_ROBUST_RECORDING)
3009         ret = gst_qt_mux_robust_recording_update (qtmux, pad->total_duration);
3010       break;
3011     case GST_QT_MUX_MODE_FRAGMENTED:
3012     case GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE:
3013       /* ensure that always sync samples are marked as such */
3014       ret = gst_qt_mux_pad_fragment_add_buffer (qtmux, pad, buffer,
3015           is_last_buffer, nsamples, last_dts, (gint32) scaled_duration,
3016           sample_size, !pad->sync || sync, pts_offset);
3017       break;
3018   }
3019
3020   return ret;
3021 }
3022
3023 static GstFlowReturn
3024 gst_qt_mux_check_and_update_timecode (GstQTMux * qtmux, GstQTPad * pad,
3025     GstBuffer * buf, GstFlowReturn ret)
3026 {
3027   if (buf != NULL && (pad->tc_trak == NULL || qtmux->tc_pos != -1)) {
3028     GstVideoTimeCodeMeta *tc_meta = gst_buffer_get_video_time_code_meta (buf);
3029     if (tc_meta) {
3030       GstVideoTimeCode *tc = &tc_meta->tc;
3031       GstBuffer *tc_buf;
3032       gsize szret;
3033       guint32 frames_since_daily_jam;
3034
3035       /* This means we never got a timecode before */
3036       if (qtmux->first_tc == NULL) {
3037 #ifndef GST_DISABLE_GST_DEBUG
3038         gchar *tc_str = gst_video_time_code_to_string (tc);
3039         GST_DEBUG_OBJECT (qtmux, "Found first timecode %s", tc_str);
3040         g_free (tc_str);
3041 #endif
3042         g_assert (pad->tc_trak == NULL);
3043         tc_buf = gst_buffer_new_allocate (NULL, 4, NULL);
3044         qtmux->first_tc = gst_video_time_code_copy (tc);
3045         /* If frames are out of order, the frame we're currently getting might
3046          * not be the first one. Just write a 0 timecode for now and wait
3047          * until we receive a timecode that's lower than the current one */
3048         if (pad->is_out_of_order) {
3049           qtmux->first_pts = GST_BUFFER_PTS (buf);
3050           frames_since_daily_jam = 0;
3051           /* Position to rewrite */
3052           qtmux->tc_pos = qtmux->mdat_size;
3053         } else {
3054           frames_since_daily_jam =
3055               gst_video_time_code_frames_since_daily_jam (qtmux->first_tc);
3056           frames_since_daily_jam = GUINT32_TO_BE (frames_since_daily_jam);
3057         }
3058         /* Write the timecode trak now */
3059         pad->tc_trak = atom_trak_new (qtmux->context);
3060         atom_moov_add_trak (qtmux->moov, pad->tc_trak);
3061
3062         pad->trak->tref = atom_tref_new (FOURCC_tmcd);
3063         atom_tref_add_entry (pad->trak->tref, pad->tc_trak->tkhd.track_ID);
3064
3065         atom_trak_set_timecode_type (pad->tc_trak, qtmux->context,
3066             qtmux->first_tc);
3067
3068         szret = gst_buffer_fill (tc_buf, 0, &frames_since_daily_jam, 4);
3069         g_assert (szret == 4);
3070
3071         atom_trak_add_samples (pad->tc_trak, 1, 1, 4, qtmux->mdat_size, FALSE,
3072             0);
3073         ret = gst_qt_mux_send_buffer (qtmux, tc_buf, &qtmux->mdat_size, TRUE);
3074       } else if (pad->is_out_of_order) {
3075         /* Check for a lower timecode than the one stored */
3076         g_assert (pad->tc_trak != NULL);
3077         if (GST_BUFFER_DTS (buf) <= qtmux->first_pts) {
3078           if (gst_video_time_code_compare (tc, qtmux->first_tc) == -1) {
3079             gst_video_time_code_free (qtmux->first_tc);
3080             qtmux->first_tc = gst_video_time_code_copy (tc);
3081           }
3082         } else {
3083           guint64 bk_size = qtmux->mdat_size;
3084           GstSegment segment;
3085           /* If this frame's DTS is after the first PTS received, it means
3086            * we've already received the first frame to be presented. Otherwise
3087            * the decoder would need to go back in time */
3088           gst_qt_mux_update_timecode (qtmux);
3089
3090           /* Reset writing position */
3091           gst_segment_init (&segment, GST_FORMAT_BYTES);
3092           segment.start = bk_size;
3093           gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
3094         }
3095       }
3096     }
3097   }
3098   return ret;
3099 }
3100
3101 /*
3102  * Here we push the buffer and update the tables in the track atoms
3103  */
3104 static GstFlowReturn
3105 gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad, GstBuffer * buf)
3106 {
3107   GstBuffer *last_buf = NULL;
3108   GstClockTime duration;
3109   guint nsamples, sample_size;
3110   guint64 chunk_offset;
3111   gint64 last_dts, scaled_duration;
3112   gint64 pts_offset = 0;
3113   gboolean sync = FALSE;
3114   GstFlowReturn ret = GST_FLOW_OK;
3115
3116   if (!pad->fourcc)
3117     goto not_negotiated;
3118
3119   /* if this pad has a prepare function, call it */
3120   if (pad->prepare_buf_func != NULL) {
3121     buf = pad->prepare_buf_func (pad, buf, qtmux);
3122   }
3123
3124   last_buf = pad->last_buf;
3125
3126   /* DTS delta is used to calculate sample duration.
3127    * If buffer has missing DTS, we take either segment start or
3128    *  previous buffer end time, whichever is later.
3129    * This must only be done for non sparse streams, sparse streams
3130    * can have gaps between buffers (which is handled later by adding
3131    * extra empty buffer with duration that fills the gap). */
3132   if (!pad->sparse && buf && !GST_BUFFER_DTS_IS_VALID (buf)) {
3133     GstClockTime last_buf_duration = last_buf
3134         && GST_BUFFER_DURATION_IS_VALID (last_buf) ?
3135         GST_BUFFER_DURATION (last_buf) : 0;
3136
3137     buf = gst_buffer_make_writable (buf);
3138     GST_BUFFER_DTS (buf) = 0;   /* running-time 0 */
3139
3140     if (last_buf
3141         && (GST_BUFFER_DTS (last_buf) + last_buf_duration) >
3142         GST_BUFFER_DTS (buf)) {
3143       GST_BUFFER_DTS (buf) = GST_BUFFER_DTS (last_buf) + last_buf_duration;
3144     }
3145   }
3146
3147   ret = gst_qt_mux_check_and_update_timecode (qtmux, pad, buf, ret);
3148
3149   if (last_buf && !buf && !GST_BUFFER_DURATION_IS_VALID (last_buf)) {
3150     /* this is last buffer; there is no next buffer so we need valid number as duration */
3151     last_buf = gst_buffer_make_writable (last_buf);
3152     GST_BUFFER_DURATION (last_buf) = 0;
3153   }
3154
3155   if (last_buf == NULL) {
3156 #ifndef GST_DISABLE_GST_DEBUG
3157     if (buf == NULL) {
3158       GST_DEBUG_OBJECT (qtmux, "Pad %s has no previous buffer stored and "
3159           "received NULL buffer, doing nothing",
3160           GST_PAD_NAME (pad->collect.pad));
3161     } else {
3162       GST_LOG_OBJECT (qtmux,
3163           "Pad %s has no previous buffer stored, storing now",
3164           GST_PAD_NAME (pad->collect.pad));
3165     }
3166 #endif
3167     pad->last_buf = buf;
3168     goto exit;
3169   } else
3170     gst_buffer_ref (last_buf);
3171
3172   /* if this is the first buffer, store the timestamp */
3173   if (G_UNLIKELY (pad->first_ts == GST_CLOCK_TIME_NONE) && last_buf) {
3174     if (GST_BUFFER_PTS_IS_VALID (last_buf)) {
3175       pad->first_ts = GST_BUFFER_PTS (last_buf);
3176     } else if (GST_BUFFER_DTS_IS_VALID (last_buf)) {
3177       pad->first_ts = GST_BUFFER_DTS (last_buf);
3178     }
3179
3180     if (GST_BUFFER_DTS_IS_VALID (last_buf)) {
3181       pad->first_dts = pad->last_dts = GST_BUFFER_DTS (last_buf);
3182     } else if (GST_BUFFER_PTS_IS_VALID (last_buf)) {
3183       pad->first_dts = pad->last_dts = GST_BUFFER_PTS (last_buf);
3184     }
3185
3186     if (GST_CLOCK_TIME_IS_VALID (pad->first_ts)) {
3187       GST_DEBUG ("setting first_ts to %" G_GUINT64_FORMAT, pad->first_ts);
3188     } else {
3189       GST_WARNING_OBJECT (qtmux, "First buffer for pad %s has no timestamp, "
3190           "using 0 as first timestamp", GST_PAD_NAME (pad->collect.pad));
3191       pad->first_ts = pad->first_dts = 0;
3192     }
3193     GST_DEBUG_OBJECT (qtmux, "Stored first timestamp for pad %s %"
3194         GST_TIME_FORMAT, GST_PAD_NAME (pad->collect.pad),
3195         GST_TIME_ARGS (pad->first_ts));
3196   }
3197
3198   if (last_buf && buf && GST_CLOCK_TIME_IS_VALID (GST_BUFFER_DTS (buf)) &&
3199       GST_CLOCK_TIME_IS_VALID (GST_BUFFER_DTS (last_buf)) &&
3200       GST_BUFFER_DTS (buf) < GST_BUFFER_DTS (last_buf)) {
3201     GST_ERROR ("decreasing DTS value %" GST_TIME_FORMAT " < %" GST_TIME_FORMAT,
3202         GST_TIME_ARGS (GST_BUFFER_DTS (buf)),
3203         GST_TIME_ARGS (GST_BUFFER_DTS (last_buf)));
3204     GST_BUFFER_DTS (buf) = GST_BUFFER_DTS (last_buf);
3205   }
3206
3207   /* duration actually means time delta between samples, so we calculate
3208    * the duration based on the difference in DTS or PTS, falling back
3209    * to DURATION if the other two don't exist, such as with the last
3210    * sample before EOS. */
3211   duration = GST_BUFFER_DURATION (last_buf);
3212   if (!pad->sparse) {
3213     if (last_buf && buf && GST_BUFFER_DTS_IS_VALID (buf)
3214         && GST_BUFFER_DTS_IS_VALID (last_buf))
3215       duration = GST_BUFFER_DTS (buf) - GST_BUFFER_DTS (last_buf);
3216     else if (last_buf && buf && GST_BUFFER_PTS_IS_VALID (buf)
3217         && GST_BUFFER_PTS_IS_VALID (last_buf))
3218       duration = GST_BUFFER_PTS (buf) - GST_BUFFER_PTS (last_buf);
3219   }
3220
3221   gst_buffer_replace (&pad->last_buf, buf);
3222
3223   /* for computing the avg bitrate */
3224   if (G_LIKELY (last_buf)) {
3225     pad->total_bytes += gst_buffer_get_size (last_buf);
3226     pad->total_duration += duration;
3227   }
3228
3229   last_dts = gst_util_uint64_scale_round (pad->last_dts,
3230       atom_trak_get_timescale (pad->trak), GST_SECOND);
3231
3232   /* fragments only deal with 1 buffer == 1 chunk (== 1 sample) */
3233   if (pad->sample_size && !qtmux->fragment_sequence) {
3234     /* Constant size packets: usually raw audio (with many samples per
3235        buffer (= chunk)), but can also be fixed-packet-size codecs like ADPCM
3236      */
3237     sample_size = pad->sample_size;
3238     if (gst_buffer_get_size (last_buf) % sample_size != 0)
3239       goto fragmented_sample;
3240     /* note: qt raw audio storage warps it implicitly into a timewise
3241      * perfect stream, discarding buffer times */
3242     if (GST_BUFFER_DURATION (last_buf) != GST_CLOCK_TIME_NONE) {
3243       nsamples = gst_util_uint64_scale_round (GST_BUFFER_DURATION (last_buf),
3244           atom_trak_get_timescale (pad->trak), GST_SECOND);
3245     } else {
3246       nsamples = gst_buffer_get_size (last_buf) / sample_size;
3247     }
3248     if (nsamples > 0)
3249       duration = GST_BUFFER_DURATION (last_buf) / nsamples;
3250     else
3251       duration = 0;
3252
3253     /* timescale = samplerate */
3254     scaled_duration = 1;
3255     pad->last_dts += duration * nsamples;
3256   } else {
3257     nsamples = 1;
3258     sample_size = gst_buffer_get_size (last_buf);
3259     if ((pad->last_buf && GST_BUFFER_DTS_IS_VALID (pad->last_buf))
3260         || GST_BUFFER_DTS_IS_VALID (last_buf)) {
3261       gint64 scaled_dts;
3262       if (pad->last_buf && GST_BUFFER_DTS_IS_VALID (pad->last_buf)) {
3263         pad->last_dts = GST_BUFFER_DTS (pad->last_buf);
3264       } else {
3265         pad->last_dts = GST_BUFFER_DTS (last_buf) +
3266             GST_BUFFER_DURATION (last_buf);
3267       }
3268       if ((gint64) (pad->last_dts) < 0) {
3269         scaled_dts = -gst_util_uint64_scale_round (-pad->last_dts,
3270             atom_trak_get_timescale (pad->trak), GST_SECOND);
3271       } else {
3272         scaled_dts = gst_util_uint64_scale_round (pad->last_dts,
3273             atom_trak_get_timescale (pad->trak), GST_SECOND);
3274       }
3275       scaled_duration = scaled_dts - last_dts;
3276       last_dts = scaled_dts;
3277     } else {
3278       /* first convert intended timestamp (in GstClockTime resolution) to
3279        * trak timescale, then derive delta;
3280        * this ensures sums of (scale)delta add up to converted timestamp,
3281        * which only deviates at most 1/scale from timestamp itself */
3282       scaled_duration = gst_util_uint64_scale_round (pad->last_dts + duration,
3283           atom_trak_get_timescale (pad->trak), GST_SECOND) - last_dts;
3284       pad->last_dts += duration;
3285     }
3286   }
3287   chunk_offset = qtmux->mdat_size;
3288
3289   GST_LOG_OBJECT (qtmux,
3290       "Pad (%s) dts updated to %" GST_TIME_FORMAT,
3291       GST_PAD_NAME (pad->collect.pad), GST_TIME_ARGS (pad->last_dts));
3292   GST_LOG_OBJECT (qtmux,
3293       "Adding %d samples to track, duration: %" G_GUINT64_FORMAT
3294       " size: %" G_GUINT32_FORMAT " chunk offset: %" G_GUINT64_FORMAT,
3295       nsamples, scaled_duration, sample_size, chunk_offset);
3296
3297   /* might be a sync sample */
3298   if (pad->sync &&
3299       !GST_BUFFER_FLAG_IS_SET (last_buf, GST_BUFFER_FLAG_DELTA_UNIT)) {
3300     GST_LOG_OBJECT (qtmux, "Adding new sync sample entry for track of pad %s",
3301         GST_PAD_NAME (pad->collect.pad));
3302     sync = TRUE;
3303   }
3304
3305   if (!GST_BUFFER_PTS_IS_VALID (last_buf))
3306     goto no_pts;
3307
3308   if (GST_BUFFER_DTS_IS_VALID (last_buf)) {
3309     last_dts = gst_util_uint64_scale_round (GST_BUFFER_DTS (last_buf),
3310         atom_trak_get_timescale (pad->trak), GST_SECOND);
3311     pts_offset =
3312         (gint64) (gst_util_uint64_scale_round (GST_BUFFER_PTS (last_buf),
3313             atom_trak_get_timescale (pad->trak), GST_SECOND) - last_dts);
3314   } else {
3315     pts_offset = 0;
3316     last_dts = gst_util_uint64_scale_round (GST_BUFFER_PTS (last_buf),
3317         atom_trak_get_timescale (pad->trak), GST_SECOND);
3318   }
3319   GST_DEBUG ("dts: %" GST_TIME_FORMAT " pts: %" GST_TIME_FORMAT
3320       " timebase_dts: %d pts_offset: %d",
3321       GST_TIME_ARGS (GST_BUFFER_DTS (last_buf)),
3322       GST_TIME_ARGS (GST_BUFFER_PTS (last_buf)),
3323       (int) (last_dts), (int) (pts_offset));
3324
3325   /*
3326    * Each buffer starts a new chunk, so we can assume the buffer
3327    * duration is the chunk duration
3328    */
3329   if (GST_CLOCK_TIME_IS_VALID (duration) && (duration > qtmux->longest_chunk ||
3330           !GST_CLOCK_TIME_IS_VALID (qtmux->longest_chunk))) {
3331     GST_DEBUG_OBJECT (qtmux, "New longest chunk found: %" GST_TIME_FORMAT
3332         ", pad %s", GST_TIME_ARGS (duration), GST_PAD_NAME (pad->collect.pad));
3333     qtmux->longest_chunk = duration;
3334   }
3335
3336   /* now we go and register this buffer/sample all over */
3337   ret = gst_qt_mux_register_and_push_sample (qtmux, pad, last_buf,
3338       buf == NULL, nsamples, last_dts, scaled_duration, sample_size,
3339       chunk_offset, sync, TRUE, pts_offset);
3340
3341   /* if this is sparse and we have a next buffer, check if there is any gap
3342    * between them to insert an empty sample */
3343   if (pad->sparse && buf) {
3344     if (pad->create_empty_buffer) {
3345       GstBuffer *empty_buf;
3346       gint64 empty_duration =
3347           GST_BUFFER_TIMESTAMP (buf) - (GST_BUFFER_TIMESTAMP (last_buf) +
3348           duration);
3349       gint64 empty_duration_scaled;
3350
3351       empty_buf = pad->create_empty_buffer (pad, empty_duration);
3352
3353       empty_duration_scaled = gst_util_uint64_scale_round (empty_duration,
3354           atom_trak_get_timescale (pad->trak), GST_SECOND);
3355
3356       pad->total_bytes += gst_buffer_get_size (empty_buf);
3357       pad->total_duration += duration;
3358
3359       ret =
3360           gst_qt_mux_register_and_push_sample (qtmux, pad, empty_buf, FALSE, 1,
3361           last_dts + scaled_duration, empty_duration_scaled,
3362           gst_buffer_get_size (empty_buf), qtmux->mdat_size, sync, TRUE, 0);
3363     } else {
3364       /* our only case currently is tx3g subtitles, so there is no reason to fill this yet */
3365       g_assert_not_reached ();
3366       GST_WARNING_OBJECT (qtmux,
3367           "no empty buffer creation function found for pad %s",
3368           GST_PAD_NAME (pad->collect.pad));
3369     }
3370   }
3371
3372   if (buf)
3373     gst_buffer_unref (buf);
3374
3375 exit:
3376
3377   return ret;
3378
3379   /* ERRORS */
3380 bail:
3381   {
3382     if (buf)
3383       gst_buffer_unref (buf);
3384     gst_buffer_unref (last_buf);
3385     return GST_FLOW_ERROR;
3386   }
3387 fragmented_sample:
3388   {
3389     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
3390         ("Audio buffer contains fragmented sample."));
3391     goto bail;
3392   }
3393 no_pts:
3394   {
3395     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL), ("Buffer has no PTS."));
3396     goto bail;
3397   }
3398 not_negotiated:
3399   {
3400     GST_ELEMENT_ERROR (qtmux, CORE, NEGOTIATION, (NULL),
3401         ("format wasn't negotiated before buffer flow on pad %s",
3402             GST_PAD_NAME (pad->collect.pad)));
3403     if (buf)
3404       gst_buffer_unref (buf);
3405     return GST_FLOW_NOT_NEGOTIATED;
3406   }
3407 }
3408
3409 /*
3410  * DTS running time can be negative. There is no way to represent that in
3411  * MP4 however, thus we need to offset DTS so that it starts from 0.
3412  */
3413 static void
3414 gst_qt_pad_adjust_buffer_dts (GstQTMux * qtmux, GstQTPad * pad,
3415     GstCollectData * cdata, GstBuffer ** buf)
3416 {
3417   GstClockTime pts;
3418   gint64 dts;
3419
3420   pts = GST_BUFFER_PTS (*buf);
3421   dts = GST_COLLECT_PADS_DTS (cdata);
3422
3423   GST_LOG_OBJECT (qtmux, "selected pad %s with PTS %" GST_TIME_FORMAT
3424       " and DTS %" GST_STIME_FORMAT, GST_PAD_NAME (cdata->pad),
3425       GST_TIME_ARGS (pts), GST_STIME_ARGS (dts));
3426
3427   if (!GST_CLOCK_TIME_IS_VALID (pad->dts_adjustment)) {
3428     if (GST_CLOCK_STIME_IS_VALID (dts) && dts < 0)
3429       pad->dts_adjustment = -dts;
3430     else
3431       pad->dts_adjustment = 0;
3432   }
3433
3434   if (pad->dts_adjustment > 0) {
3435     *buf = gst_buffer_make_writable (*buf);
3436
3437     dts += pad->dts_adjustment;
3438
3439     if (GST_CLOCK_TIME_IS_VALID (pts))
3440       pts += pad->dts_adjustment;
3441
3442     if (GST_CLOCK_STIME_IS_VALID (dts) && dts < 0) {
3443       GST_WARNING_OBJECT (pad, "Decreasing DTS.");
3444       dts = 0;
3445     }
3446
3447     if (pts < dts) {
3448       GST_WARNING_OBJECT (pad, "DTS is bigger then PTS");
3449       pts = dts;
3450     }
3451
3452     GST_BUFFER_PTS (*buf) = pts;
3453     GST_BUFFER_DTS (*buf) = dts;
3454
3455     GST_LOG_OBJECT (qtmux, "time adjusted to PTS %" GST_TIME_FORMAT
3456         " and DTS %" GST_TIME_FORMAT, GST_TIME_ARGS (pts), GST_TIME_ARGS (dts));
3457   }
3458 }
3459
3460 static GstFlowReturn
3461 gst_qt_mux_handle_buffer (GstCollectPads * pads, GstCollectData * cdata,
3462     GstBuffer * buf, gpointer user_data)
3463 {
3464   GstFlowReturn ret = GST_FLOW_OK;
3465   GstQTMux *qtmux = GST_QT_MUX_CAST (user_data);
3466   GstQTPad *best_pad = NULL;
3467
3468   if (G_UNLIKELY (qtmux->state == GST_QT_MUX_STATE_STARTED)) {
3469     if ((ret = gst_qt_mux_start_file (qtmux)) != GST_FLOW_OK)
3470       return ret;
3471
3472     qtmux->state = GST_QT_MUX_STATE_DATA;
3473   }
3474
3475   if (G_UNLIKELY (qtmux->state == GST_QT_MUX_STATE_EOS))
3476     return GST_FLOW_EOS;
3477
3478   best_pad = (GstQTPad *) cdata;
3479
3480   /* clipping already converted to running time */
3481   if (best_pad != NULL) {
3482     g_assert (buf);
3483     gst_qt_pad_adjust_buffer_dts (qtmux, best_pad, cdata, &buf);
3484     ret = gst_qt_mux_add_buffer (qtmux, best_pad, buf);
3485   } else {
3486     qtmux->state = GST_QT_MUX_STATE_EOS;
3487     ret = gst_qt_mux_stop_file (qtmux);
3488     if (ret == GST_FLOW_OK) {
3489       GST_DEBUG_OBJECT (qtmux, "Pushing eos");
3490       gst_pad_push_event (qtmux->srcpad, gst_event_new_eos ());
3491       ret = GST_FLOW_EOS;
3492     } else {
3493       GST_WARNING_OBJECT (qtmux, "Failed to stop file: %s",
3494           gst_flow_get_name (ret));
3495     }
3496   }
3497
3498   return ret;
3499 }
3500
3501 static gboolean
3502 check_field (GQuark field_id, const GValue * value, gpointer user_data)
3503 {
3504   GstStructure *structure = (GstStructure *) user_data;
3505   const GValue *other = gst_structure_id_get_value (structure, field_id);
3506   if (other == NULL)
3507     return FALSE;
3508   return gst_value_compare (value, other) == GST_VALUE_EQUAL;
3509 }
3510
3511 static gboolean
3512 gst_qtmux_caps_is_subset_full (GstQTMux * qtmux, GstCaps * subset,
3513     GstCaps * superset)
3514 {
3515   GstStructure *sub_s = gst_caps_get_structure (subset, 0);
3516   GstStructure *sup_s = gst_caps_get_structure (superset, 0);
3517
3518   return gst_structure_foreach (sub_s, check_field, sup_s);
3519 }
3520
3521 static gboolean
3522 gst_qt_mux_audio_sink_set_caps (GstQTPad * qtpad, GstCaps * caps)
3523 {
3524   GstPad *pad = qtpad->collect.pad;
3525   GstQTMux *qtmux = GST_QT_MUX_CAST (gst_pad_get_parent (pad));
3526   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
3527   GstStructure *structure;
3528   const gchar *mimetype;
3529   gint rate, channels;
3530   const GValue *value = NULL;
3531   const GstBuffer *codec_data = NULL;
3532   GstQTMuxFormat format;
3533   AudioSampleEntry entry = { 0, };
3534   AtomInfo *ext_atom = NULL;
3535   gint constant_size = 0;
3536   const gchar *stream_format;
3537
3538   qtpad->prepare_buf_func = NULL;
3539
3540   /* does not go well to renegotiate stream mid-way, unless
3541    * the old caps are a subset of the new one (this means upstream
3542    * added more info to the caps, as both should be 'fixed' caps) */
3543   if (qtpad->fourcc) {
3544     GstCaps *current_caps;
3545
3546     current_caps = gst_pad_get_current_caps (pad);
3547     g_assert (caps != NULL);
3548
3549     if (!gst_qtmux_caps_is_subset_full (qtmux, current_caps, caps)) {
3550       gst_caps_unref (current_caps);
3551       goto refuse_renegotiation;
3552     }
3553     GST_DEBUG_OBJECT (qtmux,
3554         "pad %s accepted renegotiation to %" GST_PTR_FORMAT " from %"
3555         GST_PTR_FORMAT, GST_PAD_NAME (pad), caps, current_caps);
3556     gst_caps_unref (current_caps);
3557   }
3558
3559   GST_DEBUG_OBJECT (qtmux, "%s:%s, caps=%" GST_PTR_FORMAT,
3560       GST_DEBUG_PAD_NAME (pad), caps);
3561
3562   format = qtmux_klass->format;
3563   structure = gst_caps_get_structure (caps, 0);
3564   mimetype = gst_structure_get_name (structure);
3565
3566   /* common info */
3567   if (!gst_structure_get_int (structure, "channels", &channels) ||
3568       !gst_structure_get_int (structure, "rate", &rate)) {
3569     goto refuse_caps;
3570   }
3571
3572   /* optional */
3573   value = gst_structure_get_value (structure, "codec_data");
3574   if (value != NULL)
3575     codec_data = gst_value_get_buffer (value);
3576
3577   qtpad->is_out_of_order = FALSE;
3578
3579   /* set common properties */
3580   entry.sample_rate = rate;
3581   entry.channels = channels;
3582   /* default */
3583   entry.sample_size = 16;
3584   /* this is the typical compressed case */
3585   if (format == GST_QT_MUX_FORMAT_QT) {
3586     entry.version = 1;
3587     entry.compression_id = -2;
3588   }
3589
3590   /* now map onto a fourcc, and some extra properties */
3591   if (strcmp (mimetype, "audio/mpeg") == 0) {
3592     gint mpegversion = 0, mpegaudioversion = 0;
3593     gint layer = -1;
3594
3595     gst_structure_get_int (structure, "mpegversion", &mpegversion);
3596     switch (mpegversion) {
3597       case 1:
3598         gst_structure_get_int (structure, "layer", &layer);
3599         gst_structure_get_int (structure, "mpegaudioversion",
3600             &mpegaudioversion);
3601
3602         /* mp1/2/3 */
3603         /* note: QuickTime player does not like mp3 either way in iso/mp4 */
3604         if (format == GST_QT_MUX_FORMAT_QT)
3605           entry.fourcc = FOURCC__mp3;
3606         else {
3607           entry.fourcc = FOURCC_mp4a;
3608           ext_atom =
3609               build_esds_extension (qtpad->trak, ESDS_OBJECT_TYPE_MPEG1_P3,
3610               ESDS_STREAM_TYPE_AUDIO, codec_data, qtpad->avg_bitrate,
3611               qtpad->max_bitrate);
3612         }
3613         if (layer == 1) {
3614           g_warn_if_fail (format == GST_QT_MUX_FORMAT_MP4);
3615           entry.samples_per_packet = 384;
3616         } else if (layer == 2) {
3617           g_warn_if_fail (format == GST_QT_MUX_FORMAT_MP4);
3618           entry.samples_per_packet = 1152;
3619         } else {
3620           g_warn_if_fail (layer == 3);
3621           entry.samples_per_packet = (mpegaudioversion <= 1) ? 1152 : 576;
3622         }
3623         entry.bytes_per_sample = 2;
3624         break;
3625       case 4:
3626
3627         /* check stream-format */
3628         stream_format = gst_structure_get_string (structure, "stream-format");
3629         if (stream_format) {
3630           if (strcmp (stream_format, "raw") != 0) {
3631             GST_WARNING_OBJECT (qtmux, "Unsupported AAC stream-format %s, "
3632                 "please use 'raw'", stream_format);
3633             goto refuse_caps;
3634           }
3635         } else {
3636           GST_WARNING_OBJECT (qtmux, "No stream-format present in caps, "
3637               "assuming 'raw'");
3638         }
3639
3640         if (!codec_data || gst_buffer_get_size ((GstBuffer *) codec_data) < 2) {
3641           GST_WARNING_OBJECT (qtmux, "no (valid) codec_data for AAC audio");
3642           goto refuse_caps;
3643         } else {
3644           guint8 profile;
3645
3646           gst_buffer_extract ((GstBuffer *) codec_data, 0, &profile, 1);
3647           /* warn if not Low Complexity profile */
3648           profile >>= 3;
3649           if (profile != 2)
3650             GST_WARNING_OBJECT (qtmux,
3651                 "non-LC AAC may not run well on (Apple) QuickTime/iTunes");
3652         }
3653
3654         /* AAC */
3655         entry.fourcc = FOURCC_mp4a;
3656
3657         if (format == GST_QT_MUX_FORMAT_QT)
3658           ext_atom = build_mov_aac_extension (qtpad->trak, codec_data,
3659               qtpad->avg_bitrate, qtpad->max_bitrate);
3660         else
3661           ext_atom =
3662               build_esds_extension (qtpad->trak, ESDS_OBJECT_TYPE_MPEG4_P3,
3663               ESDS_STREAM_TYPE_AUDIO, codec_data, qtpad->avg_bitrate,
3664               qtpad->max_bitrate);
3665         break;
3666       default:
3667         break;
3668     }
3669   } else if (strcmp (mimetype, "audio/AMR") == 0) {
3670     entry.fourcc = FOURCC_samr;
3671     entry.sample_size = 16;
3672     entry.samples_per_packet = 160;
3673     entry.bytes_per_sample = 2;
3674     ext_atom = build_amr_extension ();
3675   } else if (strcmp (mimetype, "audio/AMR-WB") == 0) {
3676     entry.fourcc = FOURCC_sawb;
3677     entry.sample_size = 16;
3678     entry.samples_per_packet = 320;
3679     entry.bytes_per_sample = 2;
3680     ext_atom = build_amr_extension ();
3681   } else if (strcmp (mimetype, "audio/x-raw") == 0) {
3682     GstAudioInfo info;
3683
3684     gst_audio_info_init (&info);
3685     if (!gst_audio_info_from_caps (&info, caps))
3686       goto refuse_caps;
3687
3688     /* spec has no place for a distinction in these */
3689     if (info.finfo->width != info.finfo->depth) {
3690       GST_DEBUG_OBJECT (qtmux, "width must be same as depth!");
3691       goto refuse_caps;
3692     }
3693
3694     if ((info.finfo->flags & GST_AUDIO_FORMAT_FLAG_SIGNED)) {
3695       if (info.finfo->endianness == G_LITTLE_ENDIAN)
3696         entry.fourcc = FOURCC_sowt;
3697       else if (info.finfo->endianness == G_BIG_ENDIAN)
3698         entry.fourcc = FOURCC_twos;
3699       else
3700         entry.fourcc = FOURCC_sowt;
3701       /* maximum backward compatibility; only new version for > 16 bit */
3702       if (info.finfo->depth <= 16)
3703         entry.version = 0;
3704       /* not compressed in any case */
3705       entry.compression_id = 0;
3706       /* QT spec says: max at 16 bit even if sample size were actually larger,
3707        * however, most players (e.g. QuickTime!) seem to disagree, so ... */
3708       entry.sample_size = info.finfo->depth;
3709       entry.bytes_per_sample = info.finfo->depth / 8;
3710       entry.samples_per_packet = 1;
3711       entry.bytes_per_packet = info.finfo->depth / 8;
3712       entry.bytes_per_frame = entry.bytes_per_packet * info.channels;
3713     } else {
3714       if (info.finfo->width == 8 && info.finfo->depth == 8) {
3715         /* fall back to old 8-bit version */
3716         entry.fourcc = FOURCC_raw_;
3717         entry.version = 0;
3718         entry.compression_id = 0;
3719         entry.sample_size = 8;
3720       } else {
3721         GST_DEBUG_OBJECT (qtmux, "non 8-bit PCM must be signed");
3722         goto refuse_caps;
3723       }
3724     }
3725     constant_size = (info.finfo->depth / 8) * info.channels;
3726   } else if (strcmp (mimetype, "audio/x-alaw") == 0) {
3727     entry.fourcc = FOURCC_alaw;
3728     entry.samples_per_packet = 1023;
3729     entry.bytes_per_sample = 2;
3730   } else if (strcmp (mimetype, "audio/x-mulaw") == 0) {
3731     entry.fourcc = FOURCC_ulaw;
3732     entry.samples_per_packet = 1023;
3733     entry.bytes_per_sample = 2;
3734   } else if (strcmp (mimetype, "audio/x-adpcm") == 0) {
3735     gint blocksize;
3736     if (!gst_structure_get_int (structure, "block_align", &blocksize)) {
3737       GST_DEBUG_OBJECT (qtmux, "broken caps, block_align missing");
3738       goto refuse_caps;
3739     }
3740     /* Currently only supports WAV-style IMA ADPCM, for which the codec id is
3741        0x11 */
3742     entry.fourcc = MS_WAVE_FOURCC (0x11);
3743     /* 4 byte header per channel (including one sample). 2 samples per byte
3744        remaining. Simplifying gives the following (samples per block per
3745        channel) */
3746     entry.samples_per_packet = 2 * blocksize / channels - 7;
3747     entry.bytes_per_sample = 2;
3748
3749     entry.bytes_per_frame = blocksize;
3750     entry.bytes_per_packet = blocksize / channels;
3751     /* ADPCM has constant size packets */
3752     constant_size = 1;
3753     /* TODO: I don't really understand why this helps, but it does! Constant
3754      * size and compression_id of -2 seem to be incompatible, and other files
3755      * in the wild use this too. */
3756     entry.compression_id = -1;
3757
3758     ext_atom = build_ima_adpcm_extension (channels, rate, blocksize);
3759   } else if (strcmp (mimetype, "audio/x-alac") == 0) {
3760     GstBuffer *codec_config;
3761     gint len;
3762     GstMapInfo map;
3763
3764     entry.fourcc = FOURCC_alac;
3765     gst_buffer_map ((GstBuffer *) codec_data, &map, GST_MAP_READ);
3766     /* let's check if codec data already comes with 'alac' atom prefix */
3767     if (!codec_data || (len = map.size) < 28) {
3768       GST_DEBUG_OBJECT (qtmux, "broken caps, codec data missing");
3769       gst_buffer_unmap ((GstBuffer *) codec_data, &map);
3770       goto refuse_caps;
3771     }
3772     if (GST_READ_UINT32_LE (map.data + 4) == FOURCC_alac) {
3773       len -= 8;
3774       codec_config =
3775           gst_buffer_copy_region ((GstBuffer *) codec_data,
3776           GST_BUFFER_COPY_MEMORY, 8, len);
3777     } else {
3778       codec_config = gst_buffer_ref ((GstBuffer *) codec_data);
3779     }
3780     gst_buffer_unmap ((GstBuffer *) codec_data, &map);
3781     if (len != 28) {
3782       /* does not look good, but perhaps some trailing unneeded stuff */
3783       GST_WARNING_OBJECT (qtmux, "unexpected codec-data size, possibly broken");
3784     }
3785     if (format == GST_QT_MUX_FORMAT_QT)
3786       ext_atom = build_mov_alac_extension (codec_config);
3787     else
3788       ext_atom = build_codec_data_extension (FOURCC_alac, codec_config);
3789     /* set some more info */
3790     gst_buffer_map (codec_config, &map, GST_MAP_READ);
3791     entry.bytes_per_sample = 2;
3792     entry.samples_per_packet = GST_READ_UINT32_BE (map.data + 4);
3793     gst_buffer_unmap (codec_config, &map);
3794     gst_buffer_unref (codec_config);
3795   } else if (strcmp (mimetype, "audio/x-ac3") == 0) {
3796     entry.fourcc = FOURCC_ac_3;
3797
3798     /* Fixed values according to TS 102 366 but it also mentions that
3799      * they should be ignored */
3800     entry.channels = 2;
3801     entry.sample_size = 16;
3802
3803     /* AC-3 needs an extension atom but its data can only be obtained from
3804      * the stream itself. Abuse the prepare_buf_func so we parse a frame
3805      * and get the needed data */
3806     qtpad->prepare_buf_func = gst_qt_mux_prepare_parse_ac3_frame;
3807   } else if (strcmp (mimetype, "audio/x-opus") == 0) {
3808     /* Based on the specification defined in:
3809      * https://www.opus-codec.org/docs/opus_in_isobmff.html */
3810     guint8 channels, mapping_family, stream_count, coupled_count;
3811     guint16 pre_skip;
3812     gint16 output_gain;
3813     guint32 rate;
3814     guint8 channel_mapping[256];
3815     const GValue *streamheader;
3816     const GValue *first_element;
3817     GstBuffer *header;
3818
3819     entry.fourcc = FOURCC_opus;
3820     entry.sample_size = 16;
3821
3822     streamheader = gst_structure_get_value (structure, "streamheader");
3823     if (streamheader && GST_VALUE_HOLDS_ARRAY (streamheader) &&
3824         gst_value_array_get_size (streamheader) != 0) {
3825       first_element = gst_value_array_get_value (streamheader, 0);
3826       header = gst_value_get_buffer (first_element);
3827       if (!gst_codec_utils_opus_parse_header (header, &rate, &channels,
3828               &mapping_family, &stream_count, &coupled_count, channel_mapping,
3829               &pre_skip, &output_gain)) {
3830         GST_ERROR_OBJECT (qtmux, "Incomplete OpusHead");
3831         goto refuse_caps;
3832       }
3833     } else {
3834       GST_WARNING_OBJECT (qtmux,
3835           "no streamheader field in caps %" GST_PTR_FORMAT, caps);
3836
3837       if (!gst_codec_utils_opus_parse_caps (caps, &rate, &channels,
3838               &mapping_family, &stream_count, &coupled_count,
3839               channel_mapping)) {
3840         GST_ERROR_OBJECT (qtmux, "Incomplete Opus caps");
3841         goto refuse_caps;
3842       }
3843       pre_skip = 0;
3844       output_gain = 0;
3845     }
3846
3847     entry.channels = channels;
3848     ext_atom = build_opus_extension (rate, channels, mapping_family,
3849         stream_count, coupled_count, channel_mapping, pre_skip, output_gain);
3850   }
3851
3852   if (!entry.fourcc)
3853     goto refuse_caps;
3854
3855   /* ok, set the pad info accordingly */
3856   qtpad->fourcc = entry.fourcc;
3857   qtpad->sample_size = constant_size;
3858   qtpad->trak_ste =
3859       (SampleTableEntry *) atom_trak_set_audio_type (qtpad->trak,
3860       qtmux->context, &entry,
3861       qtmux->trak_timescale ? qtmux->trak_timescale : entry.sample_rate,
3862       ext_atom, constant_size);
3863
3864   gst_object_unref (qtmux);
3865   return TRUE;
3866
3867   /* ERRORS */
3868 refuse_caps:
3869   {
3870     GST_WARNING_OBJECT (qtmux, "pad %s refused caps %" GST_PTR_FORMAT,
3871         GST_PAD_NAME (pad), caps);
3872     gst_object_unref (qtmux);
3873     return FALSE;
3874   }
3875 refuse_renegotiation:
3876   {
3877     GST_WARNING_OBJECT (qtmux,
3878         "pad %s refused renegotiation to %" GST_PTR_FORMAT,
3879         GST_PAD_NAME (pad), caps);
3880     gst_object_unref (qtmux);
3881     return FALSE;
3882   }
3883 }
3884
3885 /* scale rate up or down by factor of 10 to fit into [1000,10000] interval */
3886 static guint32
3887 adjust_rate (guint64 rate)
3888 {
3889   if (rate == 0)
3890     return 10000;
3891
3892   while (rate >= 10000)
3893     rate /= 10;
3894
3895   while (rate < 1000)
3896     rate *= 10;
3897
3898   return (guint32) rate;
3899 }
3900
3901 static gboolean
3902 gst_qt_mux_video_sink_set_caps (GstQTPad * qtpad, GstCaps * caps)
3903 {
3904   GstPad *pad = qtpad->collect.pad;
3905   GstQTMux *qtmux = GST_QT_MUX_CAST (gst_pad_get_parent (pad));
3906   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
3907   GstStructure *structure;
3908   const gchar *mimetype;
3909   gint width, height, depth = -1;
3910   gint framerate_num, framerate_den;
3911   guint32 rate;
3912   const GValue *value = NULL;
3913   const GstBuffer *codec_data = NULL;
3914   VisualSampleEntry entry = { 0, };
3915   GstQTMuxFormat format;
3916   AtomInfo *ext_atom = NULL;
3917   GList *ext_atom_list = NULL;
3918   gboolean sync = FALSE;
3919   int par_num, par_den;
3920
3921   qtpad->prepare_buf_func = NULL;
3922
3923   /* does not go well to renegotiate stream mid-way, unless
3924    * the old caps are a subset of the new one (this means upstream
3925    * added more info to the caps, as both should be 'fixed' caps) */
3926   if (qtpad->fourcc) {
3927     GstCaps *current_caps;
3928
3929     current_caps = gst_pad_get_current_caps (pad);
3930     g_assert (caps != NULL);
3931
3932     if (!gst_qtmux_caps_is_subset_full (qtmux, current_caps, caps)) {
3933       gst_caps_unref (current_caps);
3934       goto refuse_renegotiation;
3935     }
3936     GST_DEBUG_OBJECT (qtmux,
3937         "pad %s accepted renegotiation to %" GST_PTR_FORMAT " from %"
3938         GST_PTR_FORMAT, GST_PAD_NAME (pad), caps, current_caps);
3939     gst_caps_unref (current_caps);
3940   }
3941
3942   GST_DEBUG_OBJECT (qtmux, "%s:%s, caps=%" GST_PTR_FORMAT,
3943       GST_DEBUG_PAD_NAME (pad), caps);
3944
3945   format = qtmux_klass->format;
3946   structure = gst_caps_get_structure (caps, 0);
3947   mimetype = gst_structure_get_name (structure);
3948
3949   /* required parts */
3950   if (!gst_structure_get_int (structure, "width", &width) ||
3951       !gst_structure_get_int (structure, "height", &height))
3952     goto refuse_caps;
3953
3954   /* optional */
3955   depth = -1;
3956   /* works as a default timebase */
3957   framerate_num = 10000;
3958   framerate_den = 1;
3959   gst_structure_get_fraction (structure, "framerate", &framerate_num,
3960       &framerate_den);
3961   gst_structure_get_int (structure, "depth", &depth);
3962   value = gst_structure_get_value (structure, "codec_data");
3963   if (value != NULL)
3964     codec_data = gst_value_get_buffer (value);
3965
3966   par_num = 1;
3967   par_den = 1;
3968   gst_structure_get_fraction (structure, "pixel-aspect-ratio", &par_num,
3969       &par_den);
3970
3971   qtpad->is_out_of_order = FALSE;
3972
3973   /* bring frame numerator into a range that ensures both reasonable resolution
3974    * as well as a fair duration */
3975   rate = qtmux->trak_timescale ?
3976       qtmux->trak_timescale : adjust_rate (framerate_num);
3977   GST_DEBUG_OBJECT (qtmux, "Rate of video track selected: %" G_GUINT32_FORMAT,
3978       rate);
3979
3980   /* set common properties */
3981   entry.width = width;
3982   entry.height = height;
3983   entry.par_n = par_num;
3984   entry.par_d = par_den;
3985   /* should be OK according to qt and iso spec, override if really needed */
3986   entry.color_table_id = -1;
3987   entry.frame_count = 1;
3988   entry.depth = 24;
3989
3990   /* sync entries by default */
3991   sync = TRUE;
3992
3993   /* now map onto a fourcc, and some extra properties */
3994   if (strcmp (mimetype, "video/x-raw") == 0) {
3995     const gchar *format;
3996     GstVideoFormat fmt;
3997     const GstVideoFormatInfo *vinfo;
3998
3999     format = gst_structure_get_string (structure, "format");
4000     fmt = gst_video_format_from_string (format);
4001     vinfo = gst_video_format_get_info (fmt);
4002
4003     switch (fmt) {
4004       case GST_VIDEO_FORMAT_UYVY:
4005         if (depth == -1)
4006           depth = 24;
4007         entry.fourcc = FOURCC_2vuy;
4008         entry.depth = depth;
4009         sync = FALSE;
4010         break;
4011       case GST_VIDEO_FORMAT_v210:
4012         if (depth == -1)
4013           depth = 24;
4014         entry.fourcc = FOURCC_v210;
4015         entry.depth = depth;
4016         sync = FALSE;
4017         break;
4018       default:
4019         if (GST_VIDEO_FORMAT_INFO_FLAGS (vinfo) & GST_VIDEO_FORMAT_FLAG_RGB) {
4020           entry.fourcc = FOURCC_raw_;
4021           entry.depth = GST_VIDEO_FORMAT_INFO_PSTRIDE (vinfo, 0) * 8;
4022           sync = FALSE;
4023         }
4024         break;
4025     }
4026   } else if (strcmp (mimetype, "video/x-h263") == 0) {
4027     ext_atom = NULL;
4028     if (format == GST_QT_MUX_FORMAT_QT)
4029       entry.fourcc = FOURCC_h263;
4030     else
4031       entry.fourcc = FOURCC_s263;
4032     ext_atom = build_h263_extension ();
4033     if (ext_atom != NULL)
4034       ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
4035   } else if (strcmp (mimetype, "video/x-divx") == 0 ||
4036       strcmp (mimetype, "video/mpeg") == 0) {
4037     gint version = 0;
4038
4039     if (strcmp (mimetype, "video/x-divx") == 0) {
4040       gst_structure_get_int (structure, "divxversion", &version);
4041       version = version == 5 ? 1 : 0;
4042     } else {
4043       gst_structure_get_int (structure, "mpegversion", &version);
4044       version = version == 4 ? 1 : 0;
4045     }
4046     if (version) {
4047       entry.fourcc = FOURCC_mp4v;
4048       ext_atom =
4049           build_esds_extension (qtpad->trak, ESDS_OBJECT_TYPE_MPEG4_P2,
4050           ESDS_STREAM_TYPE_VISUAL, codec_data, qtpad->avg_bitrate,
4051           qtpad->max_bitrate);
4052       if (ext_atom != NULL)
4053         ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
4054       if (!codec_data)
4055         GST_WARNING_OBJECT (qtmux, "no codec_data for MPEG4 video; "
4056             "output might not play in Apple QuickTime (try global-headers?)");
4057     }
4058   } else if (strcmp (mimetype, "video/x-h264") == 0) {
4059     /* check if we accept these caps */
4060     if (gst_structure_has_field (structure, "stream-format")) {
4061       const gchar *format;
4062       const gchar *alignment;
4063
4064       format = gst_structure_get_string (structure, "stream-format");
4065       alignment = gst_structure_get_string (structure, "alignment");
4066
4067       if (strcmp (format, "avc") != 0 || alignment == NULL ||
4068           strcmp (alignment, "au") != 0) {
4069         GST_WARNING_OBJECT (qtmux, "Rejecting h264 caps, qtmux only accepts "
4070             "avc format with AU aligned samples");
4071         goto refuse_caps;
4072       }
4073     } else {
4074       GST_WARNING_OBJECT (qtmux, "no stream-format field in h264 caps");
4075       goto refuse_caps;
4076     }
4077
4078     if (!codec_data) {
4079       GST_WARNING_OBJECT (qtmux, "no codec_data in h264 caps");
4080       goto refuse_caps;
4081     }
4082
4083     entry.fourcc = FOURCC_avc1;
4084     if (qtpad->avg_bitrate == 0) {
4085       gint avg_bitrate = 0;
4086       gst_structure_get_int (structure, "bitrate", &avg_bitrate);
4087       qtpad->avg_bitrate = avg_bitrate;
4088     }
4089     ext_atom = build_btrt_extension (0, qtpad->avg_bitrate, qtpad->max_bitrate);
4090     if (ext_atom != NULL)
4091       ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
4092     ext_atom = build_codec_data_extension (FOURCC_avcC, codec_data);
4093     if (ext_atom != NULL)
4094       ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
4095   } else if (strcmp (mimetype, "video/x-svq") == 0) {
4096     gint version = 0;
4097     const GstBuffer *seqh = NULL;
4098     const GValue *seqh_value;
4099     gdouble gamma = 0;
4100
4101     gst_structure_get_int (structure, "svqversion", &version);
4102     if (version == 3) {
4103       entry.fourcc = FOURCC_SVQ3;
4104       entry.version = 3;
4105       entry.depth = 32;
4106
4107       seqh_value = gst_structure_get_value (structure, "seqh");
4108       if (seqh_value) {
4109         seqh = gst_value_get_buffer (seqh_value);
4110         ext_atom = build_SMI_atom (seqh);
4111         if (ext_atom)
4112           ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
4113       }
4114
4115       /* we need to add the gamma anyway because quicktime might crash
4116        * when it doesn't find it */
4117       if (!gst_structure_get_double (structure, "applied-gamma", &gamma)) {
4118         /* it seems that using 0 here makes it ignored */
4119         gamma = 0.0;
4120       }
4121       ext_atom = build_gama_atom (gamma);
4122       if (ext_atom)
4123         ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
4124     } else {
4125       GST_WARNING_OBJECT (qtmux, "SVQ version %d not supported. Please file "
4126           "a bug at http://bugzilla.gnome.org", version);
4127     }
4128   } else if (strcmp (mimetype, "video/x-dv") == 0) {
4129     gint version = 0;
4130     gboolean pal = TRUE;
4131
4132     sync = FALSE;
4133     if (framerate_num != 25 || framerate_den != 1)
4134       pal = FALSE;
4135     gst_structure_get_int (structure, "dvversion", &version);
4136     /* fall back to typical one */
4137     if (!version)
4138       version = 25;
4139     switch (version) {
4140       case 25:
4141         if (pal)
4142           entry.fourcc = FOURCC_dvcp;
4143         else
4144           entry.fourcc = FOURCC_dvc_;
4145         break;
4146       case 50:
4147         if (pal)
4148           entry.fourcc = FOURCC_dv5p;
4149         else
4150           entry.fourcc = FOURCC_dv5n;
4151         break;
4152       default:
4153         GST_WARNING_OBJECT (qtmux, "unrecognized dv version");
4154         break;
4155     }
4156   } else if (strcmp (mimetype, "image/jpeg") == 0) {
4157     entry.fourcc = FOURCC_jpeg;
4158     sync = FALSE;
4159   } else if (strcmp (mimetype, "image/x-j2c") == 0 ||
4160       strcmp (mimetype, "image/x-jpc") == 0) {
4161     const gchar *colorspace;
4162     const GValue *cmap_array;
4163     const GValue *cdef_array;
4164     gint ncomp = 0;
4165     gint fields = 1;
4166
4167     if (strcmp (mimetype, "image/x-jpc") == 0) {
4168       qtpad->prepare_buf_func = gst_qt_mux_prepare_jpc_buffer;
4169     }
4170
4171     gst_structure_get_int (structure, "num-components", &ncomp);
4172     gst_structure_get_int (structure, "fields", &fields);
4173     cmap_array = gst_structure_get_value (structure, "component-map");
4174     cdef_array = gst_structure_get_value (structure, "channel-definitions");
4175
4176     ext_atom = NULL;
4177     entry.fourcc = FOURCC_mjp2;
4178     sync = FALSE;
4179
4180     colorspace = gst_structure_get_string (structure, "colorspace");
4181     if (colorspace &&
4182         (ext_atom =
4183             build_jp2h_extension (width, height, colorspace, ncomp, cmap_array,
4184                 cdef_array)) != NULL) {
4185       ext_atom_list = g_list_append (ext_atom_list, ext_atom);
4186
4187       ext_atom = build_fiel_extension (fields);
4188       if (ext_atom)
4189         ext_atom_list = g_list_append (ext_atom_list, ext_atom);
4190
4191       ext_atom = build_jp2x_extension (codec_data);
4192       if (ext_atom)
4193         ext_atom_list = g_list_append (ext_atom_list, ext_atom);
4194     } else {
4195       GST_DEBUG_OBJECT (qtmux, "missing or invalid fourcc in jp2 caps");
4196       goto refuse_caps;
4197     }
4198   } else if (strcmp (mimetype, "video/x-vp8") == 0) {
4199     entry.fourcc = FOURCC_VP80;
4200     sync = FALSE;
4201   } else if (strcmp (mimetype, "video/x-dirac") == 0) {
4202     entry.fourcc = FOURCC_drac;
4203   } else if (strcmp (mimetype, "video/x-qt-part") == 0) {
4204     guint32 fourcc;
4205
4206     gst_structure_get_uint (structure, "format", &fourcc);
4207     entry.fourcc = fourcc;
4208   } else if (strcmp (mimetype, "video/x-mp4-part") == 0) {
4209     guint32 fourcc;
4210
4211     gst_structure_get_uint (structure, "format", &fourcc);
4212     entry.fourcc = fourcc;
4213   } else if (strcmp (mimetype, "video/x-prores") == 0) {
4214     const gchar *variant;
4215
4216     variant = gst_structure_get_string (structure, "variant");
4217     if (!variant || !g_strcmp0 (variant, "standard"))
4218       entry.fourcc = FOURCC_apcn;
4219     else if (!g_strcmp0 (variant, "lt"))
4220       entry.fourcc = FOURCC_apcs;
4221     else if (!g_strcmp0 (variant, "hq"))
4222       entry.fourcc = FOURCC_apch;
4223     else if (!g_strcmp0 (variant, "proxy"))
4224       entry.fourcc = FOURCC_apco;
4225   }
4226
4227   if (!entry.fourcc)
4228     goto refuse_caps;
4229
4230   /* ok, set the pad info accordingly */
4231   qtpad->fourcc = entry.fourcc;
4232   qtpad->sync = sync;
4233   qtpad->trak_ste =
4234       (SampleTableEntry *) atom_trak_set_video_type (qtpad->trak,
4235       qtmux->context, &entry, rate, ext_atom_list);
4236
4237   gst_object_unref (qtmux);
4238   return TRUE;
4239
4240   /* ERRORS */
4241 refuse_caps:
4242   {
4243     GST_WARNING_OBJECT (qtmux, "pad %s refused caps %" GST_PTR_FORMAT,
4244         GST_PAD_NAME (pad), caps);
4245     gst_object_unref (qtmux);
4246     return FALSE;
4247   }
4248 refuse_renegotiation:
4249   {
4250     GST_WARNING_OBJECT (qtmux,
4251         "pad %s refused renegotiation to %" GST_PTR_FORMAT, GST_PAD_NAME (pad),
4252         caps);
4253     gst_object_unref (qtmux);
4254     return FALSE;
4255   }
4256 }
4257
4258 static gboolean
4259 gst_qt_mux_subtitle_sink_set_caps (GstQTPad * qtpad, GstCaps * caps)
4260 {
4261   GstPad *pad = qtpad->collect.pad;
4262   GstQTMux *qtmux = GST_QT_MUX_CAST (gst_pad_get_parent (pad));
4263   GstStructure *structure;
4264   SubtitleSampleEntry entry = { 0, };
4265
4266   /* does not go well to renegotiate stream mid-way, unless
4267    * the old caps are a subset of the new one (this means upstream
4268    * added more info to the caps, as both should be 'fixed' caps) */
4269   if (qtpad->fourcc) {
4270     GstCaps *current_caps;
4271
4272     current_caps = gst_pad_get_current_caps (pad);
4273     g_assert (caps != NULL);
4274
4275     if (!gst_qtmux_caps_is_subset_full (qtmux, current_caps, caps)) {
4276       gst_caps_unref (current_caps);
4277       goto refuse_renegotiation;
4278     }
4279     GST_DEBUG_OBJECT (qtmux,
4280         "pad %s accepted renegotiation to %" GST_PTR_FORMAT " from %"
4281         GST_PTR_FORMAT, GST_PAD_NAME (pad), caps, current_caps);
4282     gst_caps_unref (current_caps);
4283   }
4284
4285   GST_DEBUG_OBJECT (qtmux, "%s:%s, caps=%" GST_PTR_FORMAT,
4286       GST_DEBUG_PAD_NAME (pad), caps);
4287
4288   /* subtitles default */
4289   subtitle_sample_entry_init (&entry);
4290   qtpad->is_out_of_order = FALSE;
4291   qtpad->sync = FALSE;
4292   qtpad->sparse = TRUE;
4293   qtpad->prepare_buf_func = NULL;
4294
4295   structure = gst_caps_get_structure (caps, 0);
4296
4297   if (gst_structure_has_name (structure, "text/x-raw")) {
4298     const gchar *format = gst_structure_get_string (structure, "format");
4299     if (format && strcmp (format, "utf8") == 0) {
4300       entry.fourcc = FOURCC_tx3g;
4301       qtpad->prepare_buf_func = gst_qt_mux_prepare_tx3g_buffer;
4302       qtpad->create_empty_buffer = gst_qt_mux_create_empty_tx3g_buffer;
4303     }
4304   }
4305
4306   if (!entry.fourcc)
4307     goto refuse_caps;
4308
4309   qtpad->fourcc = entry.fourcc;
4310   qtpad->trak_ste =
4311       (SampleTableEntry *) atom_trak_set_subtitle_type (qtpad->trak,
4312       qtmux->context, &entry);
4313
4314   gst_object_unref (qtmux);
4315   return TRUE;
4316
4317   /* ERRORS */
4318 refuse_caps:
4319   {
4320     GST_WARNING_OBJECT (qtmux, "pad %s refused caps %" GST_PTR_FORMAT,
4321         GST_PAD_NAME (pad), caps);
4322     gst_object_unref (qtmux);
4323     return FALSE;
4324   }
4325 refuse_renegotiation:
4326   {
4327     GST_WARNING_OBJECT (qtmux,
4328         "pad %s refused renegotiation to %" GST_PTR_FORMAT, GST_PAD_NAME (pad),
4329         caps);
4330     gst_object_unref (qtmux);
4331     return FALSE;
4332   }
4333 }
4334
4335 static gboolean
4336 gst_qt_mux_sink_event (GstCollectPads * pads, GstCollectData * data,
4337     GstEvent * event, gpointer user_data)
4338 {
4339   GstQTMux *qtmux;
4340   guint32 avg_bitrate = 0, max_bitrate = 0;
4341   GstPad *pad = data->pad;
4342   gboolean ret = TRUE;
4343
4344   qtmux = GST_QT_MUX_CAST (user_data);
4345   switch (GST_EVENT_TYPE (event)) {
4346     case GST_EVENT_CAPS:
4347     {
4348       GstCaps *caps;
4349       GstQTPad *collect_pad;
4350
4351       gst_event_parse_caps (event, &caps);
4352
4353       /* find stream data */
4354       collect_pad = (GstQTPad *) gst_pad_get_element_private (pad);
4355       g_assert (collect_pad);
4356       g_assert (collect_pad->set_caps);
4357
4358       ret = collect_pad->set_caps (collect_pad, caps);
4359       gst_event_unref (event);
4360       event = NULL;
4361       break;
4362     }
4363     case GST_EVENT_TAG:{
4364       GstTagList *list;
4365       GstTagSetter *setter = GST_TAG_SETTER (qtmux);
4366       GstTagMergeMode mode;
4367       gchar *code;
4368       GstQTPad *collect_pad;
4369
4370       GST_OBJECT_LOCK (qtmux);
4371       mode = gst_tag_setter_get_tag_merge_mode (setter);
4372       collect_pad = (GstQTPad *) gst_pad_get_element_private (pad);
4373
4374       gst_event_parse_tag (event, &list);
4375       GST_DEBUG_OBJECT (qtmux, "received tag event on pad %s:%s : %"
4376           GST_PTR_FORMAT, GST_DEBUG_PAD_NAME (pad), list);
4377
4378       if (gst_tag_list_get_scope (list) == GST_TAG_SCOPE_GLOBAL) {
4379         gst_tag_setter_merge_tags (setter, list, mode);
4380         qtmux->tags_changed = TRUE;
4381       } else {
4382         if (!collect_pad->tags)
4383           collect_pad->tags = gst_tag_list_new_empty ();
4384         gst_tag_list_insert (collect_pad->tags, list, mode);
4385         collect_pad->tags_changed = TRUE;
4386       }
4387       GST_OBJECT_UNLOCK (qtmux);
4388
4389       if (gst_tag_list_get_uint (list, GST_TAG_BITRATE, &avg_bitrate) |
4390           gst_tag_list_get_uint (list, GST_TAG_MAXIMUM_BITRATE, &max_bitrate)) {
4391         GstQTPad *qtpad = gst_pad_get_element_private (pad);
4392         g_assert (qtpad);
4393
4394         if (avg_bitrate > 0 && avg_bitrate < G_MAXUINT32)
4395           qtpad->avg_bitrate = avg_bitrate;
4396         if (max_bitrate > 0 && max_bitrate < G_MAXUINT32)
4397           qtpad->max_bitrate = max_bitrate;
4398       }
4399
4400       if (gst_tag_list_get_string (list, GST_TAG_LANGUAGE_CODE, &code)) {
4401         const char *iso_code = gst_tag_get_language_code_iso_639_2T (code);
4402         if (iso_code) {
4403           GstQTPad *qtpad = gst_pad_get_element_private (pad);
4404           g_assert (qtpad);
4405           if (qtpad->trak) {
4406             /* https://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/QTFFChap4/qtff4.html */
4407             qtpad->trak->mdia.mdhd.language_code =
4408                 (iso_code[0] - 0x60) * 0x400 + (iso_code[1] - 0x60) * 0x20 +
4409                 (iso_code[2] - 0x60);
4410           }
4411         }
4412         g_free (code);
4413       }
4414
4415       gst_event_unref (event);
4416       event = NULL;
4417       ret = TRUE;
4418       break;
4419     }
4420     default:
4421       break;
4422   }
4423
4424   if (event != NULL)
4425     return gst_collect_pads_event_default (pads, data, event, FALSE);
4426
4427   return ret;
4428 }
4429
4430 static void
4431 gst_qt_mux_release_pad (GstElement * element, GstPad * pad)
4432 {
4433   GstQTMux *mux = GST_QT_MUX_CAST (element);
4434   GSList *walk;
4435
4436   GST_DEBUG_OBJECT (element, "Releasing %s:%s", GST_DEBUG_PAD_NAME (pad));
4437
4438   for (walk = mux->sinkpads; walk; walk = g_slist_next (walk)) {
4439     GstQTPad *qtpad = (GstQTPad *) walk->data;
4440     GST_DEBUG ("Checking %s:%s", GST_DEBUG_PAD_NAME (qtpad->collect.pad));
4441     if (qtpad->collect.pad == pad) {
4442       /* this is it, remove */
4443       mux->sinkpads = g_slist_delete_link (mux->sinkpads, walk);
4444       gst_element_remove_pad (element, pad);
4445       break;
4446     }
4447   }
4448
4449   gst_collect_pads_remove_pad (mux->collect, pad);
4450 }
4451
4452 static GstPad *
4453 gst_qt_mux_request_new_pad (GstElement * element,
4454     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps)
4455 {
4456   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
4457   GstQTMux *qtmux = GST_QT_MUX_CAST (element);
4458   GstQTPad *collect_pad;
4459   GstPad *newpad;
4460   GstQTPadSetCapsFunc setcaps_func;
4461   gchar *name;
4462   gint pad_id;
4463   gboolean lock = TRUE;
4464
4465   if (templ->direction != GST_PAD_SINK)
4466     goto wrong_direction;
4467
4468   if (qtmux->state > GST_QT_MUX_STATE_STARTED)
4469     goto too_late;
4470
4471   if (templ == gst_element_class_get_pad_template (klass, "audio_%u")) {
4472     setcaps_func = gst_qt_mux_audio_sink_set_caps;
4473     if (req_name != NULL && sscanf (req_name, "audio_%u", &pad_id) == 1) {
4474       name = g_strdup (req_name);
4475     } else {
4476       name = g_strdup_printf ("audio_%u", qtmux->audio_pads++);
4477     }
4478   } else if (templ == gst_element_class_get_pad_template (klass, "video_%u")) {
4479     setcaps_func = gst_qt_mux_video_sink_set_caps;
4480     if (req_name != NULL && sscanf (req_name, "video_%u", &pad_id) == 1) {
4481       name = g_strdup (req_name);
4482     } else {
4483       name = g_strdup_printf ("video_%u", qtmux->video_pads++);
4484     }
4485   } else if (templ == gst_element_class_get_pad_template (klass, "subtitle_%u")) {
4486     setcaps_func = gst_qt_mux_subtitle_sink_set_caps;
4487     if (req_name != NULL && sscanf (req_name, "subtitle_%u", &pad_id) == 1) {
4488       name = g_strdup (req_name);
4489     } else {
4490       name = g_strdup_printf ("subtitle_%u", qtmux->subtitle_pads++);
4491     }
4492     lock = FALSE;
4493   } else
4494     goto wrong_template;
4495
4496   GST_DEBUG_OBJECT (qtmux, "Requested pad: %s", name);
4497
4498   /* create pad and add to collections */
4499   newpad = gst_pad_new_from_template (templ, name);
4500   g_free (name);
4501   collect_pad = (GstQTPad *)
4502       gst_collect_pads_add_pad (qtmux->collect, newpad, sizeof (GstQTPad),
4503       (GstCollectDataDestroyNotify) (gst_qt_mux_pad_reset), lock);
4504   /* set up pad */
4505   gst_qt_mux_pad_reset (collect_pad);
4506   collect_pad->trak = atom_trak_new (qtmux->context);
4507   atom_moov_add_trak (qtmux->moov, collect_pad->trak);
4508
4509   qtmux->sinkpads = g_slist_append (qtmux->sinkpads, collect_pad);
4510
4511   /* set up pad functions */
4512   collect_pad->set_caps = setcaps_func;
4513
4514   gst_pad_set_active (newpad, TRUE);
4515   gst_element_add_pad (element, newpad);
4516
4517   return newpad;
4518
4519   /* ERRORS */
4520 wrong_direction:
4521   {
4522     GST_WARNING_OBJECT (qtmux, "Request pad that is not a SINK pad.");
4523     return NULL;
4524   }
4525 too_late:
4526   {
4527     GST_WARNING_OBJECT (qtmux, "Not providing request pad after stream start.");
4528     return NULL;
4529   }
4530 wrong_template:
4531   {
4532     GST_WARNING_OBJECT (qtmux, "This is not our template!");
4533     return NULL;
4534   }
4535 }
4536
4537 static void
4538 gst_qt_mux_get_property (GObject * object,
4539     guint prop_id, GValue * value, GParamSpec * pspec)
4540 {
4541   GstQTMux *qtmux = GST_QT_MUX_CAST (object);
4542
4543   GST_OBJECT_LOCK (qtmux);
4544   switch (prop_id) {
4545     case PROP_MOVIE_TIMESCALE:
4546       g_value_set_uint (value, qtmux->timescale);
4547       break;
4548     case PROP_TRAK_TIMESCALE:
4549       g_value_set_uint (value, qtmux->trak_timescale);
4550       break;
4551     case PROP_DO_CTTS:
4552       g_value_set_boolean (value, qtmux->guess_pts);
4553       break;
4554 #ifndef GST_REMOVE_DEPRECATED
4555     case PROP_DTS_METHOD:
4556       g_value_set_enum (value, qtmux->dts_method);
4557       break;
4558 #endif
4559     case PROP_FAST_START:
4560       g_value_set_boolean (value, qtmux->fast_start);
4561       break;
4562     case PROP_FAST_START_TEMP_FILE:
4563       g_value_set_string (value, qtmux->fast_start_file_path);
4564       break;
4565     case PROP_MOOV_RECOV_FILE:
4566       g_value_set_string (value, qtmux->moov_recov_file_path);
4567       break;
4568     case PROP_FRAGMENT_DURATION:
4569       g_value_set_uint (value, qtmux->fragment_duration);
4570       break;
4571     case PROP_STREAMABLE:
4572       g_value_set_boolean (value, qtmux->streamable);
4573       break;
4574     case PROP_RESERVED_MAX_DURATION:
4575       g_value_set_uint64 (value, qtmux->reserved_max_duration);
4576       break;
4577     case PROP_RESERVED_DURATION_REMAINING:
4578       if (qtmux->reserved_duration_remaining == GST_CLOCK_TIME_NONE)
4579         g_value_set_uint64 (value, qtmux->reserved_max_duration);
4580       else {
4581         GstClockTime remaining = qtmux->reserved_duration_remaining;
4582
4583         /* Report the remaining space as the calculated remaining, minus
4584          * however much we've muxed since the last update */
4585         if (remaining > qtmux->muxed_since_last_update)
4586           remaining -= qtmux->muxed_since_last_update;
4587         else
4588           remaining = 0;
4589         GST_LOG_OBJECT (qtmux, "reserved duration remaining - reporting %"
4590             G_GUINT64_FORMAT "(%" G_GUINT64_FORMAT " - %" G_GUINT64_FORMAT,
4591             remaining, qtmux->reserved_duration_remaining,
4592             qtmux->muxed_since_last_update);
4593         g_value_set_uint64 (value, remaining);
4594       }
4595       break;
4596     case PROP_RESERVED_MOOV_UPDATE_PERIOD:
4597       g_value_set_uint64 (value, qtmux->reserved_moov_update_period);
4598       break;
4599     case PROP_RESERVED_BYTES_PER_SEC:
4600       g_value_set_uint (value, qtmux->reserved_bytes_per_sec_per_trak);
4601       break;
4602     default:
4603       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
4604       break;
4605   }
4606   GST_OBJECT_UNLOCK (qtmux);
4607 }
4608
4609 static void
4610 gst_qt_mux_generate_fast_start_file_path (GstQTMux * qtmux)
4611 {
4612   gchar *tmp;
4613
4614   g_free (qtmux->fast_start_file_path);
4615   qtmux->fast_start_file_path = NULL;
4616
4617   tmp = g_strdup_printf ("%s%d", "qtmux", g_random_int ());
4618   qtmux->fast_start_file_path = g_build_filename (g_get_tmp_dir (), tmp, NULL);
4619   g_free (tmp);
4620 }
4621
4622 static void
4623 gst_qt_mux_set_property (GObject * object,
4624     guint prop_id, const GValue * value, GParamSpec * pspec)
4625 {
4626   GstQTMux *qtmux = GST_QT_MUX_CAST (object);
4627
4628   GST_OBJECT_LOCK (qtmux);
4629   switch (prop_id) {
4630     case PROP_MOVIE_TIMESCALE:
4631       qtmux->timescale = g_value_get_uint (value);
4632       break;
4633     case PROP_TRAK_TIMESCALE:
4634       qtmux->trak_timescale = g_value_get_uint (value);
4635       break;
4636     case PROP_DO_CTTS:
4637       qtmux->guess_pts = g_value_get_boolean (value);
4638       break;
4639 #ifndef GST_REMOVE_DEPRECATED
4640     case PROP_DTS_METHOD:
4641       qtmux->dts_method = g_value_get_enum (value);
4642       break;
4643 #endif
4644     case PROP_FAST_START:
4645       qtmux->fast_start = g_value_get_boolean (value);
4646       break;
4647     case PROP_FAST_START_TEMP_FILE:
4648       g_free (qtmux->fast_start_file_path);
4649       qtmux->fast_start_file_path = g_value_dup_string (value);
4650       /* NULL means to generate a random one */
4651       if (!qtmux->fast_start_file_path) {
4652         gst_qt_mux_generate_fast_start_file_path (qtmux);
4653       }
4654       break;
4655     case PROP_MOOV_RECOV_FILE:
4656       g_free (qtmux->moov_recov_file_path);
4657       qtmux->moov_recov_file_path = g_value_dup_string (value);
4658       break;
4659     case PROP_FRAGMENT_DURATION:
4660       qtmux->fragment_duration = g_value_get_uint (value);
4661       break;
4662     case PROP_STREAMABLE:{
4663       GstQTMuxClass *qtmux_klass =
4664           (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
4665       if (qtmux_klass->format == GST_QT_MUX_FORMAT_ISML) {
4666         qtmux->streamable = g_value_get_boolean (value);
4667       }
4668       break;
4669     }
4670     case PROP_RESERVED_MAX_DURATION:
4671       qtmux->reserved_max_duration = g_value_get_uint64 (value);
4672       break;
4673     case PROP_RESERVED_MOOV_UPDATE_PERIOD:
4674       qtmux->reserved_moov_update_period = g_value_get_uint64 (value);
4675       break;
4676     case PROP_RESERVED_BYTES_PER_SEC:
4677       qtmux->reserved_bytes_per_sec_per_trak = g_value_get_uint (value);
4678       break;
4679     default:
4680       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
4681       break;
4682   }
4683   GST_OBJECT_UNLOCK (qtmux);
4684 }
4685
4686 static GstStateChangeReturn
4687 gst_qt_mux_change_state (GstElement * element, GstStateChange transition)
4688 {
4689   GstStateChangeReturn ret;
4690   GstQTMux *qtmux = GST_QT_MUX_CAST (element);
4691
4692   switch (transition) {
4693     case GST_STATE_CHANGE_NULL_TO_READY:
4694       break;
4695     case GST_STATE_CHANGE_READY_TO_PAUSED:
4696       gst_collect_pads_start (qtmux->collect);
4697       qtmux->state = GST_QT_MUX_STATE_STARTED;
4698       qtmux->first_tc = NULL;
4699       qtmux->tc_pos = -1;
4700       break;
4701     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
4702       break;
4703     case GST_STATE_CHANGE_PAUSED_TO_READY:
4704       gst_collect_pads_stop (qtmux->collect);
4705       break;
4706     default:
4707       break;
4708   }
4709
4710   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
4711
4712   switch (transition) {
4713     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
4714       break;
4715     case GST_STATE_CHANGE_PAUSED_TO_READY:
4716       gst_qt_mux_reset (qtmux, TRUE);
4717       break;
4718     case GST_STATE_CHANGE_READY_TO_NULL:
4719       break;
4720     default:
4721       break;
4722   }
4723
4724   return ret;
4725 }
4726
4727 gboolean
4728 gst_qt_mux_register (GstPlugin * plugin)
4729 {
4730   GTypeInfo typeinfo = {
4731     sizeof (GstQTMuxClass),
4732     (GBaseInitFunc) gst_qt_mux_base_init,
4733     NULL,
4734     (GClassInitFunc) gst_qt_mux_class_init,
4735     NULL,
4736     NULL,
4737     sizeof (GstQTMux),
4738     0,
4739     (GInstanceInitFunc) gst_qt_mux_init,
4740   };
4741   static const GInterfaceInfo tag_setter_info = {
4742     NULL, NULL, NULL
4743   };
4744   static const GInterfaceInfo tag_xmp_writer_info = {
4745     NULL, NULL, NULL
4746   };
4747   static const GInterfaceInfo preset_info = {
4748     NULL, NULL, NULL
4749   };
4750   GType type;
4751   GstQTMuxFormat format;
4752   GstQTMuxClassParams *params;
4753   guint i = 0;
4754
4755   GST_DEBUG_CATEGORY_INIT (gst_qt_mux_debug, "qtmux", 0, "QT Muxer");
4756
4757   GST_LOG ("Registering muxers");
4758
4759   while (TRUE) {
4760     GstQTMuxFormatProp *prop;
4761     GstCaps *subtitle_caps;
4762
4763     prop = &gst_qt_mux_format_list[i];
4764     format = prop->format;
4765     if (format == GST_QT_MUX_FORMAT_NONE)
4766       break;
4767
4768     /* create a cache for these properties */
4769     params = g_new0 (GstQTMuxClassParams, 1);
4770     params->prop = prop;
4771     params->src_caps = gst_static_caps_get (&prop->src_caps);
4772     params->video_sink_caps = gst_static_caps_get (&prop->video_sink_caps);
4773     params->audio_sink_caps = gst_static_caps_get (&prop->audio_sink_caps);
4774     subtitle_caps = gst_static_caps_get (&prop->subtitle_sink_caps);
4775     if (!gst_caps_is_equal (subtitle_caps, GST_CAPS_NONE)) {
4776       params->subtitle_sink_caps = subtitle_caps;
4777     } else {
4778       gst_caps_unref (subtitle_caps);
4779     }
4780
4781     /* create the type now */
4782     type = g_type_register_static (GST_TYPE_ELEMENT, prop->type_name, &typeinfo,
4783         0);
4784     g_type_set_qdata (type, GST_QT_MUX_PARAMS_QDATA, (gpointer) params);
4785     g_type_add_interface_static (type, GST_TYPE_TAG_SETTER, &tag_setter_info);
4786     g_type_add_interface_static (type, GST_TYPE_TAG_XMP_WRITER,
4787         &tag_xmp_writer_info);
4788     g_type_add_interface_static (type, GST_TYPE_PRESET, &preset_info);
4789
4790     if (!gst_element_register (plugin, prop->name, prop->rank, type))
4791       return FALSE;
4792
4793     i++;
4794   }
4795
4796   GST_LOG ("Finished registering muxers");
4797
4798   /* FIXME: ideally classification tag should be added and
4799      registered in gstreamer core gsttaglist
4800    */
4801
4802   GST_LOG ("Registering tags");
4803
4804   gst_tag_register (GST_TAG_3GP_CLASSIFICATION, GST_TAG_FLAG_META,
4805       G_TYPE_STRING, GST_TAG_3GP_CLASSIFICATION, "content classification",
4806       gst_tag_merge_use_first);
4807
4808   GST_LOG ("Finished registering tags");
4809
4810   return TRUE;
4811 }