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