]> git.sesse.net Git - vlc/blob - modules/mux/mp4.c
* libmp4.c: MMhh .mp4 is 99.99% the same thing than .mov but not 100% :(((
[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;
1558             if( p_stream->fmt.video.i_aspect > 0 )
1559             {
1560                 i_width = p_stream->fmt.video.i_aspect *
1561                           (p_stream->fmt.video.i_height << 16) / VOUT_ASPECT_FACTOR;
1562             }
1563             // width (presentation)
1564             bo_add_32be( tkhd, i_width );
1565             // height(presentation)
1566             bo_add_32be( tkhd, p_stream->fmt.video.i_height << 16 );
1567         }
1568         else
1569         {
1570             int i_width = 320;
1571             int i_height = 200;
1572             int i;
1573             for( i = 0; i < p_sys->i_nb_streams; i++ )
1574             {
1575                 mp4_stream_t *tk = p_sys->pp_streams[i];
1576                 if( tk->fmt.i_cat == VIDEO_ES )
1577                 {
1578                     if( p_stream->fmt.video.i_aspect )
1579                         i_width = p_stream->fmt.video.i_aspect *
1580                                   p_stream->fmt.video.i_height / VOUT_ASPECT_FACTOR;
1581                     else
1582                         i_width = p_stream->fmt.video.i_width;
1583                     i_height = p_stream->fmt.video.i_height;
1584                     break;
1585                 }
1586             }
1587             bo_add_32be( tkhd, i_width << 16 );     // width (presentation)
1588             bo_add_32be( tkhd, i_height << 16 );    // height(presentation)
1589         }
1590
1591         box_fix( tkhd );
1592         box_gather( trak, tkhd );
1593
1594         /* *** add /moov/trak/edts and elst */
1595         edts = box_new( "edts" );
1596         elst = box_full_new( "elst", p_sys->b_64_ext ? 1 : 0, 0 );
1597         if( p_stream->i_dts_start > p_sys->i_dts_start )
1598         {
1599             bo_add_32be( elst, 2 );
1600
1601             if( p_sys->b_64_ext )
1602             {
1603                 bo_add_64be( elst, (p_stream->i_dts_start-p_sys->i_dts_start) *
1604                              i_movie_timescale / I64C(1000000) );
1605                 bo_add_64be( elst, -1 );
1606             }
1607             else
1608             {
1609                 bo_add_32be( elst, (p_stream->i_dts_start-p_sys->i_dts_start) *
1610                              i_movie_timescale / I64C(1000000) );
1611                 bo_add_32be( elst, -1 );
1612             }
1613             bo_add_16be( elst, 1 );
1614             bo_add_16be( elst, 0 );
1615         }
1616         else
1617         {
1618             bo_add_32be( elst, 1 );
1619         }
1620         if( p_sys->b_64_ext )
1621         {
1622             bo_add_64be( elst, p_stream->i_duration *
1623                          i_movie_timescale / I64C(1000000) );
1624             bo_add_64be( elst, 0 );
1625         }
1626         else
1627         {
1628             bo_add_32be( elst, p_stream->i_duration *
1629                          i_movie_timescale / I64C(1000000) );
1630             bo_add_32be( elst, 0 );
1631         }
1632         bo_add_16be( elst, 1 );
1633         bo_add_16be( elst, 0 );
1634
1635         box_fix( elst );
1636         box_gather( edts, elst );
1637         box_fix( edts );
1638         box_gather( trak, edts );
1639
1640         /* *** add /moov/trak/mdia *** */
1641         mdia = box_new( "mdia" );
1642
1643         /* media header */
1644         if( !p_sys->b_64_ext )
1645         {
1646             mdhd = box_full_new( "mdhd", 0, 0 );
1647             bo_add_32be( mdhd, get_timestamp() );   // creation time
1648             bo_add_32be( mdhd, get_timestamp() );   // modification time
1649             bo_add_32be( mdhd, i_timescale);        // timescale
1650             bo_add_32be( mdhd, p_stream->i_duration * (int64_t)i_timescale /
1651                                (mtime_t)1000000 );  // duration
1652         }
1653         else
1654         {
1655             mdhd = box_full_new( "mdhd", 1, 0 );
1656             bo_add_64be( mdhd, get_timestamp() );   // creation time
1657             bo_add_64be( mdhd, get_timestamp() );   // modification time
1658             bo_add_32be( mdhd, i_timescale);        // timescale
1659             bo_add_64be( mdhd, p_stream->i_duration * (int64_t)i_timescale /
1660                                (mtime_t)1000000 );  // duration
1661         }
1662
1663         if( p_stream->fmt.psz_language )
1664         {
1665             char *psz = p_stream->fmt.psz_language;
1666             const iso639_lang_t *pl = NULL;
1667             uint16_t lang = 0x0;
1668
1669             if( strlen( psz ) == 2 )
1670             {
1671                 pl = GetLang_1( psz );
1672             }
1673             else if( strlen( psz ) == 3 )
1674             {
1675                 pl = GetLang_2B( psz );
1676                 if( !strcmp( pl->psz_iso639_1, "??" ) )
1677                 {
1678                     pl = GetLang_2T( psz );
1679                 }
1680             }
1681             if( pl && strcmp( pl->psz_iso639_1, "??" ) )
1682             {
1683                 lang = ( ( pl->psz_iso639_2T[0] - 0x60 ) << 10 ) |
1684                        ( ( pl->psz_iso639_2T[1] - 0x60 ) <<  5 ) |
1685                        ( ( pl->psz_iso639_2T[2] - 0x60 ) );
1686             }
1687             bo_add_16be( mdhd, lang );          // language
1688         }
1689         else
1690         {
1691             bo_add_16be( mdhd, 0    );          // language
1692         }
1693         bo_add_16be( mdhd, 0    );              // predefined
1694         box_fix( mdhd );
1695         box_gather( mdia, mdhd );
1696
1697         /* handler reference */
1698         hdlr = box_full_new( "hdlr", 0, 0 );
1699
1700         if( p_sys->b_mov )
1701             bo_add_fourcc( hdlr, "mhlr" );         // media handler
1702         else
1703             bo_add_32be( hdlr, 0 );
1704
1705         if( p_stream->fmt.i_cat == AUDIO_ES )
1706             bo_add_fourcc( hdlr, "soun" );
1707         else if( p_stream->fmt.i_cat == VIDEO_ES )
1708             bo_add_fourcc( hdlr, "vide" );
1709         else if( p_stream->fmt.i_cat == SPU_ES )
1710             bo_add_fourcc( hdlr, "text" );
1711
1712         bo_add_32be( hdlr, 0 );         // reserved
1713         bo_add_32be( hdlr, 0 );         // reserved
1714         bo_add_32be( hdlr, 0 );         // reserved
1715
1716         if( p_sys->b_mov )
1717             bo_add_8( hdlr, 12 );   /* Pascal string for .mov */
1718
1719         if( p_stream->fmt.i_cat == AUDIO_ES )
1720             bo_add_mem( hdlr, 12, "SoundHandler" );
1721         else if( p_stream->fmt.i_cat == VIDEO_ES )
1722             bo_add_mem( hdlr, 12, "VideoHandler" );
1723         else
1724             bo_add_mem( hdlr, 12, "Text Handler" );
1725
1726         if( !p_sys->b_mov )
1727             bo_add_8( hdlr, 0 );   /* asciiz string for .mp4, yes that's BRAIN DAMAGED F**K MP4 */
1728
1729         box_fix( hdlr );
1730         box_gather( mdia, hdlr );
1731
1732         /* minf*/
1733         minf = box_new( "minf" );
1734
1735         /* add smhd|vmhd */
1736         if( p_stream->fmt.i_cat == AUDIO_ES )
1737         {
1738             bo_t *smhd;
1739
1740             smhd = box_full_new( "smhd", 0, 0 );
1741             bo_add_16be( smhd, 0 );     // balance
1742             bo_add_16be( smhd, 0 );     // reserved
1743             box_fix( smhd );
1744
1745             box_gather( minf, smhd );
1746         }
1747         else if( p_stream->fmt.i_cat == VIDEO_ES )
1748         {
1749             bo_t *vmhd;
1750
1751             vmhd = box_full_new( "vmhd", 0, 1 );
1752             bo_add_16be( vmhd, 0 );     // graphicsmode
1753             for( i = 0; i < 3; i++ )
1754             {
1755                 bo_add_16be( vmhd, 0 ); // opcolor
1756             }
1757             box_fix( vmhd );
1758
1759             box_gather( minf, vmhd );
1760         }
1761         else if( p_stream->fmt.i_cat == SPU_ES )
1762         {
1763             bo_t *gmhd = box_new( "gmhd" );
1764             bo_t *gmin = box_full_new( "gmin", 0, 1 );
1765
1766             bo_add_16be( gmin, 0 );     // graphicsmode
1767             for( i = 0; i < 3; i++ )
1768             {
1769                 bo_add_16be( gmin, 0 ); // opcolor
1770             }
1771             bo_add_16be( gmin, 0 );     // balance
1772             bo_add_16be( gmin, 0 );     // reserved
1773             box_fix( gmin );
1774
1775             box_gather( gmhd, gmin );
1776             box_fix( gmhd );
1777
1778             box_gather( minf, gmhd );
1779         }
1780
1781         /* dinf */
1782         dinf = box_new( "dinf" );
1783         dref = box_full_new( "dref", 0, 0 );
1784         bo_add_32be( dref, 1 );
1785         url = box_full_new( "url ", 0, 0x01 );
1786         box_fix( url );
1787         box_gather( dref, url );
1788         box_fix( dref );
1789         box_gather( dinf, dref );
1790
1791         /* append dinf to mdia */
1792         box_fix( dinf );
1793         box_gather( minf, dinf );
1794
1795         /* add stbl */
1796         stbl = GetStblBox( p_mux, p_stream );
1797
1798         /* append stbl to minf */
1799         p_stream->i_stco_pos += minf->i_buffer;
1800         box_gather( minf, stbl );
1801
1802         /* append minf to mdia */
1803         box_fix( minf );
1804         p_stream->i_stco_pos += mdia->i_buffer;
1805         box_gather( mdia, minf );
1806
1807         /* append mdia to trak */
1808         box_fix( mdia );
1809         p_stream->i_stco_pos += trak->i_buffer;
1810         box_gather( trak, mdia );
1811
1812         /* append trak to moov */
1813         box_fix( trak );
1814         p_stream->i_stco_pos += moov->i_buffer;
1815         box_gather( moov, trak );
1816     }
1817
1818     /* Add user data tags */
1819     box_gather( moov, GetUdtaTag( p_mux ) );
1820
1821     box_fix( moov );
1822     return moov;
1823 }
1824
1825 /****************************************************************************/
1826
1827 static void bo_init( bo_t *p_bo, int i_size, uint8_t *p_buffer,
1828                      vlc_bool_t b_grow )
1829 {
1830     if( !p_buffer )
1831     {
1832         p_bo->i_buffer_size = __MAX( i_size, 1024 );
1833         p_bo->p_buffer = malloc( p_bo->i_buffer_size );
1834     }
1835     else
1836     {
1837         p_bo->i_buffer_size = i_size;
1838         p_bo->p_buffer = p_buffer;
1839     }
1840
1841     p_bo->b_grow = b_grow;
1842     p_bo->i_buffer = 0;
1843 }
1844
1845 static void bo_add_8( bo_t *p_bo, uint8_t i )
1846 {
1847     if( p_bo->i_buffer < p_bo->i_buffer_size )
1848     {
1849         p_bo->p_buffer[p_bo->i_buffer] = i;
1850     }
1851     else if( p_bo->b_grow )
1852     {
1853         p_bo->i_buffer_size += 1024;
1854         p_bo->p_buffer = realloc( p_bo->p_buffer, p_bo->i_buffer_size );
1855
1856         p_bo->p_buffer[p_bo->i_buffer] = i;
1857     }
1858
1859     p_bo->i_buffer++;
1860 }
1861
1862 static void bo_add_16be( bo_t *p_bo, uint16_t i )
1863 {
1864     bo_add_8( p_bo, ( ( i >> 8) &0xff ) );
1865     bo_add_8( p_bo, i &0xff );
1866 }
1867
1868 static void bo_add_24be( bo_t *p_bo, uint32_t i )
1869 {
1870     bo_add_8( p_bo, ( ( i >> 16) &0xff ) );
1871     bo_add_8( p_bo, ( ( i >> 8) &0xff ) );
1872     bo_add_8( p_bo, (   i &0xff ) );
1873 }
1874 static void bo_add_32be( bo_t *p_bo, uint32_t i )
1875 {
1876     bo_add_16be( p_bo, ( ( i >> 16) &0xffff ) );
1877     bo_add_16be( p_bo, i &0xffff );
1878 }
1879
1880 static void bo_fix_32be ( bo_t *p_bo, int i_pos, uint32_t i)
1881 {
1882     p_bo->p_buffer[i_pos    ] = ( i >> 24 )&0xff;
1883     p_bo->p_buffer[i_pos + 1] = ( i >> 16 )&0xff;
1884     p_bo->p_buffer[i_pos + 2] = ( i >>  8 )&0xff;
1885     p_bo->p_buffer[i_pos + 3] = ( i       )&0xff;
1886 }
1887
1888 static void bo_add_64be( bo_t *p_bo, uint64_t i )
1889 {
1890     bo_add_32be( p_bo, ( ( i >> 32) &0xffffffff ) );
1891     bo_add_32be( p_bo, i &0xffffffff );
1892 }
1893
1894 static void bo_add_fourcc( bo_t *p_bo, char *fcc )
1895 {
1896     bo_add_8( p_bo, fcc[0] );
1897     bo_add_8( p_bo, fcc[1] );
1898     bo_add_8( p_bo, fcc[2] );
1899     bo_add_8( p_bo, fcc[3] );
1900 }
1901
1902 static void bo_add_mem( bo_t *p_bo, int i_size, uint8_t *p_mem )
1903 {
1904     int i;
1905
1906     for( i = 0; i < i_size; i++ )
1907     {
1908         bo_add_8( p_bo, p_mem[i] );
1909     }
1910 }
1911
1912 static void bo_add_descr( bo_t *p_bo, uint8_t tag, uint32_t i_size )
1913 {
1914     uint32_t i_length;
1915     uint8_t  vals[4];
1916
1917     i_length = i_size;
1918     vals[3] = (unsigned char)(i_length & 0x7f);
1919     i_length >>= 7;
1920     vals[2] = (unsigned char)((i_length & 0x7f) | 0x80); 
1921     i_length >>= 7;
1922     vals[1] = (unsigned char)((i_length & 0x7f) | 0x80); 
1923     i_length >>= 7;
1924     vals[0] = (unsigned char)((i_length & 0x7f) | 0x80);
1925
1926     bo_add_8( p_bo, tag );
1927
1928     if( i_size < 0x00000080 )
1929     {
1930         bo_add_8( p_bo, vals[3] );
1931     }
1932     else if( i_size < 0x00004000 )
1933     {
1934         bo_add_8( p_bo, vals[2] );
1935         bo_add_8( p_bo, vals[3] );
1936     }
1937     else if( i_size < 0x00200000 )
1938     {
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     else if( i_size < 0x10000000 )
1944     {
1945         bo_add_8( p_bo, vals[0] );
1946         bo_add_8( p_bo, vals[1] );
1947         bo_add_8( p_bo, vals[2] );
1948         bo_add_8( p_bo, vals[3] );
1949     }
1950 }
1951
1952 static void bo_add_bo( bo_t *p_bo, bo_t *p_bo2 )
1953 {
1954     int i;
1955
1956     for( i = 0; i < p_bo2->i_buffer; i++ )
1957     {
1958         bo_add_8( p_bo, p_bo2->p_buffer[i] );
1959     }
1960 }
1961
1962 static bo_t * box_new( char *fcc )
1963 {
1964     bo_t *box;
1965
1966     if( ( box = malloc( sizeof( bo_t ) ) ) )
1967     {
1968         bo_init( box, 0, NULL, VLC_TRUE );
1969
1970         bo_add_32be  ( box, 0 );
1971         bo_add_fourcc( box, fcc );
1972     }
1973
1974     return box;
1975 }
1976
1977 static bo_t * box_full_new( char *fcc, uint8_t v, uint32_t f )
1978 {
1979     bo_t *box;
1980
1981     if( ( box = malloc( sizeof( bo_t ) ) ) )
1982     {
1983         bo_init( box, 0, NULL, VLC_TRUE );
1984
1985         bo_add_32be  ( box, 0 );
1986         bo_add_fourcc( box, fcc );
1987         bo_add_8     ( box, v );
1988         bo_add_24be  ( box, f );
1989     }
1990
1991     return box;
1992 }
1993
1994 static void box_fix( bo_t *box )
1995 {
1996     bo_t box_tmp;
1997
1998     memcpy( &box_tmp, box, sizeof( bo_t ) );
1999
2000     box_tmp.i_buffer = 0;
2001     bo_add_32be( &box_tmp, box->i_buffer );
2002 }
2003
2004 static void box_free( bo_t *box )
2005 {
2006     if( box->p_buffer )
2007     {
2008         free( box->p_buffer );
2009     }
2010
2011     free( box );
2012 }
2013
2014 static void box_gather ( bo_t *box, bo_t *box2 )
2015 {
2016     bo_add_bo( box, box2 );
2017     box_free( box2 );
2018 }
2019
2020 static block_t * bo_to_sout( sout_instance_t *p_sout,  bo_t *box )
2021 {
2022     block_t *p_buf;
2023
2024     p_buf = block_New( p_sout, box->i_buffer );
2025     if( box->i_buffer > 0 )
2026     {
2027         memcpy( p_buf->p_buffer, box->p_buffer, box->i_buffer );
2028     }
2029
2030     return p_buf;
2031 }
2032
2033 static void box_send( sout_mux_t *p_mux,  bo_t *box )
2034 {
2035     block_t *p_buf;
2036
2037     p_buf = bo_to_sout( p_mux->p_sout, box );
2038     box_free( box );
2039
2040     sout_AccessOutWrite( p_mux->p_access, p_buf );
2041 }
2042
2043 static int64_t get_timestamp()
2044 {
2045     int64_t i_timestamp = 0;
2046
2047 #ifdef HAVE_TIME_H
2048     i_timestamp = time(NULL);
2049     i_timestamp += 2082844800; // MOV/MP4 start date is 1/1/1904
2050     // 208284480 is (((1970 - 1904) * 365) + 17) * 24 * 60 * 60
2051 #endif
2052
2053     return i_timestamp;
2054 }