]> git.sesse.net Git - vlc/blob - modules/mux/mp4.c
* mp4: fixed width in tkhd. (at least I hope).
[vlc] / modules / mux / mp4.c
1 /*****************************************************************************
2  * mp4.c: mp4/mov muxer
3  *****************************************************************************
4  * Copyright (C) 2001, 2002, 2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin at videolan dot org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/input.h>
33 #include <vlc/sout.h>
34
35 #ifdef HAVE_TIME_H
36 #include <time.h>
37 #endif
38
39 #include "iso_lang.h"
40 #include "vlc_meta.h"
41
42 /*****************************************************************************
43  * Module descriptor
44  *****************************************************************************/
45 #define FASTSTART_TEXT N_("Create \"Fast start\" files")
46 #define FASTSTART_LONGTEXT N_( \
47     "When this option is turned on, \"Fast start\" files will be created. " \
48     "(\"Fast start\" files are optimized for download, allowing the user " \
49     "to start previewing the file while it is downloading).")
50 static int  Open   ( vlc_object_t * );
51 static void Close  ( vlc_object_t * );
52
53 #define SOUT_CFG_PREFIX "sout-mp4-"
54
55 vlc_module_begin();
56     set_description( _("MP4/MOV muxer") );
57
58     add_bool( SOUT_CFG_PREFIX "faststart", 1, NULL, FASTSTART_TEXT, FASTSTART_LONGTEXT,
59               VLC_TRUE );
60     set_capability( "sout mux", 5 );
61     add_shortcut( "mp4" );
62     add_shortcut( "mov" );
63     set_callbacks( Open, Close );
64 vlc_module_end();
65
66 /*****************************************************************************
67  * Exported prototypes
68  *****************************************************************************/
69 static const char *ppsz_sout_options[] = {
70     "faststart", NULL
71 };
72
73 static int Capability(sout_mux_t *, int, void *, void * );
74 static int AddStream( sout_mux_t *, sout_input_t * );
75 static int DelStream( sout_mux_t *, sout_input_t * );
76 static int Mux      ( sout_mux_t * );
77
78 /*****************************************************************************
79  * Local prototypes
80  *****************************************************************************/
81 typedef struct
82 {
83     uint64_t i_pos;
84     int      i_size;
85
86     mtime_t  i_pts_dts;
87     mtime_t  i_length;
88     unsigned int i_flags;
89
90 } mp4_entry_t;
91
92 typedef struct
93 {
94     es_format_t   fmt;
95     int           i_track_id;
96
97     /* index */
98     unsigned int i_entry_count;
99     unsigned int i_entry_max;
100     mp4_entry_t  *entry;
101     int64_t      i_length_neg;
102
103     /* stats */
104     int64_t      i_dts_start;
105     int64_t      i_duration;
106
107     /* for later stco fix-up (fast start files) */
108     uint64_t i_stco_pos;
109     vlc_bool_t b_stco64;
110
111     /* for h264 */
112     struct
113     {
114         int     i_profile;
115         int     i_level;
116
117         int     i_sps;
118         uint8_t *sps;
119         int     i_pps;
120         uint8_t *pps;
121     } avc;
122
123     /* for spu */
124     int64_t i_last_dts;
125
126 } mp4_stream_t;
127
128 struct sout_mux_sys_t
129 {
130     vlc_bool_t b_mov;
131     vlc_bool_t b_64_ext;
132     vlc_bool_t b_fast_start;
133
134     uint64_t i_mdat_pos;
135     uint64_t i_pos;
136
137     int64_t  i_dts_start;
138
139     int          i_nb_streams;
140     mp4_stream_t **pp_streams;
141 };
142
143 typedef struct bo_t
144 {
145     vlc_bool_t b_grow;
146
147     int        i_buffer_size;
148     int        i_buffer;
149     uint8_t    *p_buffer;
150
151 } bo_t;
152
153 static void bo_init     ( bo_t *, int , uint8_t *, vlc_bool_t  );
154 static void bo_add_8    ( bo_t *, uint8_t );
155 static void bo_add_16be ( bo_t *, uint16_t );
156 static void bo_add_24be ( bo_t *, uint32_t );
157 static void bo_add_32be ( bo_t *, uint32_t );
158 static void bo_add_64be ( bo_t *, uint64_t );
159 static void bo_add_fourcc(bo_t *, char * );
160 static void bo_add_bo   ( bo_t *, bo_t * );
161 static void bo_add_mem  ( bo_t *, int , uint8_t * );
162 static void bo_add_descr( bo_t *, uint8_t , uint32_t );
163
164 static void bo_fix_32be ( bo_t *, int , uint32_t );
165
166 static bo_t *box_new     ( char *fcc );
167 static bo_t *box_full_new( char *fcc, uint8_t v, uint32_t f );
168 static void  box_fix     ( bo_t *box );
169 static void  box_free    ( bo_t *box );
170 static void  box_gather  ( bo_t *box, bo_t *box2 );
171
172 static void box_send( sout_mux_t *p_mux,  bo_t *box );
173
174 static block_t *bo_to_sout( sout_instance_t *p_sout,  bo_t *box );
175
176 static bo_t *GetMoovBox( sout_mux_t *p_mux );
177
178 static block_t *ConvertSUBT( sout_mux_t *, mp4_stream_t *, block_t *);
179 static void ConvertAVC1( sout_mux_t *, mp4_stream_t *, block_t * );
180
181 /*****************************************************************************
182  * Open:
183  *****************************************************************************/
184 static int Open( vlc_object_t *p_this )
185 {
186     sout_mux_t      *p_mux = (sout_mux_t*)p_this;
187     sout_mux_sys_t  *p_sys;
188     bo_t            *box;
189
190     msg_Dbg( p_mux, "Mp4 muxer opend" );
191     sout_ParseCfg( p_mux, SOUT_CFG_PREFIX, ppsz_sout_options, p_mux->p_cfg );
192
193     p_mux->pf_capacity  = Capability;
194     p_mux->pf_addstream = AddStream;
195     p_mux->pf_delstream = DelStream;
196     p_mux->pf_mux       = Mux;
197     p_mux->p_sys        = p_sys = malloc( sizeof( sout_mux_sys_t ) );
198     p_sys->i_pos        = 0;
199     p_sys->i_nb_streams = 0;
200     p_sys->pp_streams   = NULL;
201     p_sys->i_mdat_pos   = 0;
202     p_sys->b_mov        = p_mux->psz_mux && !strcmp( p_mux->psz_mux, "mov" );
203     p_sys->i_dts_start  = 0;
204
205
206     if( !p_sys->b_mov )
207     {
208         /* Now add ftyp header */
209         box = box_new( "ftyp" );
210         bo_add_fourcc( box, "isom" );
211         bo_add_32be  ( box, 0 );
212         bo_add_fourcc( box, "mp41" );
213         box_fix( box );
214
215         p_sys->i_pos += box->i_buffer;
216         p_sys->i_mdat_pos = p_sys->i_pos;
217
218         box_send( p_mux, box );
219     }
220
221     /* FIXME FIXME
222      * Quicktime actually doesn't like the 64 bits extensions !!! */
223     p_sys->b_64_ext = VLC_FALSE;
224
225     /* Now add mdat header */
226     box = box_new( "mdat" );
227     bo_add_64be  ( box, 0 ); // enough to store an extended size
228
229     p_sys->i_pos += box->i_buffer;
230
231     box_send( p_mux, box );
232
233     return VLC_SUCCESS;
234 }
235
236 /*****************************************************************************
237  * Close:
238  *****************************************************************************/
239 static void Close( vlc_object_t * p_this )
240 {
241     sout_mux_t      *p_mux = (sout_mux_t*)p_this;
242     sout_mux_sys_t  *p_sys = p_mux->p_sys;
243     block_t   *p_hdr;
244     bo_t            bo, *moov;
245     vlc_value_t     val;
246
247     int             i_trak;
248     uint64_t        i_moov_pos;
249
250     msg_Dbg( p_mux, "Close" );
251
252     /* Update mdat size */
253     bo_init( &bo, 0, NULL, VLC_TRUE );
254     if( p_sys->i_pos - p_sys->i_mdat_pos >= (((uint64_t)1)<<32) )
255     {
256         /* Extended size */
257         bo_add_32be  ( &bo, 1 );
258         bo_add_fourcc( &bo, "mdat" );
259         bo_add_64be  ( &bo, p_sys->i_pos - p_sys->i_mdat_pos );
260     }
261     else
262     {
263         bo_add_32be  ( &bo, 8 );
264         bo_add_fourcc( &bo, "wide" );
265         bo_add_32be  ( &bo, p_sys->i_pos - p_sys->i_mdat_pos - 8 );
266         bo_add_fourcc( &bo, "mdat" );
267     }
268     p_hdr = bo_to_sout( p_mux->p_sout, &bo );
269     free( bo.p_buffer );
270
271     sout_AccessOutSeek( p_mux->p_access, p_sys->i_mdat_pos );
272     sout_AccessOutWrite( p_mux->p_access, p_hdr );
273
274     /* Create MOOV header */
275     i_moov_pos = p_sys->i_pos;
276     moov = GetMoovBox( p_mux );
277
278     /* Check we need to create "fast start" files */
279     var_Get( p_this, SOUT_CFG_PREFIX "faststart", &val );
280     p_sys->b_fast_start = val.b_bool;
281     while( p_sys->b_fast_start )
282     {
283         /* Move data to the end of the file so we can fit the moov header
284          * at the start */
285         block_t *p_buf;
286         int64_t i_chunk, i_size = p_sys->i_pos - p_sys->i_mdat_pos;
287         int i_moov_size = moov->i_buffer;
288
289         while( i_size > 0 )
290         {
291             i_chunk = __MIN( 32768, i_size );
292             p_buf = block_New( p_mux, i_chunk );
293             sout_AccessOutSeek( p_mux->p_access,
294                                 p_sys->i_mdat_pos + i_size - i_chunk );
295             if( sout_AccessOutRead( p_mux->p_access, p_buf ) < i_chunk )
296             {
297                 msg_Warn( p_this, "read() not supported by acces output, "
298                           "won't create a fast start file" );
299                 p_sys->b_fast_start = VLC_FALSE;
300                 block_Release( p_buf );
301                 break;
302             }
303             sout_AccessOutSeek( p_mux->p_access, p_sys->i_mdat_pos + i_size +
304                                 i_moov_size - i_chunk );
305             sout_AccessOutWrite( p_mux->p_access, p_buf );
306             i_size -= i_chunk;
307         }
308
309         if( !p_sys->b_fast_start ) break;
310
311         /* Fix-up samples to chunks table in MOOV header */
312         for( i_trak = 0; i_trak < p_sys->i_nb_streams; i_trak++ )
313         {
314             mp4_stream_t *p_stream = p_sys->pp_streams[i_trak];
315             unsigned int i;
316             int i_chunk;
317
318             moov->i_buffer = p_stream->i_stco_pos;
319             for( i_chunk = 0, i = 0; i < p_stream->i_entry_count; i_chunk++ )
320             {
321                 if( p_stream->b_stco64 )
322                     bo_add_64be( moov, p_stream->entry[i].i_pos + i_moov_size);
323                 else
324                     bo_add_32be( moov, p_stream->entry[i].i_pos + i_moov_size);
325
326                 while( i < p_stream->i_entry_count )
327                 {
328                     if( i + 1 < p_stream->i_entry_count &&
329                         p_stream->entry[i].i_pos + p_stream->entry[i].i_size
330                         != p_stream->entry[i + 1].i_pos )
331                     {
332                         i++;
333                         break;
334                     }
335
336                     i++;
337                 }
338             }
339         }
340
341         moov->i_buffer = i_moov_size;
342         i_moov_pos = p_sys->i_mdat_pos;
343         p_sys->b_fast_start = VLC_FALSE;
344     }
345
346     /* Write MOOV header */
347     sout_AccessOutSeek( p_mux->p_access, i_moov_pos );
348     box_send( p_mux, moov );
349
350     /* Clean-up */
351     for( i_trak = 0; i_trak < p_sys->i_nb_streams; i_trak++ )
352     {
353         mp4_stream_t *p_stream = p_sys->pp_streams[i_trak];
354
355         es_format_Clean( &p_stream->fmt );
356         if( p_stream->avc.i_sps ) free( p_stream->avc.sps );
357         if( p_stream->avc.i_pps ) free( p_stream->avc.pps );
358         free( p_stream->entry );
359         free( p_stream );
360     }
361     if( p_sys->i_nb_streams ) free( p_sys->pp_streams );
362     free( p_sys );
363 }
364
365 /*****************************************************************************
366  * Capability:
367  *****************************************************************************/
368 static int Capability( sout_mux_t *p_mux, int i_query, void *p_args,
369                        void *p_answer )
370 {
371    switch( i_query )
372    {
373         case SOUT_MUX_CAP_GET_ADD_STREAM_ANY_TIME:
374             *(vlc_bool_t*)p_answer = VLC_TRUE;
375             return SOUT_MUX_CAP_ERR_OK;
376
377         case SOUT_MUX_CAP_GET_ADD_STREAM_WAIT:
378             *(vlc_bool_t*)p_answer = VLC_TRUE;
379             return( SOUT_MUX_CAP_ERR_OK );
380
381         default:
382             return SOUT_MUX_CAP_ERR_UNIMPLEMENTED;
383    }
384 }
385
386 /*****************************************************************************
387  * AddStream:
388  *****************************************************************************/
389 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
390 {
391     sout_mux_sys_t  *p_sys = p_mux->p_sys;
392     mp4_stream_t    *p_stream;
393
394     switch( p_input->p_fmt->i_codec )
395     {
396         case VLC_FOURCC( 'm', 'p', '4', 'a' ):
397         case VLC_FOURCC( 'm', 'p', '4', 'v' ):
398         case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
399         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
400         case VLC_FOURCC( 'M', 'J', 'P', 'G' ):
401         case VLC_FOURCC( 'm', 'j', 'p', 'b' ):
402         case VLC_FOURCC( 'S', 'V', 'Q', '1' ):
403         case VLC_FOURCC( 'S', 'V', 'Q', '3' ):
404         case VLC_FOURCC( 'h', '2', '6', '4' ):
405             break;
406         case VLC_FOURCC( 's', 'u', 'b', 't' ):
407             msg_Warn( p_mux, "subtitle track added like in .mov (even when creating .mp4)" );
408             break;
409         default:
410             msg_Err( p_mux, "unsupported codec %4.4s in mp4",
411                      (char*)&p_input->p_fmt->i_codec );
412             return VLC_EGENERIC;
413     }
414
415     p_stream                = malloc( sizeof( mp4_stream_t ) );
416     es_format_Copy( &p_stream->fmt, p_input->p_fmt );
417     p_stream->i_track_id    = p_sys->i_nb_streams + 1;
418     p_stream->i_length_neg  = 0;
419     p_stream->i_entry_count = 0;
420     p_stream->i_entry_max   = 1000;
421     p_stream->entry         =
422         calloc( p_stream->i_entry_max, sizeof( mp4_entry_t ) );
423     p_stream->i_dts_start   = 0;
424     p_stream->i_duration    = 0;
425     p_stream->avc.i_profile = 77;
426     p_stream->avc.i_level   = 51;
427     p_stream->avc.i_sps     = 0;
428     p_stream->avc.sps       = NULL;
429     p_stream->avc.i_pps     = 0;
430     p_stream->avc.pps       = NULL;
431
432     p_input->p_sys          = p_stream;
433
434     msg_Dbg( p_mux, "adding input" );
435
436     TAB_APPEND( p_sys->i_nb_streams, p_sys->pp_streams, p_stream );
437     return VLC_SUCCESS;
438 }
439
440 /*****************************************************************************
441  * DelStream:
442  *****************************************************************************/
443 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
444 {
445     msg_Dbg( p_mux, "removing input" );
446     return VLC_SUCCESS;
447 }
448
449 static int MuxGetStream( sout_mux_t *p_mux, int *pi_stream, mtime_t *pi_dts )
450 {
451     mtime_t i_dts;
452     int     i_stream;
453     int     i;
454
455     for( i = 0, i_dts = 0, i_stream = -1; i < p_mux->i_nb_inputs; i++ )
456     {
457         block_fifo_t   *p_fifo = p_mux->pp_inputs[i]->p_fifo;
458         block_t *p_buf;
459
460         if( p_fifo->i_depth <= 1 )
461         {
462             if( p_mux->pp_inputs[i]->p_fmt->i_cat != SPU_ES )
463             {
464                 return -1; // wait that all fifo have at least 2 packets
465             }
466             /* For SPU, we wait only 1 packet */
467             continue;
468         }
469
470         p_buf = block_FifoShow( p_fifo );
471         if( i_stream < 0 || p_buf->i_dts < i_dts )
472         {
473             i_dts = p_buf->i_dts;
474             i_stream = i;
475         }
476     }
477     if( pi_stream )
478     {
479         *pi_stream = i_stream;
480     }
481     if( pi_dts )
482     {
483         *pi_dts = i_dts;
484     }
485     return i_stream;
486 }
487
488 /*****************************************************************************
489  * Mux:
490  *****************************************************************************/
491 static int Mux( sout_mux_t *p_mux )
492 {
493     sout_mux_sys_t *p_sys = p_mux->p_sys;
494
495     for( ;; )
496     {
497         sout_input_t    *p_input;
498         int             i_stream;
499         mp4_stream_t    *p_stream;
500         block_t         *p_data;
501         mtime_t         i_dts;
502
503         if( MuxGetStream( p_mux, &i_stream, &i_dts) < 0 )
504         {
505             return( VLC_SUCCESS );
506         }
507
508         p_input  = p_mux->pp_inputs[i_stream];
509         p_stream = (mp4_stream_t*)p_input->p_sys;
510
511         p_data  = block_FifoGet( p_input->p_fifo );
512         if( p_stream->fmt.i_codec == VLC_FOURCC( 'h', '2', '6', '4' ) )
513         {
514             ConvertAVC1( p_mux, p_stream, p_data );
515         }
516         else if( p_stream->fmt.i_codec == VLC_FOURCC( 's', 'u', 'b', 't' ) )
517         {
518             p_data = ConvertSUBT( p_mux, p_stream, p_data );
519         }
520
521         if( p_stream->fmt.i_cat != SPU_ES )
522         {
523             /* Fix length of the sample */
524             if( p_input->p_fifo->i_depth > 0 )
525             {
526                 block_t *p_next = block_FifoShow( p_input->p_fifo );
527                 int64_t       i_diff  = p_next->i_dts - p_data->i_dts;
528
529                 if( i_diff < I64C(1000000 ) )   /* protection */
530                 {
531                     p_data->i_length = i_diff;
532                 }
533             }
534             if( p_data->i_length <= 0 )
535             {
536                 msg_Warn( p_mux, "i_length <= 0" );
537                 p_stream->i_length_neg += p_data->i_length - 1;
538                 p_data->i_length = 1;
539             }
540             else if( p_stream->i_length_neg < 0 )
541             {
542                 int64_t i_recover = __MIN( p_data->i_length / 4, - p_stream->i_length_neg );
543
544                 p_data->i_length -= i_recover;
545                 p_stream->i_length_neg += i_recover;
546             }
547         }
548
549         /* Save starting time */
550         if( p_stream->i_entry_count == 0 )
551         {
552             p_stream->i_dts_start = p_data->i_dts;
553
554             /* Update global dts_start */
555             if( p_sys->i_dts_start <= 0 ||
556                 p_stream->i_dts_start < p_sys->i_dts_start )
557             {
558                 p_sys->i_dts_start = p_stream->i_dts_start;
559             }
560         }
561
562         if( p_stream->fmt.i_cat == SPU_ES && p_stream->i_entry_count > 0 )
563         {
564             int64_t i_length = p_data->i_dts - p_stream->i_last_dts;
565
566             if( i_length <= 0 )
567             {
568                 /* FIXME handle this broken case */
569                 i_length = 1;
570             }
571
572             /* Fix last entry */
573             if( p_stream->entry[p_stream->i_entry_count-1].i_length <= 0 )
574             {
575                 p_stream->entry[p_stream->i_entry_count-1].i_length = i_length;
576             }
577         }
578
579
580         /* add index entry */
581         p_stream->entry[p_stream->i_entry_count].i_pos    = p_sys->i_pos;
582         p_stream->entry[p_stream->i_entry_count].i_size   = p_data->i_buffer;
583         p_stream->entry[p_stream->i_entry_count].i_pts_dts=
584             __MAX( p_data->i_pts - p_data->i_dts, 0 );
585         p_stream->entry[p_stream->i_entry_count].i_length = p_data->i_length;
586         p_stream->entry[p_stream->i_entry_count].i_flags  = p_data->i_flags;
587
588         p_stream->i_entry_count++;
589         /* XXX: -1 to always have 2 entry for easy adding of empty SPU */
590         if( p_stream->i_entry_count >= p_stream->i_entry_max - 1 )
591         {
592             p_stream->i_entry_max += 1000;
593             p_stream->entry =
594                 realloc( p_stream->entry,
595                          p_stream->i_entry_max * sizeof( mp4_entry_t ) );
596         }
597
598         /* update */
599         p_stream->i_duration += p_data->i_length;
600         p_sys->i_pos += p_data->i_buffer;
601
602         /* Save the DTS */
603         p_stream->i_last_dts = p_data->i_dts;
604
605         /* write data */
606         sout_AccessOutWrite( p_mux->p_access, p_data );
607
608         if( p_stream->fmt.i_cat == SPU_ES )
609         {
610             int64_t i_length = p_stream->entry[p_stream->i_entry_count-1].i_length;
611
612             if( i_length != 0 )
613             {
614                 /* TODO */
615                 msg_Dbg( p_mux, "writing a empty subs" ) ;
616
617                 /* Append a idx entry */
618                 p_stream->entry[p_stream->i_entry_count].i_pos    = p_sys->i_pos;
619                 p_stream->entry[p_stream->i_entry_count].i_size   = 3;
620                 p_stream->entry[p_stream->i_entry_count].i_pts_dts= 0;
621                 p_stream->entry[p_stream->i_entry_count].i_length = 0;
622                 p_stream->entry[p_stream->i_entry_count].i_flags  = 0;
623
624                 /* XXX: No need to grow the entry here */
625                 p_stream->i_entry_count++;
626
627                 /* Fix last dts */
628                 p_stream->i_last_dts += i_length;
629
630                 /* Write a " " */
631                 p_data = block_New( p_mux, 3 );
632                 p_data->p_buffer[0] = 0;
633                 p_data->p_buffer[1] = 1;
634                 p_data->p_buffer[2] = ' ';
635
636                 p_sys->i_pos += p_data->i_buffer;
637
638                 sout_AccessOutWrite( p_mux->p_access, p_data );
639             }
640
641             /* Fix duration */
642             p_stream->i_duration = p_stream->i_last_dts - p_stream->i_dts_start;
643         }
644     }
645
646     return( VLC_SUCCESS );
647 }
648
649 /*****************************************************************************
650  *
651  *****************************************************************************/
652 static block_t *ConvertSUBT( sout_mux_t *p_mux, mp4_stream_t *tk, block_t *p_block )
653 {
654     p_block = block_Realloc( p_block, 2, p_block->i_buffer );
655
656     /* No trailling '\0' */
657     if( p_block->i_buffer > 2 && p_block->p_buffer[p_block->i_buffer-1] == '\0' )
658         p_block->i_buffer--;
659
660     p_block->p_buffer[0] = ( (p_block->i_buffer - 2) >> 8 )&0xff;
661     p_block->p_buffer[1] = ( (p_block->i_buffer - 2)      )&0xff;
662
663     return p_block;
664 }
665
666 static void ConvertAVC1( sout_mux_t *p_mux, mp4_stream_t *tk, block_t *p_block )
667 {
668     uint8_t *last = p_block->p_buffer;  /* Assume it starts with 0x00000001 */
669     uint8_t *dat  = &p_block->p_buffer[4];
670     uint8_t *end = &p_block->p_buffer[p_block->i_buffer];
671
672
673     /* Replace the 4 bytes start code with 4 bytes size,
674      * FIXME are all startcode 4 bytes ? (I don't think :( */
675     while( dat < end )
676     {
677         int i_size;
678
679         while( dat < end - 4 )
680         {
681             if( dat[0] == 0x00 && dat[1] == 0x00  &&
682                 dat[2] == 0x00 && dat[3] == 0x01 )
683             {
684                 break;
685             }
686             dat++;
687         }
688         if( dat >= end - 4 )
689         {
690             dat = end;
691         }
692
693         /* Fix size */
694         i_size = dat - &last[4];
695         last[0] = ( i_size >> 24 )&0xff;
696         last[1] = ( i_size >> 16 )&0xff;
697         last[2] = ( i_size >>  8 )&0xff;
698         last[3] = ( i_size       )&0xff;
699
700         if( (last[4]&0x1f) == 7 && tk->avc.i_sps <= 0 )  /* SPS */
701         {
702             tk->avc.i_sps = i_size;
703             tk->avc.sps = malloc( i_size );
704             memcpy( tk->avc.sps, &last[4], i_size );
705
706             tk->avc.i_profile = tk->avc.sps[1];
707             tk->avc.i_level   = tk->avc.sps[3];
708         }
709         else if( (last[4]&0x1f) == 8 && tk->avc.i_pps <= 0 )   /* PPS */
710         {
711             tk->avc.i_pps = i_size;
712             tk->avc.pps = malloc( i_size );
713             memcpy( tk->avc.pps, &last[4], i_size );
714         }
715
716         last = dat;
717
718         dat += 4;
719     }
720 }
721
722
723 static int GetDescrLength( int i_size )
724 {
725     if( i_size < 0x00000080 )
726         return 2 + i_size;
727     else if( i_size < 0x00004000 )
728         return 3 + i_size;
729     else if( i_size < 0x00200000 )
730         return 4 + i_size;
731     else
732         return 5 + i_size;
733 }
734
735 static bo_t *GetESDS( mp4_stream_t *p_stream )
736 {
737     bo_t *esds;
738     int  i_stream_type;
739     int  i_object_type_indication;
740     int  i_decoder_specific_info_size;
741
742     if( p_stream->fmt.i_extra > 0 )
743     {
744         i_decoder_specific_info_size =
745             GetDescrLength( p_stream->fmt.i_extra );
746     }
747     else
748     {
749         i_decoder_specific_info_size = 0;
750     }
751
752     esds = box_full_new( "esds", 0, 0 );
753
754     /* ES_Descr */
755     bo_add_descr( esds, 0x03, 3 +
756                   GetDescrLength( 13 + i_decoder_specific_info_size ) +
757                   GetDescrLength( 1 ) );
758     bo_add_16be( esds, p_stream->i_track_id );
759     bo_add_8   ( esds, 0x1f );      // flags=0|streamPriority=0x1f
760
761     /* DecoderConfigDescr */
762     bo_add_descr( esds, 0x04, 13 + i_decoder_specific_info_size );
763
764     switch( p_stream->fmt.i_codec )
765     {
766         case VLC_FOURCC( 'm', 'p', '4', 'v' ):
767             i_object_type_indication = 0x20;
768             break;
769         case VLC_FOURCC( 'm', 'p', 'g', 'v' ):
770             /* FIXME MPEG-I=0x6b, MPEG-II = 0x60 -> 0x65 */
771             i_object_type_indication = 0x60;
772             break;
773         case VLC_FOURCC( 'm', 'p', '4', 'a' ):
774             /* FIXME for mpeg2-aac == 0x66->0x68 */
775             i_object_type_indication = 0x40;
776             break;
777         case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
778             i_object_type_indication =
779                 p_stream->fmt.audio.i_rate < 32000 ? 0x69 : 0x6b;
780             break;
781         default:
782             i_object_type_indication = 0x00;
783             break;
784     }
785     i_stream_type = p_stream->fmt.i_cat == VIDEO_ES ? 0x04 : 0x05;
786
787     bo_add_8   ( esds, i_object_type_indication );
788     bo_add_8   ( esds, ( i_stream_type << 2 ) | 1 );
789     bo_add_24be( esds, 1024 * 1024 );       // bufferSizeDB
790     bo_add_32be( esds, 0x7fffffff );        // maxBitrate
791     bo_add_32be( esds, 0 );                 // avgBitrate
792
793     if( p_stream->fmt.i_extra > 0 )
794     {
795         int i;
796
797         /* DecoderSpecificInfo */
798         bo_add_descr( esds, 0x05, p_stream->fmt.i_extra );
799
800         for( i = 0; i < p_stream->fmt.i_extra; i++ )
801         {
802             bo_add_8( esds, ((uint8_t*)p_stream->fmt.p_extra)[i] );
803         }
804     }
805
806     /* SL_Descr mandatory */
807     bo_add_descr( esds, 0x06, 1 );
808     bo_add_8    ( esds, 0x02 );  // sl_predefined
809
810     box_fix( esds );
811
812     return esds;
813 }
814
815 static bo_t *GetWaveTag( mp4_stream_t *p_stream )
816 {
817     bo_t *wave;
818     bo_t *box;
819
820     wave = box_new( "wave" );
821
822     box = box_new( "frma" );
823     bo_add_fourcc( box, "mp4a" );
824     box_fix( box );
825     box_gather( wave, box );
826
827     box = box_new( "mp4a" );
828     bo_add_32be( box, 0 );
829     box_fix( box );
830     box_gather( wave, box );
831
832     box = GetESDS( p_stream );
833     box_fix( box );
834     box_gather( wave, box );
835
836     box = box_new( "srcq" );
837     bo_add_32be( box, 0x40 );
838     box_fix( box );
839     box_gather( wave, box );
840
841     /* wazza ? */
842     bo_add_32be( wave, 8 ); /* new empty box */
843     bo_add_32be( wave, 0 ); /* box label */
844
845     box_fix( wave );
846
847     return wave;
848 }
849
850 static bo_t *GetAvcCTag( mp4_stream_t *p_stream )
851 {
852     bo_t *avcC;
853
854     /* FIXME use better value */
855     avcC = box_new( "avcC" );
856     bo_add_8( avcC, 1 );      /* configuration version */
857     bo_add_8( avcC, p_stream->avc.i_profile );
858     bo_add_8( avcC, p_stream->avc.i_profile );     /* profile compatible ??? */
859     bo_add_8( avcC, p_stream->avc.i_level );       /* level, 5.1 */
860     bo_add_8( avcC, 0xff );   /* 0b11111100 | lengthsize = 0x11 */
861
862     bo_add_8( avcC, 0xe0 | (p_stream->avc.i_sps > 0 ? 1 : 0) );   /* 0b11100000 | sps_count */
863     if( p_stream->avc.i_sps > 0 )
864     {
865         bo_add_16be( avcC, p_stream->avc.i_sps );
866         bo_add_mem( avcC, p_stream->avc.i_sps, p_stream->avc.sps );
867     }
868
869     bo_add_8( avcC, (p_stream->avc.i_pps > 0 ? 1 : 0) );   /* pps_count */
870     if( p_stream->avc.i_pps > 0 )
871     {
872         bo_add_16be( avcC, p_stream->avc.i_pps );
873         bo_add_mem( avcC, p_stream->avc.i_pps, p_stream->avc.pps );
874     }
875     box_fix( avcC );
876
877     return avcC;
878 }
879
880 /* TODO: No idea about these values */
881 static bo_t *GetSVQ3Tag( mp4_stream_t *p_stream )
882 {
883     bo_t *smi = box_new( "SMI " );
884
885     if( p_stream->fmt.i_extra > 0x4e )
886     {
887         uint8_t *p_end = &((uint8_t*)p_stream->fmt.p_extra)[p_stream->fmt.i_extra];
888         uint8_t *p     = &((uint8_t*)p_stream->fmt.p_extra)[0x46];
889
890         while( p + 8 < p_end )
891         {
892             int i_size = GetDWBE( p );
893             if( i_size <= 1 )
894             {
895                 /* FIXME handle 1 as long size */
896                 break;
897             }
898             if( !strncmp( &p[4], "SMI ", 4 ) )
899             {
900                 bo_add_mem( smi, p_end - p - 8, &p[8] );
901                 return smi;
902             }
903             p += i_size;
904         }
905     }
906
907     /* Create a dummy one in fallback */
908     bo_add_fourcc( smi, "SEQH" );
909     bo_add_32be( smi, 0x5 );
910     bo_add_32be( smi, 0xe2c0211d );
911     bo_add_8( smi, 0xc0 );
912     box_fix( smi );
913
914     return smi;
915 }
916
917 static bo_t *GetUdtaTag( sout_mux_t *p_mux )
918 {
919     sout_mux_sys_t *p_sys = p_mux->p_sys;
920     bo_t *udta = box_new( "udta" );
921     vlc_meta_t *p_meta = p_mux->p_sout->p_meta;
922     int i_track;
923
924     /* Requirements */
925     for( i_track = 0; i_track < p_sys->i_nb_streams; i_track++ )
926     {
927         mp4_stream_t *p_stream = p_sys->pp_streams[i_track];
928
929         if( p_stream->fmt.i_codec == VLC_FOURCC('m','p','4','v') ||
930             p_stream->fmt.i_codec == VLC_FOURCC('m','p','4','a') )
931         {
932             bo_t *box = box_new( "\251req" );
933             /* String length */
934             bo_add_16be( box, sizeof("QuickTime 6.0 or greater") - 1);
935             bo_add_16be( box, 0 );
936             bo_add_mem( box, sizeof("QuickTime 6.0 or greater") - 1,
937                         "QuickTime 6.0 or greater" );
938             box_fix( box );
939             box_gather( udta, box );
940             break;
941         }
942     }
943
944     /* Encoder */
945     {
946         bo_t *box = box_new( "\251enc" );
947         /* String length */
948         bo_add_16be( box, sizeof(PACKAGE_STRING " stream output") - 1);
949         bo_add_16be( box, 0 );
950         bo_add_mem( box, sizeof(PACKAGE_STRING " stream output") - 1,
951                     PACKAGE_STRING " stream output" );
952         box_fix( box );
953         box_gather( udta, box );
954     }
955
956     /* Misc atoms */
957     if( p_meta )
958     {
959         int i;
960         for( i = 0; i < p_meta->i_meta; i++ )
961         {
962             bo_t *box = NULL;
963
964             if( !strcmp( p_meta->name[i], VLC_META_TITLE ) )
965                 box = box_new( "\251nam" );
966             else if( !strcmp( p_meta->name[i], VLC_META_AUTHOR ) )
967                 box = box_new( "\251aut" );
968             else if( !strcmp( p_meta->name[i], VLC_META_ARTIST ) )
969                 box = box_new( "\251ART" );
970             else if( !strcmp( p_meta->name[i], VLC_META_GENRE ) )
971                 box = box_new( "\251gen" );
972             else if( !strcmp( p_meta->name[i], VLC_META_COPYRIGHT ) )
973                 box = box_new( "\251cpy" );
974             else if( !strcmp( p_meta->name[i], VLC_META_DESCRIPTION ) )
975                 box = box_new( "\251des" );
976             else if( !strcmp( p_meta->name[i], VLC_META_DATE ) )
977                 box = box_new( "\251day" );
978             else if( !strcmp( p_meta->name[i], VLC_META_URL ) )
979                 box = box_new( "\251url" );
980
981             if( box )
982             {
983                 bo_add_16be( box, strlen( p_meta->value[i] ) );
984                 bo_add_16be( box, 0 );
985                 bo_add_mem( box, strlen( p_meta->value[i] ),
986                             p_meta->value[i] );
987                 box_fix( box );
988                 box_gather( udta, box );
989             }
990         }
991     }
992
993     box_fix( udta );
994     return udta;
995 }
996
997 static bo_t *GetSounBox( sout_mux_t *p_mux, mp4_stream_t *p_stream )
998 {
999     sout_mux_sys_t *p_sys = p_mux->p_sys;
1000     vlc_bool_t b_descr = VLC_FALSE;
1001     bo_t *soun;
1002     char fcc[4] = "    ";
1003     int  i;
1004
1005     switch( p_stream->fmt.i_codec )
1006     {
1007     case VLC_FOURCC('m','p','4','a'):
1008         memcpy( fcc, "mp4a", 4 );
1009         b_descr = VLC_TRUE;
1010         break;
1011
1012     case VLC_FOURCC('m','p','g','a'):
1013         if( p_sys->b_mov )
1014             memcpy( fcc, ".mp3", 4 );
1015         else
1016         {
1017             memcpy( fcc, "mp4a", 4 );
1018             b_descr = VLC_TRUE;
1019         }
1020         break;
1021
1022     default:
1023         memcpy( fcc, (char*)&p_stream->fmt.i_codec, 4 );
1024         break;
1025     }
1026
1027     soun = box_new( fcc );
1028     for( i = 0; i < 6; i++ )
1029     {
1030         bo_add_8( soun, 0 );        // reserved;
1031     }
1032     bo_add_16be( soun, 1 );         // data-reference-index
1033
1034     /* SoundDescription */
1035     if( p_sys->b_mov &&
1036         p_stream->fmt.i_codec == VLC_FOURCC('m','p','4','a') )
1037     {
1038         bo_add_16be( soun, 1 );     // version 1;
1039     }
1040     else
1041     {
1042         bo_add_16be( soun, 0 );     // version 0;
1043     }
1044     bo_add_16be( soun, 0 );         // revision level (0)
1045     bo_add_32be( soun, 0 );         // vendor
1046     // channel-count
1047     bo_add_16be( soun, p_stream->fmt.audio.i_channels );
1048     // sample size
1049     bo_add_16be( soun, p_stream->fmt.audio.i_bitspersample ?
1050                  p_stream->fmt.audio.i_bitspersample : 16 );
1051     bo_add_16be( soun, -2 );        // compression id
1052     bo_add_16be( soun, 0 );         // packet size (0)
1053     bo_add_16be( soun, p_stream->fmt.audio.i_rate ); // sampleratehi
1054     bo_add_16be( soun, 0 );                             // sampleratelo
1055
1056     /* Extended data for SoundDescription V1 */
1057     if( p_sys->b_mov &&
1058         p_stream->fmt.i_codec == VLC_FOURCC('m','p','4','a') )
1059     {
1060         /* samples per packet */
1061         bo_add_32be( soun, p_stream->fmt.audio.i_frame_length );
1062         bo_add_32be( soun, 1536 ); /* bytes per packet */
1063         bo_add_32be( soun, 2 );    /* bytes per frame */
1064         /* bytes per sample */
1065         bo_add_32be( soun, 2 /*p_stream->fmt.audio.i_bitspersample/8 */);
1066     }
1067
1068     /* Add an ES Descriptor */
1069     if( b_descr )
1070     {
1071         bo_t *box;
1072
1073         if( p_sys->b_mov &&
1074             p_stream->fmt.i_codec == VLC_FOURCC('m','p','4','a') )
1075         {
1076             box = GetWaveTag( p_stream );
1077         }
1078         else
1079         {
1080             box = GetESDS( p_stream );
1081         }
1082         box_fix( box );
1083         box_gather( soun, box );
1084     }
1085
1086     box_fix( soun );
1087
1088     return soun;
1089 }
1090
1091 static bo_t *GetVideBox( sout_mux_t *p_mux, mp4_stream_t *p_stream )
1092 {
1093
1094     bo_t *vide;
1095     char fcc[4] = "    ";
1096     int  i;
1097
1098     switch( p_stream->fmt.i_codec )
1099     {
1100     case VLC_FOURCC('m','p','4','v'):
1101     case VLC_FOURCC('m','p','g','v'):
1102         memcpy( fcc, "mp4v", 4 );
1103         break;
1104
1105     case VLC_FOURCC('M','J','P','G'):
1106         memcpy( fcc, "mjpa", 4 );
1107         break;
1108
1109     case VLC_FOURCC('S','V','Q','1'):
1110         memcpy( fcc, "SVQ1", 4 );
1111         break;
1112
1113     case VLC_FOURCC('S','V','Q','3'):
1114         memcpy( fcc, "SVQ3", 4 );
1115         break;
1116
1117     case VLC_FOURCC('h','2','6','4'):
1118         memcpy( fcc, "avc1", 4 );
1119         break;
1120
1121     default:
1122         memcpy( fcc, (char*)&p_stream->fmt.i_codec, 4 );
1123         break;
1124     }
1125
1126     vide = box_new( fcc );
1127     for( i = 0; i < 6; i++ )
1128     {
1129         bo_add_8( vide, 0 );        // reserved;
1130     }
1131     bo_add_16be( vide, 1 );         // data-reference-index
1132
1133     bo_add_16be( vide, 0 );         // predefined;
1134     bo_add_16be( vide, 0 );         // reserved;
1135     for( i = 0; i < 3; i++ )
1136     {
1137         bo_add_32be( vide, 0 );     // predefined;
1138     }
1139
1140     bo_add_16be( vide, p_stream->fmt.video.i_width );  // i_width
1141     bo_add_16be( vide, p_stream->fmt.video.i_height ); // i_height
1142
1143     bo_add_32be( vide, 0x00480000 );                // h 72dpi
1144     bo_add_32be( vide, 0x00480000 );                // v 72dpi
1145
1146     bo_add_32be( vide, 0 );         // data size, always 0
1147     bo_add_16be( vide, 1 );         // frames count per sample
1148
1149     // compressor name;
1150     for( i = 0; i < 32; i++ )
1151     {
1152         bo_add_8( vide, 0 );
1153     }
1154
1155     bo_add_16be( vide, 0x18 );      // depth
1156     bo_add_16be( vide, 0xffff );    // predefined
1157
1158     /* add an ES Descriptor */
1159     switch( p_stream->fmt.i_codec )
1160     {
1161     case VLC_FOURCC('m','p','4','v'):
1162     case VLC_FOURCC('m','p','g','v'):
1163         {
1164             bo_t *esds = GetESDS( p_stream );
1165
1166             box_fix( esds );
1167             box_gather( vide, esds );
1168         }
1169         break;
1170
1171     case VLC_FOURCC('S','V','Q','3'):
1172         {
1173             bo_t *esds = GetSVQ3Tag( p_stream );
1174
1175             box_fix( esds );
1176             box_gather( vide, esds );
1177         }
1178         break;
1179
1180     case VLC_FOURCC('h','2','6','4'):
1181         box_gather( vide, GetAvcCTag( p_stream ) );
1182         break;
1183
1184     default:
1185         break;
1186     }
1187
1188     box_fix( vide );
1189
1190     return vide;
1191 }
1192
1193 static bo_t *GetTextBox( sout_mux_t *p_mux, mp4_stream_t *p_stream )
1194 {
1195
1196     bo_t *text = box_new( "text" );
1197     int  i;
1198
1199     for( i = 0; i < 6; i++ )
1200     {
1201         bo_add_8( text, 0 );        // reserved;
1202     }
1203     bo_add_16be( text, 1 );         // data-reference-index
1204
1205     bo_add_32be( text, 0 );         // display flags
1206     bo_add_32be( text, 0 );         // justification
1207     for( i = 0; i < 3; i++ )
1208     {
1209         bo_add_16be( text, 0 );     // back ground color
1210     }
1211
1212     bo_add_16be( text, 0 );         // box text
1213     bo_add_16be( text, 0 );         // box text
1214     bo_add_16be( text, 0 );         // box text
1215     bo_add_16be( text, 0 );         // box text
1216
1217     bo_add_64be( text, 0 );         // reserved
1218     for( i = 0; i < 3; i++ )
1219     {
1220         bo_add_16be( text, 0xff );  // foreground color
1221     }
1222
1223     bo_add_8 ( text, 9 );
1224     bo_add_mem( text, 9, "Helvetica" );
1225
1226     box_fix( text );
1227
1228     return text;
1229 }
1230
1231 static bo_t *GetStblBox( sout_mux_t *p_mux, mp4_stream_t *p_stream )
1232 {
1233     sout_mux_sys_t *p_sys = p_mux->p_sys;
1234     unsigned int i_chunk, i_stsc_last_val, i_stsc_entries, i, i_index;
1235     bo_t *stbl, *stsd, *stts, *stco, *stsc, *stsz, *stss;
1236     uint32_t i_timescale;
1237     int64_t i_dts, i_dts_q;
1238
1239     stbl = box_new( "stbl" );
1240
1241     /* sample description */
1242     stsd = box_full_new( "stsd", 0, 0 );
1243     bo_add_32be( stsd, 1 );
1244     if( p_stream->fmt.i_cat == AUDIO_ES )
1245     {
1246         bo_t *soun = GetSounBox( p_mux, p_stream );
1247         box_gather( stsd, soun );
1248     }
1249     else if( p_stream->fmt.i_cat == VIDEO_ES )
1250     {
1251         bo_t *vide = GetVideBox( p_mux, p_stream );
1252         box_gather( stsd, vide );
1253     }
1254     else if( p_stream->fmt.i_cat == SPU_ES )
1255     {
1256         box_gather( stsd, GetTextBox( p_mux, p_stream ) );
1257     }
1258     box_fix( stsd );
1259
1260     /* chunk offset table */
1261     if( p_sys->i_pos >= (((uint64_t)0x1) << 32) )
1262     {
1263         /* 64 bits version */
1264         p_stream->b_stco64 = VLC_TRUE;
1265         stco = box_full_new( "co64", 0, 0 );
1266     }
1267     else
1268     {
1269         /* 32 bits version */
1270         p_stream->b_stco64 = VLC_FALSE;
1271         stco = box_full_new( "stco", 0, 0 );
1272     }
1273     bo_add_32be( stco, 0 );     // entry-count (fixed latter)
1274
1275     /* sample to chunk table */
1276     stsc = box_full_new( "stsc", 0, 0 );
1277     bo_add_32be( stsc, 0 );     // entry-count (fixed latter)
1278
1279     for( i_chunk = 0, i_stsc_last_val = 0, i_stsc_entries = 0, i = 0;
1280          i < p_stream->i_entry_count; i_chunk++ )
1281     {
1282         int i_first = i;
1283
1284         if( p_stream->b_stco64 )
1285             bo_add_64be( stco, p_stream->entry[i].i_pos );
1286         else
1287             bo_add_32be( stco, p_stream->entry[i].i_pos );
1288
1289         while( i < p_stream->i_entry_count )
1290         {
1291             if( i + 1 < p_stream->i_entry_count &&
1292                 p_stream->entry[i].i_pos + p_stream->entry[i].i_size
1293                 != p_stream->entry[i + 1].i_pos )
1294             {
1295                 i++;
1296                 break;
1297             }
1298
1299             i++;
1300         }
1301
1302         /* Add entry to the stsc table */
1303         if( i_stsc_last_val != i - i_first )
1304         {
1305             bo_add_32be( stsc, 1 + i_chunk );   // first-chunk
1306             bo_add_32be( stsc, i - i_first ) ;  // samples-per-chunk
1307             bo_add_32be( stsc, 1 );             // sample-descr-index
1308             i_stsc_last_val = i - i_first;
1309             i_stsc_entries++;
1310         }
1311     }
1312
1313     /* Fix stco entry count */
1314     bo_fix_32be( stco, 12, i_chunk );
1315     msg_Dbg( p_mux, "created %d chunks (stco)", i_chunk );
1316     box_fix( stco );
1317
1318     /* Fix stsc entry count */
1319     bo_fix_32be( stsc, 12, i_stsc_entries  );
1320     box_fix( stsc );
1321
1322     /* add stts */
1323     stts = box_full_new( "stts", 0, 0 );
1324     bo_add_32be( stts, 0 );     // entry-count (fixed latter)
1325
1326     if( p_stream->fmt.i_cat == AUDIO_ES )
1327         i_timescale = p_stream->fmt.audio.i_rate;
1328     else
1329         i_timescale = 1001;
1330
1331     /* first, create quantified length */
1332     for( i = 0, i_dts = 0, i_dts_q = 0; i < p_stream->i_entry_count; i++ )
1333     {
1334         int64_t i_dts_deq = i_dts_q * I64C(1000000) / (int64_t)i_timescale;
1335         int64_t i_delta = p_stream->entry[i].i_length + i_dts - i_dts_deq;
1336
1337         i_dts += p_stream->entry[i].i_length;
1338
1339         p_stream->entry[i].i_length =
1340             i_delta * (int64_t)i_timescale / I64C(1000000);
1341
1342         i_dts_q += p_stream->entry[i].i_length;
1343     }
1344     /* then write encoded table */
1345     for( i = 0, i_index = 0; i < p_stream->i_entry_count; i_index++)
1346     {
1347         int     i_first = i;
1348         int64_t i_delta = p_stream->entry[i].i_length;
1349
1350         while( i < p_stream->i_entry_count )
1351         {
1352             i++;
1353             if( i >= p_stream->i_entry_count ||
1354                 p_stream->entry[i].i_length != i_delta )
1355             {
1356                 break;
1357             }
1358         }
1359
1360         bo_add_32be( stts, i - i_first ); // sample-count
1361         bo_add_32be( stts, i_delta );     // sample-delta
1362     }
1363     bo_fix_32be( stts, 12, i_index );
1364     box_fix( stts );
1365
1366     /* FIXME add ctts ?? FIXME */
1367
1368     stsz = box_full_new( "stsz", 0, 0 );
1369     bo_add_32be( stsz, 0 );                             // sample-size
1370     bo_add_32be( stsz, p_stream->i_entry_count );       // sample-count
1371     for( i = 0; i < p_stream->i_entry_count; i++ )
1372     {
1373         bo_add_32be( stsz, p_stream->entry[i].i_size ); // sample-size
1374     }
1375     box_fix( stsz );
1376
1377     /* create stss table */
1378     stss = NULL;
1379     for( i = 0, i_index = 0; i < p_stream->i_entry_count; i++ )
1380     {
1381         if( p_stream->entry[i].i_flags & BLOCK_FLAG_TYPE_I )
1382         {
1383             if( stss == NULL )
1384             {
1385                 stss = box_full_new( "stss", 0, 0 );
1386                 bo_add_32be( stss, 0 ); /* fixed later */
1387             }
1388             bo_add_32be( stss, 1 + i );
1389             i_index++;
1390         }
1391     }
1392     if( stss )
1393     {
1394         bo_fix_32be( stss, 12, i_index );
1395         box_fix( stss );
1396     }
1397
1398     /* Now gather all boxes into stbl */
1399     box_gather( stbl, stsd );
1400     box_gather( stbl, stts );
1401     if( stss )
1402     {
1403         box_gather( stbl, stss );
1404     }
1405     box_gather( stbl, stsc );
1406     box_gather( stbl, stsz );
1407     p_stream->i_stco_pos = stbl->i_buffer + 16;
1408     box_gather( stbl, stco );
1409
1410     /* finish stbl */
1411     box_fix( stbl );
1412
1413     return stbl;
1414 }
1415
1416 static int64_t get_timestamp();
1417
1418 static uint32_t mvhd_matrix[9] =
1419     { 0x10000, 0, 0, 0, 0x10000, 0, 0, 0, 0x40000000 };
1420
1421 static bo_t *GetMoovBox( sout_mux_t *p_mux )
1422 {
1423     sout_mux_sys_t *p_sys = p_mux->p_sys;
1424
1425     bo_t            *moov, *mvhd;
1426     int             i_trak, i;
1427
1428     uint32_t        i_movie_timescale = 90000;
1429     int64_t         i_movie_duration  = 0;
1430
1431     moov = box_new( "moov" );
1432
1433     /* Create general info */
1434     for( i_trak = 0; i_trak < p_sys->i_nb_streams; i_trak++ )
1435     {
1436         mp4_stream_t *p_stream = p_sys->pp_streams[i_trak];
1437         i_movie_duration = __MAX( i_movie_duration, p_stream->i_duration );
1438     }
1439     msg_Dbg( p_mux, "movie duration %ds",
1440              (uint32_t)( i_movie_duration / (mtime_t)1000000 ) );
1441
1442     i_movie_duration = i_movie_duration * i_movie_timescale / 1000000;
1443
1444     /* *** add /moov/mvhd *** */
1445     if( !p_sys->b_64_ext )
1446     {
1447         mvhd = box_full_new( "mvhd", 0, 0 );
1448         bo_add_32be( mvhd, get_timestamp() );   // creation time
1449         bo_add_32be( mvhd, get_timestamp() );   // modification time
1450         bo_add_32be( mvhd, i_movie_timescale);  // timescale
1451         bo_add_32be( mvhd, i_movie_duration );  // duration
1452     }
1453     else
1454     {
1455         mvhd = box_full_new( "mvhd", 1, 0 );
1456         bo_add_64be( mvhd, get_timestamp() );   // creation time
1457         bo_add_64be( mvhd, get_timestamp() );   // modification time
1458         bo_add_32be( mvhd, i_movie_timescale);  // timescale
1459         bo_add_64be( mvhd, i_movie_duration );  // duration
1460     }
1461     bo_add_32be( mvhd, 0x10000 );           // rate
1462     bo_add_16be( mvhd, 0x100 );             // volume
1463     bo_add_16be( mvhd, 0 );                 // reserved
1464     for( i = 0; i < 2; i++ )
1465     {
1466         bo_add_32be( mvhd, 0 );             // reserved
1467     }
1468     for( i = 0; i < 9; i++ )
1469     {
1470         bo_add_32be( mvhd, mvhd_matrix[i] );// matrix
1471     }
1472     for( i = 0; i < 6; i++ )
1473     {
1474         bo_add_32be( mvhd, 0 );             // pre-defined
1475     }
1476
1477     /* Next available track id */
1478     bo_add_32be( mvhd, p_sys->i_nb_streams + 1 ); // next-track-id
1479
1480     box_fix( mvhd );
1481     box_gather( moov, mvhd );
1482
1483     for( i_trak = 0; i_trak < p_sys->i_nb_streams; i_trak++ )
1484     {
1485         mp4_stream_t *p_stream;
1486         uint32_t     i_timescale;
1487
1488         bo_t *trak, *tkhd, *edts, *elst, *mdia, *mdhd, *hdlr;
1489         bo_t *minf, *dinf, *dref, *url, *stbl;
1490
1491         p_stream = p_sys->pp_streams[i_trak];
1492
1493         if( p_stream->fmt.i_cat == AUDIO_ES )
1494             i_timescale = p_stream->fmt.audio.i_rate;
1495         else
1496             i_timescale = 1001;
1497
1498         /* *** add /moov/trak *** */
1499         trak = box_new( "trak" );
1500
1501         /* *** add /moov/trak/tkhd *** */
1502         if( !p_sys->b_64_ext )
1503         {
1504             if( p_sys->b_mov )
1505                 tkhd = box_full_new( "tkhd", 0, 0x0f );
1506             else
1507                 tkhd = box_full_new( "tkhd", 0, 1 );
1508
1509             bo_add_32be( tkhd, get_timestamp() );       // creation time
1510             bo_add_32be( tkhd, get_timestamp() );       // modification time
1511             bo_add_32be( tkhd, p_stream->i_track_id );
1512             bo_add_32be( tkhd, 0 );                     // reserved 0
1513             bo_add_32be( tkhd, p_stream->i_duration *
1514                          (int64_t)i_movie_timescale /
1515                          (mtime_t)1000000 );            // duration
1516         }
1517         else
1518         {
1519             if( p_sys->b_mov )
1520                 tkhd = box_full_new( "tkhd", 1, 0x0f );
1521             else
1522                 tkhd = box_full_new( "tkhd", 1, 1 );
1523
1524             bo_add_64be( tkhd, get_timestamp() );       // creation time
1525             bo_add_64be( tkhd, get_timestamp() );       // modification time
1526             bo_add_32be( tkhd, p_stream->i_track_id );
1527             bo_add_32be( tkhd, 0 );                     // reserved 0
1528             bo_add_64be( tkhd, p_stream->i_duration *
1529                          (int64_t)i_movie_timescale /
1530                          (mtime_t)1000000 );            // duration
1531         }
1532
1533         for( i = 0; i < 2; i++ )
1534         {
1535             bo_add_32be( tkhd, 0 );                 // reserved
1536         }
1537         bo_add_16be( tkhd, 0 );                     // layer
1538         bo_add_16be( tkhd, 0 );                     // pre-defined
1539         // volume
1540         bo_add_16be( tkhd, p_stream->fmt.i_cat == AUDIO_ES ? 0x100 : 0 );
1541         bo_add_16be( tkhd, 0 );                     // reserved
1542         for( i = 0; i < 9; i++ )
1543         {
1544             bo_add_32be( tkhd, mvhd_matrix[i] );    // matrix
1545         }
1546         if( p_stream->fmt.i_cat == AUDIO_ES )
1547         {
1548             bo_add_32be( tkhd, 0 );                 // width (presentation)
1549             bo_add_32be( tkhd, 0 );                 // height(presentation)
1550         }
1551         else if( p_stream->fmt.i_cat == VIDEO_ES )
1552         {
1553             int i_width = p_stream->fmt.video.i_width;
1554             if( p_stream->fmt.video.i_aspect > 0 )
1555             {
1556                 i_width = p_stream->fmt.video.i_aspect *
1557                           (p_stream->fmt.video.i_height << 16) / VOUT_ASPECT_FACTOR;
1558             }
1559             // width (presentation)
1560             bo_add_32be( tkhd, i_width );
1561             // height(presentation)
1562             bo_add_32be( tkhd, p_stream->fmt.video.i_height << 16 );
1563         }
1564         else
1565         {
1566             int i_width = 320;
1567             int i_height = 200;
1568             int i;
1569             for( i = 0; i < p_sys->i_nb_streams; i++ )
1570             {
1571                 mp4_stream_t *tk = p_sys->pp_streams[i];
1572                 if( tk->fmt.i_cat == VIDEO_ES )
1573                 {
1574                     if( p_stream->fmt.video.i_aspect )
1575                         i_width = p_stream->fmt.video.i_aspect *
1576                                   p_stream->fmt.video.i_height / VOUT_ASPECT_FACTOR;
1577                     else
1578                         i_width = p_stream->fmt.video.i_width;
1579                     i_height = p_stream->fmt.video.i_height;
1580                     break;
1581                 }
1582             }
1583             bo_add_32be( tkhd, i_width << 16 );     // width (presentation)
1584             bo_add_32be( tkhd, i_height << 16 );    // height(presentation)
1585         }
1586
1587         box_fix( tkhd );
1588         box_gather( trak, tkhd );
1589
1590         /* *** add /moov/trak/edts and elst */
1591         edts = box_new( "edts" );
1592         elst = box_full_new( "elst", p_sys->b_64_ext ? 1 : 0, 0 );
1593         if( p_stream->i_dts_start > p_sys->i_dts_start )
1594         {
1595             bo_add_32be( elst, 2 );
1596
1597             if( p_sys->b_64_ext )
1598             {
1599                 bo_add_64be( elst, (p_stream->i_dts_start-p_sys->i_dts_start) *
1600                              i_movie_timescale / I64C(1000000) );
1601                 bo_add_64be( elst, -1 );
1602             }
1603             else
1604             {
1605                 bo_add_32be( elst, (p_stream->i_dts_start-p_sys->i_dts_start) *
1606                              i_movie_timescale / I64C(1000000) );
1607                 bo_add_32be( elst, -1 );
1608             }
1609             bo_add_16be( elst, 1 );
1610             bo_add_16be( elst, 0 );
1611         }
1612         else
1613         {
1614             bo_add_32be( elst, 1 );
1615         }
1616         if( p_sys->b_64_ext )
1617         {
1618             bo_add_64be( elst, p_stream->i_duration *
1619                          i_movie_timescale / I64C(1000000) );
1620             bo_add_64be( elst, 0 );
1621         }
1622         else
1623         {
1624             bo_add_32be( elst, p_stream->i_duration *
1625                          i_movie_timescale / I64C(1000000) );
1626             bo_add_32be( elst, 0 );
1627         }
1628         bo_add_16be( elst, 1 );
1629         bo_add_16be( elst, 0 );
1630
1631         box_fix( elst );
1632         box_gather( edts, elst );
1633         box_fix( edts );
1634         box_gather( trak, edts );
1635
1636         /* *** add /moov/trak/mdia *** */
1637         mdia = box_new( "mdia" );
1638
1639         /* media header */
1640         if( !p_sys->b_64_ext )
1641         {
1642             mdhd = box_full_new( "mdhd", 0, 0 );
1643             bo_add_32be( mdhd, get_timestamp() );   // creation time
1644             bo_add_32be( mdhd, get_timestamp() );   // modification time
1645             bo_add_32be( mdhd, i_timescale);        // timescale
1646             bo_add_32be( mdhd, p_stream->i_duration * (int64_t)i_timescale /
1647                                (mtime_t)1000000 );  // duration
1648         }
1649         else
1650         {
1651             mdhd = box_full_new( "mdhd", 1, 0 );
1652             bo_add_64be( mdhd, get_timestamp() );   // creation time
1653             bo_add_64be( mdhd, get_timestamp() );   // modification time
1654             bo_add_32be( mdhd, i_timescale);        // timescale
1655             bo_add_64be( mdhd, p_stream->i_duration * (int64_t)i_timescale /
1656                                (mtime_t)1000000 );  // duration
1657         }
1658
1659         if( p_stream->fmt.psz_language )
1660         {
1661             char *psz = p_stream->fmt.psz_language;
1662             const iso639_lang_t *pl = NULL;
1663             uint16_t lang = 0x0;
1664
1665             if( strlen( psz ) == 2 )
1666             {
1667                 pl = GetLang_1( psz );
1668             }
1669             else if( strlen( psz ) == 3 )
1670             {
1671                 pl = GetLang_2B( psz );
1672                 if( !strcmp( pl->psz_iso639_1, "??" ) )
1673                 {
1674                     pl = GetLang_2T( psz );
1675                 }
1676             }
1677             if( pl && strcmp( pl->psz_iso639_1, "??" ) )
1678             {
1679                 lang = ( ( pl->psz_iso639_2T[0] - 0x60 ) << 10 ) |
1680                        ( ( pl->psz_iso639_2T[1] - 0x60 ) <<  5 ) |
1681                        ( ( pl->psz_iso639_2T[2] - 0x60 ) );
1682             }
1683             bo_add_16be( mdhd, lang );          // language
1684         }
1685         else
1686         {
1687             bo_add_16be( mdhd, 0    );          // language
1688         }
1689         bo_add_16be( mdhd, 0    );              // predefined
1690         box_fix( mdhd );
1691         box_gather( mdia, mdhd );
1692
1693         /* handler reference */
1694         hdlr = box_full_new( "hdlr", 0, 0 );
1695
1696         bo_add_fourcc( hdlr, "mhlr" );         // media handler
1697         if( p_stream->fmt.i_cat == AUDIO_ES )
1698         {
1699             bo_add_fourcc( hdlr, "soun" );
1700         }
1701         else if( p_stream->fmt.i_cat == VIDEO_ES )
1702         {
1703             bo_add_fourcc( hdlr, "vide" );
1704         }
1705         else if( p_stream->fmt.i_cat == SPU_ES )
1706         {
1707             bo_add_fourcc( hdlr, "text" );
1708         }
1709
1710         bo_add_32be( hdlr, 0 );         // reserved
1711         bo_add_32be( hdlr, 0 );         // reserved
1712         bo_add_32be( hdlr, 0 );         // reserved
1713
1714         bo_add_8( hdlr, 12 );
1715         if( p_stream->fmt.i_cat == AUDIO_ES )
1716             bo_add_mem( hdlr, 12, "SoundHandler" );
1717         else if( p_stream->fmt.i_cat == VIDEO_ES )
1718             bo_add_mem( hdlr, 12, "VideoHandler" );
1719         else
1720             bo_add_mem( hdlr, 12, "Text Handler" );
1721
1722         box_fix( hdlr );
1723         box_gather( mdia, hdlr );
1724
1725         /* minf*/
1726         minf = box_new( "minf" );
1727
1728         /* add smhd|vmhd */
1729         if( p_stream->fmt.i_cat == AUDIO_ES )
1730         {
1731             bo_t *smhd;
1732
1733             smhd = box_full_new( "smhd", 0, 0 );
1734             bo_add_16be( smhd, 0 );     // balance
1735             bo_add_16be( smhd, 0 );     // reserved
1736             box_fix( smhd );
1737
1738             box_gather( minf, smhd );
1739         }
1740         else if( p_stream->fmt.i_cat == VIDEO_ES )
1741         {
1742             bo_t *vmhd;
1743
1744             vmhd = box_full_new( "vmhd", 0, 1 );
1745             bo_add_16be( vmhd, 0 );     // graphicsmode
1746             for( i = 0; i < 3; i++ )
1747             {
1748                 bo_add_16be( vmhd, 0 ); // opcolor
1749             }
1750             box_fix( vmhd );
1751
1752             box_gather( minf, vmhd );
1753         }
1754         else if( p_stream->fmt.i_cat == SPU_ES )
1755         {
1756             bo_t *gmhd = box_new( "gmhd" );
1757             bo_t *gmin = box_full_new( "gmin", 0, 1 );
1758
1759             bo_add_16be( gmin, 0 );     // graphicsmode
1760             for( i = 0; i < 3; i++ )
1761             {
1762                 bo_add_16be( gmin, 0 ); // opcolor
1763             }
1764             bo_add_16be( gmin, 0 );     // balance
1765             bo_add_16be( gmin, 0 );     // reserved
1766             box_fix( gmin );
1767
1768             box_gather( gmhd, gmin );
1769             box_fix( gmhd );
1770
1771             box_gather( minf, gmhd );
1772         }
1773
1774         /* dinf */
1775         dinf = box_new( "dinf" );
1776         dref = box_full_new( "dref", 0, 0 );
1777         bo_add_32be( dref, 1 );
1778         url = box_full_new( "url ", 0, 0x01 );
1779         box_fix( url );
1780         box_gather( dref, url );
1781         box_fix( dref );
1782         box_gather( dinf, dref );
1783
1784         /* append dinf to mdia */
1785         box_fix( dinf );
1786         box_gather( minf, dinf );
1787
1788         /* add stbl */
1789         stbl = GetStblBox( p_mux, p_stream );
1790
1791         /* append stbl to minf */
1792         p_stream->i_stco_pos += minf->i_buffer;
1793         box_gather( minf, stbl );
1794
1795         /* append minf to mdia */
1796         box_fix( minf );
1797         p_stream->i_stco_pos += mdia->i_buffer;
1798         box_gather( mdia, minf );
1799
1800         /* append mdia to trak */
1801         box_fix( mdia );
1802         p_stream->i_stco_pos += trak->i_buffer;
1803         box_gather( trak, mdia );
1804
1805         /* append trak to moov */
1806         box_fix( trak );
1807         p_stream->i_stco_pos += moov->i_buffer;
1808         box_gather( moov, trak );
1809     }
1810
1811     /* Add user data tags */
1812     box_gather( moov, GetUdtaTag( p_mux ) );
1813
1814     box_fix( moov );
1815     return moov;
1816 }
1817
1818 /****************************************************************************/
1819
1820 static void bo_init( bo_t *p_bo, int i_size, uint8_t *p_buffer,
1821                      vlc_bool_t b_grow )
1822 {
1823     if( !p_buffer )
1824     {
1825         p_bo->i_buffer_size = __MAX( i_size, 1024 );
1826         p_bo->p_buffer = malloc( p_bo->i_buffer_size );
1827     }
1828     else
1829     {
1830         p_bo->i_buffer_size = i_size;
1831         p_bo->p_buffer = p_buffer;
1832     }
1833
1834     p_bo->b_grow = b_grow;
1835     p_bo->i_buffer = 0;
1836 }
1837
1838 static void bo_add_8( bo_t *p_bo, uint8_t i )
1839 {
1840     if( p_bo->i_buffer < p_bo->i_buffer_size )
1841     {
1842         p_bo->p_buffer[p_bo->i_buffer] = i;
1843     }
1844     else if( p_bo->b_grow )
1845     {
1846         p_bo->i_buffer_size += 1024;
1847         p_bo->p_buffer = realloc( p_bo->p_buffer, p_bo->i_buffer_size );
1848
1849         p_bo->p_buffer[p_bo->i_buffer] = i;
1850     }
1851
1852     p_bo->i_buffer++;
1853 }
1854
1855 static void bo_add_16be( bo_t *p_bo, uint16_t i )
1856 {
1857     bo_add_8( p_bo, ( ( i >> 8) &0xff ) );
1858     bo_add_8( p_bo, i &0xff );
1859 }
1860
1861 static void bo_add_24be( bo_t *p_bo, uint32_t i )
1862 {
1863     bo_add_8( p_bo, ( ( i >> 16) &0xff ) );
1864     bo_add_8( p_bo, ( ( i >> 8) &0xff ) );
1865     bo_add_8( p_bo, (   i &0xff ) );
1866 }
1867 static void bo_add_32be( bo_t *p_bo, uint32_t i )
1868 {
1869     bo_add_16be( p_bo, ( ( i >> 16) &0xffff ) );
1870     bo_add_16be( p_bo, i &0xffff );
1871 }
1872
1873 static void bo_fix_32be ( bo_t *p_bo, int i_pos, uint32_t i)
1874 {
1875     p_bo->p_buffer[i_pos    ] = ( i >> 24 )&0xff;
1876     p_bo->p_buffer[i_pos + 1] = ( i >> 16 )&0xff;
1877     p_bo->p_buffer[i_pos + 2] = ( i >>  8 )&0xff;
1878     p_bo->p_buffer[i_pos + 3] = ( i       )&0xff;
1879 }
1880
1881 static void bo_add_64be( bo_t *p_bo, uint64_t i )
1882 {
1883     bo_add_32be( p_bo, ( ( i >> 32) &0xffffffff ) );
1884     bo_add_32be( p_bo, i &0xffffffff );
1885 }
1886
1887 static void bo_add_fourcc( bo_t *p_bo, char *fcc )
1888 {
1889     bo_add_8( p_bo, fcc[0] );
1890     bo_add_8( p_bo, fcc[1] );
1891     bo_add_8( p_bo, fcc[2] );
1892     bo_add_8( p_bo, fcc[3] );
1893 }
1894
1895 static void bo_add_mem( bo_t *p_bo, int i_size, uint8_t *p_mem )
1896 {
1897     int i;
1898
1899     for( i = 0; i < i_size; i++ )
1900     {
1901         bo_add_8( p_bo, p_mem[i] );
1902     }
1903 }
1904
1905 static void bo_add_descr( bo_t *p_bo, uint8_t tag, uint32_t i_size )
1906 {
1907     uint32_t i_length;
1908     uint8_t  vals[4];
1909
1910     i_length = i_size;
1911     vals[3] = (unsigned char)(i_length & 0x7f);
1912     i_length >>= 7;
1913     vals[2] = (unsigned char)((i_length & 0x7f) | 0x80); 
1914     i_length >>= 7;
1915     vals[1] = (unsigned char)((i_length & 0x7f) | 0x80); 
1916     i_length >>= 7;
1917     vals[0] = (unsigned char)((i_length & 0x7f) | 0x80);
1918
1919     bo_add_8( p_bo, tag );
1920
1921     if( i_size < 0x00000080 )
1922     {
1923         bo_add_8( p_bo, vals[3] );
1924     }
1925     else if( i_size < 0x00004000 )
1926     {
1927         bo_add_8( p_bo, vals[2] );
1928         bo_add_8( p_bo, vals[3] );
1929     }
1930     else if( i_size < 0x00200000 )
1931     {
1932         bo_add_8( p_bo, vals[1] );
1933         bo_add_8( p_bo, vals[2] );
1934         bo_add_8( p_bo, vals[3] );
1935     }
1936     else if( i_size < 0x10000000 )
1937     {
1938         bo_add_8( p_bo, vals[0] );
1939         bo_add_8( p_bo, vals[1] );
1940         bo_add_8( p_bo, vals[2] );
1941         bo_add_8( p_bo, vals[3] );
1942     }
1943 }
1944
1945 static void bo_add_bo( bo_t *p_bo, bo_t *p_bo2 )
1946 {
1947     int i;
1948
1949     for( i = 0; i < p_bo2->i_buffer; i++ )
1950     {
1951         bo_add_8( p_bo, p_bo2->p_buffer[i] );
1952     }
1953 }
1954
1955 static bo_t * box_new( char *fcc )
1956 {
1957     bo_t *box;
1958
1959     if( ( box = malloc( sizeof( bo_t ) ) ) )
1960     {
1961         bo_init( box, 0, NULL, VLC_TRUE );
1962
1963         bo_add_32be  ( box, 0 );
1964         bo_add_fourcc( box, fcc );
1965     }
1966
1967     return box;
1968 }
1969
1970 static bo_t * box_full_new( char *fcc, uint8_t v, uint32_t f )
1971 {
1972     bo_t *box;
1973
1974     if( ( box = malloc( sizeof( bo_t ) ) ) )
1975     {
1976         bo_init( box, 0, NULL, VLC_TRUE );
1977
1978         bo_add_32be  ( box, 0 );
1979         bo_add_fourcc( box, fcc );
1980         bo_add_8     ( box, v );
1981         bo_add_24be  ( box, f );
1982     }
1983
1984     return box;
1985 }
1986
1987 static void box_fix( bo_t *box )
1988 {
1989     bo_t box_tmp;
1990
1991     memcpy( &box_tmp, box, sizeof( bo_t ) );
1992
1993     box_tmp.i_buffer = 0;
1994     bo_add_32be( &box_tmp, box->i_buffer );
1995 }
1996
1997 static void box_free( bo_t *box )
1998 {
1999     if( box->p_buffer )
2000     {
2001         free( box->p_buffer );
2002     }
2003
2004     free( box );
2005 }
2006
2007 static void box_gather ( bo_t *box, bo_t *box2 )
2008 {
2009     bo_add_bo( box, box2 );
2010     box_free( box2 );
2011 }
2012
2013 static block_t * bo_to_sout( sout_instance_t *p_sout,  bo_t *box )
2014 {
2015     block_t *p_buf;
2016
2017     p_buf = block_New( p_sout, box->i_buffer );
2018     if( box->i_buffer > 0 )
2019     {
2020         memcpy( p_buf->p_buffer, box->p_buffer, box->i_buffer );
2021     }
2022
2023     return p_buf;
2024 }
2025
2026 static void box_send( sout_mux_t *p_mux,  bo_t *box )
2027 {
2028     block_t *p_buf;
2029
2030     p_buf = bo_to_sout( p_mux->p_sout, box );
2031     box_free( box );
2032
2033     sout_AccessOutWrite( p_mux->p_access, p_buf );
2034 }
2035
2036 static int64_t get_timestamp()
2037 {
2038     int64_t i_timestamp = 0;
2039
2040 #ifdef HAVE_TIME_H
2041     i_timestamp = time(NULL);
2042     i_timestamp += 2082844800; // MOV/MP4 start date is 1/1/1904
2043     // 208284480 is (((1970 - 1904) * 365) + 17) * 24 * 60 * 60
2044 #endif
2045
2046     return i_timestamp;
2047 }