]> git.tuebingen.mpg.de Git - paraslash.git/blob - mp4.c
mp4: Add error checking for atom_read().
[paraslash.git] / mp4.c
1 /*
2  * Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
3  * FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
4  *
5  * See file COPYING.
6  */
7
8 #include <regex.h>
9
10 #include "para.h"
11 #include "portable_io.h"
12 #include "string.h"
13 #include "mp4.h"
14
15 struct mp4_track {
16         bool is_audio;
17         uint16_t channelCount;
18         uint16_t sampleRate;
19
20         /* stsz */
21         uint32_t stsz_sample_size;
22         uint32_t stsz_sample_count;
23         uint32_t *stsz_table;
24
25         /* stts */
26         uint32_t stts_entry_count;
27         uint32_t *stts_sample_count;
28         uint32_t *stts_sample_delta;
29
30         /* stsc */
31         uint32_t stsc_entry_count;
32         uint32_t *stsc_first_chunk;
33         uint32_t *stsc_samples_per_chunk;
34         uint32_t *stsc_sample_desc_index;
35
36         /* stsc */
37         uint32_t stco_entry_count;
38         uint32_t *stco_chunk_offset;
39
40         uint32_t timeScale;
41         uint64_t duration;
42 };
43
44 #define MAX_TRACKS 1024
45
46 struct mp4 {
47         const struct mp4_callback *cb;
48         int64_t current_position;
49
50         uint64_t moov_offset;
51         uint64_t moov_size;
52         uint8_t last_atom;
53         uint64_t file_size;
54
55         uint32_t error;
56
57         /* incremental track index while reading the file */
58         int32_t total_tracks;
59
60         /* track data */
61         struct mp4_track *track[MAX_TRACKS];
62
63         /* metadata */
64         struct mp4_metadata meta;
65 };
66
67 int32_t mp4_total_tracks(const struct mp4 *f)
68 {
69         return f->total_tracks;
70 }
71
72 /*
73  * Returns -1, 0, or 1 on errors/EOF/success. Partial reads followed by EOF or
74  * read errors are treated as errors.
75  */
76 static int read_data(struct mp4 *f, void *data, size_t size)
77 {
78         while (size > 0) {
79                 ssize_t ret = f->cb->read(f->cb->user_data, data, size);
80                 if (ret < 0 && errno == EINTR)
81                         continue;
82                 /* regard EAGAIN as an error as reads should be blocking. */
83                 if (ret <= 0)
84                         return ret < 0? -1 : 0;
85                 f->current_position += ret;
86                 size -= ret;
87         }
88         return 1;
89 }
90
91 static int read_int64(struct mp4 *f, uint64_t *result)
92 {
93         uint8_t data[8];
94         int ret = read_data(f, data, 8);
95
96         if (ret > 0 && result)
97                 *result = read_u64_be(data);
98         return ret;
99 }
100
101 static int read_int32(struct mp4 *f, uint32_t *result)
102 {
103         uint8_t data[4];
104         int ret = read_data(f, data, 4);
105
106         if (ret > 0 && result)
107                 *result = read_u32_be(data);
108         return ret;
109 }
110
111 static int read_int24(struct mp4 *f, uint32_t *result)
112 {
113         uint8_t data[3];
114         int ret = read_data(f, data, 3);
115
116         if (ret > 0 && result)
117                 *result = read_u24_be(data);
118         return ret;
119 }
120
121 static int read_int16(struct mp4 *f, uint16_t *result)
122 {
123         uint8_t data[2];
124         int ret = read_data(f, data, 2);
125
126         if (ret > 0 && result)
127                 *result = read_u16_be(data);
128         return ret;
129 }
130
131 static uint8_t read_int8(struct mp4 *f, uint8_t *result)
132 {
133         uint8_t data[1];
134         int ret = read_data(f, data, 1);
135
136         if (ret > 0 && result)
137                 *result = data[0];
138         return ret;
139 }
140
141 static bool atom_compare(int8_t a1, int8_t b1, int8_t c1, int8_t d1,
142                 int8_t a2, int8_t b2, int8_t c2, int8_t d2)
143 {
144         return a1 == a2 && b1 == b2 && c1 == c2 && d1 == d2;
145 }
146
147 enum atoms {
148         /* atoms with subatoms */
149         ATOM_MOOV = 1,
150         ATOM_TRAK = 2,
151         ATOM_EDTS = 3,
152         ATOM_MDIA = 4,
153         ATOM_MINF = 5,
154         ATOM_STBL = 6,
155         ATOM_UDTA = 7,
156         ATOM_ILST = 8, /* iTunes Metadata list */
157         ATOM_TITLE = 9,
158         ATOM_ARTIST = 10,
159         ATOM_WRITER = 11,
160         ATOM_ALBUM = 12,
161         ATOM_DATE = 13,
162         ATOM_TOOL = 14,
163         ATOM_COMMENT = 15,
164         ATOM_GENRE1 = 16,
165         ATOM_TRACK = 17,
166         ATOM_DISC = 18,
167         ATOM_COMPILATION = 19,
168         ATOM_GENRE2 = 20,
169         ATOM_TEMPO = 21,
170         ATOM_COVER = 22,
171         ATOM_DRMS = 23,
172         ATOM_SINF = 24,
173         ATOM_SCHI = 25,
174
175         SUBATOMIC = 128,
176
177         /* atoms without subatoms */
178         ATOM_FTYP = 129,
179         ATOM_MDAT = 130,
180         ATOM_MVHD = 131,
181         ATOM_TKHD = 132,
182         ATOM_TREF = 133,
183         ATOM_MDHD = 134, /* track header */
184         ATOM_VMHD = 135,
185         ATOM_SMHD = 136,
186         ATOM_HMHD = 137,
187         ATOM_STSD = 138, /* sample description box */
188         ATOM_STTS = 139, /* time to sample box */
189         ATOM_STSZ = 140, /* sample size box */
190         ATOM_STZ2 = 141,
191         ATOM_STCO = 142, /* chunk offset box */
192         ATOM_STSC = 143, /* sample to chunk box */
193         ATOM_MP4A = 144,
194         ATOM_MP4V = 145,
195         ATOM_MP4S = 146,
196         ATOM_ESDS = 147,
197         ATOM_META = 148, /* iTunes Metadata box */
198         ATOM_NAME = 149, /* iTunes Metadata name box */
199         ATOM_DATA = 150, /* iTunes Metadata data box */
200         ATOM_CTTS = 151,
201         ATOM_FRMA = 152,
202         ATOM_IVIV = 153,
203         ATOM_PRIV = 154,
204         ATOM_USER = 155,
205         ATOM_KEY = 156,
206         ATOM_ALBUM_ARTIST = 157,
207         ATOM_CONTENTGROUP = 158,
208         ATOM_LYRICS = 159,
209         ATOM_DESCRIPTION = 160,
210         ATOM_NETWORK = 161,
211         ATOM_SHOW = 162,
212         ATOM_EPISODENAME = 163,
213         ATOM_SORTTITLE = 164,
214         ATOM_SORTALBUM = 165,
215         ATOM_SORTARTIST = 166,
216         ATOM_SORTALBUMARTIST = 167,
217         ATOM_SORTWRITER = 168,
218         ATOM_SORTSHOW = 169,
219         ATOM_SEASON = 170,
220         ATOM_EPISODE = 171,
221         ATOM_PODCAST = 172,
222
223         ATOM_UNKNOWN = 255
224 };
225
226 #define ATOM_FREE ATOM_UNKNOWN
227 #define ATOM_SKIP ATOM_UNKNOWN
228
229 #define COPYRIGHT_SYMBOL ((int8_t)0xA9)
230
231 static uint8_t atom_name_to_type(int8_t a, int8_t b, int8_t c, int8_t d)
232 {
233         if (a == 'm') {
234                 if (atom_compare(a, b, c, d, 'm', 'o', 'o', 'v'))
235                         return ATOM_MOOV;
236                 else if (atom_compare(a, b, c, d, 'm', 'i', 'n', 'f'))
237                         return ATOM_MINF;
238                 else if (atom_compare(a, b, c, d, 'm', 'd', 'i', 'a'))
239                         return ATOM_MDIA;
240                 else if (atom_compare(a, b, c, d, 'm', 'd', 'a', 't'))
241                         return ATOM_MDAT;
242                 else if (atom_compare(a, b, c, d, 'm', 'd', 'h', 'd'))
243                         return ATOM_MDHD;
244                 else if (atom_compare(a, b, c, d, 'm', 'v', 'h', 'd'))
245                         return ATOM_MVHD;
246                 else if (atom_compare(a, b, c, d, 'm', 'p', '4', 'a'))
247                         return ATOM_MP4A;
248                 else if (atom_compare(a, b, c, d, 'm', 'p', '4', 'v'))
249                         return ATOM_MP4V;
250                 else if (atom_compare(a, b, c, d, 'm', 'p', '4', 's'))
251                         return ATOM_MP4S;
252                 else if (atom_compare(a, b, c, d, 'm', 'e', 't', 'a'))
253                         return ATOM_META;
254         } else if (a == 't') {
255                 if (atom_compare(a, b, c, d, 't', 'r', 'a', 'k'))
256                         return ATOM_TRAK;
257                 else if (atom_compare(a, b, c, d, 't', 'k', 'h', 'd'))
258                         return ATOM_TKHD;
259                 else if (atom_compare(a, b, c, d, 't', 'r', 'e', 'f'))
260                         return ATOM_TREF;
261                 else if (atom_compare(a, b, c, d, 't', 'r', 'k', 'n'))
262                         return ATOM_TRACK;
263                 else if (atom_compare(a, b, c, d, 't', 'm', 'p', 'o'))
264                         return ATOM_TEMPO;
265                 else if (atom_compare(a, b, c, d, 't', 'v', 'n', 'n'))
266                         return ATOM_NETWORK;
267                 else if (atom_compare(a, b, c, d, 't', 'v', 's', 'h'))
268                         return ATOM_SHOW;
269                 else if (atom_compare(a, b, c, d, 't', 'v', 'e', 'n'))
270                         return ATOM_EPISODENAME;
271                 else if (atom_compare(a, b, c, d, 't', 'v', 's', 'n'))
272                         return ATOM_SEASON;
273                 else if (atom_compare(a, b, c, d, 't', 'v', 'e', 's'))
274                         return ATOM_EPISODE;
275         } else if (a == 's') {
276                 if (atom_compare(a, b, c, d, 's', 't', 'b', 'l'))
277                         return ATOM_STBL;
278                 else if (atom_compare(a, b, c, d, 's', 'm', 'h', 'd'))
279                         return ATOM_SMHD;
280                 else if (atom_compare(a, b, c, d, 's', 't', 's', 'd'))
281                         return ATOM_STSD;
282                 else if (atom_compare(a, b, c, d, 's', 't', 't', 's'))
283                         return ATOM_STTS;
284                 else if (atom_compare(a, b, c, d, 's', 't', 'c', 'o'))
285                         return ATOM_STCO;
286                 else if (atom_compare(a, b, c, d, 's', 't', 's', 'c'))
287                         return ATOM_STSC;
288                 else if (atom_compare(a, b, c, d, 's', 't', 's', 'z'))
289                         return ATOM_STSZ;
290                 else if (atom_compare(a, b, c, d, 's', 't', 'z', '2'))
291                         return ATOM_STZ2;
292                 else if (atom_compare(a, b, c, d, 's', 'k', 'i', 'p'))
293                         return ATOM_SKIP;
294                 else if (atom_compare(a, b, c, d, 's', 'i', 'n', 'f'))
295                         return ATOM_SINF;
296                 else if (atom_compare(a, b, c, d, 's', 'c', 'h', 'i'))
297                         return ATOM_SCHI;
298                 else if (atom_compare(a, b, c, d, 's', 'o', 'n', 'm'))
299                         return ATOM_SORTTITLE;
300                 else if (atom_compare(a, b, c, d, 's', 'o', 'a', 'l'))
301                         return ATOM_SORTALBUM;
302                 else if (atom_compare(a, b, c, d, 's', 'o', 'a', 'r'))
303                         return ATOM_SORTARTIST;
304                 else if (atom_compare(a, b, c, d, 's', 'o', 'a', 'a'))
305                         return ATOM_SORTALBUMARTIST;
306                 else if (atom_compare(a, b, c, d, 's', 'o', 'c', 'o'))
307                         return ATOM_SORTWRITER;
308                 else if (atom_compare(a, b, c, d, 's', 'o', 's', 'n'))
309                         return ATOM_SORTSHOW;
310         } else if (a == COPYRIGHT_SYMBOL) {
311                 if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'n', 'a', 'm'))
312                         return ATOM_TITLE;
313                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'A', 'R', 'T'))
314                         return ATOM_ARTIST;
315                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'w', 'r', 't'))
316                         return ATOM_WRITER;
317                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'a', 'l', 'b'))
318                         return ATOM_ALBUM;
319                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'd', 'a', 'y'))
320                         return ATOM_DATE;
321                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 't', 'o', 'o'))
322                         return ATOM_TOOL;
323                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'c', 'm', 't'))
324                         return ATOM_COMMENT;
325                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'g', 'e', 'n'))
326                         return ATOM_GENRE1;
327                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'g', 'r', 'p'))
328                         return ATOM_CONTENTGROUP;
329                 else if (atom_compare(a, b, c, d, COPYRIGHT_SYMBOL, 'l', 'y', 'r'))
330                         return ATOM_LYRICS;
331         }
332
333         if (atom_compare(a, b, c, d, 'e', 'd', 't', 's'))
334                 return ATOM_EDTS;
335         else if (atom_compare(a, b, c, d, 'e', 's', 'd', 's'))
336                 return ATOM_ESDS;
337         else if (atom_compare(a, b, c, d, 'f', 't', 'y', 'p'))
338                 return ATOM_FTYP;
339         else if (atom_compare(a, b, c, d, 'f', 'r', 'e', 'e'))
340                 return ATOM_FREE;
341         else if (atom_compare(a, b, c, d, 'h', 'm', 'h', 'd'))
342                 return ATOM_HMHD;
343         else if (atom_compare(a, b, c, d, 'v', 'm', 'h', 'd'))
344                 return ATOM_VMHD;
345         else if (atom_compare(a, b, c, d, 'u', 'd', 't', 'a'))
346                 return ATOM_UDTA;
347         else if (atom_compare(a, b, c, d, 'i', 'l', 's', 't'))
348                 return ATOM_ILST;
349         else if (atom_compare(a, b, c, d, 'n', 'a', 'm', 'e'))
350                 return ATOM_NAME;
351         else if (atom_compare(a, b, c, d, 'd', 'a', 't', 'a'))
352                 return ATOM_DATA;
353         else if (atom_compare(a, b, c, d, 'd', 'i', 's', 'k'))
354                 return ATOM_DISC;
355         else if (atom_compare(a, b, c, d, 'g', 'n', 'r', 'e'))
356                 return ATOM_GENRE2;
357         else if (atom_compare(a, b, c, d, 'c', 'o', 'v', 'r'))
358                 return ATOM_COVER;
359         else if (atom_compare(a, b, c, d, 'c', 'p', 'i', 'l'))
360                 return ATOM_COMPILATION;
361         else if (atom_compare(a, b, c, d, 'c', 't', 't', 's'))
362                 return ATOM_CTTS;
363         else if (atom_compare(a, b, c, d, 'd', 'r', 'm', 's'))
364                 return ATOM_DRMS;
365         else if (atom_compare(a, b, c, d, 'f', 'r', 'm', 'a'))
366                 return ATOM_FRMA;
367         else if (atom_compare(a, b, c, d, 'p', 'r', 'i', 'v'))
368                 return ATOM_PRIV;
369         else if (atom_compare(a, b, c, d, 'i', 'v', 'i', 'v'))
370                 return ATOM_IVIV;
371         else if (atom_compare(a, b, c, d, 'u', 's', 'e', 'r'))
372                 return ATOM_USER;
373         else if (atom_compare(a, b, c, d, 'k', 'e', 'y', ' '))
374                 return ATOM_KEY;
375         else if (atom_compare(a, b, c, d, 'a', 'A', 'R', 'T'))
376                 return ATOM_ALBUM_ARTIST;
377         else if (atom_compare(a, b, c, d, 'd', 'e', 's', 'c'))
378                 return ATOM_DESCRIPTION;
379         else if (atom_compare(a, b, c, d, 'p', 'c', 's', 't'))
380                 return ATOM_PODCAST;
381         else
382                 return ATOM_UNKNOWN;
383 }
384
385 /* read atom header, atom size is returned with header included. */
386 static int atom_read_header(struct mp4 *f, uint8_t *atom_type,
387                 uint8_t *header_size, uint64_t *atom_size)
388 {
389         uint32_t size;
390         int ret;
391         int8_t atom_header[8];
392
393         ret = read_data(f, atom_header, 8);
394         if (ret <= 0)
395                 return ret;
396         size = read_u32_be(atom_header);
397         if (size == 1) { /* 64 bit atom size */
398                 if (header_size)
399                         *header_size = 16;
400                 ret = read_int64(f, atom_size);
401                 if (ret <= 0)
402                         return ret;
403         } else {
404                 if (header_size)
405                         *header_size = 8;
406                 if (atom_size)
407                         *atom_size = size;
408         }
409         *atom_type = atom_name_to_type(atom_header[4], atom_header[5],
410                 atom_header[6], atom_header[7]);
411         return 1;
412 }
413
414 static int64_t get_position(const struct mp4 *f)
415 {
416         return f->current_position;
417 }
418
419 static int need_parse_when_meta_only(uint8_t atom_type)
420 {
421         switch (atom_type) {
422         case ATOM_EDTS:
423         case ATOM_DRMS:
424         case ATOM_SINF:
425         case ATOM_SCHI:
426         case ATOM_STTS:
427         case ATOM_STSZ:
428         case ATOM_STZ2:
429         case ATOM_STCO:
430         case ATOM_STSC:
431         case ATOM_FRMA:
432         case ATOM_IVIV:
433         case ATOM_PRIV:
434                 return 0;
435         default:
436                 return 1;
437         }
438 }
439
440 static int32_t set_position(struct mp4 *f, int64_t position)
441 {
442         f->cb->seek(f->cb->user_data, position);
443         f->current_position = position;
444
445         return 0;
446 }
447
448 static void track_add(struct mp4 *f)
449 {
450         f->total_tracks++;
451
452         if (f->total_tracks > MAX_TRACKS) {
453                 f->total_tracks = 0;
454                 f->error++;
455                 return;
456         }
457         f->track[f->total_tracks - 1] = para_calloc(sizeof(struct mp4_track));
458 }
459
460 static int read_stsz(struct mp4 *f)
461 {
462         int ret;
463         int32_t i;
464         struct mp4_track *t;
465
466         if (f->total_tracks == 0)
467                 return -1;
468         t = f->track[f->total_tracks - 1];
469         ret = read_int8(f, NULL); /* version */
470         if (ret <= 0)
471                 return ret;
472         ret = read_int24(f, NULL); /* flags */
473         if (ret <= 0)
474                 return ret;
475         ret = read_int32(f, &t->stsz_sample_size);
476         if (ret <= 0)
477                 return ret;
478         ret = read_int32(f, &t->stsz_sample_count);
479         if (ret <= 0)
480                 return ret;
481         if (t->stsz_sample_size != 0)
482                 return 1;
483         t->stsz_table = para_malloc(t->stsz_sample_count * sizeof(int32_t));
484         for (i = 0; i < t->stsz_sample_count; i++) {
485                 ret = read_int32(f, &t->stsz_table[i]);
486                 if (ret <= 0)
487                         return ret;
488         }
489         return 1;
490 }
491
492 static int read_stts(struct mp4 *f)
493 {
494         int ret;
495         int32_t i;
496         struct mp4_track *t;
497
498         if (f->total_tracks == 0)
499                 return -1;
500         t = f->track[f->total_tracks - 1];
501         if (t->stts_entry_count)
502                 return 0;
503         ret = read_int8(f, NULL); /* version */
504         if (ret <= 0)
505                 return ret;
506         ret = read_int24(f, NULL); /* flags */
507         if (ret <= 0)
508                 return ret;
509         ret = read_int32(f, &t->stts_entry_count);
510         if (ret <= 0)
511                 return ret;
512         t->stts_sample_count = para_malloc(t->stts_entry_count
513                 * sizeof(int32_t));
514         t->stts_sample_delta = para_malloc(t->stts_entry_count
515                 * sizeof (int32_t));
516         for (i = 0; i < t->stts_entry_count; i++) {
517                 ret = read_int32(f, &t->stts_sample_count[i]);
518                 if (ret <= 0)
519                         return ret;
520                 ret = read_int32(f, &t->stts_sample_delta[i]);
521                 if (ret <= 0)
522                         return ret;
523         }
524         return 1;
525 }
526
527 static int read_stsc(struct mp4 *f)
528 {
529         int ret;
530         int32_t i;
531         struct mp4_track *t;
532
533         if (f->total_tracks == 0)
534                 return -1;
535         t = f->track[f->total_tracks - 1];
536
537         ret = read_int8(f, NULL); /* version */
538         if (ret <= 0)
539                 return ret;
540         ret = read_int24(f, NULL); /* flags */
541         if (ret <= 0)
542                 return ret;
543         ret = read_int32(f, &t->stsc_entry_count);
544         if (ret <= 0)
545                 return ret;
546         t->stsc_first_chunk = para_malloc(t->stsc_entry_count * sizeof(int32_t));
547         t->stsc_samples_per_chunk = para_malloc(t->stsc_entry_count
548                 * sizeof (int32_t));
549         t->stsc_sample_desc_index = para_malloc(t->stsc_entry_count *
550                 sizeof (int32_t));
551
552         for (i = 0; i < t->stsc_entry_count; i++) {
553                 ret = read_int32(f, &t->stsc_first_chunk[i]);
554                 if (ret <= 0)
555                         return ret;
556                 ret = read_int32(f, &t->stsc_samples_per_chunk[i]);
557                 if (ret <= 0)
558                         return ret;
559                 ret = read_int32(f, &t->stsc_sample_desc_index[i]);
560                 if (ret <= 0)
561                         return ret;
562         }
563         return 1;
564 }
565
566 static int read_stco(struct mp4 *f)
567 {
568         int ret;
569         int32_t i;
570         struct mp4_track *t;
571
572         if (f->total_tracks == 0)
573                 return -1;
574         t = f->track[f->total_tracks - 1];
575
576         ret = read_int8(f, NULL); /* version */
577         if (ret <= 0)
578                 return ret;
579         ret = read_int24(f, NULL); /* flags */
580         if (ret <= 0)
581                 return ret;
582         ret = read_int32(f, &t->stco_entry_count);
583         if (ret <= 0)
584                 return ret;
585         t->stco_chunk_offset = para_malloc(t->stco_entry_count
586                 * sizeof(int32_t));
587         for (i = 0; i < t->stco_entry_count; i++) {
588                 ret = read_int32(f, &t->stco_chunk_offset[i]);
589                 if (ret <= 0)
590                         return ret;
591         }
592         return 1;
593 }
594
595 static int read_mp4a(struct mp4 *f)
596 {
597         int ret;
598         int32_t i;
599         uint8_t atom_type = 0;
600         uint8_t header_size = 0;
601         struct mp4_track *t;
602
603         if (f->total_tracks == 0)
604                 return -1;
605         t = f->track[f->total_tracks - 1];
606
607         for (i = 0; i < 6; i++) {
608                 ret = read_int8(f, NULL); /* reserved */
609                 if (ret <= 0)
610                         return ret;
611         }
612         ret = read_int16(f, NULL); /* data_reference_index */
613         if (ret <= 0)
614                 return ret;
615         ret = read_int32(f, NULL); /* reserved */
616         if (ret <= 0)
617                 return ret;
618         ret = read_int32(f, NULL); /* reserved */
619         if (ret <= 0)
620                 return ret;
621         ret = read_int16(f, &t->channelCount);
622         if (ret <= 0)
623                 return ret;
624         ret = read_int16(f, NULL);
625         if (ret <= 0)
626                 return ret;
627         ret = read_int16(f, NULL);
628         if (ret <= 0)
629                 return ret;
630         ret = read_int16(f, NULL);
631         if (ret <= 0)
632                 return ret;
633         ret = read_int16(f, &t->sampleRate);
634         if (ret <= 0)
635                 return ret;
636         ret = read_int16(f, NULL);
637         if (ret <= 0)
638                 return ret;
639         return atom_read_header(f, &atom_type, &header_size, NULL);
640 }
641
642 static int read_stsd(struct mp4 *f)
643 {
644         int ret;
645         uint32_t i, entry_count;
646         uint8_t header_size = 0;
647         struct mp4_track *t;
648
649         if (f->total_tracks == 0)
650                 return -1;
651         t = f->track[f->total_tracks - 1];
652         ret = read_int8(f, NULL); /* version */
653         if (ret <= 0)
654                 return ret;
655         ret = read_int24(f, NULL); /* flags */
656         if (ret <= 0)
657                 return ret;
658         ret = read_int32(f, &entry_count);
659         if (ret <= 0)
660                 return ret;
661         for (i = 0; i < entry_count; i++) {
662                 uint64_t skip = get_position(f);
663                 uint64_t size;
664                 uint8_t atom_type = 0;
665                 ret = atom_read_header(f, &atom_type, &header_size, &size);
666                 if (ret <= 0)
667                         return ret;
668                 skip += size;
669                 t->is_audio = atom_type == ATOM_MP4A;
670                 if (t->is_audio)
671                         read_mp4a(f);
672                 set_position(f, skip);
673         }
674         return 1;
675 }
676
677 static int32_t tag_add_field(struct mp4_metadata *meta, const char *item,
678                 const char *value, int32_t len)
679 {
680         meta->tags = para_realloc(meta->tags,
681                 (meta->count + 1) * sizeof(struct mp4_tag));
682         meta->tags[meta->count].item = para_strdup(item);
683         meta->tags[meta->count].len = len;
684         if (len >= 0) {
685                 meta->tags[meta->count].value = para_malloc(len + 1);
686                 memcpy(meta->tags[meta->count].value, value, len);
687                 meta->tags[meta->count].value[len] = 0;
688         } else {
689                 meta->tags[meta->count].value = para_strdup(value);
690         }
691         meta->count++;
692         return 1;
693 }
694
695 static int read_string(struct mp4 *f, uint32_t length, char **result)
696 {
697         char *str = para_malloc(length + 1);
698         int ret = read_data(f, str, length);
699
700         if (ret <= 0) {
701                 free(str);
702                 *result = NULL;
703         } else {
704                 str[length] = '\0';
705                 *result = str;
706         }
707         return ret;
708 }
709
710 static const char *get_metadata_name(uint8_t atom_type)
711 {
712         switch (atom_type) {
713         case ATOM_TITLE: return "title";
714         case ATOM_ARTIST: return "artist";
715         case ATOM_ALBUM: return "album";
716         case ATOM_DATE: return "date";
717         case ATOM_COMMENT: return "comment";
718         default: return "unknown";
719         }
720 }
721
722 static int parse_tag(struct mp4 *f, uint8_t parent, int32_t size)
723 {
724         int ret;
725         uint64_t subsize, sumsize;
726         char *data = NULL;
727         uint32_t len = 0;
728         uint64_t destpos;
729
730         for (
731                 sumsize = 0;
732                 sumsize < size;
733                 set_position(f, destpos), sumsize += subsize
734         ) {
735                 uint8_t atom_type;
736                 uint8_t header_size = 0;
737                 ret = atom_read_header(f, &atom_type, &header_size, &subsize);
738                 if (ret <= 0)
739                         return ret;
740                 destpos = get_position(f) + subsize - header_size;
741                 if (atom_type != ATOM_DATA)
742                         continue;
743                 ret = read_int8(f, NULL); /* version */
744                 if (ret <= 0)
745                         return ret;
746                 ret = read_int24(f, NULL); /* flags */
747                 if (ret <= 0)
748                         return ret;
749                 ret = read_int32(f, NULL); /* reserved */
750                 if (ret <= 0)
751                         return ret;
752                 free(data);
753                 ret = read_string(f, subsize - (header_size + 8), &data);
754                 if (ret <= 0)
755                         return ret;
756                 len = subsize - (header_size + 8);
757         }
758         if (!data)
759                 return -1;
760         tag_add_field(&f->meta, get_metadata_name(parent), data, len);
761         free(data);
762         return 1;
763 }
764
765 static int read_mdhd(struct mp4 *f)
766 {
767         int ret;
768         uint32_t version;
769         struct mp4_track *t;
770
771         if (f->total_tracks == 0)
772                 return -1;
773         t = f->track[f->total_tracks - 1];
774
775         ret = read_int32(f, &version);
776         if (ret <= 0)
777                 return ret;
778         if (version == 1) {
779                 ret = read_int64(f, NULL); /* creation-time */
780                 if (ret <= 0)
781                         return ret;
782                 ret = read_int64(f, NULL); /* modification-time */
783                 if (ret <= 0)
784                         return ret;
785                 ret = read_int32(f, &t->timeScale);
786                 if (ret <= 0)
787                         return ret;
788                 ret = read_int64(f, &t->duration);
789                 if (ret <= 0)
790                         return ret;
791         } else { //version == 0
792                 uint32_t temp;
793
794                 ret = read_int32(f, NULL); /* creation-time */
795                 if (ret <= 0)
796                         return ret;
797                 ret = read_int32(f, NULL); /* modification-time */
798                 if (ret <= 0)
799                         return ret;
800                 ret = read_int32(f, &t->timeScale);
801                 if (ret <= 0)
802                         return ret;
803                 ret = read_int32(f, &temp);
804                 if (ret <= 0)
805                         return ret;
806                 t->duration = (temp == (uint32_t) (-1))?
807                         (uint64_t) (-1) : (uint64_t) (temp);
808         }
809         ret = read_int16(f, NULL);
810         if (ret <= 0)
811                 return ret;
812         ret = read_int16(f, NULL);
813         if (ret <= 0)
814                 return ret;
815         return 1;
816 }
817
818 static int32_t read_ilst(struct mp4 *f, int32_t size)
819 {
820         int ret;
821         uint64_t sumsize = 0;
822
823         while (sumsize < size) {
824                 uint8_t atom_type;
825                 uint64_t subsize, destpos;
826                 uint8_t header_size = 0;
827                 ret = atom_read_header(f, &atom_type, &header_size, &subsize);
828                 if (ret <= 0)
829                         return ret;
830                 destpos = get_position(f) + subsize - header_size;
831                 switch (atom_type) {
832                 case ATOM_ARTIST:
833                 case ATOM_TITLE:
834                 case ATOM_ALBUM:
835                 case ATOM_COMMENT:
836                 case ATOM_DATE:
837                         parse_tag(f, atom_type, subsize - header_size);
838                 }
839                 set_position(f, destpos);
840                 sumsize += subsize;
841         }
842         return 1;
843 }
844
845 static int32_t read_meta(struct mp4 *f, uint64_t size)
846 {
847         int ret;
848         uint64_t subsize, sumsize = 0;
849         uint8_t atom_type;
850         uint8_t header_size = 0;
851
852         ret = read_int8(f, NULL); /* version */
853         if (ret <= 0)
854                 return ret;
855         ret = read_int24(f, NULL); /* flags */
856         if (ret <= 0)
857                 return ret;
858         while (sumsize < (size - (header_size + 4))) {
859                 ret = atom_read_header(f, &atom_type, &header_size, &subsize);
860                 if (ret <= 0)
861                         return ret;
862                 if (subsize <= header_size + 4)
863                         return 1;
864                 if (atom_type == ATOM_ILST)
865                         read_ilst(f, subsize - (header_size + 4));
866                 else
867                         set_position(f, get_position(f) + subsize - header_size);
868                 sumsize += subsize;
869         }
870         return 1;
871 }
872
873 static int atom_read(struct mp4 *f, uint64_t size, uint8_t atom_type)
874 {
875         uint64_t dest_position = get_position(f) + size - 8;
876         int ret = 1; /* return success for atoms we don't care about */
877
878         switch (atom_type) {
879         case ATOM_STSZ: ret = read_stsz(f); break;
880         case ATOM_STTS: ret = read_stts(f); break;
881         case ATOM_STSC: ret = read_stsc(f); break;
882         case ATOM_STCO: ret = read_stco(f); break;
883         case ATOM_STSD: ret = read_stsd(f); break;
884         case ATOM_MDHD: ret = read_mdhd(f); break;
885         case ATOM_META: ret = read_meta(f, size); break;
886         }
887         set_position(f, dest_position);
888         return ret;
889 }
890
891 /* parse atoms that are sub atoms of other atoms */
892 static int parse_sub_atoms(struct mp4 *f, uint64_t total_size, int meta_only)
893 {
894         int ret;
895         uint64_t size;
896         uint8_t atom_type = 0;
897         uint64_t counted_size = 0;
898         uint8_t header_size = 0;
899
900         while (counted_size < total_size) {
901                 ret = atom_read_header(f, &atom_type, &header_size, &size);
902                 if (ret <= 0)
903                         return ret;
904                 if (size == 0)
905                         return -1;
906                 counted_size += size;
907                 /* we're starting to read a new track, update index,
908                  * so that all data and tables get written in the right place
909                  */
910                 if (atom_type == ATOM_TRAK)
911                         track_add(f);
912                 /* parse subatoms */
913                 if (meta_only && !need_parse_when_meta_only(atom_type)) {
914                         set_position(f, get_position(f) + size - header_size);
915                 } else if (atom_type < SUBATOMIC) {
916                         parse_sub_atoms(f, size - header_size, meta_only);
917                 } else {
918                         ret = atom_read(f, size, atom_type);
919                         if (ret <= 0)
920                                 return ret;
921                 }
922         }
923         return 1;
924 }
925
926 /* parse root atoms */
927 static int32_t parse_atoms(struct mp4 *f, int meta_only)
928 {
929         int ret;
930         uint64_t size;
931         uint8_t atom_type = 0;
932         uint8_t header_size = 0;
933
934         f->file_size = 0;
935
936         while ((ret = atom_read_header(f, &atom_type, &header_size, &size)) > 0) {
937                 f->file_size += size;
938                 f->last_atom = atom_type;
939
940                 if (atom_type == ATOM_MOOV && size > header_size) {
941                         f->moov_offset = get_position(f) - header_size;
942                         f->moov_size = size;
943                 }
944
945                 /* parse subatoms */
946                 if (meta_only && !need_parse_when_meta_only(atom_type)) {
947                         set_position(f, get_position(f) + size - header_size);
948                 } else if (atom_type < SUBATOMIC) {
949                         parse_sub_atoms(f, size - header_size, meta_only);
950                 } else {
951                         /* skip this atom */
952                         set_position(f, get_position(f) + size - header_size);
953                 }
954         }
955         return ret;
956 }
957
958 struct mp4 *mp4_open_read(const struct mp4_callback *cb)
959 {
960         struct mp4 *f = para_calloc(sizeof(struct mp4));
961
962         f->cb = cb;
963         parse_atoms(f, 0);
964         if (f->error) {
965                 free(f);
966                 f = NULL;
967         }
968         return f;
969 }
970
971 void mp4_close(struct mp4 *f)
972 {
973         int32_t i;
974
975         for (i = 0; i < f->total_tracks; i++) {
976                 if (f->track[i]) {
977                         free(f->track[i]->stsz_table);
978                         free(f->track[i]->stts_sample_count);
979                         free(f->track[i]->stts_sample_delta);
980                         free(f->track[i]->stsc_first_chunk);
981                         free(f->track[i]->stsc_samples_per_chunk);
982                         free(f->track[i]->stsc_sample_desc_index);
983                         free(f->track[i]->stco_chunk_offset);
984                         free(f->track[i]);
985                 }
986         }
987         for (i = 0; i < f->meta.count; i++) {
988                 free(f->meta.tags[i].item);
989                 free(f->meta.tags[i].value);
990         }
991         free(f->meta.tags);
992         free(f);
993 }
994
995 static int32_t chunk_of_sample(const struct mp4 *f, int32_t track,
996                 int32_t sample, int32_t *chunk_sample, int32_t *chunk)
997 {
998         int32_t total_entries = 0;
999         int32_t chunk2entry;
1000         int32_t chunk1, chunk2, chunk1samples, range_samples, total = 0;
1001
1002         *chunk_sample = 0;
1003         *chunk = 1;
1004         if (f->track[track] == NULL) {
1005                 return -1;
1006         }
1007
1008         total_entries = f->track[track]->stsc_entry_count;
1009
1010         chunk1 = 1;
1011         chunk1samples = 0;
1012         chunk2entry = 0;
1013
1014         do {
1015                 chunk2 = f->track[track]->stsc_first_chunk[chunk2entry];
1016                 *chunk = chunk2 - chunk1;
1017                 range_samples = *chunk * chunk1samples;
1018
1019                 if (sample < total + range_samples)
1020                         break;
1021
1022                 chunk1samples = f->track[track]->stsc_samples_per_chunk[chunk2entry];
1023                 chunk1 = chunk2;
1024
1025                 if (chunk2entry < total_entries) {
1026                         chunk2entry++;
1027                         total += range_samples;
1028                 }
1029         } while (chunk2entry < total_entries);
1030
1031         if (chunk1samples)
1032                 *chunk = (sample - total) / chunk1samples + chunk1;
1033         else
1034                 *chunk = 1;
1035
1036         *chunk_sample = total + (*chunk - chunk1) * chunk1samples;
1037
1038         return 0;
1039 }
1040
1041 static int32_t chunk_to_offset(const struct mp4 *f, int32_t track,
1042                 int32_t chunk)
1043 {
1044         const struct mp4_track *p_track = f->track[track];
1045
1046         if (p_track->stco_entry_count && (chunk > p_track->stco_entry_count)) {
1047                 return p_track->stco_chunk_offset[p_track->stco_entry_count -
1048                                                   1];
1049         } else if (p_track->stco_entry_count) {
1050                 return p_track->stco_chunk_offset[chunk - 1];
1051         } else {
1052                 return 8;
1053         }
1054
1055         return 0;
1056 }
1057
1058 static int32_t sample_range_size(const struct mp4 *f, int32_t track,
1059                 int32_t chunk_sample, int32_t sample)
1060 {
1061         int32_t i, total;
1062         const struct mp4_track *p_track = f->track[track];
1063
1064         if (p_track->stsz_sample_size) {
1065                 return (sample - chunk_sample) * p_track->stsz_sample_size;
1066         } else {
1067                 if (sample >= p_track->stsz_sample_count)
1068                         return 0;       //error
1069
1070                 for (i = chunk_sample, total = 0; i < sample; i++) {
1071                         total += p_track->stsz_table[i];
1072                 }
1073         }
1074
1075         return total;
1076 }
1077
1078 static int32_t sample_to_offset(const struct mp4 *f, int32_t track,
1079                 int32_t sample)
1080 {
1081         int32_t chunk, chunk_sample, chunk_offset1, chunk_offset2;
1082
1083         chunk_of_sample(f, track, sample, &chunk_sample, &chunk);
1084
1085         chunk_offset1 = chunk_to_offset(f, track, chunk);
1086         chunk_offset2 = chunk_offset1 + sample_range_size(f,
1087                 track, chunk_sample, sample);
1088         return chunk_offset2;
1089 }
1090
1091 /**
1092  * Return the number of milliseconds of the given track.
1093  *
1094  * \param f As returned by \ref mp4_open_read(), must not be NULL.
1095  * \param track Between zero and the value returned by \ref mp4_total_tracks().
1096  *
1097  * The function returns zero if the audio file is of zero length or contains a
1098  * corrupt track header.
1099  */
1100 uint64_t mp4_get_duration(const struct mp4 *f, int32_t track)
1101 {
1102         const struct mp4_track *t = f->track[track];
1103
1104         if (t->timeScale == 0)
1105                 return 0;
1106         return t->duration * 1000 / t->timeScale;
1107 }
1108
1109 /**
1110  * Check whether the given track number corresponds to an audio track.
1111  *
1112  * \param f See \ref mp4_get_duration().
1113  * \param track See \ref mp4_get_duration().
1114  *
1115  * Besides audio tracks, an mp4 file may contain video and system tracks. For
1116  * those the function returns false.
1117  */
1118 bool mp4_is_audio_track(const struct mp4 *f, int32_t track)
1119 {
1120         return f->track[track]->is_audio;
1121 }
1122
1123 void mp4_set_sample_position(struct mp4 *f, int32_t track, int32_t sample)
1124 {
1125         int32_t offset = sample_to_offset(f, track, sample);
1126         set_position(f, offset);
1127 }
1128
1129 int32_t mp4_get_sample_size(const struct mp4 *f, int track, int sample)
1130 {
1131         const struct mp4_track *t = f->track[track];
1132
1133         if (t->stsz_sample_size != 0)
1134                 return t->stsz_sample_size;
1135         return t->stsz_table[sample];
1136 }
1137
1138 uint32_t mp4_get_sample_rate(const struct mp4 *f, int32_t track)
1139 {
1140         return f->track[track]->sampleRate;
1141 }
1142
1143 uint32_t mp4_get_channel_count(const struct mp4 *f, int32_t track)
1144 {
1145         return f->track[track]->channelCount;
1146 }
1147
1148 int32_t mp4_num_samples(const struct mp4 *f, int32_t track)
1149 {
1150         int32_t i;
1151         int32_t total = 0;
1152
1153         for (i = 0; i < f->track[track]->stts_entry_count; i++) {
1154                 total += f->track[track]->stts_sample_count[i];
1155         }
1156         return total;
1157 }
1158
1159 struct mp4 *mp4_open_meta(const struct mp4_callback *cb)
1160 {
1161         struct mp4 *f = para_calloc(sizeof(struct mp4));
1162
1163         f->cb = cb;
1164         parse_atoms(f, 1);
1165         if (f->error) {
1166                 free(f);
1167                 f = NULL;
1168         }
1169         return f;
1170 }
1171
1172 /**
1173  * Return the metadata of an mp4 file.
1174  *
1175  * \param f As returned by either \ref mp4_open_read() or \ref mp4_open_meta().
1176  *
1177  * The caller is allowed to add, delete or modify the entries of the returned
1178  * structure in order to pass the modified version to \ref mp4_meta_update().
1179  */
1180 struct mp4_metadata *mp4_get_meta(struct mp4 *f)
1181 {
1182         return &f->meta;
1183 }
1184
1185 static int find_atom(struct mp4 *f, uint64_t base, uint32_t size,
1186         const char *name)
1187 {
1188         uint32_t remaining = size;
1189         uint64_t atom_offset = base;
1190
1191         for (;;) {
1192                 int ret;
1193                 char atom_name[4];
1194                 uint32_t atom_size;
1195
1196                 set_position(f, atom_offset);
1197
1198                 if (remaining < 8)
1199                         return -1;
1200                 ret = read_int32(f, &atom_size);
1201                 if (ret <= 0)
1202                         return ret;
1203                 if (atom_size > remaining || atom_size < 8)
1204                         return -1;
1205                 ret = read_data(f, atom_name, 4);
1206                 if (ret <= 0)
1207                         return ret;
1208                 if (!memcmp(atom_name, name, 4)) {
1209                         set_position(f, atom_offset);
1210                         return 1;
1211                 }
1212                 remaining -= atom_size;
1213                 atom_offset += atom_size;
1214         }
1215 }
1216
1217 /*
1218  * Try to find atom <name> with atom <name_inside> in it. Besides -1/0/1 for
1219  * error, EOF and success, this function may return 2 to indicate that the
1220  * desired atoms were not found.
1221  */
1222 static int find_atom_v2(struct mp4 *f, uint64_t base, uint32_t size,
1223                 const char *name, uint32_t extraheaders, const char *name_inside)
1224 {
1225         uint64_t first_base = (uint64_t) (-1);
1226
1227         for (;;) {
1228                 uint64_t mybase;
1229                 uint32_t mysize;
1230                 int ret = find_atom(f, base, size, name);
1231
1232                 if (ret <= 0)
1233                         return ret;
1234                 mybase = get_position(f);
1235                 ret = read_int32(f, &mysize);
1236                 if (ret <= 0)
1237                         return ret;
1238                 if (first_base == (uint64_t) (-1))
1239                         first_base = mybase;
1240
1241                 if (mysize < 8 + extraheaders)
1242                         break;
1243
1244                 if (find_atom (f, mybase + (8 + extraheaders),
1245                                 mysize - (8 + extraheaders), name_inside)) {
1246                         set_position(f, mybase);
1247                         return 1;
1248                 }
1249                 base += mysize;
1250                 if (size <= mysize)
1251                         break;
1252                 size -= mysize;
1253         }
1254         if (first_base != (uint64_t)(-1)) {
1255                 set_position(f, first_base);
1256                 return 1;
1257         }
1258         /* wanted atom inside not found */
1259         return 2;
1260 }
1261
1262 struct membuffer {
1263         void *data;
1264         unsigned written;
1265         unsigned allocated;
1266 };
1267
1268 static struct membuffer *membuffer_create(void)
1269 {
1270         struct membuffer *buf = para_calloc(sizeof(*buf));
1271
1272         buf->allocated = 256;
1273         buf->data = para_malloc(buf->allocated);
1274         return buf;
1275 }
1276
1277 static void membuffer_write(struct membuffer *buf, const void *ptr,
1278                 unsigned bytes)
1279 {
1280         unsigned dest_size = buf->written + bytes;
1281
1282         if (dest_size > buf->allocated) {
1283                 do {
1284                         buf->allocated <<= 1;
1285                 } while (dest_size > buf->allocated);
1286                 buf->data = para_realloc(buf->data, buf->allocated);
1287         }
1288
1289         if (ptr)
1290                 memcpy((char *) buf->data + buf->written, ptr, bytes);
1291         buf->written += bytes;
1292 }
1293
1294 static void membuffer_write_atom_name(struct membuffer *buf, const char *data)
1295 {
1296         membuffer_write(buf, data, 4);
1297 }
1298
1299 static void membuffer_write_int32(struct membuffer *buf, uint32_t data)
1300 {
1301         uint8_t temp[4];
1302         write_u32_be(temp, data);
1303         membuffer_write(buf, temp, 4);
1304 }
1305
1306 static void membuffer_write_std_tag(struct membuffer *buf, const char *name,
1307                 const char *value)
1308 {
1309         uint32_t len = strlen(value);
1310         membuffer_write_int32(buf, 8 /* atom header */
1311                 + 8 /* data atom header */
1312                 + 8 /* flags + reserved */
1313                 + len);
1314         membuffer_write_atom_name(buf, name);
1315         membuffer_write_int32(buf, 8 /* data atom header */
1316                 + 8 /* flags + reserved */
1317                 + len);
1318         membuffer_write_atom_name(buf, "data");
1319         membuffer_write_int32(buf, 1);  /* flags */
1320         membuffer_write_int32(buf, 0);  /* reserved */
1321         membuffer_write(buf, value, len);
1322 }
1323
1324 static unsigned membuffer_get_size(const struct membuffer *buf)
1325 {
1326         return buf->written;
1327 }
1328
1329 static void *membuffer_detach(struct membuffer *buf)
1330 {
1331         void *ret = para_realloc(buf->data, buf->written);
1332         free(buf);
1333         return ret;
1334 }
1335
1336 struct stdmeta_entry {
1337         const char *atom;
1338         const char *name;
1339 };
1340
1341 static const char *find_standard_meta(const char *name)
1342 {
1343         const struct stdmeta_entry stdmetas[] = {
1344                 {"\xA9" "nam", "title"},
1345                 {"\xA9" "ART", "artist"},
1346                 {"\xA9" "alb", "album"},
1347                 {"\xA9" "day", "date"},
1348                 {"\xA9" "cmt", "comment"},
1349         };
1350
1351         for (unsigned n = 0; n < ARRAY_SIZE(stdmetas); n++)
1352                 if (!strcasecmp(name, stdmetas[n].name))
1353                         return stdmetas[n].atom;
1354         return NULL;
1355 }
1356
1357 static uint32_t create_ilst(const struct mp4_metadata *meta, void **out_buffer,
1358                 uint32_t * out_size)
1359 {
1360         struct membuffer *buf = membuffer_create();
1361         unsigned metaptr;
1362
1363         for (metaptr = 0; metaptr < meta->count; metaptr++) {
1364                 struct mp4_tag *tag = meta->tags + metaptr;
1365                 const char *std_meta_atom = find_standard_meta(tag->item);
1366                 if (std_meta_atom)
1367                         membuffer_write_std_tag(buf, std_meta_atom, tag->value);
1368                 else
1369                         PARA_ERROR_LOG("invalid tag item: %s\n", tag->item);
1370         }
1371         *out_size = membuffer_get_size(buf);
1372         *out_buffer = membuffer_detach(buf);
1373         return 1;
1374 }
1375
1376 static void membuffer_write_atom(struct membuffer *buf, const char *name, unsigned size,
1377                           const void *data)
1378 {
1379         membuffer_write_int32(buf, size + 8);
1380         membuffer_write_atom_name(buf, name);
1381         membuffer_write(buf, data, size);
1382 }
1383
1384 static void *membuffer_get_ptr(const struct membuffer *buf)
1385 {
1386         return buf->data;
1387 }
1388
1389 static bool membuffer_transfer_from_file(struct membuffer *buf, struct mp4 *src,
1390                 unsigned bytes)
1391 {
1392         unsigned oldsize = membuffer_get_size(buf);
1393         char *bufptr;
1394
1395         membuffer_write(buf, 0, bytes);
1396         bufptr = membuffer_get_ptr(buf);
1397         if (read_data(src, bufptr + oldsize, bytes) != 1) {
1398                 free(buf->data);
1399                 free(buf);
1400                 return false;
1401         }
1402         return true;
1403 }
1404
1405 static uint32_t create_meta(const struct mp4_metadata *meta, void **out_buffer,
1406                 uint32_t * out_size)
1407 {
1408         struct membuffer *buf;
1409         uint32_t ilst_size;
1410         void *ilst_buffer;
1411
1412         if (!create_ilst(meta, &ilst_buffer, &ilst_size))
1413                 return 0;
1414
1415         buf = membuffer_create();
1416
1417         membuffer_write_int32(buf, 0);
1418         membuffer_write_atom(buf, "ilst", ilst_size, ilst_buffer);
1419         free(ilst_buffer);
1420
1421         *out_size = membuffer_get_size(buf);
1422         *out_buffer = membuffer_detach(buf);
1423         return 1;
1424 }
1425
1426 static uint32_t create_udta(const struct mp4_metadata *meta, void **out_buffer,
1427 uint32_t * out_size)
1428 {
1429         struct membuffer *buf;
1430         uint32_t meta_size;
1431         void *meta_buffer;
1432
1433         if (!create_meta(meta, &meta_buffer, &meta_size))
1434                 return 0;
1435
1436         buf = membuffer_create();
1437
1438         membuffer_write_atom(buf, "meta", meta_size, meta_buffer);
1439
1440         free(meta_buffer);
1441
1442         *out_size = membuffer_get_size(buf);
1443         *out_buffer = membuffer_detach(buf);
1444         return 1;
1445 }
1446
1447 static uint32_t fix_byte_order_32(uint32_t src)
1448 {
1449         return read_u32_be(&src);
1450 }
1451
1452 static void *modify_moov(struct mp4 *f, uint32_t *out_size)
1453 {
1454         int ret;
1455         uint64_t total_base = f->moov_offset + 8;
1456         uint32_t total_size = (uint32_t) (f->moov_size - 8);
1457         uint64_t udta_offset, meta_offset, ilst_offset;
1458         uint32_t udta_size, meta_size, ilst_size;
1459         uint32_t new_ilst_size;
1460         void *new_ilst_buffer, *out_buffer;
1461         uint8_t *p_out;
1462         int32_t size_delta;
1463         uint32_t tmp;
1464
1465         ret = find_atom_v2(f, total_base, total_size, "udta", 0, "meta");
1466         if (ret <= 0)
1467                 return NULL;
1468         if (ret == 2) {
1469                 struct membuffer *buf;
1470                 void *new_udta_buffer;
1471                 uint32_t new_udta_size;
1472                 if (!create_udta(&f->meta, &new_udta_buffer, &new_udta_size))
1473                         return NULL;
1474
1475                 buf = membuffer_create();
1476                 set_position(f, total_base);
1477                 if (!membuffer_transfer_from_file(buf, f, total_size)) {
1478                         free(new_udta_buffer);
1479                         return NULL;
1480                 }
1481                 membuffer_write_atom(buf, "udta", new_udta_size,
1482                         new_udta_buffer);
1483
1484                 free(new_udta_buffer);
1485
1486                 *out_size = membuffer_get_size(buf);
1487                 return membuffer_detach(buf);
1488         }
1489         udta_offset = get_position(f);
1490         ret = read_int32(f, &udta_size);
1491         if (ret <= 0)
1492                 return NULL;
1493         ret = find_atom_v2(f, udta_offset + 8, udta_size - 8, "meta", 4, "ilst");
1494         if (ret <= 0)
1495                 return NULL;
1496         if (ret == 2) {
1497                 struct membuffer *buf;
1498                 void *new_meta_buffer;
1499                 uint32_t new_meta_size;
1500
1501                 if (!create_meta(&f->meta, &new_meta_buffer, &new_meta_size))
1502                         return NULL;
1503
1504                 buf = membuffer_create();
1505                 set_position(f, total_base);
1506                 if (!membuffer_transfer_from_file(buf, f,
1507                                 udta_offset - total_base)) {
1508                         free(new_meta_buffer);
1509                         return NULL;
1510                 }
1511
1512                 membuffer_write_int32(buf, udta_size + 8 + new_meta_size);
1513                 membuffer_write_atom_name(buf, "udta");
1514                 if (!membuffer_transfer_from_file(buf, f, udta_size)) {
1515                         free(new_meta_buffer);
1516                         return NULL;
1517                 }
1518                 membuffer_write_atom(buf, "meta", new_meta_size,
1519                         new_meta_buffer);
1520                 free(new_meta_buffer);
1521
1522                 *out_size = membuffer_get_size(buf);
1523                 return membuffer_detach(buf);
1524         }
1525         meta_offset = get_position(f);
1526         ret = read_int32(f, &meta_size);
1527         if (ret <= 0)
1528                 return NULL;
1529         /* shouldn't happen, find_atom_v2 above takes care of it */
1530         if (!find_atom(f, meta_offset + 12, meta_size - 12, "ilst"))
1531                 return NULL;
1532         ilst_offset = get_position(f);
1533         ret = read_int32(f, &ilst_size);
1534         if (ret <= 0)
1535                 return NULL;
1536         if (!create_ilst(&f->meta, &new_ilst_buffer, &new_ilst_size))
1537                 return NULL;
1538         size_delta = new_ilst_size - (ilst_size - 8);
1539         *out_size = total_size + size_delta;
1540         out_buffer = para_malloc(*out_size);
1541         p_out = out_buffer;
1542         set_position(f, total_base);
1543         ret = read_data(f, p_out, udta_offset - total_base);
1544         if (ret <= 0)
1545                 return NULL;
1546         p_out += (uint32_t) (udta_offset - total_base);
1547         ret = read_int32(f, &tmp);
1548         if (ret <= 0)
1549                 return NULL;
1550         *(uint32_t *)p_out = fix_byte_order_32(tmp + size_delta);
1551         p_out += 4;
1552         ret = read_data(f, p_out, 4);
1553         if (ret <= 0)
1554                 return NULL;
1555         p_out += 4;
1556         ret = read_data(f, p_out, meta_offset - udta_offset - 8);
1557         if (ret <= 0)
1558                 return NULL;
1559         p_out += (uint32_t) (meta_offset - udta_offset - 8);
1560         ret = read_int32(f, &tmp);
1561         if (ret <= 0)
1562                 return NULL;
1563         *(uint32_t *)p_out = fix_byte_order_32(tmp + size_delta);
1564         p_out += 4;
1565         ret = read_data(f, p_out, 4);
1566         if (ret <= 0)
1567                 return NULL;
1568         p_out += 4;
1569         ret = read_data(f, p_out, ilst_offset - meta_offset - 8);
1570         if (ret <= 0)
1571                 return NULL;
1572         p_out += (uint32_t) (ilst_offset - meta_offset - 8);
1573         ret = read_int32(f, &tmp);
1574         if (ret <= 0)
1575                 return NULL;
1576         *(uint32_t *)p_out = fix_byte_order_32(tmp + size_delta);
1577         p_out += 4;
1578         ret = read_data(f, p_out, 4);
1579         if (ret <= 0)
1580                 return NULL;
1581         p_out += 4;
1582         memcpy(p_out, new_ilst_buffer, new_ilst_size);
1583         p_out += new_ilst_size;
1584         set_position(f, ilst_offset + ilst_size);
1585         ret = read_data(f, p_out, total_size
1586                 - (ilst_offset - total_base) - ilst_size);
1587         if (ret <= 0)
1588                 return NULL;
1589         free(new_ilst_buffer);
1590         return out_buffer;
1591 }
1592
1593 static int32_t write_data(struct mp4 *f, void *data, uint32_t size)
1594 {
1595         int32_t result = 1;
1596
1597         result = f->cb->write(f->cb->user_data, data, size);
1598
1599         f->current_position += size;
1600
1601         return result;
1602 }
1603
1604 static int32_t write_int32(struct mp4 *f, uint32_t data)
1605 {
1606         int8_t temp[4];
1607         write_u32_be(temp, data);
1608         return write_data(f, temp, sizeof(temp));
1609 }
1610
1611 int32_t mp4_meta_update(struct mp4 *f)
1612 {
1613         void *new_moov_data;
1614         uint32_t new_moov_size;
1615
1616         set_position(f, 0);
1617         new_moov_data = modify_moov(f, &new_moov_size);
1618         if (!new_moov_data ) {
1619                 mp4_close(f);
1620                 return 0;
1621         }
1622         /* copy moov atom to end of the file */
1623         if (f->last_atom != ATOM_MOOV) {
1624                 char *free_data = "free";
1625
1626                 /* rename old moov to free */
1627                 set_position(f, f->moov_offset + 4);
1628                 write_data(f, free_data, 4);
1629
1630                 set_position(f, f->file_size);
1631                 write_int32(f, new_moov_size + 8);
1632                 write_data(f, "moov", 4);
1633                 write_data(f, new_moov_data, new_moov_size);
1634         } else {
1635                 set_position(f, f->moov_offset);
1636                 write_int32(f, new_moov_size + 8);
1637                 write_data(f, "moov", 4);
1638                 write_data(f, new_moov_data, new_moov_size);
1639         }
1640         free(new_moov_data);
1641         f->cb->truncate(f->cb->user_data);
1642         return 1;
1643 }
1644
1645 static char *meta_find_by_name(const struct mp4 *f, const char *item)
1646 {
1647         uint32_t i;
1648
1649         for (i = 0; i < f->meta.count; i++)
1650                 if (!strcasecmp(f->meta.tags[i].item, item))
1651                         return para_strdup(f->meta.tags[i].value);
1652         return NULL;
1653 }
1654
1655 /**
1656  * Return the value of the artist meta tag of an mp4 file.
1657  *
1658  * \param f Must not be NULL.
1659  *
1660  * \return If the file does not contain this metadata tag, the function returns
1661  * NULL. Otherwise, a copy of the tag value is returned. The caller should free
1662  * this memory when it is no longer needed.
1663  */
1664 char *mp4_meta_get_artist(const struct mp4 *f)
1665 {
1666         return meta_find_by_name(f, "artist");
1667 }
1668
1669 /**
1670  * Return the value of the title meta tag of an mp4 file.
1671  *
1672  * \param f See \ref mp4_meta_get_artist().
1673  * \return See \ref mp4_meta_get_artist().
1674  */
1675 char *mp4_meta_get_title(const struct mp4 *f)
1676 {
1677         return meta_find_by_name(f, "title");
1678 }
1679
1680 /**
1681  * Return the value of the date meta tag of an mp4 file.
1682  *
1683  * \param f See \ref mp4_meta_get_artist().
1684  * \return See \ref mp4_meta_get_artist().
1685  */
1686 char *mp4_meta_get_date(const struct mp4 *f)
1687 {
1688         return meta_find_by_name(f, "date");
1689 }
1690
1691 /**
1692  * Return the value of the album meta tag of an mp4 file.
1693  *
1694  * \param f See \ref mp4_meta_get_artist().
1695  * \return See \ref mp4_meta_get_artist().
1696  */
1697 char *mp4_meta_get_album(const struct mp4 *f)
1698 {
1699         return meta_find_by_name(f, "album");
1700 }
1701
1702 /**
1703  * Return the value of the comment meta tag of an mp4 file.
1704  *
1705  * \param f See \ref mp4_meta_get_artist().
1706  * \return See \ref mp4_meta_get_artist().
1707  */
1708 char *mp4_meta_get_comment(const struct mp4 *f)
1709 {
1710         return meta_find_by_name(f, "comment");
1711 }