qtmux: When accepting renegotiation, just return TRUE and change nothing
[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 #ifndef ABSDIFF
150 #define ABSDIFF(a, b) ((a) > (b) ? (a) - (b) : (b) - (a))
151 #endif
152
153 /* Hacker notes.
154  *
155  * The basic building blocks of MP4 files are:
156  *  - an 'ftyp' box at the very start
157  *  - an 'mdat' box which contains the raw audio/video/subtitle data;
158  *    this is just a bunch of bytes, completely unframed and possibly
159  *    unordered with no additional meta-information
160  *  - a 'moov' box that contains information about the different streams
161  *    and what they contain, as well as sample tables for each stream
162  *    that tell the demuxer where in the mdat box each buffer/sample is
163  *    and what its duration/timestamp etc. is, and whether it's a
164  *    keyframe etc.
165  * Additionally, fragmented MP4 works by writing chunks of data in
166  * pairs of 'moof' and 'mdat' boxes:
167  *  - 'moof' boxes, header preceding each mdat fragment describing the
168  *    contents, like a moov but only for that fragment.
169  *  - a 'mfra' box for Fragmented MP4, which is written at the end and
170  *    contains a summary of all fragments and seek tables.
171  *
172  * Currently mp4mux can work in 4 different modes / generate 4 types
173  * of output files/streams:
174  *
175  * - Normal mp4: mp4mux will write a little ftyp identifier at the
176  *   beginning, then start an mdat box into which it will write all the
177  *   sample data. At EOS it will then write the moov header with track
178  *   headers and sample tables at the end of the file, and rewrite the
179  *   start of the file to fix up the mdat box size at the beginning.
180  *   It has to wait for EOS to write the moov (which includes the
181  *   sample tables) because it doesn't know how much space those
182  *   tables will be. The output downstream must be seekable to rewrite
183  *   the mdat box at EOS.
184  *
185  * - Fragmented mp4: moov header with track headers at start
186  *   but no sample table, followed by N fragments, each containing
187  *   track headers with sample tables followed by some data. Downstream
188  *   does not need to be seekable if the 'streamable' flag is TRUE,
189  *   as the final mfra and total duration will be omitted.
190  *
191  * - Fast-start mp4: the goal here is to create a file where the moov
192  *   headers are at the beginning; what mp4mux will do is write all
193  *   sample data into a temp file and build moov header plus sample
194  *   tables in memory and then when EOS comes, it will push out the
195  *   moov header plus sample tables at the beginning, followed by the
196  *   mdat sample data at the end which is read in from the temp file
197  *   Files created in this mode are better for streaming over the
198  *   network, since the client doesn't have to seek to the end of the
199  *   file to get the headers, but it requires copying all sample data
200  *   out of the temp file at EOS, which can be expensive. Downstream does
201  *   not need to be seekable, because of the use of the temp file.
202  *
203  * - Robust Muxing mode: In this mode, qtmux uses the reserved-max-duration
204  *   and reserved-moov-update-period properties to reserve free space
205  *   at the start of the file and periodically write the MOOV atom out
206  *   to it. That means that killing the muxing at any point still
207  *   results in a playable file, at the cost of wasting some amount of
208  *   free space at the start of file. The approximate recording duration
209  *   has to be known in advance to estimate how much free space to reserve
210  *   for the moov, and the downstream must be seekable.
211  *   If the moov header grows larger than the reserved space, an error
212  *   is generated - so it's better to over-estimate the amount of space
213  *   to reserve. To ensure the file is playable at any point, the moov
214  *   is updated using a 'ping-pong' strategy, so the output is never in
215  *   an invalid state.
216  */
217
218 #ifndef GST_REMOVE_DEPRECATED
219 enum
220 {
221   DTS_METHOD_DD,
222   DTS_METHOD_REORDER,
223   DTS_METHOD_ASC
224 };
225
226 static GType
227 gst_qt_mux_dts_method_get_type (void)
228 {
229   static GType gst_qt_mux_dts_method = 0;
230
231   if (!gst_qt_mux_dts_method) {
232     static const GEnumValue dts_methods[] = {
233       {DTS_METHOD_DD, "delta/duration", "dd"},
234       {DTS_METHOD_REORDER, "reorder", "reorder"},
235       {DTS_METHOD_ASC, "ascending", "asc"},
236       {0, NULL, NULL},
237     };
238
239     gst_qt_mux_dts_method =
240         g_enum_register_static ("GstQTMuxDtsMethods", dts_methods);
241   }
242
243   return gst_qt_mux_dts_method;
244 }
245
246 #define GST_TYPE_QT_MUX_DTS_METHOD \
247   (gst_qt_mux_dts_method_get_type ())
248 #endif
249
250 /* QTMux signals and args */
251 enum
252 {
253   /* FILL ME */
254   LAST_SIGNAL
255 };
256
257 enum
258 {
259   PROP_0,
260   PROP_MOVIE_TIMESCALE,
261   PROP_TRAK_TIMESCALE,
262   PROP_FAST_START,
263   PROP_FAST_START_TEMP_FILE,
264   PROP_MOOV_RECOV_FILE,
265   PROP_FRAGMENT_DURATION,
266   PROP_STREAMABLE,
267   PROP_RESERVED_MAX_DURATION,
268   PROP_RESERVED_DURATION_REMAINING,
269   PROP_RESERVED_MOOV_UPDATE_PERIOD,
270   PROP_RESERVED_BYTES_PER_SEC,
271   PROP_RESERVED_PREFILL,
272 #ifndef GST_REMOVE_DEPRECATED
273   PROP_DTS_METHOD,
274 #endif
275   PROP_DO_CTTS,
276   PROP_INTERLEAVE_BYTES,
277   PROP_INTERLEAVE_TIME,
278   PROP_MAX_RAW_AUDIO_DRIFT,
279 };
280
281 /* some spare for header size as well */
282 #define MDAT_LARGE_FILE_LIMIT           ((guint64) 1024 * 1024 * 1024 * 2)
283
284 #define DEFAULT_MOVIE_TIMESCALE         0
285 #define DEFAULT_TRAK_TIMESCALE          0
286 #define DEFAULT_DO_CTTS                 TRUE
287 #define DEFAULT_FAST_START              FALSE
288 #define DEFAULT_FAST_START_TEMP_FILE    NULL
289 #define DEFAULT_MOOV_RECOV_FILE         NULL
290 #define DEFAULT_FRAGMENT_DURATION       0
291 #define DEFAULT_STREAMABLE              TRUE
292 #ifndef GST_REMOVE_DEPRECATED
293 #define DEFAULT_DTS_METHOD              DTS_METHOD_REORDER
294 #endif
295 #define DEFAULT_RESERVED_MAX_DURATION   GST_CLOCK_TIME_NONE
296 #define DEFAULT_RESERVED_MOOV_UPDATE_PERIOD   GST_CLOCK_TIME_NONE
297 #define DEFAULT_RESERVED_BYTES_PER_SEC_PER_TRAK 550
298 #define DEFAULT_RESERVED_PREFILL FALSE
299 #define DEFAULT_INTERLEAVE_BYTES 0
300 #define DEFAULT_INTERLEAVE_TIME 250*GST_MSECOND
301 #define DEFAULT_MAX_RAW_AUDIO_DRIFT 40 * GST_MSECOND
302
303 static void gst_qt_mux_finalize (GObject * object);
304
305 static GstStateChangeReturn gst_qt_mux_change_state (GstElement * element,
306     GstStateChange transition);
307
308 /* property functions */
309 static void gst_qt_mux_set_property (GObject * object,
310     guint prop_id, const GValue * value, GParamSpec * pspec);
311 static void gst_qt_mux_get_property (GObject * object,
312     guint prop_id, GValue * value, GParamSpec * pspec);
313
314 /* pad functions */
315 static GstPad *gst_qt_mux_request_new_pad (GstElement * element,
316     GstPadTemplate * templ, const gchar * name, const GstCaps * caps);
317 static void gst_qt_mux_release_pad (GstElement * element, GstPad * pad);
318
319 /* event */
320 static gboolean gst_qt_mux_sink_event (GstCollectPads * pads,
321     GstCollectData * data, GstEvent * event, gpointer user_data);
322
323 static GstFlowReturn gst_qt_mux_collected (GstCollectPads * pads,
324     gpointer user_data);
325 static GstFlowReturn gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad,
326     GstBuffer * buf);
327
328 static GstFlowReturn
329 gst_qt_mux_robust_recording_rewrite_moov (GstQTMux * qtmux);
330
331 static void gst_qt_mux_update_global_statistics (GstQTMux * qtmux);
332 static void gst_qt_mux_update_edit_lists (GstQTMux * qtmux);
333
334 static GstElementClass *parent_class = NULL;
335
336 static void
337 gst_qt_mux_base_init (gpointer g_class)
338 {
339   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
340   GstQTMuxClass *klass = (GstQTMuxClass *) g_class;
341   GstQTMuxClassParams *params;
342   GstPadTemplate *videosinktempl, *audiosinktempl, *subtitlesinktempl;
343   GstPadTemplate *srctempl;
344   gchar *longname, *description;
345
346   params =
347       (GstQTMuxClassParams *) g_type_get_qdata (G_OBJECT_CLASS_TYPE (g_class),
348       GST_QT_MUX_PARAMS_QDATA);
349   g_assert (params != NULL);
350
351   /* construct the element details struct */
352   longname = g_strdup_printf ("%s Muxer", params->prop->long_name);
353   description = g_strdup_printf ("Multiplex audio and video into a %s file",
354       params->prop->long_name);
355   gst_element_class_set_static_metadata (element_class, longname,
356       "Codec/Muxer", description,
357       "Thiago Sousa Santos <thiagoss@embedded.ufcg.edu.br>");
358   g_free (longname);
359   g_free (description);
360
361   /* pad templates */
362   srctempl = gst_pad_template_new ("src", GST_PAD_SRC,
363       GST_PAD_ALWAYS, params->src_caps);
364   gst_element_class_add_pad_template (element_class, srctempl);
365
366   if (params->audio_sink_caps) {
367     audiosinktempl = gst_pad_template_new ("audio_%u",
368         GST_PAD_SINK, GST_PAD_REQUEST, params->audio_sink_caps);
369     gst_element_class_add_pad_template (element_class, audiosinktempl);
370   }
371
372   if (params->video_sink_caps) {
373     videosinktempl = gst_pad_template_new ("video_%u",
374         GST_PAD_SINK, GST_PAD_REQUEST, params->video_sink_caps);
375     gst_element_class_add_pad_template (element_class, videosinktempl);
376   }
377
378   if (params->subtitle_sink_caps) {
379     subtitlesinktempl = gst_pad_template_new ("subtitle_%u",
380         GST_PAD_SINK, GST_PAD_REQUEST, params->subtitle_sink_caps);
381     gst_element_class_add_pad_template (element_class, subtitlesinktempl);
382   }
383
384   klass->format = params->prop->format;
385 }
386
387 static void
388 gst_qt_mux_class_init (GstQTMuxClass * klass)
389 {
390   GObjectClass *gobject_class;
391   GstElementClass *gstelement_class;
392   GParamFlags streamable_flags;
393   const gchar *streamable_desc;
394   gboolean streamable;
395 #define STREAMABLE_DESC "If set to true, the output should be as if it is to "\
396   "be streamed and hence no indexes written or duration written."
397
398   gobject_class = (GObjectClass *) klass;
399   gstelement_class = (GstElementClass *) klass;
400
401   parent_class = g_type_class_peek_parent (klass);
402
403   gobject_class->finalize = gst_qt_mux_finalize;
404   gobject_class->get_property = gst_qt_mux_get_property;
405   gobject_class->set_property = gst_qt_mux_set_property;
406
407   streamable_flags = G_PARAM_READWRITE | G_PARAM_CONSTRUCT;
408   if (klass->format == GST_QT_MUX_FORMAT_ISML) {
409     streamable_desc = STREAMABLE_DESC;
410     streamable = DEFAULT_STREAMABLE;
411   } else {
412     streamable_desc =
413         STREAMABLE_DESC " (DEPRECATED, only valid for fragmented MP4)";
414     streamable_flags |= G_PARAM_DEPRECATED;
415     streamable = FALSE;
416   }
417
418   g_object_class_install_property (gobject_class, PROP_MOVIE_TIMESCALE,
419       g_param_spec_uint ("movie-timescale", "Movie timescale",
420           "Timescale to use in the movie (units per second, 0 == default)",
421           0, G_MAXUINT32, DEFAULT_MOVIE_TIMESCALE,
422           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
423   g_object_class_install_property (gobject_class, PROP_TRAK_TIMESCALE,
424       g_param_spec_uint ("trak-timescale", "Track timescale",
425           "Timescale to use for the tracks (units per second, 0 is automatic)",
426           0, G_MAXUINT32, DEFAULT_TRAK_TIMESCALE,
427           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
428   g_object_class_install_property (gobject_class, PROP_DO_CTTS,
429       g_param_spec_boolean ("presentation-time",
430           "Include presentation-time info",
431           "Calculate and include presentation/composition time "
432           "(in addition to decoding time)", DEFAULT_DO_CTTS,
433           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
434 #ifndef GST_REMOVE_DEPRECATED
435   g_object_class_install_property (gobject_class, PROP_DTS_METHOD,
436       g_param_spec_enum ("dts-method", "dts-method",
437           "Method to determine DTS time (DEPRECATED)",
438           GST_TYPE_QT_MUX_DTS_METHOD, DEFAULT_DTS_METHOD,
439           G_PARAM_DEPRECATED | G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
440           G_PARAM_STATIC_STRINGS));
441 #endif
442   g_object_class_install_property (gobject_class, PROP_FAST_START,
443       g_param_spec_boolean ("faststart", "Format file to faststart",
444           "If the file should be formatted for faststart (headers first)",
445           DEFAULT_FAST_START, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
446   g_object_class_install_property (gobject_class, PROP_FAST_START_TEMP_FILE,
447       g_param_spec_string ("faststart-file", "File to use for storing buffers",
448           "File that will be used temporarily to store data from the stream "
449           "when creating a faststart file. If null a filepath will be "
450           "created automatically", DEFAULT_FAST_START_TEMP_FILE,
451           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
452   g_object_class_install_property (gobject_class, PROP_MOOV_RECOV_FILE,
453       g_param_spec_string ("moov-recovery-file",
454           "File to store data for posterior moov atom recovery",
455           "File to be used to store "
456           "data for moov atom making movie file recovery possible in case "
457           "of a crash during muxing. Null for disabled. (Experimental)",
458           DEFAULT_MOOV_RECOV_FILE,
459           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
460   g_object_class_install_property (gobject_class, PROP_FRAGMENT_DURATION,
461       g_param_spec_uint ("fragment-duration", "Fragment duration",
462           "Fragment durations in ms (produce a fragmented file if > 0)",
463           0, G_MAXUINT32, klass->format == GST_QT_MUX_FORMAT_ISML ?
464           2000 : DEFAULT_FRAGMENT_DURATION,
465           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
466   g_object_class_install_property (gobject_class, PROP_STREAMABLE,
467       g_param_spec_boolean ("streamable", "Streamable", streamable_desc,
468           streamable, streamable_flags | G_PARAM_STATIC_STRINGS));
469   g_object_class_install_property (gobject_class, PROP_RESERVED_MAX_DURATION,
470       g_param_spec_uint64 ("reserved-max-duration",
471           "Reserved maximum file duration (ns)",
472           "When set to a value > 0, reserves space for index tables at the "
473           "beginning of the file.",
474           0, G_MAXUINT64, DEFAULT_RESERVED_MAX_DURATION,
475           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
476   g_object_class_install_property (gobject_class,
477       PROP_RESERVED_DURATION_REMAINING,
478       g_param_spec_uint64 ("reserved-duration-remaining",
479           "Report the approximate amount of remaining recording space (ns)",
480           "Reports the approximate amount of remaining moov header space "
481           "reserved using reserved-max-duration", 0, G_MAXUINT64, 0,
482           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
483   g_object_class_install_property (gobject_class,
484       PROP_RESERVED_MOOV_UPDATE_PERIOD,
485       g_param_spec_uint64 ("reserved-moov-update-period",
486           "Interval at which to update index tables (ns)",
487           "When used with reserved-max-duration, periodically updates the "
488           "index tables with information muxed so far.", 0, G_MAXUINT64,
489           DEFAULT_RESERVED_MOOV_UPDATE_PERIOD,
490           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
491   g_object_class_install_property (gobject_class, PROP_RESERVED_BYTES_PER_SEC,
492       g_param_spec_uint ("reserved-bytes-per-sec",
493           "Reserved MOOV bytes per second, per track",
494           "Multiplier for converting reserved-max-duration into bytes of header to reserve, per second, per track",
495           0, 10000, DEFAULT_RESERVED_BYTES_PER_SEC_PER_TRAK,
496           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
497   g_object_class_install_property (gobject_class, PROP_RESERVED_PREFILL,
498       g_param_spec_boolean ("reserved-prefill",
499           "Reserved Prefill Samples Table",
500           "Prefill samples table of reserved duration",
501           DEFAULT_RESERVED_PREFILL,
502           G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
503   g_object_class_install_property (gobject_class, PROP_INTERLEAVE_BYTES,
504       g_param_spec_uint64 ("interleave-bytes", "Interleave (bytes)",
505           "Interleave between streams in bytes",
506           0, G_MAXUINT64, DEFAULT_INTERLEAVE_BYTES,
507           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
508   g_object_class_install_property (gobject_class, PROP_INTERLEAVE_TIME,
509       g_param_spec_uint64 ("interleave-time", "Interleave (time)",
510           "Interleave between streams in nanoseconds",
511           0, G_MAXUINT64, DEFAULT_INTERLEAVE_TIME,
512           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
513   g_object_class_install_property (gobject_class, PROP_MAX_RAW_AUDIO_DRIFT,
514       g_param_spec_uint64 ("max-raw-audio-drift", "Max Raw Audio Drift",
515           "Maximum allowed drift of raw audio samples vs. timestamps in nanoseconds",
516           0, G_MAXUINT64, DEFAULT_MAX_RAW_AUDIO_DRIFT,
517           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
518
519   gstelement_class->request_new_pad =
520       GST_DEBUG_FUNCPTR (gst_qt_mux_request_new_pad);
521   gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_qt_mux_change_state);
522   gstelement_class->release_pad = GST_DEBUG_FUNCPTR (gst_qt_mux_release_pad);
523 }
524
525 static void
526 gst_qt_mux_pad_reset (GstQTPad * qtpad)
527 {
528   qtpad->fourcc = 0;
529   qtpad->is_out_of_order = FALSE;
530   qtpad->sample_size = 0;
531   qtpad->sync = FALSE;
532   qtpad->last_dts = 0;
533   qtpad->sample_offset = 0;
534   qtpad->dts_adjustment = GST_CLOCK_TIME_NONE;
535   qtpad->first_ts = GST_CLOCK_TIME_NONE;
536   qtpad->first_dts = GST_CLOCK_TIME_NONE;
537   qtpad->prepare_buf_func = NULL;
538   qtpad->create_empty_buffer = NULL;
539   qtpad->avg_bitrate = 0;
540   qtpad->max_bitrate = 0;
541   qtpad->total_duration = 0;
542   qtpad->total_bytes = 0;
543   qtpad->sparse = FALSE;
544
545   gst_buffer_replace (&qtpad->last_buf, NULL);
546
547   if (qtpad->tags) {
548     gst_tag_list_unref (qtpad->tags);
549     qtpad->tags = NULL;
550   }
551
552   /* reference owned elsewhere */
553   qtpad->trak = NULL;
554   qtpad->tc_trak = NULL;
555
556   if (qtpad->traf) {
557     atom_traf_free (qtpad->traf);
558     qtpad->traf = NULL;
559   }
560   atom_array_clear (&qtpad->fragment_buffers);
561   if (qtpad->samples)
562     g_array_unref (qtpad->samples);
563   qtpad->samples = NULL;
564
565   /* reference owned elsewhere */
566   qtpad->tfra = NULL;
567
568   qtpad->first_pts = GST_CLOCK_TIME_NONE;
569   qtpad->tc_pos = -1;
570   if (qtpad->first_tc)
571     gst_video_time_code_free (qtpad->first_tc);
572   qtpad->first_tc = NULL;
573
574   if (qtpad->raw_audio_adapter)
575     gst_object_unref (qtpad->raw_audio_adapter);
576   qtpad->raw_audio_adapter = NULL;
577 }
578
579 /*
580  * Takes GstQTMux back to its initial state
581  */
582 static void
583 gst_qt_mux_reset (GstQTMux * qtmux, gboolean alloc)
584 {
585   GSList *walk;
586
587   qtmux->state = GST_QT_MUX_STATE_NONE;
588   qtmux->header_size = 0;
589   qtmux->mdat_size = 0;
590   qtmux->moov_pos = 0;
591   qtmux->mdat_pos = 0;
592   qtmux->longest_chunk = GST_CLOCK_TIME_NONE;
593   qtmux->fragment_sequence = 0;
594
595   if (qtmux->ftyp) {
596     atom_ftyp_free (qtmux->ftyp);
597     qtmux->ftyp = NULL;
598   }
599   if (qtmux->moov) {
600     atom_moov_free (qtmux->moov);
601     qtmux->moov = NULL;
602   }
603   if (qtmux->mfra) {
604     atom_mfra_free (qtmux->mfra);
605     qtmux->mfra = NULL;
606   }
607   if (qtmux->fast_start_file) {
608     fclose (qtmux->fast_start_file);
609     g_remove (qtmux->fast_start_file_path);
610     qtmux->fast_start_file = NULL;
611   }
612   if (qtmux->moov_recov_file) {
613     fclose (qtmux->moov_recov_file);
614     qtmux->moov_recov_file = NULL;
615   }
616   for (walk = qtmux->extra_atoms; walk; walk = g_slist_next (walk)) {
617     AtomInfo *ainfo = (AtomInfo *) walk->data;
618     ainfo->free_func (ainfo->atom);
619     g_free (ainfo);
620   }
621   g_slist_free (qtmux->extra_atoms);
622   qtmux->extra_atoms = NULL;
623
624   GST_OBJECT_LOCK (qtmux);
625   gst_tag_setter_reset_tags (GST_TAG_SETTER (qtmux));
626   GST_OBJECT_UNLOCK (qtmux);
627
628   /* reset pad data */
629   for (walk = qtmux->sinkpads; walk; walk = g_slist_next (walk)) {
630     GstQTPad *qtpad = (GstQTPad *) walk->data;
631     gst_qt_mux_pad_reset (qtpad);
632
633     /* hm, moov_free above yanked the traks away from us,
634      * so do not free, but do clear */
635     qtpad->trak = NULL;
636   }
637
638   if (alloc) {
639     qtmux->moov = atom_moov_new (qtmux->context);
640     /* ensure all is as nice and fresh as request_new_pad would provide it */
641     for (walk = qtmux->sinkpads; walk; walk = g_slist_next (walk)) {
642       GstQTPad *qtpad = (GstQTPad *) walk->data;
643
644       qtpad->trak = atom_trak_new (qtmux->context);
645       atom_moov_add_trak (qtmux->moov, qtpad->trak);
646     }
647   }
648
649   qtmux->current_pad = NULL;
650   qtmux->current_chunk_size = 0;
651   qtmux->current_chunk_duration = 0;
652   qtmux->current_chunk_offset = -1;
653
654   qtmux->reserved_moov_size = 0;
655   qtmux->last_moov_update = GST_CLOCK_TIME_NONE;
656   qtmux->muxed_since_last_update = 0;
657   qtmux->reserved_duration_remaining = GST_CLOCK_TIME_NONE;
658 }
659
660 static void
661 gst_qt_mux_init (GstQTMux * qtmux, GstQTMuxClass * qtmux_klass)
662 {
663   GstElementClass *klass = GST_ELEMENT_CLASS (qtmux_klass);
664   GstPadTemplate *templ;
665
666   templ = gst_element_class_get_pad_template (klass, "src");
667   qtmux->srcpad = gst_pad_new_from_template (templ, "src");
668   gst_pad_use_fixed_caps (qtmux->srcpad);
669   gst_element_add_pad (GST_ELEMENT (qtmux), qtmux->srcpad);
670
671   qtmux->sinkpads = NULL;
672   qtmux->collect = gst_collect_pads_new ();
673   gst_collect_pads_set_event_function (qtmux->collect,
674       GST_DEBUG_FUNCPTR (gst_qt_mux_sink_event), qtmux);
675   gst_collect_pads_set_clip_function (qtmux->collect,
676       GST_DEBUG_FUNCPTR (gst_collect_pads_clip_running_time), qtmux);
677   gst_collect_pads_set_function (qtmux->collect,
678       GST_DEBUG_FUNCPTR (gst_qt_mux_collected), qtmux);
679
680   /* properties set to default upon construction */
681
682   qtmux->reserved_max_duration = DEFAULT_RESERVED_MAX_DURATION;
683   qtmux->reserved_moov_update_period = DEFAULT_RESERVED_MOOV_UPDATE_PERIOD;
684   qtmux->reserved_bytes_per_sec_per_trak =
685       DEFAULT_RESERVED_BYTES_PER_SEC_PER_TRAK;
686   qtmux->interleave_bytes = DEFAULT_INTERLEAVE_BYTES;
687   qtmux->interleave_time = DEFAULT_INTERLEAVE_TIME;
688   qtmux->max_raw_audio_drift = DEFAULT_MAX_RAW_AUDIO_DRIFT;
689
690   /* always need this */
691   qtmux->context =
692       atoms_context_new (gst_qt_mux_map_format_to_flavor (qtmux_klass->format));
693
694   /* internals to initial state */
695   gst_qt_mux_reset (qtmux, TRUE);
696 }
697
698
699 static void
700 gst_qt_mux_finalize (GObject * object)
701 {
702   GstQTMux *qtmux = GST_QT_MUX_CAST (object);
703
704   gst_qt_mux_reset (qtmux, FALSE);
705
706   g_free (qtmux->fast_start_file_path);
707   g_free (qtmux->moov_recov_file_path);
708
709   atoms_context_free (qtmux->context);
710   gst_object_unref (qtmux->collect);
711
712   g_slist_free (qtmux->sinkpads);
713
714   G_OBJECT_CLASS (parent_class)->finalize (object);
715 }
716
717 static GstBuffer *
718 gst_qt_mux_prepare_jpc_buffer (GstQTPad * qtpad, GstBuffer * buf,
719     GstQTMux * qtmux)
720 {
721   GstBuffer *newbuf;
722   GstMapInfo map;
723   gsize size;
724
725   GST_LOG_OBJECT (qtmux, "Preparing jpc buffer");
726
727   if (buf == NULL)
728     return NULL;
729
730   size = gst_buffer_get_size (buf);
731   newbuf = gst_buffer_new_and_alloc (size + 8);
732   gst_buffer_copy_into (newbuf, buf, GST_BUFFER_COPY_ALL, 8, size);
733
734   gst_buffer_map (newbuf, &map, GST_MAP_WRITE);
735   GST_WRITE_UINT32_BE (map.data, map.size);
736   GST_WRITE_UINT32_LE (map.data + 4, FOURCC_jp2c);
737
738   gst_buffer_unmap (buf, &map);
739   gst_buffer_unref (buf);
740
741   return newbuf;
742 }
743
744 static GstBuffer *
745 gst_qt_mux_prepare_tx3g_buffer (GstQTPad * qtpad, GstBuffer * buf,
746     GstQTMux * qtmux)
747 {
748   GstBuffer *newbuf;
749   GstMapInfo frommap;
750   GstMapInfo tomap;
751   gsize size;
752   const guint8 *dataend;
753
754   GST_LOG_OBJECT (qtmux, "Preparing tx3g buffer %" GST_PTR_FORMAT, buf);
755
756   if (buf == NULL)
757     return NULL;
758
759   gst_buffer_map (buf, &frommap, GST_MAP_READ);
760
761   dataend = memchr (frommap.data, 0, frommap.size);
762   size = dataend ? dataend - frommap.data : frommap.size;
763   newbuf = gst_buffer_new_and_alloc (size + 2);
764
765   gst_buffer_map (newbuf, &tomap, GST_MAP_WRITE);
766
767   GST_WRITE_UINT16_BE (tomap.data, size);
768   memcpy (tomap.data + 2, frommap.data, size);
769
770   gst_buffer_unmap (newbuf, &tomap);
771   gst_buffer_unmap (buf, &frommap);
772
773   gst_buffer_copy_into (newbuf, buf, GST_BUFFER_COPY_METADATA, 0, size);
774
775   /* gst_buffer_copy_into is trying to be too clever and
776    * won't copy duration when size is different */
777   GST_BUFFER_DURATION (newbuf) = GST_BUFFER_DURATION (buf);
778
779   gst_buffer_unref (buf);
780
781   return newbuf;
782 }
783
784 static void
785 gst_qt_mux_pad_add_ac3_extension (GstQTMux * qtmux, GstQTPad * qtpad,
786     guint8 fscod, guint8 frmsizcod, guint8 bsid, guint8 bsmod, guint8 acmod,
787     guint8 lfe_on)
788 {
789   AtomInfo *ext;
790
791   g_return_if_fail (qtpad->trak_ste);
792
793   ext = build_ac3_extension (fscod, bsid, bsmod, acmod, lfe_on, frmsizcod >> 1);        /* bitrate_code is inside frmsizcod */
794
795   sample_table_entry_add_ext_atom (qtpad->trak_ste, ext);
796 }
797
798 static GstBuffer *
799 gst_qt_mux_prepare_parse_ac3_frame (GstQTPad * qtpad, GstBuffer * buf,
800     GstQTMux * qtmux)
801 {
802   GstMapInfo map;
803   GstByteReader reader;
804   guint off;
805
806   if (!gst_buffer_map (buf, &map, GST_MAP_READ)) {
807     GST_WARNING_OBJECT (qtpad->collect.pad, "Failed to map buffer");
808     return buf;
809   }
810
811   if (G_UNLIKELY (map.size < 8))
812     goto done;
813
814   gst_byte_reader_init (&reader, map.data, map.size);
815   off = gst_byte_reader_masked_scan_uint32 (&reader, 0xffff0000, 0x0b770000,
816       0, map.size);
817
818   if (off != -1) {
819     GstBitReader bits;
820     guint8 fscod, frmsizcod, bsid, bsmod, acmod, lfe_on;
821
822     GST_DEBUG_OBJECT (qtpad->collect.pad, "Found ac3 sync point at offset: %u",
823         off);
824
825     gst_bit_reader_init (&bits, map.data, map.size);
826
827     /* off + sync + crc */
828     gst_bit_reader_skip_unchecked (&bits, off * 8 + 16 + 16);
829
830     fscod = gst_bit_reader_get_bits_uint8_unchecked (&bits, 2);
831     frmsizcod = gst_bit_reader_get_bits_uint8_unchecked (&bits, 6);
832     bsid = gst_bit_reader_get_bits_uint8_unchecked (&bits, 5);
833     bsmod = gst_bit_reader_get_bits_uint8_unchecked (&bits, 3);
834     acmod = gst_bit_reader_get_bits_uint8_unchecked (&bits, 3);
835
836     if ((acmod & 0x1) && (acmod != 0x1))        /* 3 front channels */
837       gst_bit_reader_skip_unchecked (&bits, 2);
838     if ((acmod & 0x4))          /* if a surround channel exists */
839       gst_bit_reader_skip_unchecked (&bits, 2);
840     if (acmod == 0x2)           /* if in 2/0 mode */
841       gst_bit_reader_skip_unchecked (&bits, 2);
842
843     lfe_on = gst_bit_reader_get_bits_uint8_unchecked (&bits, 1);
844
845     gst_qt_mux_pad_add_ac3_extension (qtmux, qtpad, fscod, frmsizcod, bsid,
846         bsmod, acmod, lfe_on);
847
848     /* AC-3 spec says that those values should be constant for the
849      * whole stream when muxed in mp4. We trust the input follows it */
850     GST_DEBUG_OBJECT (qtpad->collect.pad, "Data parsed, removing "
851         "prepare buffer function");
852     qtpad->prepare_buf_func = NULL;
853   }
854
855 done:
856   gst_buffer_unmap (buf, &map);
857   return buf;
858 }
859
860 static GstBuffer *
861 gst_qt_mux_create_empty_tx3g_buffer (GstQTPad * qtpad, gint64 duration)
862 {
863   guint8 *data;
864
865   data = g_malloc (2);
866   GST_WRITE_UINT16_BE (data, 0);
867
868   return gst_buffer_new_wrapped (data, 2);
869 }
870
871 static void
872 gst_qt_mux_add_mp4_tag (GstQTMux * qtmux, const GstTagList * list,
873     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
874 {
875   switch (gst_tag_get_type (tag)) {
876       /* strings */
877     case G_TYPE_STRING:
878     {
879       gchar *str = NULL;
880
881       if (!gst_tag_list_get_string (list, tag, &str) || !str)
882         break;
883       GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
884           GST_FOURCC_ARGS (fourcc), str);
885       atom_udta_add_str_tag (udta, fourcc, str);
886       g_free (str);
887       break;
888     }
889       /* double */
890     case G_TYPE_DOUBLE:
891     {
892       gdouble value;
893
894       if (!gst_tag_list_get_double (list, tag, &value))
895         break;
896       GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %u",
897           GST_FOURCC_ARGS (fourcc), (gint) value);
898       atom_udta_add_uint_tag (udta, fourcc, 21, (gint) value);
899       break;
900     }
901     case G_TYPE_UINT:
902     {
903       guint value = 0;
904       if (tag2) {
905         /* paired unsigned integers */
906         guint count = 0;
907         gboolean got_tag;
908
909         got_tag = gst_tag_list_get_uint (list, tag, &value);
910         got_tag = gst_tag_list_get_uint (list, tag2, &count) || got_tag;
911         if (!got_tag)
912           break;
913         GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %u/%u",
914             GST_FOURCC_ARGS (fourcc), value, count);
915         atom_udta_add_uint_tag (udta, fourcc, 0,
916             value << 16 | (count & 0xFFFF));
917       } else {
918         /* unpaired unsigned integers */
919         if (!gst_tag_list_get_uint (list, tag, &value))
920           break;
921         GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %u",
922             GST_FOURCC_ARGS (fourcc), value);
923         atom_udta_add_uint_tag (udta, fourcc, 1, value);
924       }
925       break;
926     }
927     default:
928       g_assert_not_reached ();
929       break;
930   }
931 }
932
933 static void
934 gst_qt_mux_add_mp4_date (GstQTMux * qtmux, const GstTagList * list,
935     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
936 {
937   GDate *date = NULL;
938   GDateYear year;
939   GDateMonth month;
940   GDateDay day;
941   gchar *str;
942
943   g_return_if_fail (gst_tag_get_type (tag) == G_TYPE_DATE);
944
945   if (!gst_tag_list_get_date (list, tag, &date) || !date)
946     return;
947
948   year = g_date_get_year (date);
949   month = g_date_get_month (date);
950   day = g_date_get_day (date);
951
952   g_date_free (date);
953
954   if (year == G_DATE_BAD_YEAR && month == G_DATE_BAD_MONTH &&
955       day == G_DATE_BAD_DAY) {
956     GST_WARNING_OBJECT (qtmux, "invalid date in tag");
957     return;
958   }
959
960   str = g_strdup_printf ("%u-%u-%u", year, month, day);
961   GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
962       GST_FOURCC_ARGS (fourcc), str);
963   atom_udta_add_str_tag (udta, fourcc, str);
964   g_free (str);
965 }
966
967 static void
968 gst_qt_mux_add_mp4_cover (GstQTMux * qtmux, const GstTagList * list,
969     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
970 {
971   GValue value = { 0, };
972   GstBuffer *buf;
973   GstSample *sample;
974   GstCaps *caps;
975   GstStructure *structure;
976   gint flags = 0;
977   GstMapInfo map;
978
979   g_return_if_fail (gst_tag_get_type (tag) == GST_TYPE_SAMPLE);
980
981   if (!gst_tag_list_copy_value (&value, list, tag))
982     return;
983
984   sample = gst_value_get_sample (&value);
985
986   if (!sample)
987     goto done;
988
989   buf = gst_sample_get_buffer (sample);
990   if (!buf)
991     goto done;
992
993   caps = gst_sample_get_caps (sample);
994   if (!caps) {
995     GST_WARNING_OBJECT (qtmux, "preview image without caps");
996     goto done;
997   }
998
999   GST_DEBUG_OBJECT (qtmux, "preview image caps %" GST_PTR_FORMAT, caps);
1000
1001   structure = gst_caps_get_structure (caps, 0);
1002   if (gst_structure_has_name (structure, "image/jpeg"))
1003     flags = 13;
1004   else if (gst_structure_has_name (structure, "image/png"))
1005     flags = 14;
1006
1007   if (!flags) {
1008     GST_WARNING_OBJECT (qtmux, "preview image format not supported");
1009     goto done;
1010   }
1011
1012   gst_buffer_map (buf, &map, GST_MAP_READ);
1013   GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT
1014       " -> image size %" G_GSIZE_FORMAT "", GST_FOURCC_ARGS (fourcc), map.size);
1015   atom_udta_add_tag (udta, fourcc, flags, map.data, map.size);
1016   gst_buffer_unmap (buf, &map);
1017 done:
1018   g_value_unset (&value);
1019 }
1020
1021 static void
1022 gst_qt_mux_add_3gp_str (GstQTMux * qtmux, const GstTagList * list,
1023     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1024 {
1025   gchar *str = NULL;
1026   guint number;
1027
1028   g_return_if_fail (gst_tag_get_type (tag) == G_TYPE_STRING);
1029   g_return_if_fail (!tag2 || gst_tag_get_type (tag2) == G_TYPE_UINT);
1030
1031   if (!gst_tag_list_get_string (list, tag, &str) || !str)
1032     return;
1033
1034   if (tag2)
1035     if (!gst_tag_list_get_uint (list, tag2, &number))
1036       tag2 = NULL;
1037
1038   if (!tag2) {
1039     GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
1040         GST_FOURCC_ARGS (fourcc), str);
1041     atom_udta_add_3gp_str_tag (udta, fourcc, str);
1042   } else {
1043     GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s/%d",
1044         GST_FOURCC_ARGS (fourcc), str, number);
1045     atom_udta_add_3gp_str_int_tag (udta, fourcc, str, number);
1046   }
1047
1048   g_free (str);
1049 }
1050
1051 static void
1052 gst_qt_mux_add_3gp_date (GstQTMux * qtmux, const GstTagList * list,
1053     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1054 {
1055   GDate *date = NULL;
1056   GDateYear year;
1057
1058   g_return_if_fail (gst_tag_get_type (tag) == G_TYPE_DATE);
1059
1060   if (!gst_tag_list_get_date (list, tag, &date) || !date)
1061     return;
1062
1063   year = g_date_get_year (date);
1064   g_date_free (date);
1065
1066   if (year == G_DATE_BAD_YEAR) {
1067     GST_WARNING_OBJECT (qtmux, "invalid date in tag");
1068     return;
1069   }
1070
1071   GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %d",
1072       GST_FOURCC_ARGS (fourcc), year);
1073   atom_udta_add_3gp_uint_tag (udta, fourcc, year);
1074 }
1075
1076 static void
1077 gst_qt_mux_add_3gp_location (GstQTMux * qtmux, const GstTagList * list,
1078     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1079 {
1080   gdouble latitude = -360, longitude = -360, altitude = 0;
1081   gchar *location = NULL;
1082   guint8 *data, *ddata;
1083   gint size = 0, len = 0;
1084   gboolean ret = FALSE;
1085
1086   g_return_if_fail (strcmp (tag, GST_TAG_GEO_LOCATION_NAME) == 0);
1087
1088   ret = gst_tag_list_get_string (list, tag, &location);
1089   ret |= gst_tag_list_get_double (list, GST_TAG_GEO_LOCATION_LONGITUDE,
1090       &longitude);
1091   ret |= gst_tag_list_get_double (list, GST_TAG_GEO_LOCATION_LATITUDE,
1092       &latitude);
1093   ret |= gst_tag_list_get_double (list, GST_TAG_GEO_LOCATION_ELEVATION,
1094       &altitude);
1095
1096   if (!ret)
1097     return;
1098
1099   if (location)
1100     len = strlen (location);
1101   size += len + 1 + 2;
1102
1103   /* role + (long, lat, alt) + body + notes */
1104   size += 1 + 3 * 4 + 1 + 1;
1105
1106   data = ddata = g_malloc (size);
1107
1108   /* language tag */
1109   GST_WRITE_UINT16_BE (data, language_code (GST_QT_MUX_DEFAULT_TAG_LANGUAGE));
1110   /* location */
1111   if (location)
1112     memcpy (data + 2, location, len);
1113   GST_WRITE_UINT8 (data + 2 + len, 0);
1114   data += len + 1 + 2;
1115   /* role */
1116   GST_WRITE_UINT8 (data, 0);
1117   /* long, lat, alt */
1118 #define QT_WRITE_SFP32(data, fp) GST_WRITE_UINT32_BE(data, (guint32) ((gint) (fp * 65536.0)))
1119   QT_WRITE_SFP32 (data + 1, longitude);
1120   QT_WRITE_SFP32 (data + 5, latitude);
1121   QT_WRITE_SFP32 (data + 9, altitude);
1122   /* neither astronomical body nor notes */
1123   GST_WRITE_UINT16_BE (data + 13, 0);
1124
1125   GST_DEBUG_OBJECT (qtmux, "Adding tag 'loci'");
1126   atom_udta_add_3gp_tag (udta, fourcc, ddata, size);
1127   g_free (ddata);
1128 }
1129
1130 static void
1131 gst_qt_mux_add_3gp_keywords (GstQTMux * qtmux, const GstTagList * list,
1132     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1133 {
1134   gchar *keywords = NULL;
1135   guint8 *data, *ddata;
1136   gint size = 0, i;
1137   gchar **kwds;
1138
1139   g_return_if_fail (strcmp (tag, GST_TAG_KEYWORDS) == 0);
1140
1141   if (!gst_tag_list_get_string (list, tag, &keywords) || !keywords)
1142     return;
1143
1144   kwds = g_strsplit (keywords, ",", 0);
1145   g_free (keywords);
1146
1147   size = 0;
1148   for (i = 0; kwds[i]; i++) {
1149     /* size byte + null-terminator */
1150     size += strlen (kwds[i]) + 1 + 1;
1151   }
1152
1153   /* language tag + count + keywords */
1154   size += 2 + 1;
1155
1156   data = ddata = g_malloc (size);
1157
1158   /* language tag */
1159   GST_WRITE_UINT16_BE (data, language_code (GST_QT_MUX_DEFAULT_TAG_LANGUAGE));
1160   /* count */
1161   GST_WRITE_UINT8 (data + 2, i);
1162   data += 3;
1163   /* keywords */
1164   for (i = 0; kwds[i]; ++i) {
1165     gint len = strlen (kwds[i]);
1166
1167     GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
1168         GST_FOURCC_ARGS (fourcc), kwds[i]);
1169     /* size */
1170     GST_WRITE_UINT8 (data, len + 1);
1171     memcpy (data + 1, kwds[i], len + 1);
1172     data += len + 2;
1173   }
1174
1175   g_strfreev (kwds);
1176
1177   atom_udta_add_3gp_tag (udta, fourcc, ddata, size);
1178   g_free (ddata);
1179 }
1180
1181 static gboolean
1182 gst_qt_mux_parse_classification_string (GstQTMux * qtmux, const gchar * input,
1183     guint32 * p_fourcc, guint16 * p_table, gchar ** p_content)
1184 {
1185   guint32 fourcc;
1186   gint table;
1187   gint size;
1188   const gchar *data;
1189
1190   data = input;
1191   size = strlen (input);
1192
1193   if (size < 4 + 3 + 1 + 1 + 1) {
1194     /* at least the minimum xxxx://y/z */
1195     GST_WARNING_OBJECT (qtmux, "Classification tag input (%s) too short, "
1196         "ignoring", input);
1197     return FALSE;
1198   }
1199
1200   /* read the fourcc */
1201   memcpy (&fourcc, data, 4);
1202   size -= 4;
1203   data += 4;
1204
1205   if (strncmp (data, "://", 3) != 0) {
1206     goto mismatch;
1207   }
1208   data += 3;
1209   size -= 3;
1210
1211   /* read the table number */
1212   if (sscanf (data, "%d", &table) != 1) {
1213     goto mismatch;
1214   }
1215   if (table < 0) {
1216     GST_WARNING_OBJECT (qtmux, "Invalid table number in classification tag (%d)"
1217         ", table numbers should be positive, ignoring tag", table);
1218     return FALSE;
1219   }
1220
1221   /* find the next / */
1222   while (size > 0 && data[0] != '/') {
1223     data += 1;
1224     size -= 1;
1225   }
1226   if (size == 0) {
1227     goto mismatch;
1228   }
1229   g_assert (data[0] == '/');
1230
1231   /* skip the '/' */
1232   data += 1;
1233   size -= 1;
1234   if (size == 0) {
1235     goto mismatch;
1236   }
1237
1238   /* read up the rest of the string */
1239   *p_content = g_strdup (data);
1240   *p_table = (guint16) table;
1241   *p_fourcc = fourcc;
1242   return TRUE;
1243
1244 mismatch:
1245   {
1246     GST_WARNING_OBJECT (qtmux, "Ignoring classification tag as "
1247         "input (%s) didn't match the expected entitycode://table/content",
1248         input);
1249     return FALSE;
1250   }
1251 }
1252
1253 static void
1254 gst_qt_mux_add_3gp_classification (GstQTMux * qtmux, const GstTagList * list,
1255     AtomUDTA * udta, const char *tag, const char *tag2, guint32 fourcc)
1256 {
1257   gchar *clsf_data = NULL;
1258   gint size = 0;
1259   guint32 entity = 0;
1260   guint16 table = 0;
1261   gchar *content = NULL;
1262   guint8 *data;
1263
1264   g_return_if_fail (strcmp (tag, GST_TAG_3GP_CLASSIFICATION) == 0);
1265
1266   if (!gst_tag_list_get_string (list, tag, &clsf_data) || !clsf_data)
1267     return;
1268
1269   GST_DEBUG_OBJECT (qtmux, "Adding tag %" GST_FOURCC_FORMAT " -> %s",
1270       GST_FOURCC_ARGS (fourcc), clsf_data);
1271
1272   /* parse the string, format is:
1273    * entityfourcc://table/content
1274    */
1275   gst_qt_mux_parse_classification_string (qtmux, clsf_data, &entity, &table,
1276       &content);
1277   g_free (clsf_data);
1278   /* +1 for the \0 */
1279   size = strlen (content) + 1;
1280
1281   /* now we have everything, build the atom
1282    * atom description is at 3GPP TS 26.244 V8.2.0 (2009-09) */
1283   data = g_malloc (4 + 2 + 2 + size);
1284   GST_WRITE_UINT32_LE (data, entity);
1285   GST_WRITE_UINT16_BE (data + 4, (guint16) table);
1286   GST_WRITE_UINT16_BE (data + 6, 0);
1287   memcpy (data + 8, content, size);
1288   g_free (content);
1289
1290   atom_udta_add_3gp_tag (udta, fourcc, data, 4 + 2 + 2 + size);
1291   g_free (data);
1292 }
1293
1294 typedef void (*GstQTMuxAddUdtaTagFunc) (GstQTMux * mux,
1295     const GstTagList * list, AtomUDTA * udta, const char *tag,
1296     const char *tag2, guint32 fourcc);
1297
1298 /*
1299  * Struct to record mappings from gstreamer tags to fourcc codes
1300  */
1301 typedef struct _GstTagToFourcc
1302 {
1303   guint32 fourcc;
1304   const gchar *gsttag;
1305   const gchar *gsttag2;
1306   const GstQTMuxAddUdtaTagFunc func;
1307 } GstTagToFourcc;
1308
1309 /* tag list tags to fourcc matching */
1310 static const GstTagToFourcc tag_matches_mp4[] = {
1311   {FOURCC__alb, GST_TAG_ALBUM, NULL, gst_qt_mux_add_mp4_tag},
1312   {FOURCC_soal, GST_TAG_ALBUM_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1313   {FOURCC__ART, GST_TAG_ARTIST, NULL, gst_qt_mux_add_mp4_tag},
1314   {FOURCC_soar, GST_TAG_ARTIST_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1315   {FOURCC_aART, GST_TAG_ALBUM_ARTIST, NULL, gst_qt_mux_add_mp4_tag},
1316   {FOURCC_soaa, GST_TAG_ALBUM_ARTIST_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1317   {FOURCC__swr, GST_TAG_APPLICATION_NAME, NULL, gst_qt_mux_add_mp4_tag},
1318   {FOURCC__cmt, GST_TAG_COMMENT, NULL, gst_qt_mux_add_mp4_tag},
1319   {FOURCC__wrt, GST_TAG_COMPOSER, NULL, gst_qt_mux_add_mp4_tag},
1320   {FOURCC_soco, GST_TAG_COMPOSER_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1321   {FOURCC_tvsh, GST_TAG_SHOW_NAME, NULL, gst_qt_mux_add_mp4_tag},
1322   {FOURCC_sosn, GST_TAG_SHOW_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1323   {FOURCC_tvsn, GST_TAG_SHOW_SEASON_NUMBER, NULL, gst_qt_mux_add_mp4_tag},
1324   {FOURCC_tves, GST_TAG_SHOW_EPISODE_NUMBER, NULL, gst_qt_mux_add_mp4_tag},
1325   {FOURCC__gen, GST_TAG_GENRE, NULL, gst_qt_mux_add_mp4_tag},
1326   {FOURCC__nam, GST_TAG_TITLE, NULL, gst_qt_mux_add_mp4_tag},
1327   {FOURCC_sonm, GST_TAG_TITLE_SORTNAME, NULL, gst_qt_mux_add_mp4_tag},
1328   {FOURCC_perf, GST_TAG_PERFORMER, NULL, gst_qt_mux_add_mp4_tag},
1329   {FOURCC__grp, GST_TAG_GROUPING, NULL, gst_qt_mux_add_mp4_tag},
1330   {FOURCC__des, GST_TAG_DESCRIPTION, NULL, gst_qt_mux_add_mp4_tag},
1331   {FOURCC__lyr, GST_TAG_LYRICS, NULL, gst_qt_mux_add_mp4_tag},
1332   {FOURCC__too, GST_TAG_ENCODER, NULL, gst_qt_mux_add_mp4_tag},
1333   {FOURCC_cprt, GST_TAG_COPYRIGHT, NULL, gst_qt_mux_add_mp4_tag},
1334   {FOURCC_keyw, GST_TAG_KEYWORDS, NULL, gst_qt_mux_add_mp4_tag},
1335   {FOURCC__day, GST_TAG_DATE, NULL, gst_qt_mux_add_mp4_date},
1336   {FOURCC_tmpo, GST_TAG_BEATS_PER_MINUTE, NULL, gst_qt_mux_add_mp4_tag},
1337   {FOURCC_trkn, GST_TAG_TRACK_NUMBER, GST_TAG_TRACK_COUNT,
1338       gst_qt_mux_add_mp4_tag},
1339   {FOURCC_disk, GST_TAG_ALBUM_VOLUME_NUMBER, GST_TAG_ALBUM_VOLUME_COUNT,
1340       gst_qt_mux_add_mp4_tag},
1341   {FOURCC_covr, GST_TAG_PREVIEW_IMAGE, NULL, gst_qt_mux_add_mp4_cover},
1342   {FOURCC_covr, GST_TAG_IMAGE, NULL, gst_qt_mux_add_mp4_cover},
1343   {0, NULL,}
1344 };
1345
1346 static const GstTagToFourcc tag_matches_3gp[] = {
1347   {FOURCC_titl, GST_TAG_TITLE, NULL, gst_qt_mux_add_3gp_str},
1348   {FOURCC_dscp, GST_TAG_DESCRIPTION, NULL, gst_qt_mux_add_3gp_str},
1349   {FOURCC_cprt, GST_TAG_COPYRIGHT, NULL, gst_qt_mux_add_3gp_str},
1350   {FOURCC_perf, GST_TAG_ARTIST, NULL, gst_qt_mux_add_3gp_str},
1351   {FOURCC_auth, GST_TAG_COMPOSER, NULL, gst_qt_mux_add_3gp_str},
1352   {FOURCC_gnre, GST_TAG_GENRE, NULL, gst_qt_mux_add_3gp_str},
1353   {FOURCC_kywd, GST_TAG_KEYWORDS, NULL, gst_qt_mux_add_3gp_keywords},
1354   {FOURCC_yrrc, GST_TAG_DATE, NULL, gst_qt_mux_add_3gp_date},
1355   {FOURCC_albm, GST_TAG_ALBUM, GST_TAG_TRACK_NUMBER, gst_qt_mux_add_3gp_str},
1356   {FOURCC_loci, GST_TAG_GEO_LOCATION_NAME, NULL, gst_qt_mux_add_3gp_location},
1357   {FOURCC_clsf, GST_TAG_3GP_CLASSIFICATION, NULL,
1358       gst_qt_mux_add_3gp_classification},
1359   {0, NULL,}
1360 };
1361
1362 /* qtdemux produces these for atoms it cannot parse */
1363 #define GST_QT_DEMUX_PRIVATE_TAG "private-qt-tag"
1364
1365 static void
1366 gst_qt_mux_add_xmp_tags (GstQTMux * qtmux, const GstTagList * list)
1367 {
1368   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
1369   GstBuffer *xmp = NULL;
1370
1371   /* adobe specs only have 'quicktime' and 'mp4',
1372    * but I guess we can extrapolate to gpp.
1373    * Keep mj2 out for now as we don't add any tags for it yet.
1374    * If you have further info about xmp on these formats, please share */
1375   if (qtmux_klass->format == GST_QT_MUX_FORMAT_MJ2)
1376     return;
1377
1378   GST_DEBUG_OBJECT (qtmux, "Adding xmp tags");
1379
1380   if (qtmux_klass->format == GST_QT_MUX_FORMAT_QT) {
1381     xmp = gst_tag_xmp_writer_tag_list_to_xmp_buffer (GST_TAG_XMP_WRITER (qtmux),
1382         list, TRUE);
1383     if (xmp)
1384       atom_udta_add_xmp_tags (&qtmux->moov->udta, xmp);
1385   } else {
1386     AtomInfo *ainfo;
1387     /* for isom/mp4, it is a top level uuid atom */
1388     xmp = gst_tag_xmp_writer_tag_list_to_xmp_buffer (GST_TAG_XMP_WRITER (qtmux),
1389         list, TRUE);
1390     if (xmp) {
1391       ainfo = build_uuid_xmp_atom (xmp);
1392       if (ainfo) {
1393         qtmux->extra_atoms = g_slist_prepend (qtmux->extra_atoms, ainfo);
1394       }
1395     }
1396   }
1397   if (xmp)
1398     gst_buffer_unref (xmp);
1399 }
1400
1401 static void
1402 gst_qt_mux_add_metadata_tags (GstQTMux * qtmux, const GstTagList * list,
1403     AtomUDTA * udta)
1404 {
1405   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
1406   guint32 fourcc;
1407   gint i;
1408   const gchar *tag, *tag2;
1409   const GstTagToFourcc *tag_matches;
1410
1411   switch (qtmux_klass->format) {
1412     case GST_QT_MUX_FORMAT_3GP:
1413       tag_matches = tag_matches_3gp;
1414       break;
1415     case GST_QT_MUX_FORMAT_MJ2:
1416       tag_matches = NULL;
1417       break;
1418     default:
1419       /* sort of iTunes style for mp4 and QT (?) */
1420       tag_matches = tag_matches_mp4;
1421       break;
1422   }
1423
1424   if (!tag_matches)
1425     return;
1426
1427   /* Clear existing tags so we don't add them over and over */
1428   atom_udta_clear_tags (udta);
1429
1430   for (i = 0; tag_matches[i].fourcc; i++) {
1431     fourcc = tag_matches[i].fourcc;
1432     tag = tag_matches[i].gsttag;
1433     tag2 = tag_matches[i].gsttag2;
1434
1435     g_assert (tag_matches[i].func);
1436     tag_matches[i].func (qtmux, list, udta, tag, tag2, fourcc);
1437   }
1438
1439   /* add unparsed blobs if present */
1440   if (gst_tag_exists (GST_QT_DEMUX_PRIVATE_TAG)) {
1441     guint num_tags;
1442
1443     num_tags = gst_tag_list_get_tag_size (list, GST_QT_DEMUX_PRIVATE_TAG);
1444     for (i = 0; i < num_tags; ++i) {
1445       GstSample *sample = NULL;
1446       GstBuffer *buf;
1447       const GstStructure *s;
1448
1449       if (!gst_tag_list_get_sample_index (list, GST_QT_DEMUX_PRIVATE_TAG, i,
1450               &sample))
1451         continue;
1452       buf = gst_sample_get_buffer (sample);
1453
1454       if (buf && (s = gst_sample_get_info (sample))) {
1455         const gchar *style = NULL;
1456         GstMapInfo map;
1457
1458         gst_buffer_map (buf, &map, GST_MAP_READ);
1459         GST_DEBUG_OBJECT (qtmux,
1460             "Found private tag %d/%d; size %" G_GSIZE_FORMAT ", info %"
1461             GST_PTR_FORMAT, i, num_tags, map.size, s);
1462         if (s && (style = gst_structure_get_string (s, "style"))) {
1463           /* try to prevent some style tag ending up into another variant
1464            * (todo: make into a list if more cases) */
1465           if ((strcmp (style, "itunes") == 0 &&
1466                   qtmux_klass->format == GST_QT_MUX_FORMAT_MP4) ||
1467               (strcmp (style, "iso") == 0 &&
1468                   qtmux_klass->format == GST_QT_MUX_FORMAT_3GP)) {
1469             GST_DEBUG_OBJECT (qtmux, "Adding private tag");
1470             atom_udta_add_blob_tag (udta, map.data, map.size);
1471           }
1472         }
1473         gst_buffer_unmap (buf, &map);
1474       }
1475       gst_sample_unref (sample);
1476     }
1477   }
1478
1479   return;
1480 }
1481
1482 /*
1483  * Gets the tagsetter iface taglist and puts the known tags
1484  * into the output stream
1485  */
1486 static void
1487 gst_qt_mux_setup_metadata (GstQTMux * qtmux)
1488 {
1489   const GstTagList *tags = NULL;
1490   GSList *walk;
1491
1492   GST_OBJECT_LOCK (qtmux);
1493   if (qtmux->tags_changed) {
1494     tags = gst_tag_setter_get_tag_list (GST_TAG_SETTER (qtmux));
1495     qtmux->tags_changed = FALSE;
1496   }
1497   GST_OBJECT_UNLOCK (qtmux);
1498
1499   GST_LOG_OBJECT (qtmux, "tags: %" GST_PTR_FORMAT, tags);
1500
1501   if (tags && !gst_tag_list_is_empty (tags)) {
1502     GstTagList *copy = gst_tag_list_copy (tags);
1503
1504     GST_DEBUG_OBJECT (qtmux, "Removing bogus tags");
1505     gst_tag_list_remove_tag (copy, GST_TAG_VIDEO_CODEC);
1506     gst_tag_list_remove_tag (copy, GST_TAG_AUDIO_CODEC);
1507     gst_tag_list_remove_tag (copy, GST_TAG_CONTAINER_FORMAT);
1508
1509     GST_DEBUG_OBJECT (qtmux, "Formatting tags");
1510     gst_qt_mux_add_metadata_tags (qtmux, copy, &qtmux->moov->udta);
1511     gst_qt_mux_add_xmp_tags (qtmux, copy);
1512     gst_tag_list_unref (copy);
1513   } else {
1514     GST_DEBUG_OBJECT (qtmux, "No new tags received");
1515   }
1516
1517   for (walk = qtmux->sinkpads; walk; walk = g_slist_next (walk)) {
1518     GstCollectData *cdata = (GstCollectData *) walk->data;
1519     GstQTPad *qpad = (GstQTPad *) cdata;
1520     GstPad *pad = qpad->collect.pad;
1521
1522     if (qpad->tags_changed && qpad->tags) {
1523       GST_DEBUG_OBJECT (pad, "Adding tags");
1524       gst_tag_list_remove_tag (qpad->tags, GST_TAG_CONTAINER_FORMAT);
1525       gst_qt_mux_add_metadata_tags (qtmux, qpad->tags, &qpad->trak->udta);
1526       qpad->tags_changed = FALSE;
1527       GST_DEBUG_OBJECT (pad, "Tags added");
1528     } else {
1529       GST_DEBUG_OBJECT (pad, "No new tags received");
1530     }
1531   }
1532 }
1533
1534 static inline GstBuffer *
1535 _gst_buffer_new_take_data (guint8 * data, guint size)
1536 {
1537   GstBuffer *buf;
1538
1539   buf = gst_buffer_new ();
1540   gst_buffer_append_memory (buf,
1541       gst_memory_new_wrapped (0, data, size, 0, size, data, g_free));
1542
1543   return buf;
1544 }
1545
1546 static GstFlowReturn
1547 gst_qt_mux_send_buffer (GstQTMux * qtmux, GstBuffer * buf, guint64 * offset,
1548     gboolean mind_fast)
1549 {
1550   GstFlowReturn res;
1551   gsize size;
1552
1553   g_return_val_if_fail (buf != NULL, GST_FLOW_ERROR);
1554
1555   size = gst_buffer_get_size (buf);
1556   GST_LOG_OBJECT (qtmux, "sending buffer size %" G_GSIZE_FORMAT, size);
1557
1558   if (mind_fast && qtmux->fast_start_file) {
1559     GstMapInfo map;
1560     gint ret;
1561
1562     GST_LOG_OBJECT (qtmux, "to temporary file");
1563     gst_buffer_map (buf, &map, GST_MAP_READ);
1564     ret = fwrite (map.data, sizeof (guint8), map.size, qtmux->fast_start_file);
1565     gst_buffer_unmap (buf, &map);
1566     gst_buffer_unref (buf);
1567     if (ret != size)
1568       goto write_error;
1569     else
1570       res = GST_FLOW_OK;
1571   } else {
1572     GST_LOG_OBJECT (qtmux, "downstream");
1573     res = gst_pad_push (qtmux->srcpad, buf);
1574   }
1575
1576   if (G_LIKELY (offset))
1577     *offset += size;
1578
1579   return res;
1580
1581   /* ERRORS */
1582 write_error:
1583   {
1584     GST_ELEMENT_ERROR (qtmux, RESOURCE, WRITE,
1585         ("Failed to write to temporary file"), GST_ERROR_SYSTEM);
1586     return GST_FLOW_ERROR;
1587   }
1588 }
1589
1590 static gboolean
1591 gst_qt_mux_seek_to_beginning (FILE * f)
1592 {
1593 #ifdef HAVE_FSEEKO
1594   if (fseeko (f, (off_t) 0, SEEK_SET) != 0)
1595     return FALSE;
1596 #elif defined (G_OS_UNIX) || defined (G_OS_WIN32)
1597   if (lseek (fileno (f), (off_t) 0, SEEK_SET) == (off_t) - 1)
1598     return FALSE;
1599 #else
1600   if (fseek (f, (long) 0, SEEK_SET) != 0)
1601     return FALSE;
1602 #endif
1603   return TRUE;
1604 }
1605
1606 static GstFlowReturn
1607 gst_qt_mux_send_buffered_data (GstQTMux * qtmux, guint64 * offset)
1608 {
1609   GstFlowReturn ret = GST_FLOW_OK;
1610   GstBuffer *buf = NULL;
1611
1612   if (fflush (qtmux->fast_start_file))
1613     goto flush_failed;
1614
1615   if (!gst_qt_mux_seek_to_beginning (qtmux->fast_start_file))
1616     goto seek_failed;
1617
1618   /* hm, this could all take a really really long time,
1619    * but there may not be another way to get moov atom first
1620    * (somehow optimize copy?) */
1621   GST_DEBUG_OBJECT (qtmux, "Sending buffered data");
1622   while (ret == GST_FLOW_OK) {
1623     const int bufsize = 4096;
1624     GstMapInfo map;
1625     gsize size;
1626
1627     buf = gst_buffer_new_and_alloc (bufsize);
1628     gst_buffer_map (buf, &map, GST_MAP_WRITE);
1629     size = fread (map.data, sizeof (guint8), bufsize, qtmux->fast_start_file);
1630     if (size == 0) {
1631       gst_buffer_unmap (buf, &map);
1632       break;
1633     }
1634     GST_LOG_OBJECT (qtmux, "Pushing buffered buffer of size %d", (gint) size);
1635     gst_buffer_unmap (buf, &map);
1636     if (size != bufsize)
1637       gst_buffer_set_size (buf, size);
1638     ret = gst_qt_mux_send_buffer (qtmux, buf, offset, FALSE);
1639     buf = NULL;
1640   }
1641   if (buf)
1642     gst_buffer_unref (buf);
1643
1644   if (ftruncate (fileno (qtmux->fast_start_file), 0))
1645     goto seek_failed;
1646   if (!gst_qt_mux_seek_to_beginning (qtmux->fast_start_file))
1647     goto seek_failed;
1648
1649   return ret;
1650
1651   /* ERRORS */
1652 flush_failed:
1653   {
1654     GST_ELEMENT_ERROR (qtmux, RESOURCE, WRITE,
1655         ("Failed to flush temporary file"), GST_ERROR_SYSTEM);
1656     ret = GST_FLOW_ERROR;
1657     goto fail;
1658   }
1659 seek_failed:
1660   {
1661     GST_ELEMENT_ERROR (qtmux, RESOURCE, SEEK,
1662         ("Failed to seek temporary file"), GST_ERROR_SYSTEM);
1663     ret = GST_FLOW_ERROR;
1664     goto fail;
1665   }
1666 fail:
1667   {
1668     /* clear descriptor so we don't remove temp file later on,
1669      * might be possible to recover */
1670     fclose (qtmux->fast_start_file);
1671     qtmux->fast_start_file = NULL;
1672     return ret;
1673   }
1674 }
1675
1676 /*
1677  * Sends the initial mdat atom fields (size fields and fourcc type),
1678  * the subsequent buffers are considered part of it's data.
1679  * As we can't predict the amount of data that we are going to place in mdat
1680  * we need to record the position of the size field in the stream so we can
1681  * seek back to it later and update when the streams have finished.
1682  */
1683 static GstFlowReturn
1684 gst_qt_mux_send_mdat_header (GstQTMux * qtmux, guint64 * off, guint64 size,
1685     gboolean extended, gboolean fsync_after)
1686 {
1687   GstBuffer *buf;
1688   GstMapInfo map;
1689
1690   GST_DEBUG_OBJECT (qtmux, "Sending mdat's atom header, "
1691       "size %" G_GUINT64_FORMAT, size);
1692
1693   /* if the qtmux state is EOS, really write the mdat, otherwise
1694    * allow size == 0 for a placeholder atom */
1695   if (qtmux->state == GST_QT_MUX_STATE_EOS || size > 0)
1696     size += 8;
1697
1698   if (extended) {
1699     gboolean large_file = (size > MDAT_LARGE_FILE_LIMIT);
1700     /* Always write 16-bytes, but put a free atom first
1701      * if the size is < 4GB. */
1702     buf = gst_buffer_new_and_alloc (16);
1703     gst_buffer_map (buf, &map, GST_MAP_WRITE);
1704
1705     if (large_file) {
1706       /* Write extended mdat header and large_size field */
1707       GST_WRITE_UINT32_BE (map.data, 1);
1708       GST_WRITE_UINT32_LE (map.data + 4, FOURCC_mdat);
1709       GST_WRITE_UINT64_BE (map.data + 8, size + 8);
1710     } else {
1711       /* Write an empty free atom, then standard 32-bit mdat */
1712       GST_WRITE_UINT32_BE (map.data, 8);
1713       GST_WRITE_UINT32_LE (map.data + 4, FOURCC_free);
1714       GST_WRITE_UINT32_BE (map.data + 8, size);
1715       GST_WRITE_UINT32_LE (map.data + 12, FOURCC_mdat);
1716     }
1717     gst_buffer_unmap (buf, &map);
1718   } else {
1719     buf = gst_buffer_new_and_alloc (8);
1720     gst_buffer_map (buf, &map, GST_MAP_WRITE);
1721
1722     /* Vanilla 32-bit mdat */
1723     GST_WRITE_UINT32_BE (map.data, size);
1724     GST_WRITE_UINT32_LE (map.data + 4, FOURCC_mdat);
1725     gst_buffer_unmap (buf, &map);
1726   }
1727
1728   GST_LOG_OBJECT (qtmux, "Pushing mdat header");
1729   if (fsync_after)
1730     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_SYNC_AFTER);
1731
1732   return gst_qt_mux_send_buffer (qtmux, buf, off, FALSE);
1733
1734 }
1735
1736 /*
1737  * We get the position of the mdat size field, seek back to it
1738  * and overwrite with the real value
1739  */
1740 static GstFlowReturn
1741 gst_qt_mux_update_mdat_size (GstQTMux * qtmux, guint64 mdat_pos,
1742     guint64 mdat_size, guint64 * offset, gboolean fsync_after)
1743 {
1744   GstSegment segment;
1745
1746   /* We must have recorded the mdat position for this to work */
1747   g_assert (mdat_pos != 0);
1748
1749   /* seek and rewrite the header */
1750   gst_segment_init (&segment, GST_FORMAT_BYTES);
1751   segment.start = mdat_pos;
1752   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
1753
1754   return gst_qt_mux_send_mdat_header (qtmux, offset, mdat_size, TRUE,
1755       fsync_after);
1756 }
1757
1758 static GstFlowReturn
1759 gst_qt_mux_send_ftyp (GstQTMux * qtmux, guint64 * off)
1760 {
1761   GstBuffer *buf;
1762   guint64 size = 0, offset = 0;
1763   guint8 *data = NULL;
1764
1765   GST_DEBUG_OBJECT (qtmux, "Sending ftyp atom");
1766
1767   if (!atom_ftyp_copy_data (qtmux->ftyp, &data, &size, &offset))
1768     goto serialize_error;
1769
1770   buf = _gst_buffer_new_take_data (data, offset);
1771
1772   GST_LOG_OBJECT (qtmux, "Pushing ftyp");
1773   return gst_qt_mux_send_buffer (qtmux, buf, off, FALSE);
1774
1775   /* ERRORS */
1776 serialize_error:
1777   {
1778     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
1779         ("Failed to serialize ftyp"));
1780     return GST_FLOW_ERROR;
1781   }
1782 }
1783
1784 static void
1785 gst_qt_mux_prepare_ftyp (GstQTMux * qtmux, AtomFTYP ** p_ftyp,
1786     GstBuffer ** p_prefix)
1787 {
1788   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
1789   guint32 major, version;
1790   GList *comp;
1791   GstBuffer *prefix = NULL;
1792   AtomFTYP *ftyp = NULL;
1793
1794   GST_DEBUG_OBJECT (qtmux, "Preparing ftyp and possible prefix atom");
1795
1796   /* init and send context and ftyp based on current property state */
1797   gst_qt_mux_map_format_to_header (qtmux_klass->format, &prefix, &major,
1798       &version, &comp, qtmux->moov, qtmux->longest_chunk,
1799       qtmux->fast_start_file != NULL);
1800   ftyp = atom_ftyp_new (qtmux->context, major, version, comp);
1801   if (comp)
1802     g_list_free (comp);
1803   if (prefix) {
1804     if (p_prefix)
1805       *p_prefix = prefix;
1806     else
1807       gst_buffer_unref (prefix);
1808   }
1809   *p_ftyp = ftyp;
1810 }
1811
1812 static GstFlowReturn
1813 gst_qt_mux_prepare_and_send_ftyp (GstQTMux * qtmux)
1814 {
1815   GstFlowReturn ret = GST_FLOW_OK;
1816   GstBuffer *prefix = NULL;
1817
1818   GST_DEBUG_OBJECT (qtmux, "Preparing to send ftyp atom");
1819
1820   /* init and send context and ftyp based on current property state */
1821   if (qtmux->ftyp) {
1822     atom_ftyp_free (qtmux->ftyp);
1823     qtmux->ftyp = NULL;
1824   }
1825   gst_qt_mux_prepare_ftyp (qtmux, &qtmux->ftyp, &prefix);
1826   if (prefix) {
1827     ret = gst_qt_mux_send_buffer (qtmux, prefix, &qtmux->header_size, FALSE);
1828     if (ret != GST_FLOW_OK)
1829       return ret;
1830   }
1831   return gst_qt_mux_send_ftyp (qtmux, &qtmux->header_size);
1832 }
1833
1834 static void
1835 gst_qt_mux_set_header_on_caps (GstQTMux * mux, GstBuffer * buf)
1836 {
1837   GstStructure *structure;
1838   GValue array = { 0 };
1839   GValue value = { 0 };
1840   GstCaps *caps, *tcaps;
1841
1842   tcaps = gst_pad_get_current_caps (mux->srcpad);
1843   caps = gst_caps_copy (tcaps);
1844   gst_caps_unref (tcaps);
1845
1846   structure = gst_caps_get_structure (caps, 0);
1847
1848   g_value_init (&array, GST_TYPE_ARRAY);
1849
1850   GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_HEADER);
1851   g_value_init (&value, GST_TYPE_BUFFER);
1852   gst_value_take_buffer (&value, gst_buffer_ref (buf));
1853   gst_value_array_append_value (&array, &value);
1854   g_value_unset (&value);
1855
1856   gst_structure_set_value (structure, "streamheader", &array);
1857   g_value_unset (&array);
1858   gst_pad_set_caps (mux->srcpad, caps);
1859   gst_caps_unref (caps);
1860 }
1861
1862 /*
1863  * Write out a free space atom. The offset is adjusted by the full
1864  * size, but a smaller buffer is sent
1865  */
1866 static GstFlowReturn
1867 gst_qt_mux_send_free_atom (GstQTMux * qtmux, guint64 * off, guint32 size,
1868     gboolean fsync_after)
1869 {
1870   Atom *node_header;
1871   GstBuffer *buf;
1872   guint8 *data = NULL;
1873   guint64 offset = 0, bsize = 0;
1874   GstFlowReturn ret;
1875
1876   GST_DEBUG_OBJECT (qtmux, "Sending free atom header of size %u", size);
1877
1878   /* We can't make a free space atom smaller than the header */
1879   if (size < 8)
1880     goto too_small;
1881
1882   node_header = g_malloc0 (sizeof (Atom));
1883   node_header->type = FOURCC_free;
1884   node_header->size = size;
1885
1886   bsize = offset = 0;
1887   if (atom_copy_data (node_header, &data, &bsize, &offset) == 0)
1888     goto serialize_error;
1889
1890   buf = _gst_buffer_new_take_data (data, offset);
1891   g_free (node_header);
1892
1893   if (fsync_after)
1894     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_SYNC_AFTER);
1895
1896   GST_LOG_OBJECT (qtmux, "Pushing free atom");
1897   ret = gst_qt_mux_send_buffer (qtmux, buf, off, FALSE);
1898
1899   if (off) {
1900     GstSegment segment;
1901
1902     *off += size - 8;
1903
1904     /* Make sure downstream position ends up at the end of this free box */
1905     gst_segment_init (&segment, GST_FORMAT_BYTES);
1906     segment.start = *off;
1907     gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
1908   }
1909
1910   return ret;
1911
1912   /* ERRORS */
1913 too_small:
1914   {
1915     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
1916         ("Not enough free reserved space"));
1917     return GST_FLOW_ERROR;
1918   }
1919 serialize_error:
1920   {
1921     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
1922         ("Failed to serialize mdat"));
1923     g_free (node_header);
1924     return GST_FLOW_ERROR;
1925   }
1926 }
1927
1928 static void
1929 gst_qt_mux_configure_moov (GstQTMux * qtmux)
1930 {
1931   gboolean fragmented = FALSE;
1932   guint32 timescale;
1933
1934   GST_OBJECT_LOCK (qtmux);
1935   timescale = qtmux->timescale;
1936   if (qtmux->mux_mode == GST_QT_MUX_MODE_FRAGMENTED ||
1937       qtmux->mux_mode == GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE)
1938     fragmented = TRUE;
1939   GST_OBJECT_UNLOCK (qtmux);
1940
1941   /* inform lower layers of our property wishes, and determine duration.
1942    * Let moov take care of this using its list of traks;
1943    * so that released pads are also included */
1944   GST_DEBUG_OBJECT (qtmux, "Updating timescale to %" G_GUINT32_FORMAT,
1945       timescale);
1946   atom_moov_update_timescale (qtmux->moov, timescale);
1947   atom_moov_set_fragmented (qtmux->moov, fragmented);
1948
1949   atom_moov_update_duration (qtmux->moov);
1950 }
1951
1952 static GstFlowReturn
1953 gst_qt_mux_send_moov (GstQTMux * qtmux, guint64 * _offset,
1954     guint64 padded_moov_size, gboolean mind_fast, gboolean fsync_after)
1955 {
1956   guint64 offset = 0, size = 0;
1957   guint8 *data;
1958   GstBuffer *buf;
1959   GstFlowReturn ret = GST_FLOW_OK;
1960   GSList *walk;
1961   guint64 current_time = atoms_get_current_qt_time ();
1962
1963   /* update modification times */
1964   qtmux->moov->mvhd.time_info.modification_time = current_time;
1965   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
1966     GstCollectData *cdata = (GstCollectData *) walk->data;
1967     GstQTPad *qtpad = (GstQTPad *) cdata;
1968
1969     qtpad->trak->mdia.mdhd.time_info.modification_time = current_time;
1970     qtpad->trak->tkhd.modification_time = current_time;
1971   }
1972
1973   /* serialize moov */
1974   offset = size = 0;
1975   data = NULL;
1976   GST_LOG_OBJECT (qtmux, "Copying movie header into buffer");
1977   if (!atom_moov_copy_data (qtmux->moov, &data, &size, &offset))
1978     goto serialize_error;
1979   qtmux->last_moov_size = offset;
1980
1981   /* Check we have enough reserved space for this and a Free atom */
1982   if (padded_moov_size > 0 && offset + 8 > padded_moov_size)
1983     goto too_small_reserved;
1984   buf = _gst_buffer_new_take_data (data, offset);
1985   GST_DEBUG_OBJECT (qtmux, "Pushing moov atoms");
1986
1987   /* If at EOS, this is the final moov, put in the streamheader
1988    * (apparently used by a flumotion util) */
1989   if (qtmux->state == GST_QT_MUX_STATE_EOS)
1990     gst_qt_mux_set_header_on_caps (qtmux, buf);
1991
1992   if (fsync_after)
1993     GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_SYNC_AFTER);
1994   ret = gst_qt_mux_send_buffer (qtmux, buf, _offset, mind_fast);
1995
1996   /* Write out a free atom if needed */
1997   if (ret == GST_FLOW_OK && offset < padded_moov_size) {
1998     GST_LOG_OBJECT (qtmux, "Writing out free atom of size %u",
1999         (guint32) (padded_moov_size - offset));
2000     ret =
2001         gst_qt_mux_send_free_atom (qtmux, _offset, padded_moov_size - offset,
2002         fsync_after);
2003   }
2004
2005   return ret;
2006 too_small_reserved:
2007   {
2008     GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
2009         ("Not enough free reserved header space"),
2010         ("Needed %" G_GUINT64_FORMAT " bytes, reserved %" G_GUINT64_FORMAT,
2011             offset, padded_moov_size));
2012     return GST_FLOW_ERROR;
2013   }
2014 serialize_error:
2015   {
2016     g_free (data);
2017     return GST_FLOW_ERROR;
2018   }
2019 }
2020
2021 /* either calculates size of extra atoms or pushes them */
2022 static GstFlowReturn
2023 gst_qt_mux_send_extra_atoms (GstQTMux * qtmux, gboolean send, guint64 * offset,
2024     gboolean mind_fast)
2025 {
2026   GSList *walk;
2027   guint64 loffset = 0, size = 0;
2028   guint8 *data;
2029   GstFlowReturn ret = GST_FLOW_OK;
2030
2031   for (walk = qtmux->extra_atoms; walk; walk = g_slist_next (walk)) {
2032     AtomInfo *ainfo = (AtomInfo *) walk->data;
2033
2034     loffset = size = 0;
2035     data = NULL;
2036     if (!ainfo->copy_data_func (ainfo->atom,
2037             send ? &data : NULL, &size, &loffset))
2038       goto serialize_error;
2039
2040     if (send) {
2041       GstBuffer *buf;
2042
2043       GST_DEBUG_OBJECT (qtmux,
2044           "Pushing extra top-level atom %" GST_FOURCC_FORMAT,
2045           GST_FOURCC_ARGS (ainfo->atom->type));
2046       buf = _gst_buffer_new_take_data (data, loffset);
2047       ret = gst_qt_mux_send_buffer (qtmux, buf, offset, FALSE);
2048       if (ret != GST_FLOW_OK)
2049         break;
2050     } else {
2051       if (offset)
2052         *offset += loffset;
2053     }
2054   }
2055
2056   return ret;
2057
2058 serialize_error:
2059   {
2060     g_free (data);
2061     return GST_FLOW_ERROR;
2062   }
2063 }
2064
2065 static gboolean
2066 gst_qt_mux_downstream_is_seekable (GstQTMux * qtmux)
2067 {
2068   gboolean seekable = FALSE;
2069   GstQuery *query = gst_query_new_seeking (GST_FORMAT_BYTES);
2070
2071   if (gst_pad_peer_query (qtmux->srcpad, query)) {
2072     gst_query_parse_seeking (query, NULL, &seekable, NULL, NULL);
2073     GST_INFO_OBJECT (qtmux, "downstream is %sseekable", seekable ? "" : "not ");
2074   } else {
2075     /* have to assume seeking is not supported if query not handled downstream */
2076     GST_WARNING_OBJECT (qtmux, "downstream did not handle seeking query");
2077     seekable = FALSE;
2078   }
2079   gst_query_unref (query);
2080
2081   return seekable;
2082 }
2083
2084 static void
2085 gst_qt_mux_prepare_moov_recovery (GstQTMux * qtmux)
2086 {
2087   GSList *walk;
2088   gboolean fail = FALSE;
2089   AtomFTYP *ftyp = NULL;
2090   GstBuffer *prefix = NULL;
2091
2092   GST_DEBUG_OBJECT (qtmux, "Opening moov recovery file: %s",
2093       qtmux->moov_recov_file_path);
2094
2095   qtmux->moov_recov_file = g_fopen (qtmux->moov_recov_file_path, "wb+");
2096   if (qtmux->moov_recov_file == NULL) {
2097     GST_WARNING_OBJECT (qtmux, "Failed to open moov recovery file in %s",
2098         qtmux->moov_recov_file_path);
2099     return;
2100   }
2101
2102   gst_qt_mux_prepare_ftyp (qtmux, &ftyp, &prefix);
2103
2104   if (!atoms_recov_write_headers (qtmux->moov_recov_file, ftyp, prefix,
2105           qtmux->moov, qtmux->timescale, g_slist_length (qtmux->sinkpads))) {
2106     GST_WARNING_OBJECT (qtmux, "Failed to write moov recovery file " "headers");
2107     goto fail;
2108   }
2109
2110   atom_ftyp_free (ftyp);
2111   if (prefix)
2112     gst_buffer_unref (prefix);
2113
2114   for (walk = qtmux->sinkpads; walk && !fail; walk = g_slist_next (walk)) {
2115     GstCollectData *cdata = (GstCollectData *) walk->data;
2116     GstQTPad *qpad = (GstQTPad *) cdata;
2117     /* write info for each stream */
2118     fail = atoms_recov_write_trak_info (qtmux->moov_recov_file, qpad->trak);
2119     if (fail) {
2120       GST_WARNING_OBJECT (qtmux, "Failed to write trak info to recovery "
2121           "file");
2122       break;
2123     }
2124   }
2125
2126   return;
2127
2128 fail:
2129   /* cleanup */
2130   fclose (qtmux->moov_recov_file);
2131   qtmux->moov_recov_file = NULL;
2132 }
2133
2134 static guint64
2135 prefill_get_block_index (GstQTMux * qtmux, GstQTPad * qpad)
2136 {
2137   switch (qpad->fourcc) {
2138     case FOURCC_apch:
2139     case FOURCC_apcn:
2140     case FOURCC_apcs:
2141     case FOURCC_apco:
2142     case FOURCC_ap4h:
2143     case FOURCC_ap4x:
2144       return qpad->sample_offset;
2145     case FOURCC_sowt:
2146     case FOURCC_twos:
2147       return gst_util_uint64_scale_ceil (qpad->sample_offset,
2148           qpad->expected_sample_duration_n,
2149           qpad->expected_sample_duration_d *
2150           atom_trak_get_timescale (qpad->trak));
2151     default:
2152       return -1;
2153   }
2154 }
2155
2156 static guint
2157 prefill_get_sample_size (GstQTMux * qtmux, GstQTPad * qpad)
2158 {
2159   switch (qpad->fourcc) {
2160     case FOURCC_apch:
2161       if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 480) {
2162         return 300000;
2163       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 576) {
2164         return 350000;
2165       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 720) {
2166         return 525000;
2167       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 1080) {
2168         return 1050000;
2169       } else {
2170         return 4150000;
2171       }
2172       break;
2173     case FOURCC_apcn:
2174       if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 480) {
2175         return 200000;
2176       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 576) {
2177         return 250000;
2178       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 720) {
2179         return 350000;
2180       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 1080) {
2181         return 700000;
2182       } else {
2183         return 2800000;
2184       }
2185       break;
2186     case FOURCC_apcs:
2187       if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 480) {
2188         return 150000;
2189       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 576) {
2190         return 200000;
2191       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 720) {
2192         return 250000;
2193       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 1080) {
2194         return 500000;
2195       } else {
2196         return 2800000;
2197       }
2198       break;
2199     case FOURCC_apco:
2200       if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 480) {
2201         return 80000;
2202       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 576) {
2203         return 100000;
2204       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 720) {
2205         return 150000;
2206       } else if (((SampleTableEntryMP4V *) qpad->trak_ste)->height <= 1080) {
2207         return 250000;
2208       } else {
2209         return 900000;
2210       }
2211       break;
2212     case FOURCC_sowt:
2213     case FOURCC_twos:{
2214       guint64 block_idx;
2215       guint64 next_sample_offset;
2216
2217       block_idx = prefill_get_block_index (qtmux, qpad);
2218       next_sample_offset =
2219           gst_util_uint64_scale (block_idx + 1,
2220           qpad->expected_sample_duration_d *
2221           atom_trak_get_timescale (qpad->trak),
2222           qpad->expected_sample_duration_n);
2223
2224       return (next_sample_offset - qpad->sample_offset) * qpad->sample_size;
2225     }
2226     case FOURCC_ap4h:
2227     case FOURCC_ap4x:
2228     default:
2229       GST_ERROR_OBJECT (qtmux, "unsupported codec for pre-filling");
2230       return -1;
2231   }
2232
2233   return -1;
2234 }
2235
2236 static GstClockTime
2237 prefill_get_next_timestamp (GstQTMux * qtmux, GstQTPad * qpad)
2238 {
2239   switch (qpad->fourcc) {
2240     case FOURCC_apch:
2241     case FOURCC_apcn:
2242     case FOURCC_apcs:
2243     case FOURCC_apco:
2244     case FOURCC_ap4h:
2245     case FOURCC_ap4x:
2246       return gst_util_uint64_scale (qpad->sample_offset + 1,
2247           qpad->expected_sample_duration_d * GST_SECOND,
2248           qpad->expected_sample_duration_n);
2249     case FOURCC_sowt:
2250     case FOURCC_twos:{
2251       guint64 block_idx;
2252       guint64 next_sample_offset;
2253
2254       block_idx = prefill_get_block_index (qtmux, qpad);
2255       next_sample_offset =
2256           gst_util_uint64_scale (block_idx + 1,
2257           qpad->expected_sample_duration_d *
2258           atom_trak_get_timescale (qpad->trak),
2259           qpad->expected_sample_duration_n);
2260
2261       return gst_util_uint64_scale (next_sample_offset, GST_SECOND,
2262           atom_trak_get_timescale (qpad->trak));
2263     }
2264     default:
2265       GST_ERROR_OBJECT (qtmux, "unsupported codec for pre-filling");
2266       return -1;
2267   }
2268
2269   return -1;
2270 }
2271
2272 static GstBuffer *
2273 prefill_raw_audio_prepare_buf_func (GstQTPad * qtpad, GstBuffer * buf,
2274     GstQTMux * qtmux)
2275 {
2276   guint64 block_idx;
2277   guint64 nsamples;
2278   GstClockTime input_timestamp;
2279   guint64 input_timestamp_distance;
2280
2281   if (buf)
2282     gst_adapter_push (qtpad->raw_audio_adapter, buf);
2283
2284   block_idx = gst_util_uint64_scale_ceil (qtpad->raw_audio_adapter_offset,
2285       qtpad->expected_sample_duration_n,
2286       qtpad->expected_sample_duration_d *
2287       atom_trak_get_timescale (qtpad->trak));
2288   nsamples =
2289       gst_util_uint64_scale (block_idx + 1,
2290       qtpad->expected_sample_duration_d * atom_trak_get_timescale (qtpad->trak),
2291       qtpad->expected_sample_duration_n) - qtpad->raw_audio_adapter_offset;
2292
2293   if ((!GST_COLLECT_PADS_STATE_IS_SET (&qtpad->collect,
2294               GST_COLLECT_PADS_STATE_EOS)
2295           && gst_adapter_available (qtpad->raw_audio_adapter) <
2296           nsamples * qtpad->sample_size)
2297       || gst_adapter_available (qtpad->raw_audio_adapter) == 0) {
2298     return NULL;
2299   }
2300
2301   input_timestamp =
2302       gst_adapter_prev_pts (qtpad->raw_audio_adapter,
2303       &input_timestamp_distance);
2304   if (input_timestamp != GST_CLOCK_TIME_NONE)
2305     input_timestamp +=
2306         gst_util_uint64_scale (input_timestamp_distance, GST_SECOND,
2307         qtpad->sample_size * atom_trak_get_timescale (qtpad->trak));
2308
2309   buf =
2310       gst_adapter_take_buffer (qtpad->raw_audio_adapter,
2311       !GST_COLLECT_PADS_STATE_IS_SET (&qtpad->collect,
2312           GST_COLLECT_PADS_STATE_EOS) ? nsamples *
2313       qtpad->sample_size : gst_adapter_available (qtpad->raw_audio_adapter));
2314   GST_BUFFER_PTS (buf) = input_timestamp;
2315   GST_BUFFER_DTS (buf) = GST_CLOCK_TIME_NONE;
2316   GST_BUFFER_DURATION (buf) = GST_CLOCK_TIME_NONE;
2317
2318   qtpad->raw_audio_adapter_offset += nsamples;
2319
2320   /* Check if we have yet another block of raw audio in the adapter */
2321   nsamples =
2322       gst_util_uint64_scale (block_idx + 2,
2323       qtpad->expected_sample_duration_d * atom_trak_get_timescale (qtpad->trak),
2324       qtpad->expected_sample_duration_n) - qtpad->raw_audio_adapter_offset;
2325   if (gst_adapter_available (qtpad->raw_audio_adapter) >=
2326       nsamples * qtpad->sample_size) {
2327     input_timestamp =
2328         gst_adapter_prev_pts (qtpad->raw_audio_adapter,
2329         &input_timestamp_distance);
2330     if (input_timestamp != GST_CLOCK_TIME_NONE)
2331       input_timestamp +=
2332           gst_util_uint64_scale (input_timestamp_distance, GST_SECOND,
2333           qtpad->sample_size * atom_trak_get_timescale (qtpad->trak));
2334     qtpad->raw_audio_adapter_pts = input_timestamp;
2335   } else {
2336     qtpad->raw_audio_adapter_pts = GST_CLOCK_TIME_NONE;
2337   }
2338
2339   return buf;
2340 }
2341
2342 static gboolean
2343 prefill_update_sample_size (GstQTMux * qtmux, GstQTPad * qpad)
2344 {
2345   switch (qpad->fourcc) {
2346     case FOURCC_apch:
2347     case FOURCC_apcn:
2348     case FOURCC_apcs:
2349     case FOURCC_apco:
2350     case FOURCC_ap4h:
2351     case FOURCC_ap4x:{
2352       guint sample_size = prefill_get_sample_size (qtmux, qpad);
2353       atom_trak_set_constant_size_samples (qpad->trak, sample_size);
2354       return TRUE;
2355     }
2356     case FOURCC_sowt:
2357     case FOURCC_twos:{
2358       GSList *walk;
2359
2360       /* Find the (first) video track and assume that we have to output
2361        * in that size */
2362       for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2363         GstCollectData *cdata = (GstCollectData *) walk->data;
2364         GstQTPad *tmp_qpad = (GstQTPad *) cdata;
2365
2366         if (tmp_qpad->trak->is_video) {
2367           qpad->expected_sample_duration_n =
2368               tmp_qpad->expected_sample_duration_n;
2369           qpad->expected_sample_duration_d =
2370               tmp_qpad->expected_sample_duration_d;
2371           break;
2372         }
2373       }
2374
2375       if (walk == NULL) {
2376         GST_INFO_OBJECT (qpad->collect.pad,
2377             "Found no video framerate, using 40ms audio buffers");
2378         qpad->expected_sample_duration_n = 25;
2379         qpad->expected_sample_duration_d = 1;
2380       }
2381
2382       /* Set a prepare_buf_func that ensures this */
2383       qpad->prepare_buf_func = prefill_raw_audio_prepare_buf_func;
2384       qpad->raw_audio_adapter = gst_adapter_new ();
2385       qpad->raw_audio_adapter_offset = 0;
2386       qpad->raw_audio_adapter_pts = GST_CLOCK_TIME_NONE;
2387
2388       return TRUE;
2389     }
2390     default:
2391       return TRUE;
2392   }
2393 }
2394
2395 static GstQTPad *
2396 find_best_pad_prefill (GstQTMux * qtmux)
2397 {
2398   GSList *walk;
2399   GstQTPad *best_pad = NULL;
2400
2401   if (qtmux->current_pad &&
2402       (qtmux->interleave_bytes != 0 || qtmux->interleave_time != 0) &&
2403       (qtmux->interleave_bytes == 0
2404           || qtmux->current_chunk_size <= qtmux->interleave_bytes)
2405       && (qtmux->interleave_time == 0
2406           || qtmux->current_chunk_duration <= qtmux->interleave_time)
2407       && qtmux->mux_mode != GST_QT_MUX_MODE_FRAGMENTED
2408       && qtmux->mux_mode != GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE) {
2409
2410     if (qtmux->current_pad->total_duration < qtmux->reserved_max_duration) {
2411       best_pad = qtmux->current_pad;
2412     }
2413   } else if (qtmux->collect->data->next) {
2414     best_pad = qtmux->current_pad = NULL;
2415   }
2416
2417   if (!best_pad) {
2418     GstClockTime best_time = GST_CLOCK_TIME_NONE;
2419
2420     for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2421       GstCollectData *cdata = (GstCollectData *) walk->data;
2422       GstQTPad *qtpad = (GstQTPad *) cdata;
2423       GstClockTime timestamp;
2424
2425       if (qtpad->total_duration >= qtmux->reserved_max_duration)
2426         continue;
2427
2428       timestamp = qtpad->total_duration;
2429
2430       if (best_pad == NULL ||
2431           !GST_CLOCK_TIME_IS_VALID (best_time) || timestamp < best_time) {
2432         best_pad = qtpad;
2433         best_time = timestamp;
2434       }
2435     }
2436   }
2437
2438   return best_pad;
2439 }
2440
2441 static gboolean
2442 gst_qt_mux_prefill_samples (GstQTMux * qtmux)
2443 {
2444   GstQTPad *qpad;
2445   GSList *walk;
2446
2447   /* Update expected sample sizes/durations as needed, this is for raw
2448    * audio where samples are actual audio samples. */
2449   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2450     GstCollectData *cdata = (GstCollectData *) walk->data;
2451     GstQTPad *qpad = (GstQTPad *) cdata;
2452
2453     if (!prefill_update_sample_size (qtmux, qpad))
2454       return FALSE;
2455   }
2456
2457   /* For the first sample check/update timecode as needed. We do that before
2458    * all actual samples as the code in gst_qt_mux_add_buffer() does it with
2459    * initial buffer directly, not with last_buf */
2460   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2461     GstCollectData *cdata = (GstCollectData *) walk->data;
2462     GstQTPad *qpad = (GstQTPad *) cdata;
2463     GstBuffer *buffer =
2464         gst_collect_pads_peek (qtmux->collect, (GstCollectData *) qpad);
2465     GstVideoTimeCodeMeta *tc_meta;
2466
2467     if (buffer && (tc_meta = gst_buffer_get_video_time_code_meta (buffer))) {
2468       GstVideoTimeCode *tc = &tc_meta->tc;
2469
2470       qpad->tc_trak = atom_trak_new (qtmux->context);
2471       atom_moov_add_trak (qtmux->moov, qpad->tc_trak);
2472
2473       qpad->trak->tref = atom_tref_new (FOURCC_tmcd);
2474       atom_tref_add_entry (qpad->trak->tref, qpad->tc_trak->tkhd.track_ID);
2475
2476       atom_trak_set_timecode_type (qpad->tc_trak, qtmux->context, tc);
2477
2478       atom_trak_add_samples (qpad->tc_trak, 1, 1, 4,
2479           qtmux->mdat_size, FALSE, 0);
2480
2481       qpad->tc_pos = qtmux->mdat_size;
2482       qpad->first_tc = gst_video_time_code_copy (tc);
2483       qpad->first_pts = GST_BUFFER_PTS (buffer);
2484
2485       qtmux->current_chunk_offset = -1;
2486       qtmux->current_chunk_size = 0;
2487       qtmux->current_chunk_duration = 0;
2488       qtmux->mdat_size += 4;
2489     }
2490     if (buffer)
2491       gst_buffer_unref (buffer);
2492   }
2493
2494   while ((qpad = find_best_pad_prefill (qtmux))) {
2495     GstClockTime timestamp, next_timestamp, duration;
2496     guint nsamples, sample_size;
2497     guint64 chunk_offset;
2498     gint64 scaled_duration;
2499     gint64 pts_offset = 0;
2500     gboolean sync = FALSE;
2501     TrakBufferEntryInfo sample_entry;
2502
2503     sample_size = prefill_get_sample_size (qtmux, qpad);
2504
2505     if (sample_size == -1) {
2506       return FALSE;
2507     }
2508
2509     if (!qpad->samples)
2510       qpad->samples = g_array_new (FALSE, FALSE, sizeof (TrakBufferEntryInfo));
2511
2512     timestamp = qpad->total_duration;
2513     next_timestamp = prefill_get_next_timestamp (qtmux, qpad);
2514     duration = next_timestamp - timestamp;
2515
2516     if (qpad->first_ts == GST_CLOCK_TIME_NONE)
2517       qpad->first_ts = timestamp;
2518     if (qpad->first_dts == GST_CLOCK_TIME_NONE)
2519       qpad->first_dts = timestamp;
2520
2521     if (qtmux->current_pad != qpad || qtmux->current_chunk_offset == -1) {
2522       qtmux->current_pad = qpad;
2523       if (qtmux->current_chunk_offset == -1)
2524         qtmux->current_chunk_offset = qtmux->mdat_size;
2525       else
2526         qtmux->current_chunk_offset += qtmux->current_chunk_size;
2527       qtmux->current_chunk_size = 0;
2528       qtmux->current_chunk_duration = 0;
2529     }
2530     if (qpad->sample_size)
2531       nsamples = sample_size / qpad->sample_size;
2532     else
2533       nsamples = 1;
2534     qpad->last_dts = timestamp;
2535     scaled_duration = gst_util_uint64_scale_round (timestamp + duration,
2536         atom_trak_get_timescale (qpad->trak),
2537         GST_SECOND) - gst_util_uint64_scale_round (timestamp,
2538         atom_trak_get_timescale (qpad->trak), GST_SECOND);
2539
2540     qtmux->current_chunk_size += sample_size;
2541     qtmux->current_chunk_duration += duration;
2542     qpad->total_bytes += sample_size;
2543
2544     chunk_offset = qtmux->current_chunk_offset;
2545
2546     /* I-frame only, no frame reordering */
2547     sync = FALSE;
2548     pts_offset = 0;
2549
2550     if (qtmux->current_chunk_duration > qtmux->longest_chunk
2551         || !GST_CLOCK_TIME_IS_VALID (qtmux->longest_chunk)) {
2552       qtmux->longest_chunk = qtmux->current_chunk_duration;
2553     }
2554
2555     sample_entry.track_id = qpad->trak->tkhd.track_ID;
2556     sample_entry.nsamples = nsamples;
2557     sample_entry.delta = scaled_duration / nsamples;
2558     sample_entry.size = sample_size / nsamples;
2559     sample_entry.chunk_offset = chunk_offset;
2560     sample_entry.pts_offset = pts_offset;
2561     sample_entry.sync = sync;
2562     sample_entry.do_pts = TRUE;
2563     g_array_append_val (qpad->samples, sample_entry);
2564     atom_trak_add_samples (qpad->trak, nsamples, scaled_duration / nsamples,
2565         sample_size / nsamples, chunk_offset, sync, pts_offset);
2566
2567     qpad->total_duration = next_timestamp;
2568     qtmux->mdat_size += sample_size;
2569     qpad->sample_offset += nsamples;
2570   }
2571
2572   return TRUE;
2573 }
2574
2575 static GstFlowReturn
2576 gst_qt_mux_start_file (GstQTMux * qtmux)
2577 {
2578   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
2579   GstFlowReturn ret = GST_FLOW_OK;
2580   GstCaps *caps;
2581   GstSegment segment;
2582   gchar s_id[32];
2583   GstClockTime reserved_max_duration;
2584   guint reserved_bytes_per_sec_per_trak;
2585   GSList *walk;
2586
2587   GST_DEBUG_OBJECT (qtmux, "starting file");
2588
2589   GST_OBJECT_LOCK (qtmux);
2590   reserved_max_duration = qtmux->reserved_max_duration;
2591   reserved_bytes_per_sec_per_trak = qtmux->reserved_bytes_per_sec_per_trak;
2592   GST_OBJECT_UNLOCK (qtmux);
2593
2594   /* stream-start (FIXME: create id based on input ids) */
2595   g_snprintf (s_id, sizeof (s_id), "qtmux-%08x", g_random_int ());
2596   gst_pad_push_event (qtmux->srcpad, gst_event_new_stream_start (s_id));
2597
2598   caps = gst_caps_copy (gst_pad_get_pad_template_caps (qtmux->srcpad));
2599   /* qtmux has structure with and without variant, remove all but the first */
2600   while (gst_caps_get_size (caps) > 1)
2601     gst_caps_remove_structure (caps, 1);
2602   gst_pad_set_caps (qtmux->srcpad, caps);
2603   gst_caps_unref (caps);
2604
2605   /* Default is 'normal' mode */
2606   qtmux->mux_mode = GST_QT_MUX_MODE_MOOV_AT_END;
2607
2608   /* Require a sensible fragment duration when muxing
2609    * using the ISML muxer */
2610   if (qtmux_klass->format == GST_QT_MUX_FORMAT_ISML &&
2611       qtmux->fragment_duration == 0)
2612     goto invalid_isml;
2613
2614   if (qtmux->fragment_duration > 0) {
2615     if (qtmux->streamable)
2616       qtmux->mux_mode = GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE;
2617     else
2618       qtmux->mux_mode = GST_QT_MUX_MODE_FRAGMENTED;
2619   } else if (qtmux->fast_start) {
2620     qtmux->mux_mode = GST_QT_MUX_MODE_FAST_START;
2621   } else if (reserved_max_duration != GST_CLOCK_TIME_NONE) {
2622     if (qtmux->reserved_prefill)
2623       qtmux->mux_mode = GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL;
2624     else
2625       qtmux->mux_mode = GST_QT_MUX_MODE_ROBUST_RECORDING;
2626   }
2627
2628   switch (qtmux->mux_mode) {
2629     case GST_QT_MUX_MODE_MOOV_AT_END:
2630     case GST_QT_MUX_MODE_ROBUST_RECORDING:
2631       /* We have to be able to seek to rewrite the mdat header, or any
2632        * moov atom we write will not be visible in the file, because an
2633        * MDAT with 0 as the size covers the rest of the file. A file
2634        * with no moov is not playable, so error out now. */
2635       if (!gst_qt_mux_downstream_is_seekable (qtmux)) {
2636         GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
2637             ("Downstream is not seekable - will not be able to create a playable file"),
2638             (NULL));
2639         return GST_FLOW_ERROR;
2640       }
2641       break;
2642     case GST_QT_MUX_MODE_FAST_START:
2643     case GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE:
2644       break;                    /* Don't need seekability, ignore */
2645     case GST_QT_MUX_MODE_FRAGMENTED:
2646       if (!gst_qt_mux_downstream_is_seekable (qtmux)) {
2647         GST_WARNING_OBJECT (qtmux, "downstream is not seekable, but "
2648             "streamable=false. Will ignore that and create streamable output "
2649             "instead");
2650         qtmux->streamable = TRUE;
2651         g_object_notify (G_OBJECT (qtmux), "streamable");
2652       }
2653       break;
2654     case GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL:
2655       if (!gst_qt_mux_downstream_is_seekable (qtmux)) {
2656         GST_WARNING_OBJECT (qtmux,
2657             "downstream is not seekable, will not be able "
2658             "to trim samples table at the end if less than reserved-duration is "
2659             "recorded");
2660       }
2661       break;
2662   }
2663
2664   /* let downstream know we think in BYTES and expect to do seeking later on */
2665   gst_segment_init (&segment, GST_FORMAT_BYTES);
2666   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2667
2668   GST_OBJECT_LOCK (qtmux);
2669
2670   if (qtmux->timescale == 0) {
2671     guint32 suggested_timescale = 0;
2672     GSList *walk;
2673
2674     /* Calculate a reasonable timescale for the moov:
2675      * If there is video, it is the biggest video track timescale or an even
2676      * multiple of it if it's smaller than 1800.
2677      * Otherwise it is 1800 */
2678     for (walk = qtmux->sinkpads; walk; walk = g_slist_next (walk)) {
2679       GstCollectData *cdata = (GstCollectData *) walk->data;
2680       GstQTPad *qpad = (GstQTPad *) cdata;
2681
2682       if (!qpad->trak)
2683         continue;
2684
2685       /* not video */
2686       if (!qpad->trak->mdia.minf.vmhd)
2687         continue;
2688
2689       suggested_timescale =
2690           MAX (qpad->trak->mdia.mdhd.time_info.timescale, suggested_timescale);
2691     }
2692
2693     if (suggested_timescale == 0)
2694       suggested_timescale = 1800;
2695
2696     while (suggested_timescale < 1800)
2697       suggested_timescale *= 2;
2698
2699     qtmux->timescale = suggested_timescale;
2700   }
2701
2702   /* initialize our moov recovery file */
2703   if (qtmux->moov_recov_file_path) {
2704     gst_qt_mux_prepare_moov_recovery (qtmux);
2705   }
2706
2707   /* Make sure the first time we update the moov, we'll
2708    * include any tagsetter tags */
2709   qtmux->tags_changed = TRUE;
2710
2711   GST_OBJECT_UNLOCK (qtmux);
2712
2713   /*
2714    * send mdat header if already needed, and mark position for later update.
2715    * We don't send ftyp now if we are on fast start mode, because we can
2716    * better fine tune using the information we gather to create the whole moov
2717    * atom.
2718    */
2719   switch (qtmux->mux_mode) {
2720     case GST_QT_MUX_MODE_MOOV_AT_END:
2721       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
2722       if (ret != GST_FLOW_OK)
2723         break;
2724
2725       /* Store this as the mdat offset for later updating
2726        * when we write the moov */
2727       qtmux->mdat_pos = qtmux->header_size;
2728       /* extended atom in case we go over 4GB while writing and need
2729        * the full 64-bit atom */
2730       ret =
2731           gst_qt_mux_send_mdat_header (qtmux, &qtmux->header_size, 0, TRUE,
2732           FALSE);
2733       break;
2734     case GST_QT_MUX_MODE_ROBUST_RECORDING:
2735       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
2736       if (ret != GST_FLOW_OK)
2737         break;
2738
2739       /* Pad ftyp out to an 8-byte boundary before starting the moov
2740        * ping pong region. It should be well less than 1 disk sector,
2741        * unless there's a bajillion compatible types listed,
2742        * but let's be sure the free atom doesn't cross a sector
2743        * boundary anyway */
2744       if (qtmux->header_size % 8) {
2745         /* Extra 8 bytes for the padding free atom header */
2746         guint padding = (guint) (16 - (qtmux->header_size % 8));
2747         GST_LOG_OBJECT (qtmux, "Rounding ftyp by %u bytes", padding);
2748         ret =
2749             gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size, padding,
2750             FALSE);
2751         if (ret != GST_FLOW_OK)
2752           return ret;
2753       }
2754
2755       /* Store this as the moov offset for later updating.
2756        * We record mdat position below */
2757       qtmux->moov_pos = qtmux->header_size;
2758
2759       /* Set up the initial 'ping' state of the ping-pong buffers */
2760       qtmux->reserved_moov_first_active = TRUE;
2761
2762       gst_qt_mux_configure_moov (qtmux);
2763       gst_qt_mux_setup_metadata (qtmux);
2764       /* Empty free atom to begin, starting on an 8-byte boundary */
2765       ret = gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size, 8, FALSE);
2766       if (ret != GST_FLOW_OK)
2767         return ret;
2768       /* Moov header, not padded yet */
2769       ret = gst_qt_mux_send_moov (qtmux, &qtmux->header_size, 0, FALSE, FALSE);
2770       if (ret != GST_FLOW_OK)
2771         return ret;
2772       /* The moov we just sent contains the 'base' size of the moov, before
2773        * we put in any time-dependent per-trak data. Use that to make
2774        * a good estimate of how much extra to reserve */
2775       /* Calculate how much space to reserve for our MOOV atom.
2776        * We actually reserve twice that, for ping-pong buffers */
2777       qtmux->base_moov_size = qtmux->last_moov_size;
2778       GST_LOG_OBJECT (qtmux, "Base moov size is %u before any indexes",
2779           qtmux->base_moov_size);
2780       qtmux->reserved_moov_size = qtmux->base_moov_size +
2781           gst_util_uint64_scale (reserved_max_duration,
2782           reserved_bytes_per_sec_per_trak *
2783           atom_moov_get_trak_count (qtmux->moov), GST_SECOND);
2784
2785       /* Need space for at least 4 atom headers. More really, but
2786        * this as an absolute minimum */
2787       if (qtmux->reserved_moov_size < 4 * 8)
2788         goto reserved_moov_too_small;
2789
2790       GST_DEBUG_OBJECT (qtmux, "reserving header area of size %u",
2791           2 * qtmux->reserved_moov_size + 16);
2792
2793       GST_OBJECT_LOCK (qtmux);
2794       qtmux->reserved_duration_remaining =
2795           gst_util_uint64_scale (qtmux->reserved_moov_size -
2796           qtmux->base_moov_size, GST_SECOND,
2797           reserved_bytes_per_sec_per_trak *
2798           atom_moov_get_trak_count (qtmux->moov));
2799       GST_OBJECT_UNLOCK (qtmux);
2800
2801       /* Now that we know how much reserved space is targetted,
2802        * output a free atom to fill the extra reserved */
2803       ret = gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size,
2804           qtmux->reserved_moov_size - qtmux->base_moov_size, FALSE);
2805       if (ret != GST_FLOW_OK)
2806         return ret;
2807
2808       /* Then a free atom containing 'pong' buffer, with an
2809        * extra 8 bytes to account for the free atom header itself */
2810       ret = gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size,
2811           qtmux->reserved_moov_size + 8, FALSE);
2812       if (ret != GST_FLOW_OK)
2813         return ret;
2814
2815       /* extra atoms go after the free/moov(s), before the mdat */
2816       ret =
2817           gst_qt_mux_send_extra_atoms (qtmux, TRUE, &qtmux->header_size, FALSE);
2818       if (ret != GST_FLOW_OK)
2819         return ret;
2820
2821       qtmux->mdat_pos = qtmux->header_size;
2822       /* extended atom in case we go over 4GB while writing and need
2823        * the full 64-bit atom */
2824       ret =
2825           gst_qt_mux_send_mdat_header (qtmux, &qtmux->header_size, 0, TRUE,
2826           FALSE);
2827       break;
2828     case GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL:
2829       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
2830       if (ret != GST_FLOW_OK)
2831         break;
2832
2833       /* Store this as the moov offset for later updating.
2834        * We record mdat position below */
2835       qtmux->moov_pos = qtmux->header_size;
2836
2837       if (!gst_qt_mux_prefill_samples (qtmux)) {
2838         GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
2839             ("Unsupported codecs or configuration for prefill mode"), (NULL));
2840
2841         return GST_FLOW_ERROR;
2842       }
2843
2844       gst_qt_mux_update_global_statistics (qtmux);
2845       gst_qt_mux_configure_moov (qtmux);
2846       gst_qt_mux_update_edit_lists (qtmux);
2847       gst_qt_mux_setup_metadata (qtmux);
2848
2849       /* Moov header with pre-filled samples */
2850       ret = gst_qt_mux_send_moov (qtmux, &qtmux->header_size, 0, FALSE, FALSE);
2851       if (ret != GST_FLOW_OK)
2852         return ret;
2853
2854       /* last_moov_size now contains the full size of the moov, moov_pos the
2855        * position. This allows us to rewrite it in the very end as needed */
2856       qtmux->reserved_moov_size =
2857           qtmux->last_moov_size + 12 * g_slist_length (qtmux->sinkpads) + 8;
2858
2859       /* Send an additional free atom at the end so we definitely have space
2860        * to rewrite the moov header at the end and remove the samples that
2861        * were not actually written */
2862       ret =
2863           gst_qt_mux_send_free_atom (qtmux, &qtmux->header_size,
2864           12 * g_slist_length (qtmux->sinkpads) + 8, FALSE);
2865       if (ret != GST_FLOW_OK)
2866         return ret;
2867
2868       /* extra atoms go after the free/moov(s), before the mdat */
2869       ret =
2870           gst_qt_mux_send_extra_atoms (qtmux, TRUE, &qtmux->header_size, FALSE);
2871       if (ret != GST_FLOW_OK)
2872         return ret;
2873
2874       qtmux->mdat_pos = qtmux->header_size;
2875
2876       /* And now send the mdat header */
2877       ret =
2878           gst_qt_mux_send_mdat_header (qtmux, &qtmux->header_size,
2879           qtmux->mdat_size, TRUE, FALSE);
2880
2881       /* chunks position is set relative to the first byte of the
2882        * MDAT atom payload. Set the overall offset into the file */
2883       atom_moov_chunks_set_offset (qtmux->moov, qtmux->header_size);
2884
2885       {
2886         GstSegment segment;
2887
2888         gst_segment_init (&segment, GST_FORMAT_BYTES);
2889         segment.start = qtmux->moov_pos;
2890         gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2891
2892         ret = gst_qt_mux_send_moov (qtmux, NULL, 0, FALSE, FALSE);
2893         if (ret != GST_FLOW_OK)
2894           return ret;
2895
2896         segment.start = qtmux->header_size;
2897         gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
2898       }
2899
2900       qtmux->current_chunk_size = 0;
2901       qtmux->current_chunk_duration = 0;
2902       qtmux->current_chunk_offset = -1;
2903       qtmux->mdat_size = 0;
2904       qtmux->current_pad = NULL;
2905       qtmux->longest_chunk = GST_CLOCK_TIME_NONE;
2906
2907       for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2908         GstCollectData *cdata = (GstCollectData *) walk->data;
2909         GstQTPad *qtpad = (GstQTPad *) cdata;
2910
2911         qtpad->total_bytes = 0;
2912         qtpad->total_duration = 0;
2913         qtpad->first_dts = qtpad->first_ts = GST_CLOCK_TIME_NONE;
2914         qtpad->last_dts = GST_CLOCK_TIME_NONE;
2915         qtpad->sample_offset = 0;
2916       }
2917
2918       break;
2919     case GST_QT_MUX_MODE_FAST_START:
2920       GST_OBJECT_LOCK (qtmux);
2921       qtmux->fast_start_file = g_fopen (qtmux->fast_start_file_path, "wb+");
2922       if (!qtmux->fast_start_file)
2923         goto open_failed;
2924       GST_OBJECT_UNLOCK (qtmux);
2925       /* send a dummy buffer for preroll */
2926       ret = gst_qt_mux_send_buffer (qtmux, gst_buffer_new (), NULL, FALSE);
2927       break;
2928     case GST_QT_MUX_MODE_FRAGMENTED:
2929     case GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE:
2930       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
2931       if (ret != GST_FLOW_OK)
2932         break;
2933       /* store the moov pos so we can update the duration later
2934        * in non-streamable mode */
2935       qtmux->moov_pos = qtmux->header_size;
2936
2937       GST_DEBUG_OBJECT (qtmux, "fragment duration %d ms, writing headers",
2938           qtmux->fragment_duration);
2939       /* also used as snapshot marker to indicate fragmented file */
2940       qtmux->fragment_sequence = 1;
2941       /* prepare moov and/or tags */
2942       gst_qt_mux_configure_moov (qtmux);
2943       gst_qt_mux_setup_metadata (qtmux);
2944       ret = gst_qt_mux_send_moov (qtmux, &qtmux->header_size, 0, FALSE, FALSE);
2945       if (ret != GST_FLOW_OK)
2946         return ret;
2947       /* extra atoms */
2948       ret =
2949           gst_qt_mux_send_extra_atoms (qtmux, TRUE, &qtmux->header_size, FALSE);
2950       if (ret != GST_FLOW_OK)
2951         break;
2952       /* prepare index if not streamable */
2953       if (qtmux->mux_mode == GST_QT_MUX_MODE_FRAGMENTED)
2954         qtmux->mfra = atom_mfra_new (qtmux->context);
2955       break;
2956   }
2957
2958   return ret;
2959   /* ERRORS */
2960 invalid_isml:
2961   {
2962     GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
2963         ("Cannot create an ISML file with 0 fragment duration"), (NULL));
2964     return GST_FLOW_ERROR;
2965   }
2966 reserved_moov_too_small:
2967   {
2968     GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
2969         ("Not enough reserved space for creating headers"), (NULL));
2970     return GST_FLOW_ERROR;
2971   }
2972 open_failed:
2973   {
2974     GST_ELEMENT_ERROR (qtmux, RESOURCE, OPEN_READ_WRITE,
2975         (("Could not open temporary file \"%s\""),
2976             qtmux->fast_start_file_path), GST_ERROR_SYSTEM);
2977     GST_OBJECT_UNLOCK (qtmux);
2978     return GST_FLOW_ERROR;
2979   }
2980 }
2981
2982 static GstFlowReturn
2983 gst_qt_mux_send_last_buffers (GstQTMux * qtmux)
2984 {
2985   GstFlowReturn ret = GST_FLOW_OK;
2986   GSList *walk;
2987
2988   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
2989     GstCollectData *cdata = (GstCollectData *) walk->data;
2990     GstQTPad *qtpad = (GstQTPad *) cdata;
2991
2992     /* avoid add_buffer complaining if not negotiated
2993      * in which case no buffers either, so skipping */
2994     if (!qtpad->fourcc) {
2995       GST_DEBUG_OBJECT (qtmux, "Pad %s has never had buffers",
2996           GST_PAD_NAME (qtpad->collect.pad));
2997       continue;
2998     }
2999
3000     /* send last buffer; also flushes possibly queued buffers/ts */
3001     GST_DEBUG_OBJECT (qtmux, "Sending the last buffer for pad %s",
3002         GST_PAD_NAME (qtpad->collect.pad));
3003     ret = gst_qt_mux_add_buffer (qtmux, qtpad, NULL);
3004     if (ret != GST_FLOW_OK) {
3005       GST_WARNING_OBJECT (qtmux, "Failed to send last buffer for %s, "
3006           "flow return: %s", GST_PAD_NAME (qtpad->collect.pad),
3007           gst_flow_get_name (ret));
3008     }
3009   }
3010
3011   return ret;
3012 }
3013
3014 static void
3015 gst_qt_mux_update_global_statistics (GstQTMux * qtmux)
3016 {
3017   GSList *walk;
3018
3019   /* for setting some subtitles fields */
3020   guint max_width = 0;
3021   guint max_height = 0;
3022
3023   qtmux->first_ts = qtmux->last_dts = GST_CLOCK_TIME_NONE;
3024
3025   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
3026     GstCollectData *cdata = (GstCollectData *) walk->data;
3027     GstQTPad *qtpad = (GstQTPad *) cdata;
3028
3029     if (!qtpad->fourcc) {
3030       GST_DEBUG_OBJECT (qtmux, "Pad %s has never had buffers",
3031           GST_PAD_NAME (qtpad->collect.pad));
3032       continue;
3033     }
3034
3035     /* having flushed above, can check for buffers now */
3036     if (GST_CLOCK_TIME_IS_VALID (qtpad->first_ts)) {
3037       /* determine max stream duration */
3038       if (!GST_CLOCK_TIME_IS_VALID (qtmux->last_dts)
3039           || qtpad->last_dts > qtmux->last_dts) {
3040         qtmux->last_dts = qtpad->last_dts;
3041       }
3042       if (!GST_CLOCK_TIME_IS_VALID (qtmux->first_ts)
3043           || qtpad->first_ts < qtmux->first_ts) {
3044         qtmux->first_ts = qtpad->first_ts;
3045       }
3046     }
3047
3048     /* subtitles need to know the video width/height,
3049      * it is stored shifted 16 bits to the left according to the
3050      * spec */
3051     max_width = MAX (max_width, (qtpad->trak->tkhd.width >> 16));
3052     max_height = MAX (max_height, (qtpad->trak->tkhd.height >> 16));
3053
3054     /* update average bitrate of streams if needed */
3055     {
3056       guint32 avgbitrate = 0;
3057       guint32 maxbitrate = qtpad->max_bitrate;
3058
3059       if (qtpad->avg_bitrate)
3060         avgbitrate = qtpad->avg_bitrate;
3061       else if (qtpad->total_duration > 0)
3062         avgbitrate = (guint32) gst_util_uint64_scale_round (qtpad->total_bytes,
3063             8 * GST_SECOND, qtpad->total_duration);
3064
3065       atom_trak_update_bitrates (qtpad->trak, avgbitrate, maxbitrate);
3066     }
3067   }
3068
3069   /* need to update values on subtitle traks now that we know the
3070    * max width and height */
3071   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
3072     GstCollectData *cdata = (GstCollectData *) walk->data;
3073     GstQTPad *qtpad = (GstQTPad *) cdata;
3074
3075     if (!qtpad->fourcc) {
3076       GST_DEBUG_OBJECT (qtmux, "Pad %s has never had buffers",
3077           GST_PAD_NAME (qtpad->collect.pad));
3078       continue;
3079     }
3080
3081     if (qtpad->fourcc == FOURCC_tx3g) {
3082       atom_trak_tx3g_update_dimension (qtpad->trak, max_width, max_height);
3083     }
3084   }
3085 }
3086
3087 /* Called after gst_qt_mux_update_global_statistics() updates the
3088  * first_ts tracking, to create/set edit lists for delayed streams */
3089 static void
3090 gst_qt_mux_update_edit_lists (GstQTMux * qtmux)
3091 {
3092   GSList *walk;
3093
3094   GST_DEBUG_OBJECT (qtmux, "Media first ts selected: %" GST_TIME_FORMAT,
3095       GST_TIME_ARGS (qtmux->first_ts));
3096   /* add/update EDTSs for late streams. configure_moov will have
3097    * set the trak durations above by summing the sample tables,
3098    * here we extend that if needing to insert an empty segment */
3099   for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
3100     GstCollectData *cdata = (GstCollectData *) walk->data;
3101     GstQTPad *qtpad = (GstQTPad *) cdata;
3102
3103     atom_trak_edts_clear (qtpad->trak);
3104
3105     if (GST_CLOCK_TIME_IS_VALID (qtpad->first_ts)) {
3106       guint32 lateness = 0;
3107       guint32 duration = qtpad->trak->tkhd.duration;
3108       gboolean has_gap;
3109
3110       has_gap = (qtpad->first_ts > (qtmux->first_ts + qtpad->dts_adjustment));
3111
3112       if (has_gap) {
3113         GstClockTime diff;
3114
3115         diff = qtpad->first_ts - (qtmux->first_ts + qtpad->dts_adjustment);
3116         lateness = gst_util_uint64_scale_round (diff,
3117             qtmux->timescale, GST_SECOND);
3118
3119         if (lateness > 0) {
3120           GST_DEBUG_OBJECT (qtmux,
3121               "Pad %s is a late stream by %" GST_TIME_FORMAT,
3122               GST_PAD_NAME (qtpad->collect.pad), GST_TIME_ARGS (diff));
3123
3124           atom_trak_set_elst_entry (qtpad->trak, 0, lateness, (guint32) - 1,
3125               (guint32) (1 * 65536.0));
3126         }
3127       }
3128
3129       /* Always write an edit list for the whole track. In general this is not
3130        * necessary except for the case of having a gap or DTS adjustment but
3131        * it allows to give the whole track's duration in the usually more
3132        * accurate media timescale
3133        */
3134       {
3135         GstClockTime ctts = 0;
3136         guint32 media_start;
3137
3138         if (qtpad->first_ts > qtpad->first_dts)
3139           ctts = qtpad->first_ts - qtpad->first_dts;
3140
3141         media_start = gst_util_uint64_scale_round (ctts,
3142             atom_trak_get_timescale (qtpad->trak), GST_SECOND);
3143
3144         /* atom_trak_set_elst_entry() has a quirk - if the edit list
3145          * is empty because there's no gap added above, this call
3146          * will not replace index 1, it will create the entry at index 0.
3147          * Luckily, that's exactly what we want here */
3148         atom_trak_set_elst_entry (qtpad->trak, 1, duration, media_start,
3149             (guint32) (1 * 65536.0));
3150       }
3151
3152       /* need to add the empty time to the trak duration */
3153       duration += lateness;
3154       qtpad->trak->tkhd.duration = duration;
3155       if (qtpad->tc_trak) {
3156         qtpad->tc_trak->tkhd.duration = duration;
3157         qtpad->tc_trak->mdia.mdhd.time_info.duration = duration;
3158       }
3159
3160       /* And possibly grow the moov duration */
3161       if (duration > qtmux->moov->mvhd.time_info.duration) {
3162         qtmux->moov->mvhd.time_info.duration = duration;
3163         qtmux->moov->mvex.mehd.fragment_duration = duration;
3164       }
3165     }
3166   }
3167 }
3168
3169 static GstFlowReturn
3170 gst_qt_mux_update_timecode (GstQTMux * qtmux, GstQTPad * qtpad)
3171 {
3172   GstSegment segment;
3173   GstBuffer *buf;
3174   GstMapInfo map;
3175   guint64 offset = qtpad->tc_pos;
3176
3177   g_assert (qtpad->tc_pos != -1);
3178
3179   gst_segment_init (&segment, GST_FORMAT_BYTES);
3180   segment.start = offset;
3181   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
3182
3183   buf = gst_buffer_new_and_alloc (4);
3184   gst_buffer_map (buf, &map, GST_MAP_WRITE);
3185
3186   GST_WRITE_UINT32_BE (map.data,
3187       gst_video_time_code_frames_since_daily_jam (qtpad->first_tc));
3188   gst_buffer_unmap (buf, &map);
3189
3190   /* Reset this value, so the timecode won't be re-rewritten */
3191   qtpad->tc_pos = -1;
3192
3193   return gst_qt_mux_send_buffer (qtmux, buf, &offset, FALSE);
3194 }
3195
3196 static GstFlowReturn
3197 gst_qt_mux_stop_file (GstQTMux * qtmux)
3198 {
3199   gboolean ret = GST_FLOW_OK;
3200   guint64 offset = 0, size = 0;
3201   gboolean large_file;
3202   GSList *walk;
3203
3204   GST_DEBUG_OBJECT (qtmux, "Updating remaining values and sending last data");
3205
3206   /* pushing last buffers for each pad */
3207   if ((ret = gst_qt_mux_send_last_buffers (qtmux)) != GST_FLOW_OK)
3208     return ret;
3209
3210   if (qtmux->mux_mode == GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE) {
3211     /* Streamable mode; no need to write duration or MFRA */
3212     GST_DEBUG_OBJECT (qtmux, "streamable file; nothing to stop");
3213     return GST_FLOW_OK;
3214   }
3215
3216   gst_qt_mux_update_global_statistics (qtmux);
3217   for (walk = qtmux->collect->data; walk; walk = walk->next) {
3218     GstQTPad *qtpad = (GstQTPad *) walk->data;
3219
3220     if (qtpad->tc_pos != -1) {
3221       /* File is being stopped and timecode hasn't been updated. Update it now
3222        * with whatever we have */
3223       ret = gst_qt_mux_update_timecode (qtmux, qtpad);
3224       if (ret != GST_FLOW_OK)
3225         return ret;
3226     }
3227   }
3228
3229   switch (qtmux->mux_mode) {
3230     case GST_QT_MUX_MODE_FRAGMENTED:{
3231       GstSegment segment;
3232       guint8 *data = NULL;
3233       GstBuffer *buf;
3234
3235       size = offset = 0;
3236       GST_DEBUG_OBJECT (qtmux, "adding mfra");
3237       if (!atom_mfra_copy_data (qtmux->mfra, &data, &size, &offset))
3238         goto serialize_error;
3239       buf = _gst_buffer_new_take_data (data, offset);
3240       ret = gst_qt_mux_send_buffer (qtmux, buf, NULL, FALSE);
3241       if (ret != GST_FLOW_OK)
3242         return ret;
3243
3244       /* only mvex duration is updated,
3245        * mvhd should be consistent with empty moov
3246        * (but TODO maybe some clients do not handle that well ?) */
3247       qtmux->moov->mvex.mehd.fragment_duration =
3248           gst_util_uint64_scale (qtmux->last_dts, qtmux->timescale, GST_SECOND);
3249       GST_DEBUG_OBJECT (qtmux, "rewriting moov with mvex duration %"
3250           GST_TIME_FORMAT, GST_TIME_ARGS (qtmux->last_dts));
3251       /* seek and rewrite the header */
3252       gst_segment_init (&segment, GST_FORMAT_BYTES);
3253       segment.start = qtmux->moov_pos;
3254       gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
3255       /* no need to seek back */
3256       return gst_qt_mux_send_moov (qtmux, NULL, 0, FALSE, FALSE);
3257     }
3258     case GST_QT_MUX_MODE_ROBUST_RECORDING:{
3259       ret = gst_qt_mux_robust_recording_rewrite_moov (qtmux);
3260       if (G_UNLIKELY (ret != GST_FLOW_OK))
3261         return ret;
3262       /* Finalise by writing the final size into the mdat. Up until now
3263        * it's been 0, which means 'rest of the file'
3264        * No need to seek back after this, we won't write any more */
3265       return gst_qt_mux_update_mdat_size (qtmux, qtmux->mdat_pos,
3266           qtmux->mdat_size, NULL, TRUE);
3267     }
3268     case GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL:{
3269       GSList *walk;
3270       guint32 next_track_id = qtmux->moov->mvhd.next_track_id;
3271
3272       for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
3273         GstCollectData *cdata = (GstCollectData *) walk->data;
3274         GstQTPad *qpad = (GstQTPad *) cdata;
3275         const TrakBufferEntryInfo *sample_entry;
3276         guint64 block_idx;
3277         AtomSTBL *stbl = &qpad->trak->mdia.minf.stbl;
3278
3279         /* Get the block index of the last sample we wrote, not of the next
3280          * sample we would write */
3281         block_idx = prefill_get_block_index (qtmux, qpad);
3282         g_assert (block_idx > 0);
3283         block_idx--;
3284
3285         sample_entry =
3286             &g_array_index (qpad->samples, TrakBufferEntryInfo, block_idx);
3287
3288         /* stts */
3289         {
3290           STTSEntry *entry;
3291           guint64 nsamples = 0;
3292           gint i, n;
3293
3294           n = atom_array_get_len (&stbl->stts.entries);
3295           for (i = 0; i < n; i++) {
3296             entry = &atom_array_index (&stbl->stts.entries, i);
3297             if (nsamples + entry->sample_count >= qpad->sample_offset) {
3298               entry->sample_count = qpad->sample_offset - nsamples;
3299               stbl->stts.entries.len = i + 1;
3300               break;
3301             }
3302             nsamples += entry->sample_count;
3303           }
3304           g_assert (i < n);
3305         }
3306
3307         /* stsz */
3308         {
3309           g_assert (stbl->stsz.entries.len == 0);
3310           stbl->stsz.table_size = qpad->sample_offset;
3311         }
3312
3313         /* stco/stsc */
3314         {
3315           gint i, n;
3316           guint64 nsamples = 0;
3317           gint chunk_index = 0;
3318
3319           n = stbl->stco64.entries.len;
3320           for (i = 0; i < n; i++) {
3321             guint64 *entry = &atom_array_index (&stbl->stco64.entries, i);
3322
3323             if (*entry == sample_entry->chunk_offset) {
3324               stbl->stco64.entries.len = i + 1;
3325               chunk_index = i + 1;
3326               break;
3327             }
3328           }
3329           g_assert (i < n);
3330           g_assert (chunk_index > 0);
3331
3332           n = stbl->stsc.entries.len;
3333           for (i = 0; i < n; i++) {
3334             STSCEntry *entry = &atom_array_index (&stbl->stsc.entries, i);
3335
3336             if (entry->first_chunk >= chunk_index)
3337               break;
3338
3339             if (i > 0) {
3340               nsamples +=
3341                   (entry->first_chunk - atom_array_index (&stbl->stsc.entries,
3342                       i -
3343                       1).first_chunk) * atom_array_index (&stbl->stsc.entries,
3344                   i - 1).samples_per_chunk;
3345             }
3346           }
3347           g_assert (i <= n);
3348
3349           if (i > 0) {
3350             STSCEntry *prev_entry =
3351                 &atom_array_index (&stbl->stsc.entries, i - 1);
3352             nsamples +=
3353                 (chunk_index -
3354                 prev_entry->first_chunk) * prev_entry->samples_per_chunk;
3355             if (qpad->sample_offset - nsamples > 0) {
3356               stbl->stsc.entries.len = i;
3357               atom_stsc_add_new_entry (&stbl->stsc, chunk_index,
3358                   qpad->sample_offset - nsamples);
3359             } else {
3360               stbl->stsc.entries.len = i;
3361               stbl->stco64.entries.len--;
3362             }
3363           } else {
3364             /* Everything in a single chunk */
3365             stbl->stsc.entries.len = 0;
3366             atom_stsc_add_new_entry (&stbl->stsc, chunk_index,
3367                 qpad->sample_offset);
3368           }
3369         }
3370
3371         {
3372           GList *walk2;
3373
3374           for (walk2 = qtmux->moov->mvex.trexs; walk2; walk2 = walk2->next) {
3375             AtomTREX *trex = walk2->data;
3376
3377             if (trex->track_ID == qpad->trak->tkhd.track_ID) {
3378               trex->track_ID = next_track_id;
3379               break;
3380             }
3381           }
3382
3383           qpad->trak->tkhd.track_ID = next_track_id++;
3384         }
3385       }
3386       qtmux->moov->mvhd.next_track_id = next_track_id;
3387
3388       gst_qt_mux_update_global_statistics (qtmux);
3389       gst_qt_mux_configure_moov (qtmux);
3390
3391       gst_qt_mux_update_edit_lists (qtmux);
3392
3393       /* Check if any gap edit lists were added. We don't have any space
3394        * reserved for this in the moov and the pre-finalized moov would have
3395        * broken A/V synchronization. Error out here now
3396        */
3397       for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
3398         GstCollectData *cdata = (GstCollectData *) walk->data;
3399         GstQTPad *qpad = (GstQTPad *) cdata;
3400
3401         if (qpad->trak->edts
3402             && g_slist_length (qpad->trak->edts->elst.entries) > 1) {
3403           GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
3404               ("Can't support gaps in prefill mode"));
3405
3406           return GST_FLOW_ERROR;
3407         }
3408       }
3409
3410       gst_qt_mux_setup_metadata (qtmux);
3411       atom_moov_chunks_set_offset (qtmux->moov, qtmux->header_size);
3412
3413       {
3414         GstSegment segment;
3415
3416         gst_segment_init (&segment, GST_FORMAT_BYTES);
3417         segment.start = qtmux->moov_pos;
3418         gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
3419
3420         ret =
3421             gst_qt_mux_send_moov (qtmux, NULL, qtmux->reserved_moov_size, FALSE,
3422             FALSE);
3423         if (ret != GST_FLOW_OK)
3424           return ret;
3425
3426         if (qtmux->reserved_moov_size > qtmux->last_moov_size) {
3427           ret =
3428               gst_qt_mux_send_free_atom (qtmux, NULL,
3429               qtmux->reserved_moov_size - qtmux->last_moov_size, TRUE);
3430         }
3431
3432         if (ret != GST_FLOW_OK)
3433           return ret;
3434       }
3435
3436       ret = gst_qt_mux_update_mdat_size (qtmux, qtmux->mdat_pos,
3437           qtmux->mdat_size, NULL, FALSE);
3438       return ret;
3439     }
3440     default:
3441       break;
3442   }
3443
3444   /* Moov-at-end or fast-start mode from here down */
3445   gst_qt_mux_configure_moov (qtmux);
3446
3447   gst_qt_mux_update_edit_lists (qtmux);
3448
3449   /* tags into file metadata */
3450   gst_qt_mux_setup_metadata (qtmux);
3451
3452   large_file = (qtmux->mdat_size > MDAT_LARGE_FILE_LIMIT);
3453
3454   switch (qtmux->mux_mode) {
3455     case GST_QT_MUX_MODE_FAST_START:{
3456       /* if faststart, update the offset of the atoms in the movie with the offset
3457        * that the movie headers before mdat will cause.
3458        * Also, send the ftyp */
3459       offset = size = 0;
3460
3461       ret = gst_qt_mux_prepare_and_send_ftyp (qtmux);
3462       if (ret != GST_FLOW_OK) {
3463         goto ftyp_error;
3464       }
3465       /* copy into NULL to obtain size */
3466       if (!atom_moov_copy_data (qtmux->moov, NULL, &size, &offset))
3467         goto serialize_error;
3468       GST_DEBUG_OBJECT (qtmux, "calculated moov atom size %" G_GUINT64_FORMAT,
3469           offset);
3470       offset += qtmux->header_size + (large_file ? 16 : 8);
3471
3472       /* sum up with the extra atoms size */
3473       ret = gst_qt_mux_send_extra_atoms (qtmux, FALSE, &offset, FALSE);
3474       if (ret != GST_FLOW_OK)
3475         return ret;
3476       break;
3477     }
3478     default:
3479       offset = qtmux->header_size;
3480       break;
3481   }
3482
3483   /* Now that we know the size of moov + extra atoms, we can adjust
3484    * the chunk offsets stored into the moov */
3485   atom_moov_chunks_set_offset (qtmux->moov, offset);
3486
3487   /* write out moov and extra atoms */
3488   /* note: as of this point, we no longer care about tracking written data size,
3489    * since there is no more use for it anyway */
3490   ret = gst_qt_mux_send_moov (qtmux, NULL, 0, FALSE, FALSE);
3491   if (ret != GST_FLOW_OK)
3492     return ret;
3493
3494   /* extra atoms */
3495   ret = gst_qt_mux_send_extra_atoms (qtmux, TRUE, NULL, FALSE);
3496   if (ret != GST_FLOW_OK)
3497     return ret;
3498
3499   switch (qtmux->mux_mode) {
3500     case GST_QT_MUX_MODE_MOOV_AT_END:
3501     {
3502       /* mdat needs update iff not using faststart */
3503       GST_DEBUG_OBJECT (qtmux, "updating mdat size");
3504       ret = gst_qt_mux_update_mdat_size (qtmux, qtmux->mdat_pos,
3505           qtmux->mdat_size, NULL, FALSE);
3506       /* note; no seeking back to the end of file is done,
3507        * since we no longer write anything anyway */
3508       break;
3509     }
3510     case GST_QT_MUX_MODE_FAST_START:
3511     {
3512       /* send mdat atom and move buffered data into it */
3513       /* mdat_size = accumulated (buffered data) */
3514       ret = gst_qt_mux_send_mdat_header (qtmux, NULL, qtmux->mdat_size,
3515           large_file, FALSE);
3516       if (ret != GST_FLOW_OK)
3517         return ret;
3518       ret = gst_qt_mux_send_buffered_data (qtmux, NULL);
3519       if (ret != GST_FLOW_OK)
3520         return ret;
3521       break;
3522     }
3523     default:
3524       g_assert_not_reached ();
3525   }
3526
3527   return ret;
3528
3529   /* ERRORS */
3530 serialize_error:
3531   {
3532     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
3533         ("Failed to serialize moov"));
3534     return GST_FLOW_ERROR;
3535   }
3536 ftyp_error:
3537   {
3538     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL), ("Failed to send ftyp"));
3539     return GST_FLOW_ERROR;
3540   }
3541 }
3542
3543 static GstFlowReturn
3544 gst_qt_mux_pad_fragment_add_buffer (GstQTMux * qtmux, GstQTPad * pad,
3545     GstBuffer * buf, gboolean force, guint32 nsamples, gint64 dts,
3546     guint32 delta, guint32 size, gboolean sync, gint64 pts_offset)
3547 {
3548   GstFlowReturn ret = GST_FLOW_OK;
3549
3550   /* setup if needed */
3551   if (G_UNLIKELY (!pad->traf || force))
3552     goto init;
3553
3554 flush:
3555   /* flush pad fragment if threshold reached,
3556    * or at new keyframe if we should be minding those in the first place */
3557   if (G_UNLIKELY (force || (sync && pad->sync) ||
3558           pad->fragment_duration < (gint64) delta)) {
3559     AtomMOOF *moof;
3560     guint64 size = 0, offset = 0;
3561     guint8 *data = NULL;
3562     GstBuffer *buffer;
3563     guint i, total_size;
3564
3565     /* now we know where moof ends up, update offset in tfra */
3566     if (pad->tfra)
3567       atom_tfra_update_offset (pad->tfra, qtmux->header_size);
3568
3569     moof = atom_moof_new (qtmux->context, qtmux->fragment_sequence);
3570     /* takes ownership */
3571     atom_moof_add_traf (moof, pad->traf);
3572     pad->traf = NULL;
3573     atom_moof_copy_data (moof, &data, &size, &offset);
3574     buffer = _gst_buffer_new_take_data (data, offset);
3575     GST_LOG_OBJECT (qtmux, "writing moof size %" G_GSIZE_FORMAT,
3576         gst_buffer_get_size (buffer));
3577     ret = gst_qt_mux_send_buffer (qtmux, buffer, &qtmux->header_size, FALSE);
3578
3579     /* and actual data */
3580     total_size = 0;
3581     for (i = 0; i < atom_array_get_len (&pad->fragment_buffers); i++) {
3582       total_size +=
3583           gst_buffer_get_size (atom_array_index (&pad->fragment_buffers, i));
3584     }
3585
3586     GST_LOG_OBJECT (qtmux, "writing %d buffers, total_size %d",
3587         atom_array_get_len (&pad->fragment_buffers), total_size);
3588     if (ret == GST_FLOW_OK)
3589       ret = gst_qt_mux_send_mdat_header (qtmux, &qtmux->header_size, total_size,
3590           FALSE, FALSE);
3591     for (i = 0; i < atom_array_get_len (&pad->fragment_buffers); i++) {
3592       if (G_LIKELY (ret == GST_FLOW_OK))
3593         ret = gst_qt_mux_send_buffer (qtmux,
3594             atom_array_index (&pad->fragment_buffers, i), &qtmux->header_size,
3595             FALSE);
3596       else
3597         gst_buffer_unref (atom_array_index (&pad->fragment_buffers, i));
3598     }
3599
3600     atom_array_clear (&pad->fragment_buffers);
3601     atom_moof_free (moof);
3602     qtmux->fragment_sequence++;
3603     force = FALSE;
3604   }
3605
3606 init:
3607   if (G_UNLIKELY (!pad->traf)) {
3608     GST_LOG_OBJECT (qtmux, "setting up new fragment");
3609     pad->traf = atom_traf_new (qtmux->context, atom_trak_get_id (pad->trak));
3610     atom_array_init (&pad->fragment_buffers, 512);
3611     pad->fragment_duration = gst_util_uint64_scale (qtmux->fragment_duration,
3612         atom_trak_get_timescale (pad->trak), 1000);
3613
3614     if (G_UNLIKELY (qtmux->mfra && !pad->tfra)) {
3615       pad->tfra = atom_tfra_new (qtmux->context, atom_trak_get_id (pad->trak));
3616       atom_mfra_add_tfra (qtmux->mfra, pad->tfra);
3617     }
3618     atom_traf_set_base_decode_time (pad->traf, dts);
3619   }
3620
3621   /* add buffer and metadata */
3622   atom_traf_add_samples (pad->traf, delta, size, sync, pts_offset,
3623       pad->sync && sync);
3624   atom_array_append (&pad->fragment_buffers, buf, 256);
3625   pad->fragment_duration -= delta;
3626
3627   if (pad->tfra) {
3628     guint32 sn = atom_traf_get_sample_num (pad->traf);
3629
3630     if ((sync && pad->sync) || (sn == 1 && !pad->sync))
3631       atom_tfra_add_entry (pad->tfra, dts, sn);
3632   }
3633
3634   if (G_UNLIKELY (force))
3635     goto flush;
3636
3637   return ret;
3638 }
3639
3640 /* Here's the clever bit of robust recording: Updating the moov
3641  * header is done using a ping-pong scheme inside 2 blocks of size
3642  * 'reserved_moov_size' at the start of the file, in such a way that the
3643  * file on-disk is always valid if interrupted.
3644  * Inside the reserved space, we have 2 pairs of free + moov atoms
3645  * (in that order), free-A + moov-A @ offset 0 and free-B + moov-B at
3646  * at offset "reserved_moov_size".
3647  *
3648  * 1. Free-A has 0 size payload, moov-A immediately after is
3649  *    active/current, and is padded with an internal Free atom to
3650  *    end at reserved_space/2. Free-B is at reserved_space/2, sized
3651  *    to cover the remaining free space (including moov-B).
3652  * 2. We write moov-B (which is invisible inside free-B), and pad it to
3653  *    end at the end of free space. Then, we update free-A to size
3654  *    reserved_space/2 + sizeof(free-B), which hides moov-A and the
3655  *    free-B header, and makes moov-B active.
3656  * 3. Rewrite moov-A inside free-A, with padding out to free-B.
3657  *    Change the size of free-A to make moov-A active again.
3658  * 4. Rinse and repeat.
3659  *
3660  */
3661 static GstFlowReturn
3662 gst_qt_mux_robust_recording_rewrite_moov (GstQTMux * qtmux)
3663 {
3664   GstSegment segment;
3665   GstFlowReturn ret;
3666   guint64 freeA_offset;
3667   guint32 new_freeA_size;
3668   guint64 new_moov_offset;
3669
3670   /* Update moov info, then seek and rewrite the MOOV atom */
3671   gst_qt_mux_update_global_statistics (qtmux);
3672   gst_qt_mux_configure_moov (qtmux);
3673
3674   gst_qt_mux_update_edit_lists (qtmux);
3675
3676   /* tags into file metadata */
3677   gst_qt_mux_setup_metadata (qtmux);
3678
3679   /* chunks position is set relative to the first byte of the
3680    * MDAT atom payload. Set the overall offset into the file */
3681   atom_moov_chunks_set_offset (qtmux->moov, qtmux->header_size);
3682
3683   /* Calculate which moov to rewrite. qtmux->moov_pos points to
3684    * the start of the free-A header */
3685   freeA_offset = qtmux->moov_pos;
3686   if (qtmux->reserved_moov_first_active) {
3687     GST_DEBUG_OBJECT (qtmux, "Updating pong moov header");
3688     /* After this, freeA will include itself, moovA, plus the freeB
3689      * header */
3690     new_freeA_size = qtmux->reserved_moov_size + 16;
3691   } else {
3692     GST_DEBUG_OBJECT (qtmux, "Updating ping moov header");
3693     new_freeA_size = 8;
3694   }
3695   /* the moov we update is after free-A, calculate its offset */
3696   new_moov_offset = freeA_offset + new_freeA_size;
3697
3698   /* Swap ping-pong cadence marker */
3699   qtmux->reserved_moov_first_active = !qtmux->reserved_moov_first_active;
3700
3701   /* seek and rewrite the MOOV atom */
3702   gst_segment_init (&segment, GST_FORMAT_BYTES);
3703   segment.start = new_moov_offset;
3704   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
3705
3706   ret =
3707       gst_qt_mux_send_moov (qtmux, NULL, qtmux->reserved_moov_size, FALSE,
3708       TRUE);
3709   if (ret != GST_FLOW_OK)
3710     return ret;
3711
3712   /* Update the estimated recording space remaining, based on amount used so
3713    * far and duration muxed so far */
3714   if (qtmux->last_moov_size > qtmux->base_moov_size && qtmux->last_dts > 0) {
3715     GstClockTime remain;
3716     GstClockTime time_muxed = qtmux->last_dts;
3717
3718     remain =
3719         gst_util_uint64_scale (qtmux->reserved_moov_size -
3720         qtmux->last_moov_size, time_muxed,
3721         qtmux->last_moov_size - qtmux->base_moov_size);
3722     /* Always under-estimate slightly, so users
3723      * have time to stop muxing before we run out */
3724     if (remain < GST_SECOND / 2)
3725       remain = 0;
3726     else
3727       remain -= GST_SECOND / 2;
3728
3729     GST_INFO_OBJECT (qtmux,
3730         "Reserved %u header bytes. Used %u in %" GST_TIME_FORMAT
3731         ". Remaining now %u or approx %" G_GUINT64_FORMAT " ns\n",
3732         qtmux->reserved_moov_size, qtmux->last_moov_size,
3733         GST_TIME_ARGS (qtmux->last_dts),
3734         qtmux->reserved_moov_size - qtmux->last_moov_size, remain);
3735
3736     GST_OBJECT_LOCK (qtmux);
3737     qtmux->reserved_duration_remaining = remain;
3738     qtmux->muxed_since_last_update = 0;
3739     GST_DEBUG_OBJECT (qtmux, "reserved remaining duration now %"
3740         G_GUINT64_FORMAT, qtmux->reserved_duration_remaining);
3741     GST_OBJECT_UNLOCK (qtmux);
3742   }
3743
3744
3745   /* Now update the moov-A size. Don't pass offset, since we don't need
3746    * send_free_atom() to seek for us - all our callers seek back to
3747    * where they need after this, or they don't need it */
3748   gst_segment_init (&segment, GST_FORMAT_BYTES);
3749   segment.start = freeA_offset;
3750   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
3751
3752   ret = gst_qt_mux_send_free_atom (qtmux, NULL, new_freeA_size, TRUE);
3753
3754   return ret;
3755 }
3756
3757 static GstFlowReturn
3758 gst_qt_mux_robust_recording_update (GstQTMux * qtmux, GstClockTime position)
3759 {
3760   GstSegment segment;
3761   GstFlowReturn flow_ret;
3762
3763   guint64 mdat_offset = qtmux->mdat_pos + 16 + qtmux->mdat_size;
3764
3765   GST_OBJECT_LOCK (qtmux);
3766   if (qtmux->reserved_moov_update_period == GST_CLOCK_TIME_NONE) {
3767     GST_OBJECT_UNLOCK (qtmux);
3768     return GST_FLOW_OK;
3769   }
3770
3771   /* Update if position is > the threshold or there's been no update yet */
3772   if (qtmux->last_moov_update != GST_CLOCK_TIME_NONE &&
3773       (position <= qtmux->last_moov_update ||
3774           (position - qtmux->last_moov_update) <
3775           qtmux->reserved_moov_update_period)) {
3776     /* Update the offset of how much we've muxed, so the
3777      * report of remaining space keeps counting down */
3778     if (position > qtmux->last_moov_update &&
3779         position - qtmux->last_moov_update > qtmux->muxed_since_last_update) {
3780       GST_LOG_OBJECT (qtmux,
3781           "Muxed time %" G_GUINT64_FORMAT " since last moov update",
3782           qtmux->muxed_since_last_update);
3783       qtmux->muxed_since_last_update = position - qtmux->last_moov_update;
3784     }
3785     GST_OBJECT_UNLOCK (qtmux);
3786     return GST_FLOW_OK;         /* No update needed yet */
3787   }
3788
3789   qtmux->last_moov_update = position;
3790   GST_OBJECT_UNLOCK (qtmux);
3791
3792   GST_DEBUG_OBJECT (qtmux, "Update moov atom, position %" GST_TIME_FORMAT
3793       " mdat starts @ %" G_GUINT64_FORMAT " we were a %" G_GUINT64_FORMAT,
3794       GST_TIME_ARGS (position), qtmux->mdat_pos, mdat_offset);
3795
3796   flow_ret = gst_qt_mux_robust_recording_rewrite_moov (qtmux);
3797   if (G_UNLIKELY (flow_ret != GST_FLOW_OK))
3798     return flow_ret;
3799
3800   /* Seek back to previous position */
3801   gst_segment_init (&segment, GST_FORMAT_BYTES);
3802   segment.start = mdat_offset;
3803   gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
3804
3805   return flow_ret;
3806 }
3807
3808 static GstFlowReturn
3809 gst_qt_mux_register_and_push_sample (GstQTMux * qtmux, GstQTPad * pad,
3810     GstBuffer * buffer, gboolean is_last_buffer, guint nsamples,
3811     gint64 last_dts, gint64 scaled_duration, guint sample_size,
3812     guint64 chunk_offset, gboolean sync, gboolean do_pts, gint64 pts_offset)
3813 {
3814   GstFlowReturn ret = GST_FLOW_OK;
3815
3816   /* note that a new chunk is started each time (not fancy but works) */
3817   if (qtmux->moov_recov_file) {
3818     if (!atoms_recov_write_trak_samples (qtmux->moov_recov_file, pad->trak,
3819             nsamples, (gint32) scaled_duration, sample_size, chunk_offset, sync,
3820             do_pts, pts_offset)) {
3821       GST_WARNING_OBJECT (qtmux, "Failed to write sample information to "
3822           "recovery file, disabling recovery");
3823       fclose (qtmux->moov_recov_file);
3824       qtmux->moov_recov_file = NULL;
3825     }
3826   }
3827
3828   switch (qtmux->mux_mode) {
3829     case GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL:{
3830       const TrakBufferEntryInfo *sample_entry;
3831       guint64 block_idx = prefill_get_block_index (qtmux, pad);
3832
3833       if (block_idx >= pad->samples->len) {
3834         GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
3835             ("Unexpected sample %" G_GUINT64_FORMAT ", expected up to %u",
3836                 block_idx, pad->samples->len));
3837         gst_buffer_unref (buffer);
3838         return GST_FLOW_ERROR;
3839       }
3840
3841       /* Check if all values are as expected */
3842       sample_entry =
3843           &g_array_index (pad->samples, TrakBufferEntryInfo, block_idx);
3844
3845       /* Allow +/- 1 difference for the scaled_duration to allow
3846        * for some rounding errors
3847        */
3848       if (sample_entry->nsamples != nsamples
3849           || ABSDIFF (sample_entry->delta, scaled_duration) > 1
3850           || sample_entry->size != sample_size
3851           || sample_entry->chunk_offset != chunk_offset
3852           || sample_entry->pts_offset != pts_offset
3853           || sample_entry->sync != sync) {
3854         GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
3855             ("Unexpected values in sample %" G_GUINT64_FORMAT,
3856                 pad->sample_offset + 1));
3857         gst_buffer_unref (buffer);
3858         return GST_FLOW_ERROR;
3859       }
3860
3861       ret = gst_qt_mux_send_buffer (qtmux, buffer, &qtmux->mdat_size, TRUE);
3862       break;
3863     }
3864     case GST_QT_MUX_MODE_MOOV_AT_END:
3865     case GST_QT_MUX_MODE_FAST_START:
3866     case GST_QT_MUX_MODE_ROBUST_RECORDING:
3867       atom_trak_add_samples (pad->trak, nsamples, (gint32) scaled_duration,
3868           sample_size, chunk_offset, sync, pts_offset);
3869       ret = gst_qt_mux_send_buffer (qtmux, buffer, &qtmux->mdat_size, TRUE);
3870       /* Check if it's time to re-write the headers in robust-recording mode */
3871       if (ret == GST_FLOW_OK
3872           && qtmux->mux_mode == GST_QT_MUX_MODE_ROBUST_RECORDING)
3873         ret = gst_qt_mux_robust_recording_update (qtmux, pad->total_duration);
3874       break;
3875     case GST_QT_MUX_MODE_FRAGMENTED:
3876     case GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE:
3877       /* ensure that always sync samples are marked as such */
3878       ret = gst_qt_mux_pad_fragment_add_buffer (qtmux, pad, buffer,
3879           is_last_buffer, nsamples, last_dts, (gint32) scaled_duration,
3880           sample_size, !pad->sync || sync, pts_offset);
3881       break;
3882   }
3883
3884   return ret;
3885 }
3886
3887 static GstFlowReturn
3888 gst_qt_mux_check_and_update_timecode (GstQTMux * qtmux, GstQTPad * pad,
3889     GstBuffer * buf, GstFlowReturn ret)
3890 {
3891   GstVideoTimeCodeMeta *tc_meta;
3892   GstVideoTimeCode *tc;
3893   GstBuffer *tc_buf;
3894   gsize szret;
3895   guint32 frames_since_daily_jam;
3896
3897   if (buf == NULL || (pad->tc_trak != NULL && pad->tc_pos == -1))
3898     return ret;
3899
3900   tc_meta = gst_buffer_get_video_time_code_meta (buf);
3901   if (!tc_meta)
3902     return ret;
3903
3904   tc = &tc_meta->tc;
3905
3906   /* This means we never got a timecode before */
3907   if (pad->first_tc == NULL) {
3908 #ifndef GST_DISABLE_GST_DEBUG
3909     gchar *tc_str = gst_video_time_code_to_string (tc);
3910     GST_DEBUG_OBJECT (qtmux, "Found first timecode %s", tc_str);
3911     g_free (tc_str);
3912 #endif
3913     g_assert (pad->tc_trak == NULL);
3914     pad->first_tc = gst_video_time_code_copy (tc);
3915     /* If frames are out of order, the frame we're currently getting might
3916      * not be the first one. Just write a 0 timecode for now and wait
3917      * until we receive a timecode that's lower than the current one */
3918     if (pad->is_out_of_order) {
3919       pad->first_pts = GST_BUFFER_PTS (buf);
3920       frames_since_daily_jam = 0;
3921       /* Position to rewrite */
3922       pad->tc_pos = qtmux->mdat_size;
3923     } else {
3924       frames_since_daily_jam =
3925           gst_video_time_code_frames_since_daily_jam (pad->first_tc);
3926       frames_since_daily_jam = GUINT32_TO_BE (frames_since_daily_jam);
3927     }
3928     /* Write the timecode trak now */
3929     pad->tc_trak = atom_trak_new (qtmux->context);
3930     atom_moov_add_trak (qtmux->moov, pad->tc_trak);
3931
3932     pad->trak->tref = atom_tref_new (FOURCC_tmcd);
3933     atom_tref_add_entry (pad->trak->tref, pad->tc_trak->tkhd.track_ID);
3934
3935     atom_trak_set_timecode_type (pad->tc_trak, qtmux->context, pad->first_tc);
3936
3937     tc_buf = gst_buffer_new_allocate (NULL, 4, NULL);
3938     szret = gst_buffer_fill (tc_buf, 0, &frames_since_daily_jam, 4);
3939     g_assert (szret == 4);
3940
3941     atom_trak_add_samples (pad->tc_trak, 1, 1, 4, qtmux->mdat_size, FALSE, 0);
3942     ret = gst_qt_mux_send_buffer (qtmux, tc_buf, &qtmux->mdat_size, TRUE);
3943
3944     /* Need to reset the current chunk (of the previous pad) here because
3945      * some other data was written now above, and the pad has to start a
3946      * new chunk now */
3947     qtmux->current_chunk_offset = -1;
3948     qtmux->current_chunk_size = 0;
3949     qtmux->current_chunk_duration = 0;
3950   } else if (qtmux->mux_mode == GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL) {
3951     frames_since_daily_jam =
3952         gst_video_time_code_frames_since_daily_jam (pad->first_tc);
3953     frames_since_daily_jam = GUINT32_TO_BE (frames_since_daily_jam);
3954
3955     tc_buf = gst_buffer_new_allocate (NULL, 4, NULL);
3956     szret = gst_buffer_fill (tc_buf, 0, &frames_since_daily_jam, 4);
3957     g_assert (szret == 4);
3958
3959     ret = gst_qt_mux_send_buffer (qtmux, tc_buf, &qtmux->mdat_size, TRUE);
3960     pad->tc_pos = -1;
3961
3962     qtmux->current_chunk_offset = -1;
3963     qtmux->current_chunk_size = 0;
3964     qtmux->current_chunk_duration = 0;
3965   } else if (pad->is_out_of_order) {
3966     /* Check for a lower timecode than the one stored */
3967     g_assert (pad->tc_trak != NULL);
3968     if (GST_BUFFER_DTS (buf) <= pad->first_pts) {
3969       if (gst_video_time_code_compare (tc, pad->first_tc) == -1) {
3970         gst_video_time_code_free (pad->first_tc);
3971         pad->first_tc = gst_video_time_code_copy (tc);
3972       }
3973     } else {
3974       guint64 bk_size = qtmux->mdat_size;
3975       GstSegment segment;
3976       /* If this frame's DTS is after the first PTS received, it means
3977        * we've already received the first frame to be presented. Otherwise
3978        * the decoder would need to go back in time */
3979       gst_qt_mux_update_timecode (qtmux, pad);
3980
3981       /* Reset writing position */
3982       gst_segment_init (&segment, GST_FORMAT_BYTES);
3983       segment.start = bk_size;
3984       gst_pad_push_event (qtmux->srcpad, gst_event_new_segment (&segment));
3985     }
3986   }
3987
3988   return ret;
3989 }
3990
3991 /*
3992  * Here we push the buffer and update the tables in the track atoms
3993  */
3994 static GstFlowReturn
3995 gst_qt_mux_add_buffer (GstQTMux * qtmux, GstQTPad * pad, GstBuffer * buf)
3996 {
3997   GstBuffer *last_buf = NULL;
3998   GstClockTime duration;
3999   guint nsamples, sample_size;
4000   guint64 chunk_offset;
4001   gint64 last_dts, scaled_duration;
4002   gint64 pts_offset = 0;
4003   gboolean sync = FALSE;
4004   GstFlowReturn ret = GST_FLOW_OK;
4005   guint buffer_size;
4006
4007   if (!pad->fourcc)
4008     goto not_negotiated;
4009
4010   /* if this pad has a prepare function, call it */
4011   if (pad->prepare_buf_func != NULL) {
4012     GstBuffer *new_buf;
4013
4014     new_buf = pad->prepare_buf_func (pad, buf, qtmux);
4015     if (buf && !new_buf)
4016       return GST_FLOW_OK;
4017     buf = new_buf;
4018   }
4019
4020   ret = gst_qt_mux_check_and_update_timecode (qtmux, pad, buf, ret);
4021   if (ret != GST_FLOW_OK) {
4022     if (buf)
4023       gst_buffer_unref (buf);
4024     return ret;
4025   }
4026
4027   last_buf = pad->last_buf;
4028   pad->last_buf = buf;
4029
4030   if (last_buf == NULL) {
4031 #ifndef GST_DISABLE_GST_DEBUG
4032     if (buf == NULL) {
4033       GST_DEBUG_OBJECT (qtmux, "Pad %s has no previous buffer stored and "
4034           "received NULL buffer, doing nothing",
4035           GST_PAD_NAME (pad->collect.pad));
4036     } else {
4037       GST_LOG_OBJECT (qtmux,
4038           "Pad %s has no previous buffer stored, storing now",
4039           GST_PAD_NAME (pad->collect.pad));
4040     }
4041 #endif
4042     goto exit;
4043   }
4044
4045   if (!GST_BUFFER_PTS_IS_VALID (last_buf))
4046     goto no_pts;
4047
4048   /* if this is the first buffer, store the timestamp */
4049   if (G_UNLIKELY (pad->first_ts == GST_CLOCK_TIME_NONE)) {
4050     if (GST_BUFFER_PTS_IS_VALID (last_buf)) {
4051       pad->first_ts = GST_BUFFER_PTS (last_buf);
4052     } else if (GST_BUFFER_DTS_IS_VALID (last_buf)) {
4053       pad->first_ts = GST_BUFFER_DTS (last_buf);
4054     }
4055
4056     if (GST_BUFFER_DTS_IS_VALID (last_buf)) {
4057       pad->first_dts = pad->last_dts = GST_BUFFER_DTS (last_buf);
4058     } else if (GST_BUFFER_PTS_IS_VALID (last_buf)) {
4059       pad->first_dts = pad->last_dts = GST_BUFFER_PTS (last_buf);
4060     }
4061
4062     if (GST_CLOCK_TIME_IS_VALID (pad->first_ts)) {
4063       GST_DEBUG ("setting first_ts to %" G_GUINT64_FORMAT, pad->first_ts);
4064     } else {
4065       GST_WARNING_OBJECT (qtmux, "First buffer for pad %s has no timestamp, "
4066           "using 0 as first timestamp", GST_PAD_NAME (pad->collect.pad));
4067       pad->first_ts = pad->first_dts = 0;
4068     }
4069     GST_DEBUG_OBJECT (qtmux, "Stored first timestamp for pad %s %"
4070         GST_TIME_FORMAT, GST_PAD_NAME (pad->collect.pad),
4071         GST_TIME_ARGS (pad->first_ts));
4072   }
4073
4074   if (buf && GST_CLOCK_TIME_IS_VALID (GST_BUFFER_DTS (buf)) &&
4075       GST_CLOCK_TIME_IS_VALID (GST_BUFFER_DTS (last_buf)) &&
4076       GST_BUFFER_DTS (buf) < GST_BUFFER_DTS (last_buf)) {
4077     GST_ERROR ("decreasing DTS value %" GST_TIME_FORMAT " < %" GST_TIME_FORMAT,
4078         GST_TIME_ARGS (GST_BUFFER_DTS (buf)),
4079         GST_TIME_ARGS (GST_BUFFER_DTS (last_buf)));
4080     pad->last_buf = buf = gst_buffer_make_writable (buf);
4081     GST_BUFFER_DTS (buf) = GST_BUFFER_DTS (last_buf);
4082   }
4083
4084   buffer_size = gst_buffer_get_size (last_buf);
4085
4086   if (qtmux->mux_mode == GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL) {
4087     guint required_buffer_size = prefill_get_sample_size (qtmux, pad);
4088     guint fill_size = required_buffer_size - buffer_size;
4089     GstMemory *mem;
4090     GstMapInfo map;
4091
4092     if (required_buffer_size < buffer_size) {
4093       GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
4094           ("Sample size %u bigger than expected maximum %u", buffer_size,
4095               required_buffer_size));
4096       goto bail;
4097     }
4098
4099     if (fill_size > 0) {
4100       GST_DEBUG_OBJECT (qtmux,
4101           "Padding buffer by %u bytes to reach required %u bytes", fill_size,
4102           required_buffer_size);
4103       mem = gst_allocator_alloc (NULL, fill_size, NULL);
4104       gst_memory_map (mem, &map, GST_MAP_WRITE);
4105       memset (map.data, 0, map.size);
4106       gst_memory_unmap (mem, &map);
4107       last_buf = gst_buffer_make_writable (last_buf);
4108       gst_buffer_append_memory (last_buf, mem);
4109       buffer_size = required_buffer_size;
4110     }
4111   }
4112
4113   /* duration actually means time delta between samples, so we calculate
4114    * the duration based on the difference in DTS or PTS, falling back
4115    * to DURATION if the other two don't exist, such as with the last
4116    * sample before EOS. Or use 0 if nothing else is available */
4117   if (GST_BUFFER_DURATION_IS_VALID (last_buf))
4118     duration = GST_BUFFER_DURATION (last_buf);
4119   else
4120     duration = 0;
4121   if (!pad->sparse) {
4122     if (buf && GST_BUFFER_DTS_IS_VALID (buf)
4123         && GST_BUFFER_DTS_IS_VALID (last_buf))
4124       duration = GST_BUFFER_DTS (buf) - GST_BUFFER_DTS (last_buf);
4125     else if (buf && GST_BUFFER_PTS_IS_VALID (buf)
4126         && GST_BUFFER_PTS_IS_VALID (last_buf))
4127       duration = GST_BUFFER_PTS (buf) - GST_BUFFER_PTS (last_buf);
4128   }
4129
4130   if (qtmux->current_pad != pad || qtmux->current_chunk_offset == -1) {
4131     GST_DEBUG_OBJECT (qtmux,
4132         "Switching to next chunk for pad %s:%s: offset %" G_GUINT64_FORMAT
4133         ", size %" G_GUINT64_FORMAT ", duration %" GST_TIME_FORMAT,
4134         GST_DEBUG_PAD_NAME (pad->collect.pad), qtmux->current_chunk_offset,
4135         qtmux->current_chunk_size,
4136         GST_TIME_ARGS (qtmux->current_chunk_duration));
4137     qtmux->current_pad = pad;
4138     if (qtmux->current_chunk_offset == -1)
4139       qtmux->current_chunk_offset = qtmux->mdat_size;
4140     else
4141       qtmux->current_chunk_offset += qtmux->current_chunk_size;
4142     qtmux->current_chunk_size = 0;
4143     qtmux->current_chunk_duration = 0;
4144   }
4145
4146   last_dts = gst_util_uint64_scale_round (pad->last_dts,
4147       atom_trak_get_timescale (pad->trak), GST_SECOND);
4148
4149   /* fragments only deal with 1 buffer == 1 chunk (== 1 sample) */
4150   if (pad->sample_size && !qtmux->fragment_sequence) {
4151     GstClockTime expected_timestamp;
4152
4153     /* Constant size packets: usually raw audio (with many samples per
4154        buffer (= chunk)), but can also be fixed-packet-size codecs like ADPCM
4155      */
4156     sample_size = pad->sample_size;
4157     if (buffer_size % sample_size != 0)
4158       goto fragmented_sample;
4159
4160     /* note: qt raw audio storage warps it implicitly into a timewise
4161      * perfect stream, discarding buffer times.
4162      * If the difference between the current PTS and the expected one
4163      * becomes too big, we error out: there was a gap and we have no way to
4164      * represent that, causing A/V sync to be off */
4165     expected_timestamp =
4166         gst_util_uint64_scale (pad->sample_offset, GST_SECOND,
4167         atom_trak_get_timescale (pad->trak)) + pad->first_ts;
4168     if (ABSDIFF (GST_BUFFER_DTS_OR_PTS (last_buf),
4169             expected_timestamp) > qtmux->max_raw_audio_drift)
4170       goto raw_audio_timestamp_drift;
4171
4172     if (GST_BUFFER_DURATION (last_buf) != GST_CLOCK_TIME_NONE) {
4173       nsamples = gst_util_uint64_scale_round (GST_BUFFER_DURATION (last_buf),
4174           atom_trak_get_timescale (pad->trak), GST_SECOND);
4175       duration = GST_BUFFER_DURATION (last_buf);
4176     } else {
4177       nsamples = buffer_size / sample_size;
4178       duration =
4179           gst_util_uint64_scale_round (nsamples, GST_SECOND,
4180           atom_trak_get_timescale (pad->trak));
4181     }
4182
4183     /* timescale = samplerate */
4184     scaled_duration = 1;
4185     pad->last_dts =
4186         pad->first_dts + gst_util_uint64_scale_round (pad->sample_offset +
4187         nsamples, GST_SECOND, atom_trak_get_timescale (pad->trak));
4188   } else {
4189     nsamples = 1;
4190     sample_size = buffer_size;
4191     if ((buf && GST_BUFFER_DTS_IS_VALID (buf))
4192         || GST_BUFFER_DTS_IS_VALID (last_buf)) {
4193       gint64 scaled_dts;
4194       if (buf && GST_BUFFER_DTS_IS_VALID (buf)) {
4195         pad->last_dts = GST_BUFFER_DTS (buf);
4196       } else {
4197         pad->last_dts = GST_BUFFER_DTS (last_buf) + duration;
4198       }
4199       if ((gint64) (pad->last_dts) < 0) {
4200         scaled_dts = -gst_util_uint64_scale_round (-pad->last_dts,
4201             atom_trak_get_timescale (pad->trak), GST_SECOND);
4202       } else {
4203         scaled_dts = gst_util_uint64_scale_round (pad->last_dts,
4204             atom_trak_get_timescale (pad->trak), GST_SECOND);
4205       }
4206       scaled_duration = scaled_dts - last_dts;
4207       last_dts = scaled_dts;
4208     } else {
4209       /* first convert intended timestamp (in GstClockTime resolution) to
4210        * trak timescale, then derive delta;
4211        * this ensures sums of (scale)delta add up to converted timestamp,
4212        * which only deviates at most 1/scale from timestamp itself */
4213       scaled_duration = gst_util_uint64_scale_round (pad->last_dts + duration,
4214           atom_trak_get_timescale (pad->trak), GST_SECOND) - last_dts;
4215       pad->last_dts += duration;
4216     }
4217   }
4218
4219   /* for computing the avg bitrate */
4220   pad->total_bytes += buffer_size;
4221   pad->total_duration += duration;
4222   qtmux->current_chunk_size += buffer_size;
4223   qtmux->current_chunk_duration += duration;
4224
4225   chunk_offset = qtmux->current_chunk_offset;
4226
4227   GST_LOG_OBJECT (qtmux,
4228       "Pad (%s) dts updated to %" GST_TIME_FORMAT,
4229       GST_PAD_NAME (pad->collect.pad), GST_TIME_ARGS (pad->last_dts));
4230   GST_LOG_OBJECT (qtmux,
4231       "Adding %d samples to track, duration: %" G_GUINT64_FORMAT
4232       " size: %" G_GUINT32_FORMAT " chunk offset: %" G_GUINT64_FORMAT,
4233       nsamples, scaled_duration, sample_size, chunk_offset);
4234
4235   /* might be a sync sample */
4236   if (pad->sync &&
4237       !GST_BUFFER_FLAG_IS_SET (last_buf, GST_BUFFER_FLAG_DELTA_UNIT)) {
4238     GST_LOG_OBJECT (qtmux, "Adding new sync sample entry for track of pad %s",
4239         GST_PAD_NAME (pad->collect.pad));
4240     sync = TRUE;
4241   }
4242
4243   if (GST_BUFFER_DTS_IS_VALID (last_buf)) {
4244     last_dts = gst_util_uint64_scale_round (GST_BUFFER_DTS (last_buf),
4245         atom_trak_get_timescale (pad->trak), GST_SECOND);
4246     pts_offset =
4247         (gint64) (gst_util_uint64_scale_round (GST_BUFFER_PTS (last_buf),
4248             atom_trak_get_timescale (pad->trak), GST_SECOND) - last_dts);
4249   } else {
4250     pts_offset = 0;
4251     last_dts = gst_util_uint64_scale_round (GST_BUFFER_PTS (last_buf),
4252         atom_trak_get_timescale (pad->trak), GST_SECOND);
4253   }
4254   GST_DEBUG ("dts: %" GST_TIME_FORMAT " pts: %" GST_TIME_FORMAT
4255       " timebase_dts: %d pts_offset: %d",
4256       GST_TIME_ARGS (GST_BUFFER_DTS (last_buf)),
4257       GST_TIME_ARGS (GST_BUFFER_PTS (last_buf)),
4258       (int) (last_dts), (int) (pts_offset));
4259
4260   if (GST_CLOCK_TIME_IS_VALID (duration)
4261       && (qtmux->current_chunk_duration > qtmux->longest_chunk
4262           || !GST_CLOCK_TIME_IS_VALID (qtmux->longest_chunk))) {
4263     GST_DEBUG_OBJECT (qtmux,
4264         "New longest chunk found: %" GST_TIME_FORMAT ", pad %s",
4265         GST_TIME_ARGS (qtmux->current_chunk_duration),
4266         GST_PAD_NAME (pad->collect.pad));
4267     qtmux->longest_chunk = qtmux->current_chunk_duration;
4268   }
4269
4270   if (qtmux->mux_mode == GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL) {
4271     const TrakBufferEntryInfo *sample_entry;
4272     guint64 block_idx = prefill_get_block_index (qtmux, pad);
4273
4274     if (block_idx >= pad->samples->len) {
4275       GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
4276           ("Unexpected sample %" G_GUINT64_FORMAT ", expected up to %u",
4277               block_idx, pad->samples->len));
4278       goto bail;
4279     }
4280
4281     /* Check if all values are as expected */
4282     sample_entry =
4283         &g_array_index (pad->samples, TrakBufferEntryInfo, block_idx);
4284
4285     if (chunk_offset < sample_entry->chunk_offset) {
4286       guint fill_size = sample_entry->chunk_offset - chunk_offset;
4287       GstBuffer *fill_buf;
4288
4289       fill_buf = gst_buffer_new_allocate (NULL, fill_size, NULL);
4290       gst_buffer_memset (fill_buf, 0, 0, fill_size);
4291
4292       ret = gst_qt_mux_send_buffer (qtmux, fill_buf, &qtmux->mdat_size, TRUE);
4293       if (ret != GST_FLOW_OK)
4294         goto bail;
4295       qtmux->current_chunk_offset = chunk_offset = sample_entry->chunk_offset;
4296       qtmux->current_chunk_size = buffer_size;
4297       qtmux->current_chunk_duration = duration;
4298     } else if (chunk_offset != sample_entry->chunk_offset) {
4299       GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
4300           ("Unexpected chunk offset %" G_GUINT64_FORMAT ", expected up to %"
4301               G_GUINT64_FORMAT, chunk_offset, sample_entry->chunk_offset));
4302       goto bail;
4303     }
4304   }
4305
4306   /* now we go and register this buffer/sample all over */
4307   ret = gst_qt_mux_register_and_push_sample (qtmux, pad, last_buf,
4308       buf == NULL, nsamples, last_dts, scaled_duration, sample_size,
4309       chunk_offset, sync, TRUE, pts_offset);
4310   pad->sample_offset += nsamples;
4311
4312   /* if this is sparse and we have a next buffer, check if there is any gap
4313    * between them to insert an empty sample */
4314   if (pad->sparse && buf) {
4315     if (pad->create_empty_buffer) {
4316       GstBuffer *empty_buf;
4317       gint64 empty_duration =
4318           GST_BUFFER_PTS (buf) - (GST_BUFFER_PTS (last_buf) + duration);
4319       gint64 empty_duration_scaled;
4320
4321       empty_buf = pad->create_empty_buffer (pad, empty_duration);
4322
4323       empty_duration_scaled = gst_util_uint64_scale_round (empty_duration,
4324           atom_trak_get_timescale (pad->trak), GST_SECOND);
4325
4326       pad->total_bytes += gst_buffer_get_size (empty_buf);
4327       pad->total_duration += duration;
4328
4329       ret =
4330           gst_qt_mux_register_and_push_sample (qtmux, pad, empty_buf, FALSE, 1,
4331           last_dts + scaled_duration, empty_duration_scaled,
4332           gst_buffer_get_size (empty_buf), chunk_offset, sync, TRUE, 0);
4333     } else {
4334       /* our only case currently is tx3g subtitles, so there is no reason to fill this yet */
4335       g_assert_not_reached ();
4336       GST_WARNING_OBJECT (qtmux,
4337           "no empty buffer creation function found for pad %s",
4338           GST_PAD_NAME (pad->collect.pad));
4339     }
4340   }
4341
4342 exit:
4343
4344   return ret;
4345
4346   /* ERRORS */
4347 bail:
4348   {
4349     gst_buffer_unref (last_buf);
4350     return GST_FLOW_ERROR;
4351   }
4352 fragmented_sample:
4353   {
4354     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
4355         ("Audio buffer contains fragmented sample."));
4356     goto bail;
4357   }
4358 raw_audio_timestamp_drift:
4359   {
4360     /* TODO: Could in theory be implemented with edit lists */
4361     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL),
4362         ("Audio stream timestamps are drifting (got %" GST_TIME_FORMAT
4363             ", expected %" GST_TIME_FORMAT "). This is not supported yet!",
4364             GST_TIME_ARGS (GST_BUFFER_DTS_OR_PTS (last_buf)),
4365             GST_TIME_ARGS (gst_util_uint64_scale (pad->sample_offset,
4366                     GST_SECOND,
4367                     atom_trak_get_timescale (pad->trak)) + pad->first_ts)));
4368     goto bail;
4369   }
4370 no_pts:
4371   {
4372     GST_ELEMENT_ERROR (qtmux, STREAM, MUX, (NULL), ("Buffer has no PTS."));
4373     goto bail;
4374   }
4375 not_negotiated:
4376   {
4377     GST_ELEMENT_ERROR (qtmux, CORE, NEGOTIATION, (NULL),
4378         ("format wasn't negotiated before buffer flow on pad %s",
4379             GST_PAD_NAME (pad->collect.pad)));
4380     if (buf)
4381       gst_buffer_unref (buf);
4382     return GST_FLOW_NOT_NEGOTIATED;
4383   }
4384 }
4385
4386 /*
4387  * DTS running time can be negative. There is no way to represent that in
4388  * MP4 however, thus we need to offset DTS so that it starts from 0.
4389  */
4390 static void
4391 gst_qt_pad_adjust_buffer_dts (GstQTMux * qtmux, GstQTPad * pad,
4392     GstCollectData * cdata, GstBuffer ** buf)
4393 {
4394   GstClockTime pts;
4395   gint64 dts;
4396
4397   pts = GST_BUFFER_PTS (*buf);
4398   dts = GST_COLLECT_PADS_DTS (cdata);
4399
4400   GST_LOG_OBJECT (qtmux, "selected pad %s with PTS %" GST_TIME_FORMAT
4401       " and DTS %" GST_STIME_FORMAT, GST_PAD_NAME (cdata->pad),
4402       GST_TIME_ARGS (pts), GST_STIME_ARGS (dts));
4403
4404   if (!GST_CLOCK_TIME_IS_VALID (pad->dts_adjustment)) {
4405     if (GST_CLOCK_STIME_IS_VALID (dts) && dts < 0)
4406       pad->dts_adjustment = -dts;
4407     else
4408       pad->dts_adjustment = 0;
4409   }
4410
4411   if (pad->dts_adjustment > 0) {
4412     *buf = gst_buffer_make_writable (*buf);
4413
4414     dts += pad->dts_adjustment;
4415
4416     if (GST_CLOCK_TIME_IS_VALID (pts))
4417       pts += pad->dts_adjustment;
4418
4419     if (GST_CLOCK_STIME_IS_VALID (dts) && dts < 0) {
4420       GST_WARNING_OBJECT (pad, "Decreasing DTS.");
4421       dts = 0;
4422     }
4423
4424     if (pts < dts) {
4425       GST_WARNING_OBJECT (pad, "DTS is bigger then PTS");
4426       pts = dts;
4427     }
4428
4429     GST_BUFFER_PTS (*buf) = pts;
4430     GST_BUFFER_DTS (*buf) = dts;
4431
4432     GST_LOG_OBJECT (qtmux, "time adjusted to PTS %" GST_TIME_FORMAT
4433         " and DTS %" GST_TIME_FORMAT, GST_TIME_ARGS (pts), GST_TIME_ARGS (dts));
4434   }
4435 }
4436
4437 static GstQTPad *
4438 find_best_pad (GstQTMux * qtmux, GstCollectPads * pads)
4439 {
4440   GSList *walk;
4441   GstQTPad *best_pad = NULL;
4442
4443   if (qtmux->mux_mode == GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL) {
4444     guint64 smallest_offset = G_MAXUINT64;
4445     guint64 chunk_offset = 0;
4446
4447     for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
4448       GstCollectData *cdata = (GstCollectData *) walk->data;
4449       GstQTPad *qtpad = (GstQTPad *) cdata;
4450       const TrakBufferEntryInfo *sample_entry;
4451       guint64 block_idx, current_block_idx;
4452       guint64 chunk_offset_offset = 0;
4453       GstBuffer *tmp_buf =
4454           gst_collect_pads_peek (pads, (GstCollectData *) qtpad);
4455
4456       /* Check for EOS pads and just skip them */
4457       if (!tmp_buf && !qtpad->last_buf && (!qtpad->raw_audio_adapter
4458               || gst_adapter_available (qtpad->raw_audio_adapter) == 0))
4459         continue;
4460       if (tmp_buf)
4461         gst_buffer_unref (tmp_buf);
4462
4463       /* Find the exact offset where the next sample of this track is supposed
4464        * to be written at */
4465       block_idx = current_block_idx = prefill_get_block_index (qtmux, qtpad);
4466       sample_entry =
4467           &g_array_index (qtpad->samples, TrakBufferEntryInfo, block_idx);
4468       while (block_idx > 0) {
4469         const TrakBufferEntryInfo *tmp =
4470             &g_array_index (qtpad->samples, TrakBufferEntryInfo, block_idx - 1);
4471
4472         if (tmp->chunk_offset != sample_entry->chunk_offset)
4473           break;
4474         chunk_offset_offset += tmp->size * tmp->nsamples;
4475         block_idx--;
4476       }
4477
4478       /* Except for the previously selected pad being EOS we always have
4479        *  qtmux->current_chunk_offset + qtmux->current_chunk_size
4480        *    ==
4481        *  sample_entry->chunk_offset + chunk_offset_offset
4482        * for the best pad. Instead of checking that, we just return the
4483        * pad that has the smallest offset for the next to-be-written sample.
4484        */
4485       if (sample_entry->chunk_offset + chunk_offset_offset < smallest_offset) {
4486         smallest_offset = sample_entry->chunk_offset + chunk_offset_offset;
4487         best_pad = qtpad;
4488         chunk_offset = sample_entry->chunk_offset;
4489       }
4490     }
4491
4492     if (chunk_offset != qtmux->current_chunk_offset) {
4493       qtmux->current_pad = NULL;
4494     }
4495
4496     return best_pad;
4497   }
4498
4499   if (qtmux->current_pad && (qtmux->interleave_bytes != 0
4500           || qtmux->interleave_time != 0) && (qtmux->interleave_bytes == 0
4501           || qtmux->current_chunk_size <= qtmux->interleave_bytes)
4502       && (qtmux->interleave_time == 0
4503           || qtmux->current_chunk_duration <= qtmux->interleave_time)
4504       && qtmux->mux_mode != GST_QT_MUX_MODE_FRAGMENTED
4505       && qtmux->mux_mode != GST_QT_MUX_MODE_FRAGMENTED_STREAMABLE) {
4506     GstBuffer *tmp_buf =
4507         gst_collect_pads_peek (pads, (GstCollectData *) qtmux->current_pad);
4508
4509     if (tmp_buf || qtmux->current_pad->last_buf) {
4510       best_pad = qtmux->current_pad;
4511       if (tmp_buf)
4512         gst_buffer_unref (tmp_buf);
4513       GST_DEBUG_OBJECT (qtmux, "Reusing pad %s:%s",
4514           GST_DEBUG_PAD_NAME (best_pad->collect.pad));
4515     }
4516   } else if (qtmux->collect->data->next) {
4517     /* Only switch pads if we have more than one, otherwise
4518      * we can just put everything into a single chunk and save
4519      * a few bytes of offsets
4520      */
4521     if (qtmux->current_pad)
4522       GST_DEBUG_OBJECT (qtmux, "Switching from pad %s:%s",
4523           GST_DEBUG_PAD_NAME (qtmux->current_pad->collect.pad));
4524     best_pad = qtmux->current_pad = NULL;
4525   }
4526
4527   if (!best_pad) {
4528     GstClockTime best_time = GST_CLOCK_TIME_NONE;
4529
4530     for (walk = qtmux->collect->data; walk; walk = g_slist_next (walk)) {
4531       GstCollectData *cdata = (GstCollectData *) walk->data;
4532       GstQTPad *qtpad = (GstQTPad *) cdata;
4533       GstBuffer *tmp_buf;
4534       GstClockTime timestamp;
4535
4536       tmp_buf = gst_collect_pads_peek (pads, cdata);
4537       if (!tmp_buf) {
4538         /* This one is newly EOS now, finish it for real */
4539         if (qtpad->last_buf) {
4540           timestamp = GST_BUFFER_DTS_OR_PTS (qtpad->last_buf);
4541         } else {
4542           continue;
4543         }
4544       } else {
4545         if (qtpad->last_buf)
4546           timestamp = GST_BUFFER_DTS_OR_PTS (qtpad->last_buf);
4547         else
4548           timestamp = GST_BUFFER_DTS_OR_PTS (tmp_buf);
4549       }
4550
4551       if (best_pad == NULL ||
4552           !GST_CLOCK_TIME_IS_VALID (best_time) || timestamp < best_time) {
4553         best_pad = qtpad;
4554         best_time = timestamp;
4555       }
4556
4557       if (tmp_buf)
4558         gst_buffer_unref (tmp_buf);
4559     }
4560
4561     if (best_pad) {
4562       GST_DEBUG_OBJECT (qtmux, "Choosing pad %s:%s",
4563           GST_DEBUG_PAD_NAME (best_pad->collect.pad));
4564     } else {
4565       GST_DEBUG_OBJECT (qtmux, "No best pad: EOS");
4566     }
4567   }
4568
4569   return best_pad;
4570 }
4571
4572 static GstFlowReturn
4573 gst_qt_mux_collected (GstCollectPads * pads, gpointer user_data)
4574 {
4575   GstFlowReturn ret = GST_FLOW_OK;
4576   GstQTMux *qtmux = GST_QT_MUX_CAST (user_data);
4577   GstQTPad *best_pad = NULL;
4578
4579   if (G_UNLIKELY (qtmux->state == GST_QT_MUX_STATE_STARTED)) {
4580     if ((ret = gst_qt_mux_start_file (qtmux)) != GST_FLOW_OK)
4581       return ret;
4582
4583     qtmux->state = GST_QT_MUX_STATE_DATA;
4584   }
4585
4586   if (G_UNLIKELY (qtmux->state == GST_QT_MUX_STATE_EOS))
4587     return GST_FLOW_EOS;
4588
4589   best_pad = find_best_pad (qtmux, pads);
4590
4591   /* clipping already converted to running time */
4592   if (best_pad != NULL) {
4593     GstBuffer *buf = NULL;
4594
4595     if (qtmux->mux_mode != GST_QT_MUX_MODE_ROBUST_RECORDING_PREFILL ||
4596         best_pad->raw_audio_adapter == NULL ||
4597         best_pad->raw_audio_adapter_pts == GST_CLOCK_TIME_NONE)
4598       buf = gst_collect_pads_pop (pads, (GstCollectData *) best_pad);
4599
4600     g_assert (buf || best_pad->last_buf || (best_pad->raw_audio_adapter
4601             && gst_adapter_available (best_pad->raw_audio_adapter) > 0));
4602
4603     if (buf)
4604       gst_qt_pad_adjust_buffer_dts (qtmux, best_pad,
4605           (GstCollectData *) best_pad, &buf);
4606
4607     ret = gst_qt_mux_add_buffer (qtmux, best_pad, buf);
4608   } else {
4609     qtmux->state = GST_QT_MUX_STATE_EOS;
4610     ret = gst_qt_mux_stop_file (qtmux);
4611     if (ret == GST_FLOW_OK) {
4612       GST_DEBUG_OBJECT (qtmux, "Pushing eos");
4613       gst_pad_push_event (qtmux->srcpad, gst_event_new_eos ());
4614       ret = GST_FLOW_EOS;
4615     } else {
4616       GST_WARNING_OBJECT (qtmux, "Failed to stop file: %s",
4617           gst_flow_get_name (ret));
4618     }
4619   }
4620
4621   return ret;
4622 }
4623
4624 static gboolean
4625 check_field (GQuark field_id, const GValue * value, gpointer user_data)
4626 {
4627   GstStructure *structure = (GstStructure *) user_data;
4628   const GValue *other = gst_structure_id_get_value (structure, field_id);
4629   if (other == NULL)
4630     return FALSE;
4631   return gst_value_compare (value, other) == GST_VALUE_EQUAL;
4632 }
4633
4634 static gboolean
4635 gst_qtmux_caps_is_subset_full (GstQTMux * qtmux, GstCaps * subset,
4636     GstCaps * superset)
4637 {
4638   GstStructure *sub_s = gst_caps_get_structure (subset, 0);
4639   GstStructure *sup_s = gst_caps_get_structure (superset, 0);
4640
4641   return gst_structure_foreach (sub_s, check_field, sup_s);
4642 }
4643
4644 static gboolean
4645 gst_qt_mux_audio_sink_set_caps (GstQTPad * qtpad, GstCaps * caps)
4646 {
4647   GstPad *pad = qtpad->collect.pad;
4648   GstQTMux *qtmux = GST_QT_MUX_CAST (gst_pad_get_parent (pad));
4649   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
4650   GstStructure *structure;
4651   const gchar *mimetype;
4652   gint rate, channels;
4653   const GValue *value = NULL;
4654   const GstBuffer *codec_data = NULL;
4655   GstQTMuxFormat format;
4656   AudioSampleEntry entry = { 0, };
4657   AtomInfo *ext_atom = NULL;
4658   gint constant_size = 0;
4659   const gchar *stream_format;
4660
4661   /* does not go well to renegotiate stream mid-way, unless
4662    * the old caps are a subset of the new one (this means upstream
4663    * added more info to the caps, as both should be 'fixed' caps) */
4664   if (qtpad->fourcc) {
4665     GstCaps *current_caps;
4666
4667     current_caps = gst_pad_get_current_caps (pad);
4668     g_assert (caps != NULL);
4669
4670     if (!gst_qtmux_caps_is_subset_full (qtmux, current_caps, caps)) {
4671       gst_caps_unref (current_caps);
4672       goto refuse_renegotiation;
4673     }
4674     GST_DEBUG_OBJECT (qtmux,
4675         "pad %s accepted renegotiation to %" GST_PTR_FORMAT " from %"
4676         GST_PTR_FORMAT, GST_PAD_NAME (pad), caps, current_caps);
4677     gst_caps_unref (current_caps);
4678
4679     return TRUE;
4680   }
4681
4682   GST_DEBUG_OBJECT (qtmux, "%s:%s, caps=%" GST_PTR_FORMAT,
4683       GST_DEBUG_PAD_NAME (pad), caps);
4684
4685   qtpad->prepare_buf_func = NULL;
4686
4687   format = qtmux_klass->format;
4688   structure = gst_caps_get_structure (caps, 0);
4689   mimetype = gst_structure_get_name (structure);
4690
4691   /* common info */
4692   if (!gst_structure_get_int (structure, "channels", &channels) ||
4693       !gst_structure_get_int (structure, "rate", &rate)) {
4694     goto refuse_caps;
4695   }
4696
4697   /* optional */
4698   value = gst_structure_get_value (structure, "codec_data");
4699   if (value != NULL)
4700     codec_data = gst_value_get_buffer (value);
4701
4702   qtpad->is_out_of_order = FALSE;
4703
4704   /* set common properties */
4705   entry.sample_rate = rate;
4706   entry.channels = channels;
4707   /* default */
4708   entry.sample_size = 16;
4709   /* this is the typical compressed case */
4710   if (format == GST_QT_MUX_FORMAT_QT) {
4711     entry.version = 1;
4712     entry.compression_id = -2;
4713   }
4714
4715   /* now map onto a fourcc, and some extra properties */
4716   if (strcmp (mimetype, "audio/mpeg") == 0) {
4717     gint mpegversion = 0, mpegaudioversion = 0;
4718     gint layer = -1;
4719
4720     gst_structure_get_int (structure, "mpegversion", &mpegversion);
4721     switch (mpegversion) {
4722       case 1:
4723         gst_structure_get_int (structure, "layer", &layer);
4724         gst_structure_get_int (structure, "mpegaudioversion",
4725             &mpegaudioversion);
4726
4727         /* mp1/2/3 */
4728         /* note: QuickTime player does not like mp3 either way in iso/mp4 */
4729         if (format == GST_QT_MUX_FORMAT_QT)
4730           entry.fourcc = FOURCC__mp3;
4731         else {
4732           entry.fourcc = FOURCC_mp4a;
4733           ext_atom =
4734               build_esds_extension (qtpad->trak, ESDS_OBJECT_TYPE_MPEG1_P3,
4735               ESDS_STREAM_TYPE_AUDIO, codec_data, qtpad->avg_bitrate,
4736               qtpad->max_bitrate);
4737         }
4738         if (layer == 1) {
4739           g_warn_if_fail (format == GST_QT_MUX_FORMAT_MP4);
4740           entry.samples_per_packet = 384;
4741         } else if (layer == 2) {
4742           g_warn_if_fail (format == GST_QT_MUX_FORMAT_MP4);
4743           entry.samples_per_packet = 1152;
4744         } else {
4745           g_warn_if_fail (layer == 3);
4746           entry.samples_per_packet = (mpegaudioversion <= 1) ? 1152 : 576;
4747         }
4748         entry.bytes_per_sample = 2;
4749         break;
4750       case 4:
4751
4752         /* check stream-format */
4753         stream_format = gst_structure_get_string (structure, "stream-format");
4754         if (stream_format) {
4755           if (strcmp (stream_format, "raw") != 0) {
4756             GST_WARNING_OBJECT (qtmux, "Unsupported AAC stream-format %s, "
4757                 "please use 'raw'", stream_format);
4758             goto refuse_caps;
4759           }
4760         } else {
4761           GST_WARNING_OBJECT (qtmux, "No stream-format present in caps, "
4762               "assuming 'raw'");
4763         }
4764
4765         if (!codec_data || gst_buffer_get_size ((GstBuffer *) codec_data) < 2) {
4766           GST_WARNING_OBJECT (qtmux, "no (valid) codec_data for AAC audio");
4767           goto refuse_caps;
4768         } else {
4769           guint8 profile;
4770
4771           gst_buffer_extract ((GstBuffer *) codec_data, 0, &profile, 1);
4772           /* warn if not Low Complexity profile */
4773           profile >>= 3;
4774           if (profile != 2)
4775             GST_WARNING_OBJECT (qtmux,
4776                 "non-LC AAC may not run well on (Apple) QuickTime/iTunes");
4777         }
4778
4779         /* AAC */
4780         entry.fourcc = FOURCC_mp4a;
4781
4782         if (format == GST_QT_MUX_FORMAT_QT)
4783           ext_atom = build_mov_aac_extension (qtpad->trak, codec_data,
4784               qtpad->avg_bitrate, qtpad->max_bitrate);
4785         else
4786           ext_atom =
4787               build_esds_extension (qtpad->trak, ESDS_OBJECT_TYPE_MPEG4_P3,
4788               ESDS_STREAM_TYPE_AUDIO, codec_data, qtpad->avg_bitrate,
4789               qtpad->max_bitrate);
4790         break;
4791       default:
4792         break;
4793     }
4794   } else if (strcmp (mimetype, "audio/AMR") == 0) {
4795     entry.fourcc = FOURCC_samr;
4796     entry.sample_size = 16;
4797     entry.samples_per_packet = 160;
4798     entry.bytes_per_sample = 2;
4799     ext_atom = build_amr_extension ();
4800   } else if (strcmp (mimetype, "audio/AMR-WB") == 0) {
4801     entry.fourcc = FOURCC_sawb;
4802     entry.sample_size = 16;
4803     entry.samples_per_packet = 320;
4804     entry.bytes_per_sample = 2;
4805     ext_atom = build_amr_extension ();
4806   } else if (strcmp (mimetype, "audio/x-raw") == 0) {
4807     GstAudioInfo info;
4808
4809     gst_audio_info_init (&info);
4810     if (!gst_audio_info_from_caps (&info, caps))
4811       goto refuse_caps;
4812
4813     /* spec has no place for a distinction in these */
4814     if (info.finfo->width != info.finfo->depth) {
4815       GST_DEBUG_OBJECT (qtmux, "width must be same as depth!");
4816       goto refuse_caps;
4817     }
4818
4819     if ((info.finfo->flags & GST_AUDIO_FORMAT_FLAG_SIGNED)) {
4820       if (info.finfo->endianness == G_LITTLE_ENDIAN)
4821         entry.fourcc = FOURCC_sowt;
4822       else if (info.finfo->endianness == G_BIG_ENDIAN)
4823         entry.fourcc = FOURCC_twos;
4824       else
4825         entry.fourcc = FOURCC_sowt;
4826       /* maximum backward compatibility; only new version for > 16 bit */
4827       if (info.finfo->depth <= 16)
4828         entry.version = 0;
4829       /* not compressed in any case */
4830       entry.compression_id = 0;
4831       /* QT spec says: max at 16 bit even if sample size were actually larger,
4832        * however, most players (e.g. QuickTime!) seem to disagree, so ... */
4833       entry.sample_size = info.finfo->depth;
4834       entry.bytes_per_sample = info.finfo->depth / 8;
4835       entry.samples_per_packet = 1;
4836       entry.bytes_per_packet = info.finfo->depth / 8;
4837       entry.bytes_per_frame = entry.bytes_per_packet * info.channels;
4838     } else {
4839       if (info.finfo->width == 8 && info.finfo->depth == 8) {
4840         /* fall back to old 8-bit version */
4841         entry.fourcc = FOURCC_raw_;
4842         entry.version = 0;
4843         entry.compression_id = 0;
4844         entry.sample_size = 8;
4845       } else {
4846         GST_DEBUG_OBJECT (qtmux, "non 8-bit PCM must be signed");
4847         goto refuse_caps;
4848       }
4849     }
4850     constant_size = (info.finfo->depth / 8) * info.channels;
4851   } else if (strcmp (mimetype, "audio/x-alaw") == 0) {
4852     entry.fourcc = FOURCC_alaw;
4853     entry.samples_per_packet = 1023;
4854     entry.bytes_per_sample = 2;
4855   } else if (strcmp (mimetype, "audio/x-mulaw") == 0) {
4856     entry.fourcc = FOURCC_ulaw;
4857     entry.samples_per_packet = 1023;
4858     entry.bytes_per_sample = 2;
4859   } else if (strcmp (mimetype, "audio/x-adpcm") == 0) {
4860     gint blocksize;
4861     if (!gst_structure_get_int (structure, "block_align", &blocksize)) {
4862       GST_DEBUG_OBJECT (qtmux, "broken caps, block_align missing");
4863       goto refuse_caps;
4864     }
4865     /* Currently only supports WAV-style IMA ADPCM, for which the codec id is
4866        0x11 */
4867     entry.fourcc = MS_WAVE_FOURCC (0x11);
4868     /* 4 byte header per channel (including one sample). 2 samples per byte
4869        remaining. Simplifying gives the following (samples per block per
4870        channel) */
4871     entry.samples_per_packet = 2 * blocksize / channels - 7;
4872     entry.bytes_per_sample = 2;
4873
4874     entry.bytes_per_frame = blocksize;
4875     entry.bytes_per_packet = blocksize / channels;
4876     /* ADPCM has constant size packets */
4877     constant_size = 1;
4878     /* TODO: I don't really understand why this helps, but it does! Constant
4879      * size and compression_id of -2 seem to be incompatible, and other files
4880      * in the wild use this too. */
4881     entry.compression_id = -1;
4882
4883     ext_atom = build_ima_adpcm_extension (channels, rate, blocksize);
4884   } else if (strcmp (mimetype, "audio/x-alac") == 0) {
4885     GstBuffer *codec_config;
4886     gint len;
4887     GstMapInfo map;
4888
4889     entry.fourcc = FOURCC_alac;
4890     gst_buffer_map ((GstBuffer *) codec_data, &map, GST_MAP_READ);
4891     /* let's check if codec data already comes with 'alac' atom prefix */
4892     if (!codec_data || (len = map.size) < 28) {
4893       GST_DEBUG_OBJECT (qtmux, "broken caps, codec data missing");
4894       gst_buffer_unmap ((GstBuffer *) codec_data, &map);
4895       goto refuse_caps;
4896     }
4897     if (GST_READ_UINT32_LE (map.data + 4) == FOURCC_alac) {
4898       len -= 8;
4899       codec_config =
4900           gst_buffer_copy_region ((GstBuffer *) codec_data,
4901           GST_BUFFER_COPY_MEMORY, 8, len);
4902     } else {
4903       codec_config = gst_buffer_ref ((GstBuffer *) codec_data);
4904     }
4905     gst_buffer_unmap ((GstBuffer *) codec_data, &map);
4906     if (len != 28) {
4907       /* does not look good, but perhaps some trailing unneeded stuff */
4908       GST_WARNING_OBJECT (qtmux, "unexpected codec-data size, possibly broken");
4909     }
4910     if (format == GST_QT_MUX_FORMAT_QT)
4911       ext_atom = build_mov_alac_extension (codec_config);
4912     else
4913       ext_atom = build_codec_data_extension (FOURCC_alac, codec_config);
4914     /* set some more info */
4915     gst_buffer_map (codec_config, &map, GST_MAP_READ);
4916     entry.bytes_per_sample = 2;
4917     entry.samples_per_packet = GST_READ_UINT32_BE (map.data + 4);
4918     gst_buffer_unmap (codec_config, &map);
4919     gst_buffer_unref (codec_config);
4920   } else if (strcmp (mimetype, "audio/x-ac3") == 0) {
4921     entry.fourcc = FOURCC_ac_3;
4922
4923     /* Fixed values according to TS 102 366 but it also mentions that
4924      * they should be ignored */
4925     entry.channels = 2;
4926     entry.sample_size = 16;
4927
4928     /* AC-3 needs an extension atom but its data can only be obtained from
4929      * the stream itself. Abuse the prepare_buf_func so we parse a frame
4930      * and get the needed data */
4931     qtpad->prepare_buf_func = gst_qt_mux_prepare_parse_ac3_frame;
4932   } else if (strcmp (mimetype, "audio/x-opus") == 0) {
4933     /* Based on the specification defined in:
4934      * https://www.opus-codec.org/docs/opus_in_isobmff.html */
4935     guint8 channels, mapping_family, stream_count, coupled_count;
4936     guint16 pre_skip;
4937     gint16 output_gain;
4938     guint32 rate;
4939     guint8 channel_mapping[256];
4940     const GValue *streamheader;
4941     const GValue *first_element;
4942     GstBuffer *header;
4943
4944     entry.fourcc = FOURCC_opus;
4945     entry.sample_size = 16;
4946
4947     streamheader = gst_structure_get_value (structure, "streamheader");
4948     if (streamheader && GST_VALUE_HOLDS_ARRAY (streamheader) &&
4949         gst_value_array_get_size (streamheader) != 0) {
4950       first_element = gst_value_array_get_value (streamheader, 0);
4951       header = gst_value_get_buffer (first_element);
4952       if (!gst_codec_utils_opus_parse_header (header, &rate, &channels,
4953               &mapping_family, &stream_count, &coupled_count, channel_mapping,
4954               &pre_skip, &output_gain)) {
4955         GST_ERROR_OBJECT (qtmux, "Incomplete OpusHead");
4956         goto refuse_caps;
4957       }
4958     } else {
4959       GST_WARNING_OBJECT (qtmux,
4960           "no streamheader field in caps %" GST_PTR_FORMAT, caps);
4961
4962       if (!gst_codec_utils_opus_parse_caps (caps, &rate, &channels,
4963               &mapping_family, &stream_count, &coupled_count,
4964               channel_mapping)) {
4965         GST_ERROR_OBJECT (qtmux, "Incomplete Opus caps");
4966         goto refuse_caps;
4967       }
4968       pre_skip = 0;
4969       output_gain = 0;
4970     }
4971
4972     entry.channels = channels;
4973     ext_atom = build_opus_extension (rate, channels, mapping_family,
4974         stream_count, coupled_count, channel_mapping, pre_skip, output_gain);
4975   }
4976
4977   if (!entry.fourcc)
4978     goto refuse_caps;
4979
4980   /* ok, set the pad info accordingly */
4981   qtpad->fourcc = entry.fourcc;
4982   qtpad->sample_size = constant_size;
4983   qtpad->trak_ste =
4984       (SampleTableEntry *) atom_trak_set_audio_type (qtpad->trak,
4985       qtmux->context, &entry,
4986       qtmux->trak_timescale ? qtmux->trak_timescale : entry.sample_rate,
4987       ext_atom, constant_size);
4988
4989   gst_object_unref (qtmux);
4990   return TRUE;
4991
4992   /* ERRORS */
4993 refuse_caps:
4994   {
4995     GST_WARNING_OBJECT (qtmux, "pad %s refused caps %" GST_PTR_FORMAT,
4996         GST_PAD_NAME (pad), caps);
4997     gst_object_unref (qtmux);
4998     return FALSE;
4999   }
5000 refuse_renegotiation:
5001   {
5002     GST_WARNING_OBJECT (qtmux,
5003         "pad %s refused renegotiation to %" GST_PTR_FORMAT,
5004         GST_PAD_NAME (pad), caps);
5005     gst_object_unref (qtmux);
5006     return FALSE;
5007   }
5008 }
5009
5010 static gboolean
5011 gst_qt_mux_video_sink_set_caps (GstQTPad * qtpad, GstCaps * caps)
5012 {
5013   GstPad *pad = qtpad->collect.pad;
5014   GstQTMux *qtmux = GST_QT_MUX_CAST (gst_pad_get_parent (pad));
5015   GstQTMuxClass *qtmux_klass = (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
5016   GstStructure *structure;
5017   const gchar *mimetype;
5018   gint width, height, depth = -1;
5019   gint framerate_num, framerate_den;
5020   guint32 rate;
5021   const GValue *value = NULL;
5022   const GstBuffer *codec_data = NULL;
5023   VisualSampleEntry entry = { 0, };
5024   GstQTMuxFormat format;
5025   AtomInfo *ext_atom = NULL;
5026   GList *ext_atom_list = NULL;
5027   gboolean sync = FALSE;
5028   int par_num, par_den;
5029
5030   /* does not go well to renegotiate stream mid-way, unless
5031    * the old caps are a subset of the new one (this means upstream
5032    * added more info to the caps, as both should be 'fixed' caps) */
5033   if (qtpad->fourcc) {
5034     GstCaps *current_caps;
5035
5036     current_caps = gst_pad_get_current_caps (pad);
5037     g_assert (caps != NULL);
5038
5039     if (!gst_qtmux_caps_is_subset_full (qtmux, current_caps, caps)) {
5040       gst_caps_unref (current_caps);
5041       goto refuse_renegotiation;
5042     }
5043     GST_DEBUG_OBJECT (qtmux,
5044         "pad %s accepted renegotiation to %" GST_PTR_FORMAT " from %"
5045         GST_PTR_FORMAT, GST_PAD_NAME (pad), caps, current_caps);
5046     gst_caps_unref (current_caps);
5047
5048     return TRUE;
5049   }
5050
5051   GST_DEBUG_OBJECT (qtmux, "%s:%s, caps=%" GST_PTR_FORMAT,
5052       GST_DEBUG_PAD_NAME (pad), caps);
5053
5054   qtpad->prepare_buf_func = NULL;
5055
5056   format = qtmux_klass->format;
5057   structure = gst_caps_get_structure (caps, 0);
5058   mimetype = gst_structure_get_name (structure);
5059
5060   /* required parts */
5061   if (!gst_structure_get_int (structure, "width", &width) ||
5062       !gst_structure_get_int (structure, "height", &height))
5063     goto refuse_caps;
5064
5065   /* optional */
5066   depth = -1;
5067   /* works as a default timebase */
5068   framerate_num = 10000;
5069   framerate_den = 1;
5070   gst_structure_get_fraction (structure, "framerate", &framerate_num,
5071       &framerate_den);
5072   gst_structure_get_int (structure, "depth", &depth);
5073   value = gst_structure_get_value (structure, "codec_data");
5074   if (value != NULL)
5075     codec_data = gst_value_get_buffer (value);
5076
5077   par_num = 1;
5078   par_den = 1;
5079   gst_structure_get_fraction (structure, "pixel-aspect-ratio", &par_num,
5080       &par_den);
5081
5082   qtpad->is_out_of_order = FALSE;
5083
5084   /* bring frame numerator into a range that ensures both reasonable resolution
5085    * as well as a fair duration */
5086   qtpad->expected_sample_duration_n = framerate_num;
5087   qtpad->expected_sample_duration_d = framerate_den;
5088   rate = qtmux->trak_timescale ?
5089       qtmux->trak_timescale : atom_framerate_to_timescale (framerate_num,
5090       framerate_den);
5091   GST_DEBUG_OBJECT (qtmux, "Rate of video track selected: %" G_GUINT32_FORMAT,
5092       rate);
5093
5094   /* set common properties */
5095   entry.width = width;
5096   entry.height = height;
5097   entry.par_n = par_num;
5098   entry.par_d = par_den;
5099   /* should be OK according to qt and iso spec, override if really needed */
5100   entry.color_table_id = -1;
5101   entry.frame_count = 1;
5102   entry.depth = 24;
5103
5104   /* sync entries by default */
5105   sync = TRUE;
5106
5107   /* now map onto a fourcc, and some extra properties */
5108   if (strcmp (mimetype, "video/x-raw") == 0) {
5109     const gchar *format;
5110     GstVideoFormat fmt;
5111     const GstVideoFormatInfo *vinfo;
5112
5113     format = gst_structure_get_string (structure, "format");
5114     fmt = gst_video_format_from_string (format);
5115     vinfo = gst_video_format_get_info (fmt);
5116
5117     switch (fmt) {
5118       case GST_VIDEO_FORMAT_UYVY:
5119         if (depth == -1)
5120           depth = 24;
5121         entry.fourcc = FOURCC_2vuy;
5122         entry.depth = depth;
5123         sync = FALSE;
5124         break;
5125       case GST_VIDEO_FORMAT_v210:
5126         if (depth == -1)
5127           depth = 24;
5128         entry.fourcc = FOURCC_v210;
5129         entry.depth = depth;
5130         sync = FALSE;
5131         break;
5132       default:
5133         if (GST_VIDEO_FORMAT_INFO_FLAGS (vinfo) & GST_VIDEO_FORMAT_FLAG_RGB) {
5134           entry.fourcc = FOURCC_raw_;
5135           entry.depth = GST_VIDEO_FORMAT_INFO_PSTRIDE (vinfo, 0) * 8;
5136           sync = FALSE;
5137         }
5138         break;
5139     }
5140   } else if (strcmp (mimetype, "video/x-h263") == 0) {
5141     ext_atom = NULL;
5142     if (format == GST_QT_MUX_FORMAT_QT)
5143       entry.fourcc = FOURCC_h263;
5144     else
5145       entry.fourcc = FOURCC_s263;
5146     ext_atom = build_h263_extension ();
5147     if (ext_atom != NULL)
5148       ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
5149   } else if (strcmp (mimetype, "video/x-divx") == 0 ||
5150       strcmp (mimetype, "video/mpeg") == 0) {
5151     gint version = 0;
5152
5153     if (strcmp (mimetype, "video/x-divx") == 0) {
5154       gst_structure_get_int (structure, "divxversion", &version);
5155       version = version == 5 ? 1 : 0;
5156     } else {
5157       gst_structure_get_int (structure, "mpegversion", &version);
5158       version = version == 4 ? 1 : 0;
5159     }
5160     if (version) {
5161       entry.fourcc = FOURCC_mp4v;
5162       ext_atom =
5163           build_esds_extension (qtpad->trak, ESDS_OBJECT_TYPE_MPEG4_P2,
5164           ESDS_STREAM_TYPE_VISUAL, codec_data, qtpad->avg_bitrate,
5165           qtpad->max_bitrate);
5166       if (ext_atom != NULL)
5167         ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
5168       if (!codec_data)
5169         GST_WARNING_OBJECT (qtmux, "no codec_data for MPEG4 video; "
5170             "output might not play in Apple QuickTime (try global-headers?)");
5171     }
5172   } else if (strcmp (mimetype, "video/x-h264") == 0) {
5173     if (!codec_data) {
5174       GST_WARNING_OBJECT (qtmux, "no codec_data in h264 caps");
5175       goto refuse_caps;
5176     }
5177
5178     entry.fourcc = FOURCC_avc1;
5179
5180     ext_atom = build_btrt_extension (0, qtpad->avg_bitrate, qtpad->max_bitrate);
5181     if (ext_atom != NULL)
5182       ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
5183     ext_atom = build_codec_data_extension (FOURCC_avcC, codec_data);
5184     if (ext_atom != NULL)
5185       ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
5186   } else if (strcmp (mimetype, "video/x-h265") == 0) {
5187     const gchar *format;
5188
5189     if (!codec_data) {
5190       GST_WARNING_OBJECT (qtmux, "no codec_data in h265 caps");
5191       goto refuse_caps;
5192     }
5193
5194     format = gst_structure_get_string (structure, "stream-format");
5195     if (strcmp (format, "hvc1") == 0)
5196       entry.fourcc = FOURCC_hvc1;
5197     else if (strcmp (format, "hev1") == 0)
5198       entry.fourcc = FOURCC_hev1;
5199
5200     ext_atom = build_btrt_extension (0, qtpad->avg_bitrate, qtpad->max_bitrate);
5201     if (ext_atom != NULL)
5202       ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
5203
5204     ext_atom = build_codec_data_extension (FOURCC_hvcC, codec_data);
5205     if (ext_atom != NULL)
5206       ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
5207
5208   } else if (strcmp (mimetype, "video/x-svq") == 0) {
5209     gint version = 0;
5210     const GstBuffer *seqh = NULL;
5211     const GValue *seqh_value;
5212     gdouble gamma = 0;
5213
5214     gst_structure_get_int (structure, "svqversion", &version);
5215     if (version == 3) {
5216       entry.fourcc = FOURCC_SVQ3;
5217       entry.version = 3;
5218       entry.depth = 32;
5219
5220       seqh_value = gst_structure_get_value (structure, "seqh");
5221       if (seqh_value) {
5222         seqh = gst_value_get_buffer (seqh_value);
5223         ext_atom = build_SMI_atom (seqh);
5224         if (ext_atom)
5225           ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
5226       }
5227
5228       /* we need to add the gamma anyway because quicktime might crash
5229        * when it doesn't find it */
5230       if (!gst_structure_get_double (structure, "applied-gamma", &gamma)) {
5231         /* it seems that using 0 here makes it ignored */
5232         gamma = 0.0;
5233       }
5234       ext_atom = build_gama_atom (gamma);
5235       if (ext_atom)
5236         ext_atom_list = g_list_prepend (ext_atom_list, ext_atom);
5237     } else {
5238       GST_WARNING_OBJECT (qtmux, "SVQ version %d not supported. Please file "
5239           "a bug at http://bugzilla.gnome.org", version);
5240     }
5241   } else if (strcmp (mimetype, "video/x-dv") == 0) {
5242     gint version = 0;
5243     gboolean pal = TRUE;
5244
5245     sync = FALSE;
5246     if (framerate_num != 25 || framerate_den != 1)
5247       pal = FALSE;
5248     gst_structure_get_int (structure, "dvversion", &version);
5249     /* fall back to typical one */
5250     if (!version)
5251       version = 25;
5252     switch (version) {
5253       case 25:
5254         if (pal)
5255           entry.fourcc = FOURCC_dvcp;
5256         else
5257           entry.fourcc = FOURCC_dvc_;
5258         break;
5259       case 50:
5260         if (pal)
5261           entry.fourcc = FOURCC_dv5p;
5262         else
5263           entry.fourcc = FOURCC_dv5n;
5264         break;
5265       default:
5266         GST_WARNING_OBJECT (qtmux, "unrecognized dv version");
5267         break;
5268     }
5269   } else if (strcmp (mimetype, "image/jpeg") == 0) {
5270     entry.fourcc = FOURCC_jpeg;
5271     sync = FALSE;
5272   } else if (strcmp (mimetype, "image/x-j2c") == 0 ||
5273       strcmp (mimetype, "image/x-jpc") == 0) {
5274     const gchar *colorspace;
5275     const GValue *cmap_array;
5276     const GValue *cdef_array;
5277     gint ncomp = 0;
5278
5279     if (strcmp (mimetype, "image/x-jpc") == 0) {
5280       qtpad->prepare_buf_func = gst_qt_mux_prepare_jpc_buffer;
5281     }
5282
5283     gst_structure_get_int (structure, "num-components", &ncomp);
5284     cmap_array = gst_structure_get_value (structure, "component-map");
5285     cdef_array = gst_structure_get_value (structure, "channel-definitions");
5286
5287     ext_atom = NULL;
5288     entry.fourcc = FOURCC_mjp2;
5289     sync = FALSE;
5290
5291     colorspace = gst_structure_get_string (structure, "colorspace");
5292     if (colorspace &&
5293         (ext_atom =
5294             build_jp2h_extension (width, height, colorspace, ncomp, cmap_array,
5295                 cdef_array)) != NULL) {
5296       ext_atom_list = g_list_append (ext_atom_list, ext_atom);
5297
5298       ext_atom = build_jp2x_extension (codec_data);
5299       if (ext_atom)
5300         ext_atom_list = g_list_append (ext_atom_list, ext_atom);
5301     } else {
5302       GST_DEBUG_OBJECT (qtmux, "missing or invalid fourcc in jp2 caps");
5303       goto refuse_caps;
5304     }
5305   } else if (strcmp (mimetype, "video/x-vp8") == 0) {
5306     entry.fourcc = FOURCC_VP80;
5307     sync = FALSE;
5308   } else if (strcmp (mimetype, "video/x-dirac") == 0) {
5309     entry.fourcc = FOURCC_drac;
5310   } else if (strcmp (mimetype, "video/x-qt-part") == 0) {
5311     guint32 fourcc = 0;
5312
5313     gst_structure_get_uint (structure, "format", &fourcc);
5314     entry.fourcc = fourcc;
5315   } else if (strcmp (mimetype, "video/x-mp4-part") == 0) {
5316     guint32 fourcc = 0;
5317
5318     gst_structure_get_uint (structure, "format", &fourcc);
5319     entry.fourcc = fourcc;
5320   } else if (strcmp (mimetype, "video/x-prores") == 0) {
5321     const gchar *variant;
5322
5323     variant = gst_structure_get_string (structure, "variant");
5324     if (!variant || !g_strcmp0 (variant, "standard"))
5325       entry.fourcc = FOURCC_apcn;
5326     else if (!g_strcmp0 (variant, "lt"))
5327       entry.fourcc = FOURCC_apcs;
5328     else if (!g_strcmp0 (variant, "hq"))
5329       entry.fourcc = FOURCC_apch;
5330     else if (!g_strcmp0 (variant, "proxy"))
5331       entry.fourcc = FOURCC_apco;
5332     else if (!g_strcmp0 (variant, "4444"))
5333       entry.fourcc = FOURCC_ap4h;
5334     else if (!g_strcmp0 (variant, "4444xq"))
5335       entry.fourcc = FOURCC_ap4x;
5336
5337     sync = FALSE;
5338
5339     if (!qtmux->interleave_time_set)
5340       qtmux->interleave_time = 500 * GST_MSECOND;
5341     if (!qtmux->interleave_bytes_set)
5342       qtmux->interleave_bytes = width > 720 ? 4 * 1024 * 1024 : 2 * 1024 * 1024;
5343   } else if (strcmp (mimetype, "video/x-cineform") == 0) {
5344     entry.fourcc = FOURCC_cfhd;
5345     sync = FALSE;
5346   }
5347
5348   if (!entry.fourcc)
5349     goto refuse_caps;
5350
5351   if (qtmux_klass->format == GST_QT_MUX_FORMAT_QT ||
5352       qtmux_klass->format == GST_QT_MUX_FORMAT_MP4) {
5353     const gchar *s;
5354     GstVideoColorimetry colorimetry;
5355
5356     s = gst_structure_get_string (structure, "colorimetry");
5357     if (s && gst_video_colorimetry_from_string (&colorimetry, s)) {
5358       ext_atom =
5359           build_colr_extension (&colorimetry,
5360           qtmux_klass->format == GST_QT_MUX_FORMAT_MP4);
5361       if (ext_atom)
5362         ext_atom_list = g_list_append (ext_atom_list, ext_atom);
5363     }
5364   }
5365
5366   if (qtmux_klass->format == GST_QT_MUX_FORMAT_QT
5367       || strcmp (mimetype, "image/x-j2c") == 0
5368       || strcmp (mimetype, "image/x-jpc") == 0) {
5369     const gchar *s;
5370     GstVideoInterlaceMode interlace_mode;
5371     GstVideoFieldOrder field_order;
5372     gint fields = -1;
5373
5374     if (strcmp (mimetype, "image/x-j2c") == 0 ||
5375         strcmp (mimetype, "image/x-jpc") == 0) {
5376
5377       fields = 1;
5378       gst_structure_get_int (structure, "fields", &fields);
5379     }
5380
5381     s = gst_structure_get_string (structure, "interlace-mode");
5382     if (s)
5383       interlace_mode = gst_video_interlace_mode_from_string (s);
5384     else
5385       interlace_mode =
5386           (fields <=
5387           1) ? GST_VIDEO_INTERLACE_MODE_PROGRESSIVE :
5388           GST_VIDEO_INTERLACE_MODE_MIXED;
5389
5390     field_order = GST_VIDEO_FIELD_ORDER_UNKNOWN;
5391     if (interlace_mode == GST_VIDEO_INTERLACE_MODE_INTERLEAVED) {
5392       s = gst_structure_get_string (structure, "field-order");
5393       if (s)
5394         field_order = gst_video_field_order_from_string (s);
5395     }
5396
5397     ext_atom = build_fiel_extension (interlace_mode, field_order);
5398     if (ext_atom)
5399       ext_atom_list = g_list_append (ext_atom_list, ext_atom);
5400   }
5401
5402
5403   if (qtmux_klass->format == GST_QT_MUX_FORMAT_QT &&
5404       width > 640 && width <= 1052 && height >= 480 && height <= 576) {
5405     /* The 'clap' extension is also defined for MP4 but inventing values in
5406      * general seems a bit tricky for this one. We only write it for
5407      * SD resolution in MOV, where it is a requirement.
5408      * The same goes for the 'tapt' extension, just that it is not defined for
5409      * MP4 and only for MOV
5410      */
5411     gint dar_num, dar_den;
5412     gint clef_width, clef_height, prof_width;
5413     gint clap_width_n, clap_width_d, clap_height;
5414     gint cdiv;
5415     double approx_dar;
5416
5417     /* First, guess display aspect ratio based on pixel aspect ratio,
5418      * width and height. We assume that display aspect ratio is either
5419      * 4:3 or 16:9
5420      */
5421     approx_dar = (gdouble) (width * par_num) / (height * par_den);
5422     if (approx_dar > 11.0 / 9 && approx_dar < 14.0 / 9) {
5423       dar_num = 4;
5424       dar_den = 3;
5425     } else if (approx_dar > 15.0 / 9 && approx_dar < 18.0 / 9) {
5426       dar_num = 16;
5427       dar_den = 9;
5428     } else {
5429       dar_num = width * par_num;
5430       dar_den = height * par_den;
5431       cdiv = gst_util_greatest_common_divisor (dar_num, dar_den);
5432       dar_num /= cdiv;
5433       dar_den /= cdiv;
5434     }
5435
5436     /* Then, calculate clean-aperture values (clap and clef)
5437      * using the guessed DAR.
5438      */
5439     clef_height = clap_height = (height == 486 ? 480 : height);
5440     clef_width = gst_util_uint64_scale (clef_height,
5441         dar_num * G_GUINT64_CONSTANT (65536), dar_den);
5442     prof_width = gst_util_uint64_scale (width,
5443         par_num * G_GUINT64_CONSTANT (65536), par_den);
5444     clap_width_n = clap_height * dar_num * par_den;
5445     clap_width_d = dar_den * par_num;
5446     cdiv = gst_util_greatest_common_divisor (clap_width_n, clap_width_d);
5447     clap_width_n /= cdiv;
5448     clap_width_d /= cdiv;
5449
5450     ext_atom = build_tapt_extension (clef_width, clef_height << 16, prof_width,
5451         height << 16, width << 16, height << 16);
5452     qtpad->trak->tapt = ext_atom;
5453
5454     ext_atom = build_clap_extension (clap_width_n, clap_width_d,
5455         clap_height, 1, 0, 1, 0, 1);
5456     if (ext_atom)
5457       ext_atom_list = g_list_append (ext_atom_list, ext_atom);
5458   }
5459
5460   /* ok, set the pad info accordingly */
5461   qtpad->fourcc = entry.fourcc;
5462   qtpad->sync = sync;
5463   qtpad->trak_ste =
5464       (SampleTableEntry *) atom_trak_set_video_type (qtpad->trak,
5465       qtmux->context, &entry, rate, ext_atom_list);
5466   if (strcmp (mimetype, "video/x-prores") == 0) {
5467     SampleTableEntryMP4V *mp4v = (SampleTableEntryMP4V *) qtpad->trak_ste;
5468     const gchar *compressor = NULL;
5469     mp4v->spatial_quality = 0x3FF;
5470     mp4v->temporal_quality = 0;
5471     mp4v->vendor = FOURCC_appl;
5472     mp4v->horizontal_resolution = 72 << 16;
5473     mp4v->vertical_resolution = 72 << 16;
5474     mp4v->depth = (entry.fourcc == FOURCC_ap4h
5475         || entry.fourcc == FOURCC_ap4x) ? 32 : 24;
5476
5477     /* Set compressor name, required by some software */
5478     switch (entry.fourcc) {
5479       case FOURCC_apcn:
5480         compressor = "Apple ProRes 422";
5481         break;
5482       case FOURCC_apcs:
5483         compressor = "Apple ProRes 422 LT";
5484         break;
5485       case FOURCC_apch:
5486         compressor = "Apple ProRes 422 HQ";
5487         break;
5488       case FOURCC_apco:
5489         compressor = "Apple ProRes 422 Proxy";
5490         break;
5491       case FOURCC_ap4h:
5492         compressor = "Apple ProRes 4444";
5493         break;
5494       case FOURCC_ap4x:
5495         compressor = "Apple ProRes 4444 XQ";
5496         break;
5497     }
5498     if (compressor) {
5499       strcpy ((gchar *) mp4v->compressor + 1, compressor);
5500       mp4v->compressor[0] = strlen (compressor);
5501     }
5502   }
5503
5504   gst_object_unref (qtmux);
5505   return TRUE;
5506
5507   /* ERRORS */
5508 refuse_caps:
5509   {
5510     GST_WARNING_OBJECT (qtmux, "pad %s refused caps %" GST_PTR_FORMAT,
5511         GST_PAD_NAME (pad), caps);
5512     gst_object_unref (qtmux);
5513     return FALSE;
5514   }
5515 refuse_renegotiation:
5516   {
5517     GST_WARNING_OBJECT (qtmux,
5518         "pad %s refused renegotiation to %" GST_PTR_FORMAT, GST_PAD_NAME (pad),
5519         caps);
5520     gst_object_unref (qtmux);
5521     return FALSE;
5522   }
5523 }
5524
5525 static gboolean
5526 gst_qt_mux_subtitle_sink_set_caps (GstQTPad * qtpad, GstCaps * caps)
5527 {
5528   GstPad *pad = qtpad->collect.pad;
5529   GstQTMux *qtmux = GST_QT_MUX_CAST (gst_pad_get_parent (pad));
5530   GstStructure *structure;
5531   SubtitleSampleEntry entry = { 0, };
5532
5533   /* does not go well to renegotiate stream mid-way, unless
5534    * the old caps are a subset of the new one (this means upstream
5535    * added more info to the caps, as both should be 'fixed' caps) */
5536   if (qtpad->fourcc) {
5537     GstCaps *current_caps;
5538
5539     current_caps = gst_pad_get_current_caps (pad);
5540     g_assert (caps != NULL);
5541
5542     if (!gst_qtmux_caps_is_subset_full (qtmux, current_caps, caps)) {
5543       gst_caps_unref (current_caps);
5544       goto refuse_renegotiation;
5545     }
5546     GST_DEBUG_OBJECT (qtmux,
5547         "pad %s accepted renegotiation to %" GST_PTR_FORMAT " from %"
5548         GST_PTR_FORMAT, GST_PAD_NAME (pad), caps, current_caps);
5549     gst_caps_unref (current_caps);
5550
5551     return TRUE;
5552   }
5553
5554   GST_DEBUG_OBJECT (qtmux, "%s:%s, caps=%" GST_PTR_FORMAT,
5555       GST_DEBUG_PAD_NAME (pad), caps);
5556
5557   /* subtitles default */
5558   subtitle_sample_entry_init (&entry);
5559   qtpad->is_out_of_order = FALSE;
5560   qtpad->sync = FALSE;
5561   qtpad->sparse = TRUE;
5562   qtpad->prepare_buf_func = NULL;
5563
5564   structure = gst_caps_get_structure (caps, 0);
5565
5566   if (gst_structure_has_name (structure, "text/x-raw")) {
5567     const gchar *format = gst_structure_get_string (structure, "format");
5568     if (format && strcmp (format, "utf8") == 0) {
5569       entry.fourcc = FOURCC_tx3g;
5570       qtpad->prepare_buf_func = gst_qt_mux_prepare_tx3g_buffer;
5571       qtpad->create_empty_buffer = gst_qt_mux_create_empty_tx3g_buffer;
5572     }
5573   }
5574
5575   if (!entry.fourcc)
5576     goto refuse_caps;
5577
5578   qtpad->fourcc = entry.fourcc;
5579   qtpad->trak_ste =
5580       (SampleTableEntry *) atom_trak_set_subtitle_type (qtpad->trak,
5581       qtmux->context, &entry);
5582
5583   gst_object_unref (qtmux);
5584   return TRUE;
5585
5586   /* ERRORS */
5587 refuse_caps:
5588   {
5589     GST_WARNING_OBJECT (qtmux, "pad %s refused caps %" GST_PTR_FORMAT,
5590         GST_PAD_NAME (pad), caps);
5591     gst_object_unref (qtmux);
5592     return FALSE;
5593   }
5594 refuse_renegotiation:
5595   {
5596     GST_WARNING_OBJECT (qtmux,
5597         "pad %s refused renegotiation to %" GST_PTR_FORMAT, GST_PAD_NAME (pad),
5598         caps);
5599     gst_object_unref (qtmux);
5600     return FALSE;
5601   }
5602 }
5603
5604 static gboolean
5605 gst_qt_mux_sink_event (GstCollectPads * pads, GstCollectData * data,
5606     GstEvent * event, gpointer user_data)
5607 {
5608   GstQTMux *qtmux;
5609   guint32 avg_bitrate = 0, max_bitrate = 0;
5610   GstPad *pad = data->pad;
5611   gboolean ret = TRUE;
5612
5613   qtmux = GST_QT_MUX_CAST (user_data);
5614   switch (GST_EVENT_TYPE (event)) {
5615     case GST_EVENT_CAPS:
5616     {
5617       GstCaps *caps;
5618       GstQTPad *collect_pad;
5619
5620       gst_event_parse_caps (event, &caps);
5621
5622       /* find stream data */
5623       collect_pad = (GstQTPad *) gst_pad_get_element_private (pad);
5624       g_assert (collect_pad);
5625       g_assert (collect_pad->set_caps);
5626
5627       ret = collect_pad->set_caps (collect_pad, caps);
5628       gst_event_unref (event);
5629       event = NULL;
5630       break;
5631     }
5632     case GST_EVENT_TAG:{
5633       GstTagList *list;
5634       GstTagSetter *setter = GST_TAG_SETTER (qtmux);
5635       GstTagMergeMode mode;
5636       gchar *code;
5637       GstQTPad *collect_pad;
5638
5639       GST_OBJECT_LOCK (qtmux);
5640       mode = gst_tag_setter_get_tag_merge_mode (setter);
5641       collect_pad = (GstQTPad *) gst_pad_get_element_private (pad);
5642
5643       gst_event_parse_tag (event, &list);
5644       GST_DEBUG_OBJECT (qtmux, "received tag event on pad %s:%s : %"
5645           GST_PTR_FORMAT, GST_DEBUG_PAD_NAME (pad), list);
5646
5647       if (gst_tag_list_get_scope (list) == GST_TAG_SCOPE_GLOBAL) {
5648         gst_tag_setter_merge_tags (setter, list, mode);
5649         qtmux->tags_changed = TRUE;
5650       } else {
5651         if (!collect_pad->tags)
5652           collect_pad->tags = gst_tag_list_new_empty ();
5653         gst_tag_list_insert (collect_pad->tags, list, mode);
5654         collect_pad->tags_changed = TRUE;
5655       }
5656       GST_OBJECT_UNLOCK (qtmux);
5657
5658       if (gst_tag_list_get_uint (list, GST_TAG_BITRATE, &avg_bitrate) |
5659           gst_tag_list_get_uint (list, GST_TAG_MAXIMUM_BITRATE, &max_bitrate)) {
5660         GstQTPad *qtpad = gst_pad_get_element_private (pad);
5661         g_assert (qtpad);
5662
5663         if (avg_bitrate > 0 && avg_bitrate < G_MAXUINT32)
5664           qtpad->avg_bitrate = avg_bitrate;
5665         if (max_bitrate > 0 && max_bitrate < G_MAXUINT32)
5666           qtpad->max_bitrate = max_bitrate;
5667       }
5668
5669       if (gst_tag_list_get_string (list, GST_TAG_LANGUAGE_CODE, &code)) {
5670         const char *iso_code = gst_tag_get_language_code_iso_639_2T (code);
5671         if (iso_code) {
5672           GstQTPad *qtpad = gst_pad_get_element_private (pad);
5673           g_assert (qtpad);
5674           if (qtpad->trak) {
5675             /* https://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/QTFFChap4/qtff4.html */
5676             qtpad->trak->mdia.mdhd.language_code =
5677                 (iso_code[0] - 0x60) * 0x400 + (iso_code[1] - 0x60) * 0x20 +
5678                 (iso_code[2] - 0x60);
5679           }
5680         }
5681         g_free (code);
5682       }
5683
5684       gst_event_unref (event);
5685       event = NULL;
5686       ret = TRUE;
5687       break;
5688     }
5689     default:
5690       break;
5691   }
5692
5693   if (event != NULL)
5694     return gst_collect_pads_event_default (pads, data, event, FALSE);
5695
5696   return ret;
5697 }
5698
5699 static void
5700 gst_qt_mux_release_pad (GstElement * element, GstPad * pad)
5701 {
5702   GstQTMux *mux = GST_QT_MUX_CAST (element);
5703   GSList *walk;
5704
5705   GST_DEBUG_OBJECT (element, "Releasing %s:%s", GST_DEBUG_PAD_NAME (pad));
5706
5707   for (walk = mux->sinkpads; walk; walk = g_slist_next (walk)) {
5708     GstQTPad *qtpad = (GstQTPad *) walk->data;
5709     GST_DEBUG ("Checking %s:%s", GST_DEBUG_PAD_NAME (qtpad->collect.pad));
5710     if (qtpad->collect.pad == pad) {
5711       /* this is it, remove */
5712       mux->sinkpads = g_slist_delete_link (mux->sinkpads, walk);
5713       gst_element_remove_pad (element, pad);
5714       break;
5715     }
5716   }
5717
5718   if (mux->current_pad && mux->current_pad->collect.pad == pad) {
5719     mux->current_pad = NULL;
5720     mux->current_chunk_size = 0;
5721     mux->current_chunk_duration = 0;
5722   }
5723
5724   gst_collect_pads_remove_pad (mux->collect, pad);
5725
5726   if (mux->sinkpads == NULL) {
5727     /* No more outstanding request pads, reset our counters */
5728     mux->video_pads = 0;
5729     mux->audio_pads = 0;
5730     mux->subtitle_pads = 0;
5731   }
5732 }
5733
5734 static GstPad *
5735 gst_qt_mux_request_new_pad (GstElement * element,
5736     GstPadTemplate * templ, const gchar * req_name, const GstCaps * caps)
5737 {
5738   GstElementClass *klass = GST_ELEMENT_GET_CLASS (element);
5739   GstQTMux *qtmux = GST_QT_MUX_CAST (element);
5740   GstQTPad *collect_pad;
5741   GstPad *newpad;
5742   GstQTPadSetCapsFunc setcaps_func;
5743   gchar *name;
5744   gint pad_id;
5745   gboolean lock = TRUE;
5746
5747   if (templ->direction != GST_PAD_SINK)
5748     goto wrong_direction;
5749
5750   if (qtmux->state > GST_QT_MUX_STATE_STARTED)
5751     goto too_late;
5752
5753   if (templ == gst_element_class_get_pad_template (klass, "audio_%u")) {
5754     setcaps_func = gst_qt_mux_audio_sink_set_caps;
5755     if (req_name != NULL && sscanf (req_name, "audio_%u", &pad_id) == 1) {
5756       name = g_strdup (req_name);
5757     } else {
5758       name = g_strdup_printf ("audio_%u", qtmux->audio_pads++);
5759     }
5760   } else if (templ == gst_element_class_get_pad_template (klass, "video_%u")) {
5761     setcaps_func = gst_qt_mux_video_sink_set_caps;
5762     if (req_name != NULL && sscanf (req_name, "video_%u", &pad_id) == 1) {
5763       name = g_strdup (req_name);
5764     } else {
5765       name = g_strdup_printf ("video_%u", qtmux->video_pads++);
5766     }
5767   } else if (templ == gst_element_class_get_pad_template (klass, "subtitle_%u")) {
5768     setcaps_func = gst_qt_mux_subtitle_sink_set_caps;
5769     if (req_name != NULL && sscanf (req_name, "subtitle_%u", &pad_id) == 1) {
5770       name = g_strdup (req_name);
5771     } else {
5772       name = g_strdup_printf ("subtitle_%u", qtmux->subtitle_pads++);
5773     }
5774     lock = FALSE;
5775   } else
5776     goto wrong_template;
5777
5778   GST_DEBUG_OBJECT (qtmux, "Requested pad: %s", name);
5779
5780   /* create pad and add to collections */
5781   newpad = gst_pad_new_from_template (templ, name);
5782   g_free (name);
5783   collect_pad = (GstQTPad *)
5784       gst_collect_pads_add_pad (qtmux->collect, newpad, sizeof (GstQTPad),
5785       (GstCollectDataDestroyNotify) (gst_qt_mux_pad_reset), lock);
5786   /* set up pad */
5787   gst_qt_mux_pad_reset (collect_pad);
5788   collect_pad->trak = atom_trak_new (qtmux->context);
5789   atom_moov_add_trak (qtmux->moov, collect_pad->trak);
5790
5791   qtmux->sinkpads = g_slist_append (qtmux->sinkpads, collect_pad);
5792
5793   /* set up pad functions */
5794   collect_pad->set_caps = setcaps_func;
5795
5796   gst_pad_set_active (newpad, TRUE);
5797   gst_element_add_pad (element, newpad);
5798
5799   return newpad;
5800
5801   /* ERRORS */
5802 wrong_direction:
5803   {
5804     GST_WARNING_OBJECT (qtmux, "Request pad that is not a SINK pad.");
5805     return NULL;
5806   }
5807 too_late:
5808   {
5809     GST_WARNING_OBJECT (qtmux, "Not providing request pad after stream start.");
5810     return NULL;
5811   }
5812 wrong_template:
5813   {
5814     GST_WARNING_OBJECT (qtmux, "This is not our template!");
5815     return NULL;
5816   }
5817 }
5818
5819 static void
5820 gst_qt_mux_get_property (GObject * object,
5821     guint prop_id, GValue * value, GParamSpec * pspec)
5822 {
5823   GstQTMux *qtmux = GST_QT_MUX_CAST (object);
5824
5825   GST_OBJECT_LOCK (qtmux);
5826   switch (prop_id) {
5827     case PROP_MOVIE_TIMESCALE:
5828       g_value_set_uint (value, qtmux->timescale);
5829       break;
5830     case PROP_TRAK_TIMESCALE:
5831       g_value_set_uint (value, qtmux->trak_timescale);
5832       break;
5833     case PROP_DO_CTTS:
5834       g_value_set_boolean (value, qtmux->guess_pts);
5835       break;
5836 #ifndef GST_REMOVE_DEPRECATED
5837     case PROP_DTS_METHOD:
5838       g_value_set_enum (value, qtmux->dts_method);
5839       break;
5840 #endif
5841     case PROP_FAST_START:
5842       g_value_set_boolean (value, qtmux->fast_start);
5843       break;
5844     case PROP_FAST_START_TEMP_FILE:
5845       g_value_set_string (value, qtmux->fast_start_file_path);
5846       break;
5847     case PROP_MOOV_RECOV_FILE:
5848       g_value_set_string (value, qtmux->moov_recov_file_path);
5849       break;
5850     case PROP_FRAGMENT_DURATION:
5851       g_value_set_uint (value, qtmux->fragment_duration);
5852       break;
5853     case PROP_STREAMABLE:
5854       g_value_set_boolean (value, qtmux->streamable);
5855       break;
5856     case PROP_RESERVED_MAX_DURATION:
5857       g_value_set_uint64 (value, qtmux->reserved_max_duration);
5858       break;
5859     case PROP_RESERVED_DURATION_REMAINING:
5860       if (qtmux->reserved_duration_remaining == GST_CLOCK_TIME_NONE)
5861         g_value_set_uint64 (value, qtmux->reserved_max_duration);
5862       else {
5863         GstClockTime remaining = qtmux->reserved_duration_remaining;
5864
5865         /* Report the remaining space as the calculated remaining, minus
5866          * however much we've muxed since the last update */
5867         if (remaining > qtmux->muxed_since_last_update)
5868           remaining -= qtmux->muxed_since_last_update;
5869         else
5870           remaining = 0;
5871         GST_LOG_OBJECT (qtmux, "reserved duration remaining - reporting %"
5872             G_GUINT64_FORMAT "(%" G_GUINT64_FORMAT " - %" G_GUINT64_FORMAT,
5873             remaining, qtmux->reserved_duration_remaining,
5874             qtmux->muxed_since_last_update);
5875         g_value_set_uint64 (value, remaining);
5876       }
5877       break;
5878     case PROP_RESERVED_MOOV_UPDATE_PERIOD:
5879       g_value_set_uint64 (value, qtmux->reserved_moov_update_period);
5880       break;
5881     case PROP_RESERVED_BYTES_PER_SEC:
5882       g_value_set_uint (value, qtmux->reserved_bytes_per_sec_per_trak);
5883       break;
5884     case PROP_RESERVED_PREFILL:
5885       g_value_set_boolean (value, qtmux->reserved_prefill);
5886       break;
5887     case PROP_INTERLEAVE_BYTES:
5888       g_value_set_uint64 (value, qtmux->interleave_bytes);
5889       break;
5890     case PROP_INTERLEAVE_TIME:
5891       g_value_set_uint64 (value, qtmux->interleave_time);
5892       break;
5893     case PROP_MAX_RAW_AUDIO_DRIFT:
5894       g_value_set_uint64 (value, qtmux->max_raw_audio_drift);
5895       break;
5896     default:
5897       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5898       break;
5899   }
5900   GST_OBJECT_UNLOCK (qtmux);
5901 }
5902
5903 static void
5904 gst_qt_mux_generate_fast_start_file_path (GstQTMux * qtmux)
5905 {
5906   gchar *tmp;
5907
5908   g_free (qtmux->fast_start_file_path);
5909   qtmux->fast_start_file_path = NULL;
5910
5911   tmp = g_strdup_printf ("%s%d", "qtmux", g_random_int ());
5912   qtmux->fast_start_file_path = g_build_filename (g_get_tmp_dir (), tmp, NULL);
5913   g_free (tmp);
5914 }
5915
5916 static void
5917 gst_qt_mux_set_property (GObject * object,
5918     guint prop_id, const GValue * value, GParamSpec * pspec)
5919 {
5920   GstQTMux *qtmux = GST_QT_MUX_CAST (object);
5921
5922   GST_OBJECT_LOCK (qtmux);
5923   switch (prop_id) {
5924     case PROP_MOVIE_TIMESCALE:
5925       qtmux->timescale = g_value_get_uint (value);
5926       break;
5927     case PROP_TRAK_TIMESCALE:
5928       qtmux->trak_timescale = g_value_get_uint (value);
5929       break;
5930     case PROP_DO_CTTS:
5931       qtmux->guess_pts = g_value_get_boolean (value);
5932       break;
5933 #ifndef GST_REMOVE_DEPRECATED
5934     case PROP_DTS_METHOD:
5935       qtmux->dts_method = g_value_get_enum (value);
5936       break;
5937 #endif
5938     case PROP_FAST_START:
5939       qtmux->fast_start = g_value_get_boolean (value);
5940       break;
5941     case PROP_FAST_START_TEMP_FILE:
5942       g_free (qtmux->fast_start_file_path);
5943       qtmux->fast_start_file_path = g_value_dup_string (value);
5944       /* NULL means to generate a random one */
5945       if (!qtmux->fast_start_file_path) {
5946         gst_qt_mux_generate_fast_start_file_path (qtmux);
5947       }
5948       break;
5949     case PROP_MOOV_RECOV_FILE:
5950       g_free (qtmux->moov_recov_file_path);
5951       qtmux->moov_recov_file_path = g_value_dup_string (value);
5952       break;
5953     case PROP_FRAGMENT_DURATION:
5954       qtmux->fragment_duration = g_value_get_uint (value);
5955       break;
5956     case PROP_STREAMABLE:{
5957       GstQTMuxClass *qtmux_klass =
5958           (GstQTMuxClass *) (G_OBJECT_GET_CLASS (qtmux));
5959       if (qtmux_klass->format == GST_QT_MUX_FORMAT_ISML) {
5960         qtmux->streamable = g_value_get_boolean (value);
5961       }
5962       break;
5963     }
5964     case PROP_RESERVED_MAX_DURATION:
5965       qtmux->reserved_max_duration = g_value_get_uint64 (value);
5966       break;
5967     case PROP_RESERVED_MOOV_UPDATE_PERIOD:
5968       qtmux->reserved_moov_update_period = g_value_get_uint64 (value);
5969       break;
5970     case PROP_RESERVED_BYTES_PER_SEC:
5971       qtmux->reserved_bytes_per_sec_per_trak = g_value_get_uint (value);
5972       break;
5973     case PROP_RESERVED_PREFILL:
5974       qtmux->reserved_prefill = g_value_get_boolean (value);
5975       break;
5976     case PROP_INTERLEAVE_BYTES:
5977       qtmux->interleave_bytes = g_value_get_uint64 (value);
5978       qtmux->interleave_bytes_set = TRUE;
5979       break;
5980     case PROP_INTERLEAVE_TIME:
5981       qtmux->interleave_time = g_value_get_uint64 (value);
5982       qtmux->interleave_time_set = TRUE;
5983       break;
5984     case PROP_MAX_RAW_AUDIO_DRIFT:
5985       qtmux->max_raw_audio_drift = g_value_get_uint64 (value);
5986       break;
5987     default:
5988       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5989       break;
5990   }
5991   GST_OBJECT_UNLOCK (qtmux);
5992 }
5993
5994 static GstStateChangeReturn
5995 gst_qt_mux_change_state (GstElement * element, GstStateChange transition)
5996 {
5997   GstStateChangeReturn ret;
5998   GstQTMux *qtmux = GST_QT_MUX_CAST (element);
5999
6000   switch (transition) {
6001     case GST_STATE_CHANGE_NULL_TO_READY:
6002       break;
6003     case GST_STATE_CHANGE_READY_TO_PAUSED:
6004       gst_collect_pads_start (qtmux->collect);
6005       qtmux->state = GST_QT_MUX_STATE_STARTED;
6006       break;
6007     case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
6008       break;
6009     case GST_STATE_CHANGE_PAUSED_TO_READY:
6010       gst_collect_pads_stop (qtmux->collect);
6011       break;
6012     default:
6013       break;
6014   }
6015
6016   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
6017
6018   switch (transition) {
6019     case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
6020       break;
6021     case GST_STATE_CHANGE_PAUSED_TO_READY:
6022       gst_qt_mux_reset (qtmux, TRUE);
6023       break;
6024     case GST_STATE_CHANGE_READY_TO_NULL:
6025       break;
6026     default:
6027       break;
6028   }
6029
6030   return ret;
6031 }
6032
6033 gboolean
6034 gst_qt_mux_register (GstPlugin * plugin)
6035 {
6036   GTypeInfo typeinfo = {
6037     sizeof (GstQTMuxClass),
6038     (GBaseInitFunc) gst_qt_mux_base_init,
6039     NULL,
6040     (GClassInitFunc) gst_qt_mux_class_init,
6041     NULL,
6042     NULL,
6043     sizeof (GstQTMux),
6044     0,
6045     (GInstanceInitFunc) gst_qt_mux_init,
6046   };
6047   static const GInterfaceInfo tag_setter_info = {
6048     NULL, NULL, NULL
6049   };
6050   static const GInterfaceInfo tag_xmp_writer_info = {
6051     NULL, NULL, NULL
6052   };
6053   static const GInterfaceInfo preset_info = {
6054     NULL, NULL, NULL
6055   };
6056   GType type;
6057   GstQTMuxFormat format;
6058   GstQTMuxClassParams *params;
6059   guint i = 0;
6060
6061   GST_DEBUG_CATEGORY_INIT (gst_qt_mux_debug, "qtmux", 0, "QT Muxer");
6062
6063   GST_LOG ("Registering muxers");
6064
6065   while (TRUE) {
6066     GstQTMuxFormatProp *prop;
6067     GstCaps *subtitle_caps;
6068
6069     prop = &gst_qt_mux_format_list[i];
6070     format = prop->format;
6071     if (format == GST_QT_MUX_FORMAT_NONE)
6072       break;
6073
6074     /* create a cache for these properties */
6075     params = g_new0 (GstQTMuxClassParams, 1);
6076     params->prop = prop;
6077     params->src_caps = gst_static_caps_get (&prop->src_caps);
6078     params->video_sink_caps = gst_static_caps_get (&prop->video_sink_caps);
6079     params->audio_sink_caps = gst_static_caps_get (&prop->audio_sink_caps);
6080     subtitle_caps = gst_static_caps_get (&prop->subtitle_sink_caps);
6081     if (!gst_caps_is_equal (subtitle_caps, GST_CAPS_NONE)) {
6082       params->subtitle_sink_caps = subtitle_caps;
6083     } else {
6084       gst_caps_unref (subtitle_caps);
6085     }
6086
6087     /* create the type now */
6088     type = g_type_register_static (GST_TYPE_ELEMENT, prop->type_name, &typeinfo,
6089         0);
6090     g_type_set_qdata (type, GST_QT_MUX_PARAMS_QDATA, (gpointer) params);
6091     g_type_add_interface_static (type, GST_TYPE_TAG_SETTER, &tag_setter_info);
6092     g_type_add_interface_static (type, GST_TYPE_TAG_XMP_WRITER,
6093         &tag_xmp_writer_info);
6094     g_type_add_interface_static (type, GST_TYPE_PRESET, &preset_info);
6095
6096     if (!gst_element_register (plugin, prop->name, prop->rank, type))
6097       return FALSE;
6098
6099     i++;
6100   }
6101
6102   GST_LOG ("Finished registering muxers");
6103
6104   /* FIXME: ideally classification tag should be added and
6105      registered in gstreamer core gsttaglist
6106    */
6107
6108   GST_LOG ("Registering tags");
6109
6110   gst_tag_register (GST_TAG_3GP_CLASSIFICATION, GST_TAG_FLAG_META,
6111       G_TYPE_STRING, GST_TAG_3GP_CLASSIFICATION, "content classification",
6112       gst_tag_merge_use_first);
6113
6114   GST_LOG ("Finished registering tags");
6115
6116   return TRUE;
6117 }