Merge branch 'master' into 0.11
[platform/upstream/gst-plugins-good.git] / gst / isomp4 / atomsrecovery.c
1 /* Quicktime muxer plugin for GStreamer
2  * Copyright (C) 2010 Thiago Santos <thiago.sousa.santos@collabora.co.uk>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 /*
20  * Unless otherwise indicated, Source Code is licensed under MIT license.
21  * See further explanation attached in License Statement (distributed in the file
22  * LICENSE).
23  *
24  * Permission is hereby granted, free of charge, to any person obtaining a copy of
25  * this software and associated documentation files (the "Software"), to deal in
26  * the Software without restriction, including without limitation the rights to
27  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
28  * of the Software, and to permit persons to whom the Software is furnished to do
29  * so, subject to the following conditions:
30  *
31  * The above copyright notice and this permission notice shall be included in all
32  * copies or substantial portions of the Software.
33  *
34  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
35  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
37  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
38  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
39  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
40  * SOFTWARE.
41  */
42
43 /**
44  * This module contains functions for serializing partial information from
45  * a mux in progress (by qtmux elements). This enables reconstruction of the
46  * moov box if a crash happens and thus recovering the movie file.
47  *
48  * Usage:
49  * 1) pipeline: ...yourelements ! qtmux moov-recovery-file=path.mrf ! \
50  * filesink location=moovie.mov
51  *
52  * 2) CRASH!
53  *
54  * 3) gst-launch qtmoovrecover recovery-input=path.mrf broken-input=moovie.mov \
55         fixed-output=recovered.mov
56  *
57  * 4) (Hopefully) enjoy recovered.mov.
58  *
59  * --- Recovery file layout ---
60  * 1) Version (a guint16)
61  * 2) Prefix atom (if present)
62  * 3) ftyp atom
63  * 4) MVHD atom (without timescale/duration set)
64  * 5) moovie timescale
65  * 6) number of traks
66  * 7) list of trak atoms (stbl data is ignored, except for the stsd atom)
67  * 8) Buffers metadata (metadata that is relevant to the container)
68  *    Buffers metadata are stored in the order they are added to the mdat,
69  *    each entre has a fixed size and is stored in BE. booleans are stored
70  *    as a single byte where 0 means false, otherwise is true.
71  *   Metadata:
72  *   - guint32   track_id;
73  *   - guint32   nsamples;
74  *   - guint32   delta;
75  *   - guint32   size;
76  *   - guint64   chunk_offset;
77  *   - gboolean  sync;
78  *   - gboolean  do_pts;
79  *   - guint64   pts_offset; (always present, ignored if do_pts is false)
80  *
81  * The mdat file might contain ftyp and then mdat, in case this is the faststart
82  * temporary file there is no ftyp and no mdat header, only the buffers data.
83  *
84  * Notes about recovery file layout: We still don't store tags nor EDTS data.
85  *
86  * IMPORTANT: this is still at a experimental state.
87  */
88
89 #include "atomsrecovery.h"
90
91 #define ATOMS_RECOV_OUTPUT_WRITE_ERROR(err) \
92     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE, \
93         "Failed to write to output file: %s", g_strerror (errno))
94
95 static gboolean
96 atoms_recov_write_version (FILE * f)
97 {
98   guint8 data[2];
99   GST_WRITE_UINT16_BE (data, ATOMS_RECOV_FILE_VERSION);
100   return fwrite (data, 2, 1, f) == 1;
101 }
102
103 static gboolean
104 atoms_recov_write_ftyp_info (FILE * f, AtomFTYP * ftyp, GstBuffer * prefix)
105 {
106   guint8 *data = NULL;
107   guint64 offset = 0;
108   guint64 size = 0;
109
110   if (prefix) {
111     GstMapInfo map;
112
113     gst_buffer_map (prefix, &map, GST_MAP_READ);
114     if (fwrite (map.data, 1, map.size, f) != map.size) {
115       gst_buffer_unmap (prefix, &map);
116       return FALSE;
117     }
118     gst_buffer_unmap (prefix, &map);
119   }
120   if (!atom_ftyp_copy_data (ftyp, &data, &size, &offset)) {
121     return FALSE;
122   }
123   if (fwrite (data, 1, offset, f) != offset) {
124     g_free (data);
125     return FALSE;
126   }
127   g_free (data);
128   return TRUE;
129 }
130
131 /**
132  * Writes important info on the 'moov' atom (non-trak related)
133  * to be able to recover the moov structure after a crash.
134  *
135  * Currently, it writes the MVHD atom.
136  */
137 static gboolean
138 atoms_recov_write_moov_info (FILE * f, AtomMOOV * moov)
139 {
140   guint8 *data;
141   guint64 size;
142   guint64 offset = 0;
143   guint64 atom_size = 0;
144   gint writen = 0;
145
146   /* likely enough */
147   size = 256;
148   data = g_malloc (size);
149   atom_size = atom_mvhd_copy_data (&moov->mvhd, &data, &size, &offset);
150   if (atom_size > 0)
151     writen = fwrite (data, 1, atom_size, f);
152   g_free (data);
153   return atom_size > 0 && writen == atom_size;
154 }
155
156 /**
157  * Writes the number of traks to the file.
158  * This simply writes a guint32 in BE.
159  */
160 static gboolean
161 atoms_recov_write_traks_number (FILE * f, guint32 traks)
162 {
163   guint8 data[4];
164   GST_WRITE_UINT32_BE (data, traks);
165   return fwrite (data, 4, 1, f) == 1;
166 }
167
168 /**
169  * Writes the moov's timescale to the file
170  * This simply writes a guint32 in BE.
171  */
172 static gboolean
173 atoms_recov_write_moov_timescale (FILE * f, guint32 timescale)
174 {
175   guint8 data[4];
176   GST_WRITE_UINT32_BE (data, timescale);
177   return fwrite (data, 4, 1, f) == 1;
178 }
179
180 /**
181  * Writes the trak atom to the file.
182  */
183 gboolean
184 atoms_recov_write_trak_info (FILE * f, AtomTRAK * trak)
185 {
186   guint8 *data;
187   guint64 size;
188   guint64 offset = 0;
189   guint64 atom_size = 0;
190   gint writen = 0;
191
192   /* buffer is realloced to a larger size if needed */
193   size = 4 * 1024;
194   data = g_malloc (size);
195   atom_size = atom_trak_copy_data (trak, &data, &size, &offset);
196   if (atom_size > 0)
197     writen = fwrite (data, atom_size, 1, f);
198   g_free (data);
199   return atom_size > 0 && writen == atom_size;
200 }
201
202 gboolean
203 atoms_recov_write_trak_samples (FILE * f, AtomTRAK * trak, guint32 nsamples,
204     guint32 delta, guint32 size, guint64 chunk_offset, gboolean sync,
205     gboolean do_pts, gint64 pts_offset)
206 {
207   guint8 data[TRAK_BUFFER_ENTRY_INFO_SIZE];
208   /*
209    * We have to write a TrakBufferEntryInfo
210    */
211   GST_WRITE_UINT32_BE (data + 0, trak->tkhd.track_ID);
212   GST_WRITE_UINT32_BE (data + 4, nsamples);
213   GST_WRITE_UINT32_BE (data + 8, delta);
214   GST_WRITE_UINT32_BE (data + 12, size);
215   GST_WRITE_UINT64_BE (data + 16, chunk_offset);
216   if (sync)
217     GST_WRITE_UINT8 (data + 24, 1);
218   else
219     GST_WRITE_UINT8 (data + 24, 0);
220   if (do_pts) {
221     GST_WRITE_UINT8 (data + 25, 1);
222     GST_WRITE_UINT64_BE (data + 26, pts_offset);
223   } else {
224     GST_WRITE_UINT8 (data + 25, 0);
225     GST_WRITE_UINT64_BE (data + 26, 0);
226   }
227
228   return fwrite (data, 1, TRAK_BUFFER_ENTRY_INFO_SIZE, f) ==
229       TRAK_BUFFER_ENTRY_INFO_SIZE;
230 }
231
232 gboolean
233 atoms_recov_write_headers (FILE * f, AtomFTYP * ftyp, GstBuffer * prefix,
234     AtomMOOV * moov, guint32 timescale, guint32 traks_number)
235 {
236   if (!atoms_recov_write_version (f)) {
237     return FALSE;
238   }
239
240   if (!atoms_recov_write_ftyp_info (f, ftyp, prefix)) {
241     return FALSE;
242   }
243
244   if (!atoms_recov_write_moov_info (f, moov)) {
245     return FALSE;
246   }
247
248   if (!atoms_recov_write_moov_timescale (f, timescale)) {
249     return FALSE;
250   }
251
252   if (!atoms_recov_write_traks_number (f, traks_number)) {
253     return FALSE;
254   }
255
256   return TRUE;
257 }
258
259 static gboolean
260 read_atom_header (FILE * f, guint32 * fourcc, guint32 * size)
261 {
262   guint8 aux[8];
263
264   if (fread (aux, 1, 8, f) != 8)
265     return FALSE;
266   *size = GST_READ_UINT32_BE (aux);
267   *fourcc = GST_READ_UINT32_LE (aux + 4);
268   return TRUE;
269 }
270
271 static gboolean
272 moov_recov_file_parse_prefix (MoovRecovFile * moovrf)
273 {
274   guint32 fourcc;
275   guint32 size;
276   guint32 total_size = 0;
277   if (fseek (moovrf->file, 2, SEEK_SET) != 0)
278     return FALSE;
279   if (!read_atom_header (moovrf->file, &fourcc, &size)) {
280     return FALSE;
281   }
282
283   if (fourcc != FOURCC_ftyp) {
284     /* we might have a prefix here */
285     if (fseek (moovrf->file, size - 8, SEEK_CUR) != 0)
286       return FALSE;
287
288     total_size += size;
289
290     /* now read the ftyp */
291     if (!read_atom_header (moovrf->file, &fourcc, &size))
292       return FALSE;
293   }
294
295   /* this has to be the ftyp */
296   if (fourcc != FOURCC_ftyp)
297     return FALSE;
298   total_size += size;
299   moovrf->prefix_size = total_size;
300   return fseek (moovrf->file, size - 8, SEEK_CUR) == 0;
301 }
302
303 static gboolean
304 moov_recov_file_parse_mvhd (MoovRecovFile * moovrf)
305 {
306   guint32 fourcc;
307   guint32 size;
308   if (!read_atom_header (moovrf->file, &fourcc, &size)) {
309     return FALSE;
310   }
311   /* check for sanity */
312   if (fourcc != FOURCC_mvhd)
313     return FALSE;
314
315   moovrf->mvhd_size = size;
316   moovrf->mvhd_pos = ftell (moovrf->file) - 8;
317
318   /* skip the remaining of the mvhd in the file */
319   return fseek (moovrf->file, size - 8, SEEK_CUR) == 0;
320 }
321
322 static gboolean
323 mdat_recov_file_parse_mdat_start (MdatRecovFile * mdatrf)
324 {
325   guint32 fourcc, size;
326
327   if (!read_atom_header (mdatrf->file, &fourcc, &size)) {
328     return FALSE;
329   }
330   if (size == 1) {
331     mdatrf->mdat_header_size = 16;
332     mdatrf->mdat_size = 16;
333   } else {
334     mdatrf->mdat_header_size = 8;
335     mdatrf->mdat_size = 8;
336   }
337   mdatrf->mdat_start = ftell (mdatrf->file) - 8;
338
339   return fourcc == FOURCC_mdat;
340 }
341
342 MdatRecovFile *
343 mdat_recov_file_create (FILE * file, gboolean datafile, GError ** err)
344 {
345   MdatRecovFile *mrf = g_new0 (MdatRecovFile, 1);
346   guint32 fourcc, size;
347
348   g_return_val_if_fail (file != NULL, NULL);
349
350   mrf->file = file;
351   mrf->rawfile = datafile;
352
353   /* get the file/data length */
354   if (fseek (file, 0, SEEK_END) != 0)
355     goto file_length_error;
356   /* still needs to deduce the mdat header and ftyp size */
357   mrf->data_size = ftell (file);
358   if (mrf->data_size == -1L)
359     goto file_length_error;
360
361   if (fseek (file, 0, SEEK_SET) != 0)
362     goto file_seek_error;
363
364   if (datafile) {
365     /* this file contains no atoms, only raw data to be placed on the mdat
366      * this happens when faststart mode is used */
367     mrf->mdat_start = 0;
368     mrf->mdat_header_size = 16;
369     mrf->mdat_size = 16;
370     return mrf;
371   }
372
373   if (!read_atom_header (file, &fourcc, &size)) {
374     goto parse_error;
375   }
376   if (fourcc != FOURCC_ftyp) {
377     /* this could be a prefix atom, let's skip it and try again */
378     if (fseek (file, size - 8, SEEK_CUR) != 0) {
379       goto file_seek_error;
380     }
381     if (!read_atom_header (file, &fourcc, &size)) {
382       goto parse_error;
383     }
384   }
385
386   if (fourcc != FOURCC_ftyp) {
387     goto parse_error;
388   }
389   if (fseek (file, size - 8, SEEK_CUR) != 0)
390     goto file_seek_error;
391
392   /* we don't parse this if we have a tmpdatafile */
393   if (!mdat_recov_file_parse_mdat_start (mrf)) {
394     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_PARSING,
395         "Error while parsing mdat atom");
396     goto fail;
397   }
398
399   return mrf;
400
401 parse_error:
402   g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE,
403       "Failed to parse atom");
404   goto fail;
405
406 file_seek_error:
407   g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE,
408       "Failed to seek to start of the file");
409   goto fail;
410
411 file_length_error:
412   g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE,
413       "Failed to determine file size");
414   goto fail;
415
416 fail:
417   mdat_recov_file_free (mrf);
418   return NULL;
419 }
420
421 void
422 mdat_recov_file_free (MdatRecovFile * mrf)
423 {
424   fclose (mrf->file);
425   g_free (mrf);
426 }
427
428 static gboolean
429 moov_recov_parse_num_traks (MoovRecovFile * moovrf)
430 {
431   guint8 traks[4];
432   if (fread (traks, 1, 4, moovrf->file) != 4)
433     return FALSE;
434   moovrf->num_traks = GST_READ_UINT32_BE (traks);
435   return TRUE;
436 }
437
438 static gboolean
439 moov_recov_parse_moov_timescale (MoovRecovFile * moovrf)
440 {
441   guint8 ts[4];
442   if (fread (ts, 1, 4, moovrf->file) != 4)
443     return FALSE;
444   moovrf->timescale = GST_READ_UINT32_BE (ts);
445   return TRUE;
446 }
447
448 static gboolean
449 skip_atom (MoovRecovFile * moovrf, guint32 expected_fourcc)
450 {
451   guint32 size;
452   guint32 fourcc;
453
454   if (!read_atom_header (moovrf->file, &fourcc, &size))
455     return FALSE;
456   if (fourcc != expected_fourcc)
457     return FALSE;
458
459   return (fseek (moovrf->file, size - 8, SEEK_CUR) == 0);
460 }
461
462 static gboolean
463 moov_recov_parse_tkhd (MoovRecovFile * moovrf, TrakRecovData * trakrd)
464 {
465   guint32 size;
466   guint32 fourcc;
467   guint8 data[4];
468
469   /* make sure we are on a tkhd atom */
470   if (!read_atom_header (moovrf->file, &fourcc, &size))
471     return FALSE;
472   if (fourcc != FOURCC_tkhd)
473     return FALSE;
474
475   trakrd->tkhd_file_offset = ftell (moovrf->file) - 8;
476
477   /* move 8 bytes forward to the trak_id pos */
478   if (fseek (moovrf->file, 12, SEEK_CUR) != 0)
479     return FALSE;
480   if (fread (data, 1, 4, moovrf->file) != 4)
481     return FALSE;
482
483   /* advance the rest of tkhd */
484   fseek (moovrf->file, 68, SEEK_CUR);
485
486   trakrd->trak_id = GST_READ_UINT32_BE (data);
487   return TRUE;
488 }
489
490 static gboolean
491 moov_recov_parse_stbl (MoovRecovFile * moovrf, TrakRecovData * trakrd)
492 {
493   guint32 size;
494   guint32 fourcc;
495   guint32 auxsize;
496
497   if (!read_atom_header (moovrf->file, &fourcc, &size))
498     return FALSE;
499   if (fourcc != FOURCC_stbl)
500     return FALSE;
501
502   trakrd->stbl_file_offset = ftell (moovrf->file) - 8;
503   trakrd->stbl_size = size;
504
505   /* skip the stsd */
506   if (!read_atom_header (moovrf->file, &fourcc, &auxsize))
507     return FALSE;
508   if (fourcc != FOURCC_stsd)
509     return FALSE;
510   if (fseek (moovrf->file, auxsize - 8, SEEK_CUR) != 0)
511     return FALSE;
512
513   trakrd->stsd_size = auxsize;
514   trakrd->post_stsd_offset = ftell (moovrf->file);
515
516   /* as this is the last atom we parse, we don't skip forward */
517
518   return TRUE;
519 }
520
521 static gboolean
522 moov_recov_parse_minf (MoovRecovFile * moovrf, TrakRecovData * trakrd)
523 {
524   guint32 size;
525   guint32 fourcc;
526   guint32 auxsize;
527
528   if (!read_atom_header (moovrf->file, &fourcc, &size))
529     return FALSE;
530   if (fourcc != FOURCC_minf)
531     return FALSE;
532
533   trakrd->minf_file_offset = ftell (moovrf->file) - 8;
534   trakrd->minf_size = size;
535
536   /* skip either of vmhd, smhd, hmhd that might follow */
537   if (!read_atom_header (moovrf->file, &fourcc, &auxsize))
538     return FALSE;
539   if (fourcc != FOURCC_vmhd && fourcc != FOURCC_smhd && fourcc != FOURCC_hmhd &&
540       fourcc != FOURCC_gmhd)
541     return FALSE;
542   if (fseek (moovrf->file, auxsize - 8, SEEK_CUR))
543     return FALSE;
544
545   /* skip a possible hdlr and the following dinf */
546   if (!read_atom_header (moovrf->file, &fourcc, &auxsize))
547     return FALSE;
548   if (fourcc == FOURCC_hdlr) {
549     if (fseek (moovrf->file, auxsize - 8, SEEK_CUR))
550       return FALSE;
551     if (!read_atom_header (moovrf->file, &fourcc, &auxsize))
552       return FALSE;
553   }
554   if (fourcc != FOURCC_dinf)
555     return FALSE;
556   if (fseek (moovrf->file, auxsize - 8, SEEK_CUR))
557     return FALSE;
558
559   /* now we are ready to read the stbl */
560   if (!moov_recov_parse_stbl (moovrf, trakrd))
561     return FALSE;
562
563   return TRUE;
564 }
565
566 static gboolean
567 moov_recov_parse_mdhd (MoovRecovFile * moovrf, TrakRecovData * trakrd)
568 {
569   guint32 size;
570   guint32 fourcc;
571   guint8 data[4];
572
573   /* make sure we are on a tkhd atom */
574   if (!read_atom_header (moovrf->file, &fourcc, &size))
575     return FALSE;
576   if (fourcc != FOURCC_mdhd)
577     return FALSE;
578
579   trakrd->mdhd_file_offset = ftell (moovrf->file) - 8;
580
581   /* get the timescale */
582   if (fseek (moovrf->file, 12, SEEK_CUR) != 0)
583     return FALSE;
584   if (fread (data, 1, 4, moovrf->file) != 4)
585     return FALSE;
586   trakrd->timescale = GST_READ_UINT32_BE (data);
587   if (fseek (moovrf->file, 8, SEEK_CUR) != 0)
588     return FALSE;
589   return TRUE;
590 }
591
592 static gboolean
593 moov_recov_parse_mdia (MoovRecovFile * moovrf, TrakRecovData * trakrd)
594 {
595   guint32 size;
596   guint32 fourcc;
597
598   /* make sure we are on a tkhd atom */
599   if (!read_atom_header (moovrf->file, &fourcc, &size))
600     return FALSE;
601   if (fourcc != FOURCC_mdia)
602     return FALSE;
603
604   trakrd->mdia_file_offset = ftell (moovrf->file) - 8;
605   trakrd->mdia_size = size;
606
607   if (!moov_recov_parse_mdhd (moovrf, trakrd))
608     return FALSE;
609
610   if (!skip_atom (moovrf, FOURCC_hdlr))
611     return FALSE;
612   if (!moov_recov_parse_minf (moovrf, trakrd))
613     return FALSE;
614   return TRUE;
615 }
616
617 static gboolean
618 moov_recov_parse_trak (MoovRecovFile * moovrf, TrakRecovData * trakrd)
619 {
620   guint64 offset;
621   guint32 size;
622   guint32 fourcc;
623
624   offset = ftell (moovrf->file);
625   if (offset == -1) {
626     return FALSE;
627   }
628
629   /* make sure we are on a trak atom */
630   if (!read_atom_header (moovrf->file, &fourcc, &size)) {
631     return FALSE;
632   }
633   if (fourcc != FOURCC_trak) {
634     return FALSE;
635   }
636   trakrd->trak_size = size;
637
638   /* now we should have a trak header 'tkhd' */
639   if (!moov_recov_parse_tkhd (moovrf, trakrd))
640     return FALSE;
641
642   /* FIXME add edts handling here and in qtmux, as this is only detected
643    * after buffers start flowing */
644
645   if (!moov_recov_parse_mdia (moovrf, trakrd))
646     return FALSE;
647
648   trakrd->file_offset = offset;
649   /* position after the trak */
650   return fseek (moovrf->file, (long int) offset + size, SEEK_SET) == 0;
651 }
652
653 MoovRecovFile *
654 moov_recov_file_create (FILE * file, GError ** err)
655 {
656   gint i;
657   MoovRecovFile *moovrf = g_new0 (MoovRecovFile, 1);
658
659   g_return_val_if_fail (file != NULL, NULL);
660
661   moovrf->file = file;
662
663   /* look for ftyp and prefix at the start */
664   if (!moov_recov_file_parse_prefix (moovrf)) {
665     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_PARSING,
666         "Error while parsing prefix atoms");
667     goto fail;
668   }
669
670   /* parse the mvhd */
671   if (!moov_recov_file_parse_mvhd (moovrf)) {
672     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_PARSING,
673         "Error while parsing mvhd atom");
674     goto fail;
675   }
676
677   if (!moov_recov_parse_moov_timescale (moovrf)) {
678     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_PARSING,
679         "Error while parsing timescale");
680     goto fail;
681   }
682   if (!moov_recov_parse_num_traks (moovrf)) {
683     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_PARSING,
684         "Error while parsing parsing number of traks");
685     goto fail;
686   }
687
688   /* sanity check */
689   if (moovrf->num_traks > 1024) {
690     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_PARSING,
691         "Unsupported number of traks");
692     goto fail;
693   }
694
695   /* init the traks */
696   moovrf->traks_rd = g_new0 (TrakRecovData, moovrf->num_traks);
697   for (i = 0; i < moovrf->num_traks; i++) {
698     atom_stbl_init (&(moovrf->traks_rd[i].stbl));
699   }
700   for (i = 0; i < moovrf->num_traks; i++) {
701     if (!moov_recov_parse_trak (moovrf, &(moovrf->traks_rd[i]))) {
702       g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_PARSING,
703           "Error while parsing trak atom");
704       goto fail;
705     }
706   }
707
708   return moovrf;
709
710 fail:
711   moov_recov_file_free (moovrf);
712   return NULL;
713 }
714
715 void
716 moov_recov_file_free (MoovRecovFile * moovrf)
717 {
718   gint i;
719   fclose (moovrf->file);
720   if (moovrf->traks_rd) {
721     for (i = 0; i < moovrf->num_traks; i++) {
722       atom_stbl_clear (&(moovrf->traks_rd[i].stbl));
723     }
724     g_free (moovrf->traks_rd);
725   }
726   g_free (moovrf);
727 }
728
729 static gboolean
730 moov_recov_parse_buffer_entry (MoovRecovFile * moovrf, TrakBufferEntryInfo * b)
731 {
732   guint8 data[TRAK_BUFFER_ENTRY_INFO_SIZE];
733   gint read;
734
735   read = fread (data, 1, TRAK_BUFFER_ENTRY_INFO_SIZE, moovrf->file);
736   if (read != TRAK_BUFFER_ENTRY_INFO_SIZE)
737     return FALSE;
738
739   b->track_id = GST_READ_UINT32_BE (data);
740   b->nsamples = GST_READ_UINT32_BE (data + 4);
741   b->delta = GST_READ_UINT32_BE (data + 8);
742   b->size = GST_READ_UINT32_BE (data + 12);
743   b->chunk_offset = GST_READ_UINT64_BE (data + 16);
744   b->sync = data[24] != 0;
745   b->do_pts = data[25] != 0;
746   b->pts_offset = GST_READ_UINT64_BE (data + 26);
747   return TRUE;
748 }
749
750 static gboolean
751 mdat_recov_add_sample (MdatRecovFile * mdatrf, guint32 size)
752 {
753   /* test if this data exists */
754   if (mdatrf->mdat_size - mdatrf->mdat_header_size + size > mdatrf->data_size)
755     return FALSE;
756
757   mdatrf->mdat_size += size;
758   return TRUE;
759 }
760
761 static TrakRecovData *
762 moov_recov_get_trak (MoovRecovFile * moovrf, guint32 id)
763 {
764   gint i;
765   for (i = 0; i < moovrf->num_traks; i++) {
766     if (moovrf->traks_rd[i].trak_id == id)
767       return &(moovrf->traks_rd[i]);
768   }
769   return NULL;
770 }
771
772 static void
773 trak_recov_data_add_sample (TrakRecovData * trak, TrakBufferEntryInfo * b)
774 {
775   trak->duration += b->nsamples * b->delta;
776   atom_stbl_add_samples (&trak->stbl, b->nsamples, b->delta, b->size,
777       b->chunk_offset, b->sync, b->pts_offset);
778 }
779
780 /**
781  * Parses the buffer entries in the MoovRecovFile and matches the inputs
782  * with the data in the MdatRecovFile. Whenever a buffer entry of that
783  * represents 'x' bytes of data, the same amount of data is 'validated' in
784  * the MdatRecovFile and will be inluded in the generated moovie file.
785  */
786 gboolean
787 moov_recov_parse_buffers (MoovRecovFile * moovrf, MdatRecovFile * mdatrf,
788     GError ** err)
789 {
790   TrakBufferEntryInfo entry;
791   TrakRecovData *trak;
792
793   /* we assume both moovrf and mdatrf are at the starting points of their
794    * data reading */
795   while (moov_recov_parse_buffer_entry (moovrf, &entry)) {
796     /* be sure we still have this data in mdat */
797     trak = moov_recov_get_trak (moovrf, entry.track_id);
798     if (trak == NULL) {
799       g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_PARSING,
800           "Invalid trak id found in buffer entry");
801       return FALSE;
802     }
803     if (!mdat_recov_add_sample (mdatrf, entry.size))
804       break;
805     trak_recov_data_add_sample (trak, &entry);
806   }
807   return TRUE;
808 }
809
810 static guint32
811 trak_recov_data_get_trak_atom_size (TrakRecovData * trak)
812 {
813   AtomSTBL *stbl = &trak->stbl;
814   guint64 offset;
815
816   /* write out our stbl child atoms */
817   offset = 0;
818
819   if (!atom_stts_copy_data (&stbl->stts, NULL, NULL, &offset)) {
820     goto fail;
821   }
822   if (atom_array_get_len (&stbl->stss.entries) > 0) {
823     if (!atom_stss_copy_data (&stbl->stss, NULL, NULL, &offset)) {
824       goto fail;
825     }
826   }
827   if (!atom_stsc_copy_data (&stbl->stsc, NULL, NULL, &offset)) {
828     goto fail;
829   }
830   if (!atom_stsz_copy_data (&stbl->stsz, NULL, NULL, &offset)) {
831     goto fail;
832   }
833   if (stbl->ctts) {
834     if (!atom_ctts_copy_data (stbl->ctts, NULL, NULL, &offset)) {
835       goto fail;
836     }
837   }
838   if (!atom_stco64_copy_data (&stbl->stco64, NULL, NULL, &offset)) {
839     goto fail;
840   }
841
842   return trak->trak_size + ((trak->stsd_size + offset + 8) - trak->stbl_size);
843
844 fail:
845   return 0;
846 }
847
848 static guint8 *
849 moov_recov_get_stbl_children_data (MoovRecovFile * moovrf, TrakRecovData * trak,
850     guint64 * p_size)
851 {
852   AtomSTBL *stbl = &trak->stbl;
853   guint8 *buffer;
854   guint64 size;
855   guint64 offset;
856
857   /* write out our stbl child atoms
858    *
859    * Use 1MB as a starting size, *_copy_data functions
860    * will grow the buffer if needed.
861    */
862   size = 1024 * 1024;
863   buffer = g_malloc0 (size);
864   offset = 0;
865
866   if (!atom_stts_copy_data (&stbl->stts, &buffer, &size, &offset)) {
867     goto fail;
868   }
869   if (atom_array_get_len (&stbl->stss.entries) > 0) {
870     if (!atom_stss_copy_data (&stbl->stss, &buffer, &size, &offset)) {
871       goto fail;
872     }
873   }
874   if (!atom_stsc_copy_data (&stbl->stsc, &buffer, &size, &offset)) {
875     goto fail;
876   }
877   if (!atom_stsz_copy_data (&stbl->stsz, &buffer, &size, &offset)) {
878     goto fail;
879   }
880   if (stbl->ctts) {
881     if (!atom_ctts_copy_data (stbl->ctts, &buffer, &size, &offset)) {
882       goto fail;
883     }
884   }
885   if (!atom_stco64_copy_data (&stbl->stco64, &buffer, &size, &offset)) {
886     goto fail;
887   }
888   *p_size = offset;
889   return buffer;
890
891 fail:
892   g_free (buffer);
893   return NULL;
894 }
895
896 gboolean
897 moov_recov_write_file (MoovRecovFile * moovrf, MdatRecovFile * mdatrf,
898     FILE * outf, GError ** err)
899 {
900   guint8 auxdata[16];
901   guint8 *data = NULL;
902   guint8 *prefix_data = NULL;
903   guint8 *mvhd_data = NULL;
904   guint8 *trak_data = NULL;
905   guint32 moov_size = 0;
906   gint i;
907   guint64 stbl_children_size = 0;
908   guint8 *stbl_children = NULL;
909   guint32 longest_duration = 0;
910   guint16 version;
911
912   /* check the version */
913   if (fseek (moovrf->file, 0, SEEK_SET) != 0) {
914     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE,
915         "Failed to seek to the start of the moov recovery file");
916     goto fail;
917   }
918   if (fread (auxdata, 1, 2, moovrf->file) != 2) {
919     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE,
920         "Failed to read version from file");
921   }
922
923   version = GST_READ_UINT16_BE (auxdata);
924   if (version != ATOMS_RECOV_FILE_VERSION) {
925     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_VERSION,
926         "Input file version (%u) is not supported in this version (%u)",
927         version, ATOMS_RECOV_FILE_VERSION);
928     return FALSE;
929   }
930
931   /* write the ftyp */
932   prefix_data = g_malloc (moovrf->prefix_size);
933   if (fread (prefix_data, 1, moovrf->prefix_size,
934           moovrf->file) != moovrf->prefix_size) {
935     g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE,
936         "Failed to read the ftyp atom from file");
937     goto fail;
938   }
939   if (fwrite (prefix_data, 1, moovrf->prefix_size, outf) != moovrf->prefix_size) {
940     ATOMS_RECOV_OUTPUT_WRITE_ERROR (err);
941     goto fail;
942   }
943   g_free (prefix_data);
944   prefix_data = NULL;
945
946   /* need to calculate the moov size beforehand to add the offset to
947    * chunk offset entries */
948   moov_size += moovrf->mvhd_size + 8;   /* mvhd + moov size + fourcc */
949   for (i = 0; i < moovrf->num_traks; i++) {
950     TrakRecovData *trak = &(moovrf->traks_rd[i]);
951     guint32 duration;           /* in moov's timescale */
952     guint32 trak_size;
953
954     /* convert trak duration to moov's duration */
955     duration = gst_util_uint64_scale_round (trak->duration, moovrf->timescale,
956         trak->timescale);
957
958     if (duration > longest_duration)
959       longest_duration = duration;
960     trak_size = trak_recov_data_get_trak_atom_size (trak);
961     if (trak_size == 0) {
962       g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_GENERIC,
963           "Failed to estimate trak atom size");
964       goto fail;
965     }
966     moov_size += trak_size;
967   }
968
969   /* add chunks offsets */
970   for (i = 0; i < moovrf->num_traks; i++) {
971     TrakRecovData *trak = &(moovrf->traks_rd[i]);
972     /* 16 for the mdat header */
973     gint64 offset = moov_size + ftell (outf) + 16;
974     atom_stco64_chunks_add_offset (&trak->stbl.stco64, offset);
975   }
976
977   /* write the moov */
978   GST_WRITE_UINT32_BE (auxdata, moov_size);
979   GST_WRITE_UINT32_LE (auxdata + 4, FOURCC_moov);
980   if (fwrite (auxdata, 1, 8, outf) != 8) {
981     ATOMS_RECOV_OUTPUT_WRITE_ERROR (err);
982     goto fail;
983   }
984
985   /* write the mvhd */
986   mvhd_data = g_malloc (moovrf->mvhd_size);
987   if (fseek (moovrf->file, moovrf->mvhd_pos, SEEK_SET) != 0)
988     goto fail;
989   if (fread (mvhd_data, 1, moovrf->mvhd_size,
990           moovrf->file) != moovrf->mvhd_size)
991     goto fail;
992   GST_WRITE_UINT32_BE (mvhd_data + 20, moovrf->timescale);
993   GST_WRITE_UINT32_BE (mvhd_data + 24, longest_duration);
994   if (fwrite (mvhd_data, 1, moovrf->mvhd_size, outf) != moovrf->mvhd_size) {
995     ATOMS_RECOV_OUTPUT_WRITE_ERROR (err);
996     goto fail;
997   }
998   g_free (mvhd_data);
999   mvhd_data = NULL;
1000
1001   /* write the traks, this is the tough part because we need to update:
1002    * - stbl atom
1003    * - sizes of atoms from stbl to trak
1004    * - trak duration
1005    */
1006   for (i = 0; i < moovrf->num_traks; i++) {
1007     TrakRecovData *trak = &(moovrf->traks_rd[i]);
1008     guint trak_data_size;
1009     guint32 stbl_new_size;
1010     guint32 minf_new_size;
1011     guint32 mdia_new_size;
1012     guint32 trak_new_size;
1013     guint32 size_diff;
1014     guint32 duration;           /* in moov's timescale */
1015
1016     /* convert trak duration to moov's duration */
1017     duration = gst_util_uint64_scale_round (trak->duration, moovrf->timescale,
1018         trak->timescale);
1019
1020     stbl_children = moov_recov_get_stbl_children_data (moovrf, trak,
1021         &stbl_children_size);
1022     if (stbl_children == NULL)
1023       goto fail;
1024
1025     /* calc the new size of the atoms from stbl to trak in the atoms tree */
1026     stbl_new_size = trak->stsd_size + stbl_children_size + 8;
1027     size_diff = stbl_new_size - trak->stbl_size;
1028     minf_new_size = trak->minf_size + size_diff;
1029     mdia_new_size = trak->mdia_size + size_diff;
1030     trak_new_size = trak->trak_size + size_diff;
1031
1032     if (fseek (moovrf->file, trak->file_offset, SEEK_SET) != 0)
1033       goto fail;
1034     trak_data_size = trak->post_stsd_offset - trak->file_offset;
1035     trak_data = g_malloc (trak_data_size);
1036     if (fread (trak_data, 1, trak_data_size, moovrf->file) != trak_data_size) {
1037       goto fail;
1038     }
1039     /* update the size values in those read atoms before writing */
1040     GST_WRITE_UINT32_BE (trak_data, trak_new_size);
1041     GST_WRITE_UINT32_BE (trak_data + (trak->mdia_file_offset -
1042             trak->file_offset), mdia_new_size);
1043     GST_WRITE_UINT32_BE (trak_data + (trak->minf_file_offset -
1044             trak->file_offset), minf_new_size);
1045     GST_WRITE_UINT32_BE (trak_data + (trak->stbl_file_offset -
1046             trak->file_offset), stbl_new_size);
1047
1048     /* update duration values in tkhd and mdhd */
1049     GST_WRITE_UINT32_BE (trak_data + (trak->tkhd_file_offset -
1050             trak->file_offset) + 28, duration);
1051     GST_WRITE_UINT32_BE (trak_data + (trak->mdhd_file_offset -
1052             trak->file_offset) + 24, trak->duration);
1053
1054     if (fwrite (trak_data, 1, trak_data_size, outf) != trak_data_size) {
1055       ATOMS_RECOV_OUTPUT_WRITE_ERROR (err);
1056       goto fail;
1057     }
1058     if (fwrite (stbl_children, 1, stbl_children_size, outf) !=
1059         stbl_children_size) {
1060       ATOMS_RECOV_OUTPUT_WRITE_ERROR (err);
1061       goto fail;
1062     }
1063     g_free (trak_data);
1064     trak_data = NULL;
1065     g_free (stbl_children);
1066     stbl_children = NULL;
1067   }
1068
1069   /* write the mdat */
1070   /* write the header first */
1071   GST_WRITE_UINT32_BE (auxdata, 1);
1072   GST_WRITE_UINT32_LE (auxdata + 4, FOURCC_mdat);
1073   GST_WRITE_UINT64_BE (auxdata + 8, mdatrf->mdat_size);
1074   if (fwrite (auxdata, 1, 16, outf) != 16) {
1075     ATOMS_RECOV_OUTPUT_WRITE_ERROR (err);
1076     goto fail;
1077   }
1078
1079   /* now read the mdat data and output to the file */
1080   if (fseek (mdatrf->file, mdatrf->mdat_start +
1081           (mdatrf->rawfile ? 0 : mdatrf->mdat_header_size), SEEK_SET) != 0)
1082     goto fail;
1083
1084   data = g_malloc (4096);
1085   while (!feof (mdatrf->file)) {
1086     gint read, write;
1087
1088     read = fread (data, 1, 4096, mdatrf->file);
1089     write = fwrite (data, 1, read, outf);
1090
1091     if (write != read) {
1092       g_set_error (err, ATOMS_RECOV_QUARK, ATOMS_RECOV_ERR_FILE,
1093           "Failed to copy data to output file: %s", g_strerror (errno));
1094       goto fail;
1095     }
1096   }
1097   g_free (data);
1098
1099   return TRUE;
1100
1101 fail:
1102   g_free (stbl_children);
1103   g_free (mvhd_data);
1104   g_free (prefix_data);
1105   g_free (trak_data);
1106   g_free (data);
1107   return FALSE;
1108 }