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