]> git.sesse.net Git - vlc/blob - mp4/mp4.c
Merge branch 'master' into lpcm_encoder
[vlc] / mp4 / mp4.c
1 /*****************************************************************************
2  * mp4.c : MP4 file input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2004 the VideoLAN team
5  * $Id$
6  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 /*****************************************************************************
24  * Preamble
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33
34
35 #include <vlc_demux.h>
36 #include <vlc_md5.h>
37 #include <vlc_charset.h>
38 #include <vlc_iso_lang.h>
39 #include <vlc_meta.h>
40 #include <vlc_input.h>
41
42 #include "libmp4.h"
43 #include "drms.h"
44
45 #ifdef UNDER_CE
46 #define uint64_t int64_t
47 #endif
48
49 /*****************************************************************************
50  * Module descriptor
51  *****************************************************************************/
52 static int  Open ( vlc_object_t * );
53 static void Close( vlc_object_t * );
54
55 vlc_module_begin();
56     set_category( CAT_INPUT );
57     set_subcategory( SUBCAT_INPUT_DEMUX );
58     set_description( N_("MP4 stream demuxer") );
59     set_capability( "demux", 242 );
60     set_callbacks( Open, Close );
61 vlc_module_end();
62
63 /*****************************************************************************
64  * Local prototypes
65  *****************************************************************************/
66 static int   Demux   ( demux_t * );
67 static int   DemuxRef( demux_t *p_demux ){ (void)p_demux; return 0;}
68 static int   Seek    ( demux_t *, mtime_t );
69 static int   Control ( demux_t *, int, va_list );
70
71 /* Contain all information about a chunk */
72 typedef struct
73 {
74     uint64_t     i_offset; /* absolute position of this chunk in the file */
75     uint32_t     i_sample_description_index; /* index for SampleEntry to use */
76     uint32_t     i_sample_count; /* how many samples in this chunk */
77     uint32_t     i_sample_first; /* index of the first sample in this chunk */
78
79     /* now provide way to calculate pts, dts, and offset without to
80         much memory and with fast acces */
81
82     /* with this we can calculate dts/pts without waste memory */
83     uint64_t     i_first_dts;
84     uint32_t     *p_sample_count_dts;
85     uint32_t     *p_sample_delta_dts;   /* dts delta */
86
87     uint32_t     *p_sample_count_pts;
88     int32_t      *p_sample_offset_pts;  /* pts-dts */
89
90     /* TODO if needed add pts
91         but quickly *add* support for edts and seeking */
92
93 } mp4_chunk_t;
94
95  /* Contain all needed information for read all track with vlc */
96 typedef struct
97 {
98     unsigned int i_track_ID;/* this should be unique */
99
100     int b_ok;               /* The track is usable */
101     int b_enable;           /* is the trak enable by default */
102     bool b_selected;  /* is the trak being played */
103     bool b_chapter;   /* True when used for chapter only */
104
105     es_format_t fmt;
106     es_out_id_t *p_es;
107
108     /* display size only ! */
109     int i_width;
110     int i_height;
111
112     /* more internal data */
113     uint64_t        i_timescale;    /* time scale for this track only */
114
115     /* elst */
116     int             i_elst;         /* current elst */
117     int64_t         i_elst_time;    /* current elst start time (in movie time scale)*/
118     MP4_Box_t       *p_elst;        /* elst (could be NULL) */
119
120     /* give the next sample to read, i_chunk is to find quickly where
121       the sample is located */
122     uint32_t         i_sample;       /* next sample to read */
123     uint32_t         i_chunk;        /* chunk where next sample is stored */
124     /* total count of chunk and sample */
125     uint32_t         i_chunk_count;
126     uint32_t         i_sample_count;
127
128     mp4_chunk_t    *chunk; /* always defined  for each chunk */
129
130     /* sample size, p_sample_size defined only if i_sample_size == 0
131         else i_sample_size is size for all sample */
132     uint32_t         i_sample_size;
133     uint32_t         *p_sample_size; /* XXX perhaps add file offset if take
134                                     too much time to do sumations each time*/
135
136     MP4_Box_t *p_stbl;  /* will contain all timing information */
137     MP4_Box_t *p_stsd;  /* will contain all data to initialize decoder */
138     MP4_Box_t *p_sample;/* point on actual sdsd */
139
140     bool b_drms;
141     void      *p_drms;
142
143 } mp4_track_t;
144
145
146 struct demux_sys_t
147 {
148     MP4_Box_t    *p_root;      /* container for the whole file */
149
150     mtime_t      i_pcr;
151
152     uint64_t     i_time;         /* time position of the presentation
153                                   * in movie timescale */
154     uint64_t     i_timescale;    /* movie time scale */
155     uint64_t     i_duration;     /* movie duration */
156     unsigned int i_tracks;       /* number of tracks */
157     mp4_track_t  *track;         /* array of track */
158
159     /* */
160     MP4_Box_t    *p_tref_chap;
161
162     /* */
163     input_title_t *p_title;
164 };
165
166 /*****************************************************************************
167  * Declaration of local function
168  *****************************************************************************/
169 static void MP4_TrackCreate ( demux_t *, mp4_track_t *, MP4_Box_t  *);
170 static void MP4_TrackDestroy( demux_t *, mp4_track_t * );
171
172 static int  MP4_TrackSelect ( demux_t *, mp4_track_t *, mtime_t );
173 static void MP4_TrackUnselect(demux_t *, mp4_track_t * );
174
175 static int  MP4_TrackSeek   ( demux_t *, mp4_track_t *, mtime_t );
176
177 static uint64_t MP4_TrackGetPos    ( mp4_track_t * );
178 static int      MP4_TrackSampleSize( mp4_track_t * );
179 static int      MP4_TrackNextSample( demux_t *, mp4_track_t * );
180 static void     MP4_TrackSetELST( demux_t *, mp4_track_t *, int64_t );
181
182 static void     MP4_UpdateSeekpoint( demux_t * );
183
184 /* Return time in s of a track */
185 static inline int64_t MP4_TrackGetDTS( demux_t *p_demux, mp4_track_t *p_track )
186 {
187 #define chunk p_track->chunk[p_track->i_chunk]
188
189     unsigned int i_index = 0;
190     unsigned int i_sample = p_track->i_sample - chunk.i_sample_first;
191     int64_t i_dts = chunk.i_first_dts;
192
193     while( i_sample > 0 )
194     {
195         if( i_sample > chunk.p_sample_count_dts[i_index] )
196         {
197             i_dts += chunk.p_sample_count_dts[i_index] *
198                 chunk.p_sample_delta_dts[i_index];
199             i_sample -= chunk.p_sample_count_dts[i_index];
200             i_index++;
201         }
202         else
203         {
204             i_dts += i_sample * chunk.p_sample_delta_dts[i_index];
205             i_sample = 0;
206             break;
207         }
208     }
209
210 #undef chunk
211
212     /* now handle elst */
213     if( p_track->p_elst )
214     {
215         demux_sys_t         *p_sys = p_demux->p_sys;
216         MP4_Box_data_elst_t *elst = p_track->p_elst->data.p_elst;
217
218         /* convert to offset */
219         if( ( elst->i_media_rate_integer[p_track->i_elst] > 0 ||
220               elst->i_media_rate_fraction[p_track->i_elst] > 0 ) &&
221             elst->i_media_time[p_track->i_elst] > 0 )
222         {
223             i_dts -= elst->i_media_time[p_track->i_elst];
224         }
225
226         /* add i_elst_time */
227         i_dts += p_track->i_elst_time * p_track->i_timescale /
228             p_sys->i_timescale;
229
230         if( i_dts < 0 ) i_dts = 0;
231     }
232
233     return INT64_C(1000000) * i_dts / p_track->i_timescale;
234 }
235
236 static inline int64_t MP4_TrackGetPTSDelta( demux_t *p_demux, mp4_track_t *p_track )
237 {
238     mp4_chunk_t *ck = &p_track->chunk[p_track->i_chunk];
239     unsigned int i_index = 0;
240     unsigned int i_sample = p_track->i_sample - ck->i_sample_first;
241
242     if( ck->p_sample_count_pts == NULL || ck->p_sample_offset_pts == NULL )
243         return -1;
244
245     for( i_index = 0;; i_index++ )
246     {
247         if( i_sample < ck->p_sample_count_pts[i_index] )
248             return ck->p_sample_offset_pts[i_index] * INT64_C(1000000) /
249                    (int64_t)p_track->i_timescale;
250
251         i_sample -= ck->p_sample_count_pts[i_index];
252     }
253 }
254
255 static inline int64_t MP4_GetMoviePTS(demux_sys_t *p_sys )
256 {
257     return INT64_C(1000000) * p_sys->i_time / p_sys->i_timescale;
258 }
259
260 static void LoadChapter( demux_t  *p_demux );
261
262 /*****************************************************************************
263  * Open: check file and initializes MP4 structures
264  *****************************************************************************/
265 static int Open( vlc_object_t * p_this )
266 {
267     demux_t  *p_demux = (demux_t *)p_this;
268     demux_sys_t     *p_sys;
269
270     const uint8_t   *p_peek;
271
272     MP4_Box_t       *p_ftyp;
273     MP4_Box_t       *p_rmra;
274     MP4_Box_t       *p_mvhd;
275     MP4_Box_t       *p_trak;
276
277     unsigned int    i;
278     bool      b_seekable;
279
280     /* A little test to see if it could be a mp4 */
281     if( stream_Peek( p_demux->s, &p_peek, 8 ) < 8 ) return VLC_EGENERIC;
282
283     switch( VLC_FOURCC( p_peek[4], p_peek[5], p_peek[6], p_peek[7] ) )
284     {
285         case FOURCC_ftyp:
286         case FOURCC_moov:
287         case FOURCC_foov:
288         case FOURCC_moof:
289         case FOURCC_mdat:
290         case FOURCC_udta:
291         case FOURCC_free:
292         case FOURCC_skip:
293         case FOURCC_wide:
294         case VLC_FOURCC( 'p', 'n', 'o', 't' ):
295             break;
296          default:
297             return VLC_EGENERIC;
298     }
299
300     /* I need to seek */
301     stream_Control( p_demux->s, STREAM_CAN_SEEK, &b_seekable );
302     if( !b_seekable )
303     {
304         msg_Warn( p_demux, "MP4 plugin discarded (unseekable)" );
305         return VLC_EGENERIC;
306     }
307
308     /*Set exported functions */
309     p_demux->pf_demux = Demux;
310     p_demux->pf_control = Control;
311
312     /* create our structure that will contains all data */
313     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
314     memset( p_sys, 0, sizeof( demux_sys_t ) );
315
316     /* Now load all boxes ( except raw data ) */
317     if( ( p_sys->p_root = MP4_BoxGetRoot( p_demux->s ) ) == NULL )
318     {
319         msg_Warn( p_demux, "MP4 plugin discarded (not a valid file)" );
320         goto error;
321     }
322
323     MP4_BoxDumpStructure( p_demux->s, p_sys->p_root );
324
325     if( ( p_ftyp = MP4_BoxGet( p_sys->p_root, "/ftyp" ) ) )
326     {
327         switch( p_ftyp->data.p_ftyp->i_major_brand )
328         {
329             case( FOURCC_isom ):
330                 msg_Dbg( p_demux,
331                          "ISO Media file (isom) version %d.",
332                          p_ftyp->data.p_ftyp->i_minor_version );
333                 break;
334             default:
335                 msg_Dbg( p_demux,
336                          "unrecognized major file specification (%4.4s).",
337                           (char*)&p_ftyp->data.p_ftyp->i_major_brand );
338                 break;
339         }
340     }
341     else
342     {
343         msg_Dbg( p_demux, "file type box missing (assuming ISO Media file)" );
344     }
345
346     /* the file need to have one moov box */
347     if( MP4_BoxCount( p_sys->p_root, "/moov" ) <= 0 )
348     {
349         MP4_Box_t *p_foov = MP4_BoxGet( p_sys->p_root, "/foov" );
350
351         if( !p_foov )
352         {
353             msg_Err( p_demux, "MP4 plugin discarded (no moov box)" );
354             goto error;
355         }
356         /* we have a free box as a moov, rename it */
357         p_foov->i_type = FOURCC_moov;
358     }
359
360     if( ( p_rmra = MP4_BoxGet( p_sys->p_root,  "/moov/rmra" ) ) )
361     {
362         int        i_count = MP4_BoxCount( p_rmra, "rmda" );
363         int        i;
364
365         msg_Dbg( p_demux, "detected playlist mov file (%d ref)", i_count );
366
367         input_thread_t * p_input = vlc_object_find( p_demux, VLC_OBJECT_INPUT, FIND_PARENT );
368         input_item_t * p_current = input_GetItem( p_input );
369         p_current->i_type = ITEM_TYPE_PLAYLIST;
370
371         for( i = 0; i < i_count; i++ )
372         {
373             MP4_Box_t *p_rdrf = MP4_BoxGet( p_rmra, "rmda[%d]/rdrf", i );
374             char      *psz_ref;
375             uint32_t  i_ref_type;
376
377             if( !p_rdrf || !( psz_ref = strdup( p_rdrf->data.p_rdrf->psz_ref ) ) )
378             {
379                 continue;
380             }
381             i_ref_type = p_rdrf->data.p_rdrf->i_ref_type;
382
383             msg_Dbg( p_demux, "new ref=`%s' type=%4.4s",
384                      psz_ref, (char*)&i_ref_type );
385
386             if( i_ref_type == VLC_FOURCC( 'u', 'r', 'l', ' ' ) )
387             {
388                 if( strstr( psz_ref, "qt5gateQT" ) )
389                 {
390                     msg_Dbg( p_demux, "ignoring pseudo ref =`%s'", psz_ref );
391                     continue;
392                 }
393                 if( !strncmp( psz_ref, "http://", 7 ) ||
394                     !strncmp( psz_ref, "rtsp://", 7 ) )
395                 {
396                     ;
397                 }
398                 else
399                 {
400                     char *psz_absolute;
401                     char *psz_path = strdup( p_demux->psz_path );
402                     char *end = strrchr( psz_path, '/' );
403                     if( end ) end[1] = '\0';
404                     else *psz_path = '\0';
405
406                     asprintf( &psz_absolute, "%s://%s%s",
407                                   p_demux->psz_access, psz_path, psz_ref );
408
409                     free( psz_ref );
410                     psz_ref = psz_absolute;
411                     free( psz_path );
412                 }
413                 input_item_t *p_input;
414                 msg_Dbg( p_demux, "adding ref = `%s'", psz_ref );
415                 p_input = input_ItemNewExt( p_demux, psz_ref, NULL,
416                                     0, NULL, -1 );
417                 input_ItemCopyOptions( p_current, p_input );
418                 input_ItemAddSubItem( p_current, p_input );
419                 vlc_gc_decref( p_input );
420             }
421             else
422             {
423                 msg_Err( p_demux, "unknown ref type=%4.4s FIXME (send a bug report)",
424                          (char*)&p_rdrf->data.p_rdrf->i_ref_type );
425             }
426             free( psz_ref );
427         }
428         vlc_object_release( p_input );
429     }
430
431     if( !(p_mvhd = MP4_BoxGet( p_sys->p_root, "/moov/mvhd" ) ) )
432     {
433         if( !p_rmra )
434         {
435             msg_Err( p_demux, "cannot find /moov/mvhd" );
436             goto error;
437         }
438         else
439         {
440             msg_Warn( p_demux, "cannot find /moov/mvhd (pure ref file)" );
441             p_demux->pf_demux = DemuxRef;
442             return VLC_SUCCESS;
443         }
444     }
445     else
446     {
447         p_sys->i_timescale = p_mvhd->data.p_mvhd->i_timescale;
448         if( p_sys->i_timescale == 0 )
449         {
450             msg_Err( p_this, "bad timescale" );
451             goto error;
452         }
453         p_sys->i_duration = p_mvhd->data.p_mvhd->i_duration;
454     }
455
456     if( !( p_sys->i_tracks = MP4_BoxCount( p_sys->p_root, "/moov/trak" ) ) )
457     {
458         msg_Err( p_demux, "cannot find any /moov/trak" );
459         goto error;
460     }
461     msg_Dbg( p_demux, "found %d track%c",
462                         p_sys->i_tracks,
463                         p_sys->i_tracks ? 's':' ' );
464
465     /* allocate memory */
466     p_sys->track = calloc( p_sys->i_tracks, sizeof( mp4_track_t ) );
467     if( p_sys->track == NULL )
468         goto error;
469     memset( p_sys->track, 0, p_sys->i_tracks * sizeof( mp4_track_t ) );
470
471     /* Search the first chap reference (like quicktime) */
472     p_sys->p_tref_chap = NULL;
473     for( i = 0; i < p_sys->i_tracks; i++ )
474     {
475         MP4_Box_t *p_trak = MP4_BoxGet( p_sys->p_root, "/moov/trak[%d]", i );
476         MP4_Box_t *p_chap = MP4_BoxGet( p_trak, "tref/chap", i );
477         if( !p_chap || p_chap->data.p_tref_generic->i_entry_count <= 0 )
478             continue;
479
480         p_sys->p_tref_chap = p_chap;
481         break;
482     }
483
484     /* now process each track and extract all usefull information */
485     for( i = 0; i < p_sys->i_tracks; i++ )
486     {
487         p_trak = MP4_BoxGet( p_sys->p_root, "/moov/trak[%d]", i );
488         MP4_TrackCreate( p_demux, &p_sys->track[i], p_trak );
489
490         if( p_sys->track[i].b_ok && !p_sys->track[i].b_chapter )
491         {
492             const char *psz_cat;
493             switch( p_sys->track[i].fmt.i_cat )
494             {
495                 case( VIDEO_ES ):
496                     psz_cat = "video";
497                     break;
498                 case( AUDIO_ES ):
499                     psz_cat = "audio";
500                     break;
501                 case( SPU_ES ):
502                     psz_cat = "subtitle";
503                     break;
504
505                 default:
506                     psz_cat = "unknown";
507                     break;
508             }
509
510             msg_Dbg( p_demux, "adding track[Id 0x%x] %s (%s) language %s",
511                      p_sys->track[i].i_track_ID, psz_cat,
512                      p_sys->track[i].b_enable ? "enable":"disable",
513                      p_sys->track[i].fmt.psz_language ?
514                      p_sys->track[i].fmt.psz_language : "undef" );
515         }
516         else if( p_sys->track[i].b_ok && p_sys->track[i].b_chapter )
517         {
518             msg_Dbg( p_demux, "using track[Id 0x%x] for chapter language %s",
519                      p_sys->track[i].i_track_ID,
520                      p_sys->track[i].fmt.psz_language ?
521                      p_sys->track[i].fmt.psz_language : "undef" );
522         }
523         else
524         {
525             msg_Dbg( p_demux, "ignoring track[Id 0x%x]",
526                      p_sys->track[i].i_track_ID );
527         }
528     }
529
530     /* */
531     LoadChapter( p_demux );
532
533     return VLC_SUCCESS;
534
535 error:
536     if( p_sys->p_root )
537     {
538         MP4_BoxFree( p_demux->s, p_sys->p_root );
539     }
540     free( p_sys );
541     return VLC_EGENERIC;
542 }
543
544 /*****************************************************************************
545  * Demux: read packet and send them to decoders
546  *****************************************************************************
547  * TODO check for newly selected track (ie audio upt to now )
548  *****************************************************************************/
549 static int Demux( demux_t *p_demux )
550 {
551     demux_sys_t *p_sys = p_demux->p_sys;
552     unsigned int i_track;
553
554
555     unsigned int i_track_selected;
556
557     /* check for newly selected/unselected track */
558     for( i_track = 0, i_track_selected = 0; i_track < p_sys->i_tracks;
559          i_track++ )
560     {
561         mp4_track_t *tk = &p_sys->track[i_track];
562         bool b;
563
564         if( !tk->b_ok || tk->b_chapter ||
565             ( tk->b_selected && tk->i_sample >= tk->i_sample_count ) )
566         {
567             continue;
568         }
569
570         es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE, tk->p_es, &b );
571
572         if( tk->b_selected && !b )
573         {
574             MP4_TrackUnselect( p_demux, tk );
575         }
576         else if( !tk->b_selected && b)
577         {
578             MP4_TrackSelect( p_demux, tk, MP4_GetMoviePTS( p_sys ) );
579         }
580
581         if( tk->b_selected )
582         {
583             i_track_selected++;
584         }
585     }
586
587     if( i_track_selected <= 0 )
588     {
589         p_sys->i_time += __MAX( p_sys->i_timescale / 10 , 1 );
590         if( p_sys->i_timescale > 0 )
591         {
592             int64_t i_length = (mtime_t)1000000 *
593                                (mtime_t)p_sys->i_duration /
594                                (mtime_t)p_sys->i_timescale;
595             if( MP4_GetMoviePTS( p_sys ) >= i_length )
596                 return 0;
597             return 1;
598         }
599
600         msg_Warn( p_demux, "no track selected, exiting..." );
601         return 0;
602     }
603
604     /* */
605     MP4_UpdateSeekpoint( p_demux );
606
607     /* first wait for the good time to read a packet */
608     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pcr + 1 );
609
610     p_sys->i_pcr = MP4_GetMoviePTS( p_sys );
611
612     /* we will read 100ms for each stream so ...*/
613     p_sys->i_time += __MAX( p_sys->i_timescale / 10 , 1 );
614
615     for( i_track = 0; i_track < p_sys->i_tracks; i_track++ )
616     {
617         mp4_track_t *tk = &p_sys->track[i_track];
618
619         if( !tk->b_ok || tk->b_chapter || !tk->b_selected || tk->i_sample >= tk->i_sample_count )
620             continue;
621
622         while( MP4_TrackGetDTS( p_demux, tk ) < MP4_GetMoviePTS( p_sys ) )
623         {
624 #if 0
625             msg_Dbg( p_demux, "tk(%i)=%lld mv=%lld", i_track,
626                      MP4_TrackGetDTS( p_demux, tk ),
627                      MP4_GetMoviePTS( p_sys ) );
628 #endif
629
630             if( MP4_TrackSampleSize( tk ) > 0 )
631             {
632                 block_t *p_block;
633                 int64_t i_delta;
634
635                 /* go,go go ! */
636                 if( stream_Seek( p_demux->s, MP4_TrackGetPos( tk ) ) )
637                 {
638                     msg_Warn( p_demux, "track[0x%x] will be disabled (eof?)",
639                               tk->i_track_ID );
640                     MP4_TrackUnselect( p_demux, tk );
641                     break;
642                 }
643
644                 /* now read pes */
645                 if( !(p_block =
646                          stream_Block( p_demux->s, MP4_TrackSampleSize(tk) )) )
647                 {
648                     msg_Warn( p_demux, "track[0x%x] will be disabled (eof?)",
649                               tk->i_track_ID );
650                     MP4_TrackUnselect( p_demux, tk );
651                     break;
652                 }
653
654                 if( tk->b_drms && tk->p_drms )
655                 {
656                     drms_decrypt( tk->p_drms, (uint32_t*)p_block->p_buffer,
657                                   p_block->i_buffer );
658                 }
659                 else if( tk->fmt.i_cat == SPU_ES )
660                 {
661                     if( tk->fmt.i_codec == VLC_FOURCC( 's', 'u', 'b', 't' ) &&
662                         p_block->i_buffer >= 2 )
663                     {
664                         uint16_t i_size = GetWBE( p_block->p_buffer );
665
666                         if( i_size + 2 <= p_block->i_buffer )
667                         {
668                             char *p;
669                             /* remove the length field, and append a '\0' */
670                             memmove( &p_block->p_buffer[0],
671                                      &p_block->p_buffer[2], i_size );
672                             p_block->p_buffer[i_size] = '\0';
673                             p_block->i_buffer = i_size + 1;
674
675                             /* convert \r -> \n */
676                             while( ( p = strchr((char *) p_block->p_buffer, '\r' ) ) )
677                             {
678                                 *p = '\n';
679                             }
680                         }
681                         else
682                         {
683                             /* Invalid */
684                             p_block->i_buffer = 0;
685                         }
686                     }
687                 }
688                 /* dts */
689                 p_block->i_dts = MP4_TrackGetDTS( p_demux, tk ) + 1;
690                 /* pts */
691                 i_delta = MP4_TrackGetPTSDelta( p_demux, tk );
692                 if( i_delta != -1 )
693                     p_block->i_pts = p_block->i_dts + i_delta;
694                 else if( tk->fmt.i_cat != VIDEO_ES )
695                     p_block->i_pts = p_block->i_dts;
696                 else
697                     p_block->i_pts = 0;
698
699                 if( !tk->b_drms || ( tk->b_drms && tk->p_drms ) )
700                     es_out_Send( p_demux->out, tk->p_es, p_block );
701             }
702
703             /* Next sample */
704             if( MP4_TrackNextSample( p_demux, tk ) )
705                 break;
706         }
707     }
708
709     return 1;
710 }
711
712 static void MP4_UpdateSeekpoint( demux_t *p_demux )
713 {
714     demux_sys_t *p_sys = p_demux->p_sys;
715     int64_t i_time;
716     int i;
717     if( !p_sys->p_title )
718         return;
719     i_time = MP4_GetMoviePTS( p_sys );
720     for( i = 0; i < p_sys->p_title->i_seekpoint; i++ )
721     {
722         if( i_time < p_sys->p_title->seekpoint[i]->i_time_offset )
723             break;
724     }
725     i--;
726
727     if( i != p_demux->info.i_seekpoint && i >= 0 )
728     {
729         p_demux->info.i_seekpoint = i;
730         p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
731     }
732 }
733 /*****************************************************************************
734  * Seek: Got to i_date
735 ******************************************************************************/
736 static int Seek( demux_t *p_demux, mtime_t i_date )
737 {
738     demux_sys_t *p_sys = p_demux->p_sys;
739     unsigned int i_track;
740
741     /* First update update global time */
742     p_sys->i_time = i_date * p_sys->i_timescale / 1000000;
743     p_sys->i_pcr  = i_date;
744
745     /* Now for each stream try to go to this time */
746     for( i_track = 0; i_track < p_sys->i_tracks; i_track++ )
747     {
748         mp4_track_t *tk = &p_sys->track[i_track];
749         MP4_TrackSeek( p_demux, tk, i_date );
750     }
751     MP4_UpdateSeekpoint( p_demux );
752     return VLC_SUCCESS;
753 }
754
755 /*****************************************************************************
756  * Control:
757  *****************************************************************************/
758 static int Control( demux_t *p_demux, int i_query, va_list args )
759 {
760     demux_sys_t *p_sys = p_demux->p_sys;
761
762     double f, *pf;
763     int64_t i64, *pi64;
764
765     switch( i_query )
766     {
767         case DEMUX_GET_POSITION:
768             pf = (double*)va_arg( args, double * );
769             if( p_sys->i_duration > 0 )
770             {
771                 *pf = (double)p_sys->i_time / (double)p_sys->i_duration;
772             }
773             else
774             {
775                 *pf = 0.0;
776             }
777             return VLC_SUCCESS;
778
779         case DEMUX_SET_POSITION:
780             f = (double)va_arg( args, double );
781             if( p_sys->i_timescale > 0 )
782             {
783                 i64 = (int64_t)( f * (double)1000000 *
784                                  (double)p_sys->i_duration /
785                                  (double)p_sys->i_timescale );
786                 return Seek( p_demux, i64 );
787             }
788             else return VLC_SUCCESS;
789
790         case DEMUX_GET_TIME:
791             pi64 = (int64_t*)va_arg( args, int64_t * );
792             if( p_sys->i_timescale > 0 )
793             {
794                 *pi64 = (mtime_t)1000000 *
795                         (mtime_t)p_sys->i_time /
796                         (mtime_t)p_sys->i_timescale;
797             }
798             else *pi64 = 0;
799             return VLC_SUCCESS;
800
801         case DEMUX_SET_TIME:
802             i64 = (int64_t)va_arg( args, int64_t );
803             return Seek( p_demux, i64 );
804
805         case DEMUX_GET_LENGTH:
806             pi64 = (int64_t*)va_arg( args, int64_t * );
807             if( p_sys->i_timescale > 0 )
808             {
809                 *pi64 = (mtime_t)1000000 *
810                         (mtime_t)p_sys->i_duration /
811                         (mtime_t)p_sys->i_timescale;
812             }
813             else *pi64 = 0;
814             return VLC_SUCCESS;
815
816         case DEMUX_GET_FPS:
817             msg_Warn( p_demux, "DEMUX_GET_FPS unimplemented !!" );
818             return VLC_EGENERIC;
819
820         case DEMUX_GET_META:
821         {
822             vlc_meta_t *p_meta = (vlc_meta_t *)va_arg( args, vlc_meta_t*);
823             MP4_Box_t  *p_0xa9xxx;
824
825             MP4_Box_t  *p_udta = MP4_BoxGet( p_sys->p_root, "/moov/udta/meta/ilst" );
826             if( p_udta == NULL )
827             {
828                 p_udta = MP4_BoxGet( p_sys->p_root, "/moov/udta" );
829                 if( p_udta == NULL )
830                 {
831                     return VLC_EGENERIC;
832                 }
833             }
834
835             for( p_0xa9xxx = p_udta->p_first; p_0xa9xxx != NULL;
836                  p_0xa9xxx = p_0xa9xxx->p_next )
837             {
838
839                 if( !p_0xa9xxx || !p_0xa9xxx->data.p_0xa9xxx )
840                     continue;
841
842                 /* FIXME FIXME: should convert from whatever the character
843                  * encoding of MP4 meta data is to UTF-8. */
844 #define SET(fct) do { char *psz_utf = strdup( p_0xa9xxx->data.p_0xa9xxx->psz_text ? p_0xa9xxx->data.p_0xa9xxx->psz_text : "" ); \
845     if( psz_utf ) { EnsureUTF8( psz_utf );  \
846                     fct( p_meta, psz_utf ); free( psz_utf ); } } while(0)
847
848                 /* XXX Becarefull p_udta can have box that are not 0xa9xx */
849                 switch( p_0xa9xxx->i_type )
850                 {
851                 case FOURCC_0xa9nam: /* Full name */
852                     SET( vlc_meta_SetTitle );
853                     break;
854                 case FOURCC_0xa9aut:
855                     SET( vlc_meta_SetArtist );
856                     break;
857                 case FOURCC_0xa9ART:
858                     SET( vlc_meta_SetArtist );
859                     break;
860                 case FOURCC_0xa9cpy:
861                     SET( vlc_meta_SetCopyright );
862                     break;
863                 case FOURCC_0xa9day: /* Creation Date */
864                     SET( vlc_meta_SetDate );
865                     break;
866                 case FOURCC_0xa9des: /* Description */
867                     SET( vlc_meta_SetDescription );
868                     break;
869                 case FOURCC_0xa9gen: /* Genre */
870                     SET( vlc_meta_SetGenre );
871                     break;
872
873                 case FOURCC_0xa9alb: /* Album */
874                     SET( vlc_meta_SetAlbum );
875                     break;
876
877                 case FOURCC_0xa9trk: /* Track */
878                     SET( vlc_meta_SetTracknum );
879                     break;
880
881                 case FOURCC_0xa9cmt: /* Commment */
882                     SET( vlc_meta_SetDescription );
883                     break;
884
885                 case FOURCC_0xa9url: /* URL */
886                     SET( vlc_meta_SetURL );
887                     break;
888
889                 case FOURCC_0xa9enc: /* Encoded By */
890                     SET( vlc_meta_SetEncodedBy );
891                     break;
892                     
893                 case FOURCC_0xa9swr:
894                 case FOURCC_0xa9inf: /* Information */
895                 case FOURCC_0xa9dir: /* Director */
896                 case FOURCC_0xa9dis: /* Disclaimer */
897                 case FOURCC_0xa9req: /* Requirements */
898                 case FOURCC_0xa9fmt: /* Original Format */
899                 case FOURCC_0xa9dsa: /* Display Source As */
900                 case FOURCC_0xa9hst: /* Host Computer */
901                 case FOURCC_0xa9prd: /* Producer */
902                 case FOURCC_0xa9prf: /* Performers */
903                 case FOURCC_0xa9ope: /* Original Performer */
904                 case FOURCC_0xa9src: /* Providers Source Content */
905                 case FOURCC_0xa9wrt: /* Writer */
906                 case FOURCC_0xa9com: /* Composer */
907                 case FOURCC_WLOC:    /* Window Location */
908                     /* TODO one day, but they aren't really meaningfull */
909                     break;
910 #undef SET
911
912                 default:
913                     break;
914                 }
915             }
916             return VLC_SUCCESS;
917         }
918
919         case DEMUX_GET_TITLE_INFO:
920         {
921             input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
922             int *pi_int    = (int*)va_arg( args, int* );
923             int *pi_title_offset = (int*)va_arg( args, int* );
924             int *pi_seekpoint_offset = (int*)va_arg( args, int* );
925
926             if( !p_sys->p_title )
927                 return VLC_EGENERIC;
928
929             *pi_int = 1;
930             *ppp_title = malloc( sizeof( input_title_t**) );
931             (*ppp_title)[0] = vlc_input_title_Duplicate( p_sys->p_title );
932             *pi_title_offset = 0;
933             *pi_seekpoint_offset = 0;
934             return VLC_SUCCESS;
935         }
936         case DEMUX_SET_TITLE:
937         {
938             const int i_title = (int)va_arg( args, int );
939             if( !p_sys->p_title || i_title != 0 )
940                 return VLC_EGENERIC;
941             return VLC_SUCCESS;
942         }
943         case DEMUX_SET_SEEKPOINT:
944         {
945             const int i_seekpoint = (int)va_arg( args, int );
946             if( !p_sys->p_title )
947                 return VLC_EGENERIC;
948             return Seek( p_demux, p_sys->p_title->seekpoint[i_seekpoint]->i_time_offset );
949         }
950
951         case DEMUX_SET_NEXT_DEMUX_TIME:
952         case DEMUX_SET_GROUP:
953         case DEMUX_HAS_UNSUPPORTED_META:
954         case DEMUX_GET_ATTACHMENTS:
955             return VLC_EGENERIC;
956
957         default:
958             msg_Warn( p_demux, "control query %u unimplemented", i_query );
959             return VLC_EGENERIC;
960     }
961 }
962
963 /*****************************************************************************
964  * Close: frees unused data
965  *****************************************************************************/
966 static void Close ( vlc_object_t * p_this )
967 {
968     demux_t *  p_demux = (demux_t *)p_this;
969     demux_sys_t *p_sys = p_demux->p_sys;
970     unsigned int i_track;
971
972     msg_Dbg( p_demux, "freeing all memory" );
973
974     MP4_BoxFree( p_demux->s, p_sys->p_root );
975     for( i_track = 0; i_track < p_sys->i_tracks; i_track++ )
976     {
977         MP4_TrackDestroy( p_demux, &p_sys->track[i_track] );
978     }
979     FREENULL( p_sys->track );
980
981     if( p_sys->p_title )
982         vlc_input_title_Delete( p_sys->p_title );
983
984     free( p_sys );
985 }
986
987
988
989 /****************************************************************************
990  * Local functions, specific to vlc
991  ****************************************************************************/
992 /* Chapters */
993 static void LoadChapterGpac( demux_t  *p_demux, MP4_Box_t *p_chpl )
994 {
995     demux_sys_t *p_sys = p_demux->p_sys;
996     int i;
997
998     p_sys->p_title = vlc_input_title_New();
999     for( i = 0; i < p_chpl->data.p_chpl->i_chapter; i++ )
1000     {
1001         seekpoint_t *s = vlc_seekpoint_New();
1002
1003         s->psz_name = strdup( p_chpl->data.p_chpl->chapter[i].psz_name );
1004         EnsureUTF8( s->psz_name );
1005         s->i_time_offset = p_chpl->data.p_chpl->chapter[i].i_start / 10;
1006         TAB_APPEND( p_sys->p_title->i_seekpoint, p_sys->p_title->seekpoint, s );
1007     }
1008 }
1009 static void LoadChapterApple( demux_t  *p_demux, mp4_track_t *tk )
1010 {
1011     demux_sys_t *p_sys = p_demux->p_sys;
1012
1013     for( tk->i_sample = 0; tk->i_sample < tk->i_sample_count; tk->i_sample++ )
1014     {
1015         const int64_t i_dts = MP4_TrackGetDTS( p_demux, tk );
1016         const int64_t i_pts_delta = MP4_TrackGetPTSDelta( p_demux, tk );
1017         const unsigned int i_size = MP4_TrackSampleSize( tk );
1018
1019         if( i_size > 0 && !stream_Seek( p_demux->s, MP4_TrackGetPos( tk ) ) )
1020         {
1021             char p_buffer[256];
1022             const int i_read = stream_Read( p_demux->s, p_buffer, __MIN( sizeof(p_buffer), i_size ) );
1023             const int i_len = __MIN( GetWBE(p_buffer), i_read-2 );
1024
1025             if( i_len > 0 )
1026             {
1027                 seekpoint_t *s = vlc_seekpoint_New();
1028
1029                 s->psz_name = strndup( &p_buffer[2], i_len );
1030                 EnsureUTF8( s->psz_name );
1031
1032                 s->i_time_offset = i_dts + __MAX( i_pts_delta, 0 );
1033
1034                 if( !p_sys->p_title )
1035                     p_sys->p_title = vlc_input_title_New();
1036                 TAB_APPEND( p_sys->p_title->i_seekpoint, p_sys->p_title->seekpoint, s );
1037             }
1038         }
1039         if( tk->i_sample+1 >= tk->chunk[tk->i_chunk].i_sample_first +
1040                               tk->chunk[tk->i_chunk].i_sample_count )
1041             tk->i_chunk++;
1042     }
1043 }
1044 static void LoadChapter( demux_t  *p_demux )
1045 {
1046     demux_sys_t *p_sys = p_demux->p_sys;
1047     MP4_Box_t *p_chpl;
1048
1049     if( ( p_chpl = MP4_BoxGet( p_sys->p_root, "/moov/udta/chpl" ) ) && p_chpl->data.p_chpl->i_chapter > 0 )
1050     {
1051         LoadChapterGpac( p_demux, p_chpl );
1052     }
1053     else if( p_sys->p_tref_chap )
1054     {
1055         MP4_Box_data_tref_generic_t *p_chap = p_sys->p_tref_chap->data.p_tref_generic;
1056         unsigned int i, j;
1057
1058         /* Load the first subtitle track like quicktime */
1059         for( i = 0; i < p_chap->i_entry_count; i++ )
1060         {
1061             for( j = 0; j < p_sys->i_tracks; j++ )
1062             {
1063                 mp4_track_t *tk = &p_sys->track[j];
1064                 if( tk->b_ok && tk->i_track_ID == p_chap->i_track_ID[i] &&
1065                     tk->fmt.i_cat == SPU_ES && tk->fmt.i_codec == VLC_FOURCC( 's', 'u', 'b', 't' ) )
1066                     break;
1067             }
1068             if( j < p_sys->i_tracks )
1069             {
1070                 LoadChapterApple( p_demux, &p_sys->track[i] );
1071                 break;
1072             }
1073         }
1074     }
1075 }
1076
1077 /* now create basic chunk data, the rest will be filled by MP4_CreateSamplesIndex */
1078 static int TrackCreateChunksIndex( demux_t *p_demux,
1079                                    mp4_track_t *p_demux_track )
1080 {
1081     MP4_Box_t *p_co64; /* give offset for each chunk, same for stco and co64 */
1082     MP4_Box_t *p_stsc;
1083
1084     unsigned int i_chunk;
1085     unsigned int i_index, i_last;
1086
1087     if( ( !(p_co64 = MP4_BoxGet( p_demux_track->p_stbl, "stco" ) )&&
1088           !(p_co64 = MP4_BoxGet( p_demux_track->p_stbl, "co64" ) ) )||
1089         ( !(p_stsc = MP4_BoxGet( p_demux_track->p_stbl, "stsc" ) ) ))
1090     {
1091         return( VLC_EGENERIC );
1092     }
1093
1094     p_demux_track->i_chunk_count = p_co64->data.p_co64->i_entry_count;
1095     if( !p_demux_track->i_chunk_count )
1096     {
1097         msg_Warn( p_demux, "no chunk defined" );
1098         return( VLC_EGENERIC );
1099     }
1100     p_demux_track->chunk = calloc( p_demux_track->i_chunk_count,
1101                                    sizeof( mp4_chunk_t ) );
1102     if( p_demux_track->chunk == NULL )
1103     {
1104         return VLC_ENOMEM;
1105     }
1106
1107     /* first we read chunk offset */
1108     for( i_chunk = 0; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
1109     {
1110         mp4_chunk_t *ck = &p_demux_track->chunk[i_chunk];
1111
1112         ck->i_offset = p_co64->data.p_co64->i_chunk_offset[i_chunk];
1113
1114         ck->i_first_dts = 0;
1115         ck->p_sample_count_dts = NULL;
1116         ck->p_sample_delta_dts = NULL;
1117         ck->p_sample_count_pts = NULL;
1118         ck->p_sample_offset_pts = NULL;
1119     }
1120
1121     /* now we read index for SampleEntry( soun vide mp4a mp4v ...)
1122         to be used for the sample XXX begin to 1
1123         We construct it begining at the end */
1124     i_last = p_demux_track->i_chunk_count; /* last chunk proceded */
1125     i_index = p_stsc->data.p_stsc->i_entry_count;
1126     if( !i_index )
1127     {
1128         msg_Warn( p_demux, "cannot read chunk table or table empty" );
1129         return( VLC_EGENERIC );
1130     }
1131
1132     while( i_index-- )
1133     {
1134         for( i_chunk = p_stsc->data.p_stsc->i_first_chunk[i_index] - 1;
1135              i_chunk < i_last; i_chunk++ )
1136         {
1137             if( i_chunk >= p_demux_track->i_chunk_count )
1138             {
1139                 msg_Warn( p_demux, "corrupted chunk table" );
1140                 return VLC_EGENERIC;
1141             }
1142
1143             p_demux_track->chunk[i_chunk].i_sample_description_index =
1144                     p_stsc->data.p_stsc->i_sample_description_index[i_index];
1145             p_demux_track->chunk[i_chunk].i_sample_count =
1146                     p_stsc->data.p_stsc->i_samples_per_chunk[i_index];
1147         }
1148         i_last = p_stsc->data.p_stsc->i_first_chunk[i_index] - 1;
1149     }
1150
1151     p_demux_track->chunk[0].i_sample_first = 0;
1152     for( i_chunk = 1; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
1153     {
1154         p_demux_track->chunk[i_chunk].i_sample_first =
1155             p_demux_track->chunk[i_chunk-1].i_sample_first +
1156                 p_demux_track->chunk[i_chunk-1].i_sample_count;
1157     }
1158
1159     msg_Dbg( p_demux, "track[Id 0x%x] read %d chunk",
1160              p_demux_track->i_track_ID, p_demux_track->i_chunk_count );
1161
1162     return VLC_SUCCESS;
1163 }
1164
1165 static int TrackCreateSamplesIndex( demux_t *p_demux,
1166                                     mp4_track_t *p_demux_track )
1167 {
1168     MP4_Box_t *p_box;
1169     MP4_Box_data_stsz_t *stsz;
1170     MP4_Box_data_stts_t *stts;
1171     /* TODO use also stss and stsh table for seeking */
1172     /* FIXME use edit table */
1173     int64_t i_sample;
1174     int64_t i_chunk;
1175
1176     int64_t i_index;
1177     int64_t i_index_sample_used;
1178
1179     int64_t i_last_dts;
1180
1181     /* Find stsz
1182      *  Gives the sample size for each samples. There is also a stz2 table
1183      *  (compressed form) that we need to implement TODO */
1184     p_box = MP4_BoxGet( p_demux_track->p_stbl, "stsz" );
1185     if( !p_box )
1186     {
1187         /* FIXME and stz2 */
1188         msg_Warn( p_demux, "cannot find STSZ box" );
1189         return VLC_EGENERIC;
1190     }
1191     stsz = p_box->data.p_stsz;
1192
1193     /* Find stts
1194      *  Gives mapping between sample and decoding time
1195      */
1196     p_box = MP4_BoxGet( p_demux_track->p_stbl, "stts" );
1197     if( !p_box )
1198     {
1199         msg_Warn( p_demux, "cannot find STTS box" );
1200         return VLC_EGENERIC;
1201     }
1202     stts = p_box->data.p_stts;
1203
1204     /* Use stsz table to create a sample number -> sample size table */
1205     p_demux_track->i_sample_count = stsz->i_sample_count;
1206     if( stsz->i_sample_size )
1207     {
1208         /* 1: all sample have the same size, so no need to construct a table */
1209         p_demux_track->i_sample_size = stsz->i_sample_size;
1210         p_demux_track->p_sample_size = NULL;
1211     }
1212     else
1213     {
1214         /* 2: each sample can have a different size */
1215         p_demux_track->i_sample_size = 0;
1216         p_demux_track->p_sample_size =
1217             calloc( p_demux_track->i_sample_count, sizeof( uint32_t ) );
1218         if( p_demux_track->p_sample_size == NULL )
1219             return VLC_ENOMEM;
1220
1221         for( i_sample = 0; i_sample < p_demux_track->i_sample_count; i_sample++ )
1222         {
1223             p_demux_track->p_sample_size[i_sample] =
1224                     stsz->i_entry_size[i_sample];
1225         }
1226     }
1227
1228     /* Use stts table to create a sample number -> dts table.
1229      * XXX: if we don't want to waste too much memory, we can't expand
1230      *  the box! so each chunk will contain an "extract" of this table
1231      *  for fast research (problem with raw stream where a sample is sometime
1232      *  just channels*bits_per_sample/8 */
1233
1234     i_last_dts = 0;
1235     i_index = 0; i_index_sample_used = 0;
1236     for( i_chunk = 0; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
1237     {
1238         mp4_chunk_t *ck = &p_demux_track->chunk[i_chunk];
1239         int64_t i_entry, i_sample_count, i;
1240
1241         /* save last dts */
1242         ck->i_first_dts = i_last_dts;
1243
1244         /* count how many entries are needed for this chunk
1245          * for p_sample_delta_dts and p_sample_count_dts */
1246         i_sample_count = ck->i_sample_count;
1247
1248         i_entry = 0;
1249         while( i_sample_count > 0 )
1250         {
1251             i_sample_count -= stts->i_sample_count[i_index+i_entry];
1252             /* don't count already used sample in this entry */
1253             if( i_entry == 0 )
1254                 i_sample_count += i_index_sample_used;
1255
1256             i_entry++;
1257         }
1258
1259         /* allocate them */
1260         ck->p_sample_count_dts = calloc( i_entry, sizeof( uint32_t ) );
1261         ck->p_sample_delta_dts = calloc( i_entry, sizeof( uint32_t ) );
1262
1263         /* now copy */
1264         i_sample_count = ck->i_sample_count;
1265         for( i = 0; i < i_entry; i++ )
1266         {
1267             int64_t i_used;
1268             int64_t i_rest;
1269
1270             i_rest = stts->i_sample_count[i_index] - i_index_sample_used;
1271
1272             i_used = __MIN( i_rest, i_sample_count );
1273
1274             i_index_sample_used += i_used;
1275             i_sample_count -= i_used;
1276
1277             ck->p_sample_count_dts[i] = i_used;
1278             ck->p_sample_delta_dts[i] = stts->i_sample_delta[i_index];
1279
1280             i_last_dts += i_used * ck->p_sample_delta_dts[i];
1281
1282             if( i_index_sample_used >= stts->i_sample_count[i_index] )
1283             {
1284                 i_index++;
1285                 i_index_sample_used = 0;
1286             }
1287         }
1288     }
1289
1290     /* Find ctts
1291      *  Gives the delta between decoding time (dts) and composition table (pts)
1292      */
1293     p_box = MP4_BoxGet( p_demux_track->p_stbl, "ctts" );
1294     if( p_box )
1295     {
1296         MP4_Box_data_ctts_t *ctts = p_box->data.p_ctts;
1297
1298         msg_Warn( p_demux, "CTTS table" );
1299
1300         /* Create pts-dts table per chunk */
1301         i_index = 0; i_index_sample_used = 0;
1302         for( i_chunk = 0; i_chunk < p_demux_track->i_chunk_count; i_chunk++ )
1303         {
1304             mp4_chunk_t *ck = &p_demux_track->chunk[i_chunk];
1305             int64_t i_entry, i_sample_count, i;
1306
1307             /* count how many entries are needed for this chunk
1308              * for p_sample_delta_dts and p_sample_count_dts */
1309             i_sample_count = ck->i_sample_count;
1310
1311             i_entry = 0;
1312             while( i_sample_count > 0 )
1313             {
1314                 i_sample_count -= ctts->i_sample_count[i_index+i_entry];
1315
1316                 /* don't count already used sample in this entry */
1317                 if( i_entry == 0 )
1318                     i_sample_count += i_index_sample_used;
1319
1320                 i_entry++;
1321             }
1322
1323             /* allocate them */
1324             ck->p_sample_count_pts = calloc( i_entry, sizeof( uint32_t ) );
1325             ck->p_sample_offset_pts = calloc( i_entry, sizeof( int32_t ) );
1326
1327             /* now copy */
1328             i_sample_count = ck->i_sample_count;
1329             for( i = 0; i < i_entry; i++ )
1330             {
1331                 int64_t i_used;
1332                 int64_t i_rest;
1333
1334                 i_rest = ctts->i_sample_count[i_index] -
1335                     i_index_sample_used;
1336
1337                 i_used = __MIN( i_rest, i_sample_count );
1338
1339                 i_index_sample_used += i_used;
1340                 i_sample_count -= i_used;
1341
1342                 ck->p_sample_count_pts[i] = i_used;
1343                 ck->p_sample_offset_pts[i] = ctts->i_sample_offset[i_index];
1344
1345                 if( i_index_sample_used >= ctts->i_sample_count[i_index] )
1346                 {
1347                     i_index++;
1348                     i_index_sample_used = 0;
1349                 }
1350             }
1351         }
1352     }
1353
1354     msg_Dbg( p_demux, "track[Id 0x%x] read %d samples length:%"PRId64"s",
1355              p_demux_track->i_track_ID, p_demux_track->i_sample_count,
1356              i_last_dts / p_demux_track->i_timescale );
1357
1358     return VLC_SUCCESS;
1359 }
1360
1361 /*
1362  * TrackCreateES:
1363  * Create ES and PES to init decoder if needed, for a track starting at i_chunk
1364  */
1365 static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
1366                           unsigned int i_chunk, es_out_id_t **pp_es )
1367 {
1368     MP4_Box_t   *p_sample;
1369     MP4_Box_t   *p_esds;
1370     MP4_Box_t   *p_box;
1371
1372     if( pp_es )
1373         *pp_es = NULL;
1374
1375     if( !p_track->chunk[i_chunk].i_sample_description_index )
1376     {
1377         msg_Warn( p_demux, "invalid SampleEntry index (track[Id 0x%x])",
1378                   p_track->i_track_ID );
1379         return VLC_EGENERIC;
1380     }
1381
1382     p_sample = MP4_BoxGet(  p_track->p_stsd, "[%d]",
1383                 p_track->chunk[i_chunk].i_sample_description_index - 1 );
1384
1385     if( !p_sample ||
1386         ( !p_sample->data.p_data && p_track->fmt.i_cat != SPU_ES ) )
1387     {
1388         msg_Warn( p_demux, "cannot find SampleEntry (track[Id 0x%x])",
1389                   p_track->i_track_ID );
1390         return VLC_EGENERIC;
1391     }
1392
1393     p_track->p_sample = p_sample;
1394
1395     if( p_track->fmt.i_cat == AUDIO_ES && p_track->i_sample_size == 1 )
1396     {
1397         MP4_Box_data_sample_soun_t *p_soun;
1398
1399         p_soun = p_sample->data.p_sample_soun;
1400
1401         if( p_soun->i_qt_version == 0 )
1402         {
1403             switch( p_sample->i_type )
1404             {
1405                 case VLC_FOURCC( 'i', 'm', 'a', '4' ):
1406                     p_soun->i_qt_version = 1;
1407                     p_soun->i_sample_per_packet = 64;
1408                     p_soun->i_bytes_per_packet  = 34;
1409                     p_soun->i_bytes_per_frame   = 34 * p_soun->i_channelcount;
1410                     p_soun->i_bytes_per_sample  = 2;
1411                     break;
1412                 case VLC_FOURCC( 'M', 'A', 'C', '3' ):
1413                     p_soun->i_qt_version = 1;
1414                     p_soun->i_sample_per_packet = 6;
1415                     p_soun->i_bytes_per_packet  = 2;
1416                     p_soun->i_bytes_per_frame   = 2 * p_soun->i_channelcount;
1417                     p_soun->i_bytes_per_sample  = 2;
1418                     break;
1419                 case VLC_FOURCC( 'M', 'A', 'C', '6' ):
1420                     p_soun->i_qt_version = 1;
1421                     p_soun->i_sample_per_packet = 12;
1422                     p_soun->i_bytes_per_packet  = 2;
1423                     p_soun->i_bytes_per_frame   = 2 * p_soun->i_channelcount;
1424                     p_soun->i_bytes_per_sample  = 2;
1425                     break;
1426                 case VLC_FOURCC( 'a', 'l', 'a', 'w' ):
1427                 case VLC_FOURCC( 'u', 'l', 'a', 'w' ):
1428                     p_soun->i_samplesize = 8;
1429                     break;
1430                 default:
1431                     break;
1432             }
1433
1434         }
1435         else if( p_soun->i_qt_version == 1 && p_soun->i_sample_per_packet <= 0 )
1436         {
1437             p_soun->i_qt_version = 0;
1438         }
1439     }
1440
1441
1442     /* It's a little ugly but .. there are special cases */
1443     switch( p_sample->i_type )
1444     {
1445         case( VLC_FOURCC( '.', 'm', 'p', '3' ) ):
1446         case( VLC_FOURCC( 'm', 's', 0x00, 0x55 ) ):
1447             p_track->fmt.i_codec = VLC_FOURCC( 'm', 'p', 'g', 'a' );
1448             break;
1449
1450         case( VLC_FOURCC( 'r', 'a', 'w', ' ' ) ):
1451             p_track->fmt.i_codec = VLC_FOURCC( 'a', 'r', 'a', 'w' );
1452
1453             /* Buggy files workaround */
1454             if( p_sample->data.p_sample_soun && (p_track->i_timescale !=
1455                 p_sample->data.p_sample_soun->i_sampleratehi) )
1456             {
1457                 MP4_Box_data_sample_soun_t *p_soun =
1458                     p_sample->data.p_sample_soun;
1459
1460                 msg_Warn( p_demux, "i_timescale (%"PRIu64") != i_sampleratehi "
1461                           "(%u), making both equal (report any problem).",
1462                           p_track->i_timescale, p_soun->i_sampleratehi );
1463
1464                 if( p_soun->i_sampleratehi )
1465                     p_track->i_timescale = p_soun->i_sampleratehi;
1466                 else
1467                     p_soun->i_sampleratehi = p_track->i_timescale;
1468             }
1469             break;
1470
1471         case( VLC_FOURCC( 's', '2', '6', '3' ) ):
1472             p_track->fmt.i_codec = VLC_FOURCC( 'h', '2', '6', '3' );
1473             break;
1474
1475         case( VLC_FOURCC( 't', 'e', 'x', 't' ) ):
1476         case( VLC_FOURCC( 't', 'x', '3', 'g' ) ):
1477             p_track->fmt.i_codec = VLC_FOURCC( 's', 'u', 'b', 't' );
1478             /* FIXME: Not true, could be UTF-16 with a Byte Order Mark (0xfeff) */
1479             /* FIXME UTF-8 doesn't work here ? */
1480             p_track->fmt.subs.psz_encoding = strdup( "UTF-8" );
1481             break;
1482
1483         case VLC_FOURCC('y','v','1','2'):
1484             p_track->fmt.i_codec = VLC_FOURCC('Y','V','1','2');
1485             break;
1486         case VLC_FOURCC('y','u','v','2'):
1487             p_track->fmt.i_codec = VLC_FOURCC('Y','U','Y','2');
1488             break;
1489
1490         case VLC_FOURCC('i','n','2','4'):
1491             /* in in24/in32 there's enda-atom to tell it's little-endian (if present) */
1492             if( ( MP4_BoxGet( p_sample, "wave/enda" ) ) ||
1493                 ( MP4_BoxGet( p_sample, "enda" ) ) )
1494             {
1495                 p_track->fmt.i_codec = VLC_FOURCC('4','2','n','i');
1496             } else {
1497                 p_track->fmt.i_codec = p_sample->i_type;
1498             }
1499             break;
1500
1501         default:
1502             p_track->fmt.i_codec = p_sample->i_type;
1503             break;
1504     }
1505
1506     /* now see if esds is present and if so create a data packet
1507         with decoder_specific_info  */
1508 #define p_decconfig p_esds->data.p_esds->es_descriptor.p_decConfigDescr
1509     if( ( ( p_esds = MP4_BoxGet( p_sample, "esds" ) ) ||
1510           ( p_esds = MP4_BoxGet( p_sample, "wave/esds" ) ) )&&
1511         ( p_esds->data.p_esds )&&
1512         ( p_decconfig ) )
1513     {
1514         /* First update information based on i_objectTypeIndication */
1515         switch( p_decconfig->i_objectTypeIndication )
1516         {
1517             case( 0x20 ): /* MPEG4 VIDEO */
1518                 p_track->fmt.i_codec = VLC_FOURCC( 'm','p','4','v' );
1519                 break;
1520             case( 0x40):
1521                 p_track->fmt.i_codec = VLC_FOURCC( 'm','p','4','a' );
1522                 break;
1523             case( 0x60):
1524             case( 0x61):
1525             case( 0x62):
1526             case( 0x63):
1527             case( 0x64):
1528             case( 0x65): /* MPEG2 video */
1529                 p_track->fmt.i_codec = VLC_FOURCC( 'm','p','g','v' );
1530                 break;
1531             /* Theses are MPEG2-AAC */
1532             case( 0x66): /* main profile */
1533             case( 0x67): /* Low complexity profile */
1534             case( 0x68): /* Scaleable Sampling rate profile */
1535                 p_track->fmt.i_codec = VLC_FOURCC( 'm','p','4','a' );
1536                 break;
1537             /* true MPEG 2 audio */
1538             case( 0x69):
1539                 p_track->fmt.i_codec = VLC_FOURCC( 'm','p','g','a' );
1540                 break;
1541             case( 0x6a): /* MPEG1 video */
1542                 p_track->fmt.i_codec = VLC_FOURCC( 'm','p','g','v' );
1543                 break;
1544             case( 0x6b): /* MPEG1 audio */
1545                 p_track->fmt.i_codec = VLC_FOURCC( 'm','p','g','a' );
1546                 break;
1547             case( 0x6c ): /* jpeg */
1548                 p_track->fmt.i_codec = VLC_FOURCC( 'j','p','e','g' );
1549                 break;
1550
1551             /* Private ID */
1552             case( 0xe0 ): /* NeroDigital: dvd subs */
1553                 if( p_track->fmt.i_cat == SPU_ES )
1554                 {
1555                     p_track->fmt.i_codec = VLC_FOURCC( 's','p','u',' ' );
1556                     if( p_track->i_width > 0 )
1557                         p_track->fmt.subs.spu.i_original_frame_width = p_track->i_width;
1558                     if( p_track->i_height > 0 )
1559                         p_track->fmt.subs.spu.i_original_frame_height = p_track->i_height;
1560                     break;
1561                 }
1562             /* Fallback */
1563             default:
1564                 /* Unknown entry, but don't touch i_fourcc */
1565                 msg_Warn( p_demux,
1566                           "unknown objectTypeIndication(0x%x) (Track[ID 0x%x])",
1567                           p_decconfig->i_objectTypeIndication,
1568                           p_track->i_track_ID );
1569                 break;
1570         }
1571         p_track->fmt.i_extra = p_decconfig->i_decoder_specific_info_len;
1572         if( p_track->fmt.i_extra > 0 )
1573         {
1574             p_track->fmt.p_extra = malloc( p_track->fmt.i_extra );
1575             memcpy( p_track->fmt.p_extra, p_decconfig->p_decoder_specific_info,
1576                     p_track->fmt.i_extra );
1577         }
1578     }
1579     else
1580     {
1581         switch( p_sample->i_type )
1582         {
1583             /* qt decoder, send the complete chunk */
1584             case VLC_FOURCC ('h', 'd', 'v', '1'): // HDV 720p30
1585             case VLC_FOURCC ('h', 'd', 'v', '2'): // HDV 1080i60
1586             case VLC_FOURCC ('h', 'd', 'v', '3'): // HDV 1080i50
1587             case VLC_FOURCC ('h', 'd', 'v', '5'): // HDV 720p25
1588             case VLC_FOURCC ('m', 'x', '5', 'n'): // MPEG2 IMX NTSC 525/60 50mb/s produced by FCP
1589             case VLC_FOURCC ('m', 'x', '5', 'p'): // MPEG2 IMX PAL 625/60 50mb/s produced by FCP
1590             case VLC_FOURCC ('m', 'x', '4', 'n'): // MPEG2 IMX NTSC 525/60 40mb/s produced by FCP
1591             case VLC_FOURCC ('m', 'x', '4', 'p'): // MPEG2 IMX PAL 625/60 40mb/s produced by FCP
1592             case VLC_FOURCC ('m', 'x', '3', 'n'): // MPEG2 IMX NTSC 525/60 30mb/s produced by FCP
1593             case VLC_FOURCC ('m', 'x', '3', 'p'): // MPEG2 IMX PAL 625/50 30mb/s produced by FCP
1594             case VLC_FOURCC ('x', 'd', 'v', '2'): // XDCAM HD 1080i60
1595             case VLC_FOURCC ('A', 'V', 'm', 'p'): // AVID IMX PAL
1596                 p_track->fmt.i_codec = VLC_FOURCC( 'm','p','g','v' );
1597                 break;
1598             /* qt decoder, send the complete chunk */
1599             case VLC_FOURCC( 'S', 'V', 'Q', '3' ):
1600             case VLC_FOURCC( 'S', 'V', 'Q', '1' ):
1601             case VLC_FOURCC( 'V', 'P', '3', '1' ):
1602             case VLC_FOURCC( '3', 'I', 'V', '1' ):
1603             case VLC_FOURCC( 'Z', 'y', 'G', 'o' ):
1604                 p_track->fmt.i_extra =
1605                     p_sample->data.p_sample_vide->i_qt_image_description;
1606                 if( p_track->fmt.i_extra > 0 )
1607                 {
1608                     p_track->fmt.p_extra = malloc( p_track->fmt.i_extra );
1609                     memcpy( p_track->fmt.p_extra,
1610                             p_sample->data.p_sample_vide->p_qt_image_description,
1611                             p_track->fmt.i_extra);
1612                 }
1613                 break;
1614             case VLC_FOURCC( 'Q', 'D', 'M', 'C' ):
1615             case VLC_FOURCC( 'Q', 'D', 'M', '2' ):
1616             case VLC_FOURCC( 'Q', 'c', 'l', 'p' ):
1617             case VLC_FOURCC( 's', 'a', 'm', 'r' ):
1618             case VLC_FOURCC( 'a', 'l', 'a', 'c' ):
1619                 p_track->fmt.i_extra =
1620                     p_sample->data.p_sample_soun->i_qt_description;
1621                 if( p_track->fmt.i_extra > 0 )
1622                 {
1623                     p_track->fmt.p_extra = malloc( p_track->fmt.i_extra );
1624                     memcpy( p_track->fmt.p_extra,
1625                             p_sample->data.p_sample_soun->p_qt_description,
1626                             p_track->fmt.i_extra);
1627                 }
1628                 break;
1629
1630             /* avc1: send avcC (h264 without annexe B, ie without start code)*/
1631             case VLC_FOURCC( 'a', 'v', 'c', '1' ):
1632             {
1633                 MP4_Box_t *p_avcC = MP4_BoxGet( p_sample, "avcC" );
1634
1635                 if( p_avcC )
1636                 {
1637                     p_track->fmt.i_extra = p_avcC->data.p_avcC->i_avcC;
1638                     p_track->fmt.p_extra = malloc( p_avcC->data.p_avcC->i_avcC );
1639                     memcpy( p_track->fmt.p_extra, p_avcC->data.p_avcC->p_avcC,
1640                             p_track->fmt.i_extra );
1641                 }
1642                 else
1643                 {
1644                     msg_Err( p_demux, "missing avcC" );
1645                 }
1646                 break;
1647             }
1648
1649             default:
1650                 break;
1651         }
1652     }
1653
1654 #undef p_decconfig
1655
1656     /* some last initialisation */
1657     switch( p_track->fmt.i_cat )
1658     {
1659     case( VIDEO_ES ):
1660         p_track->fmt.video.i_width = p_sample->data.p_sample_vide->i_width;
1661         p_track->fmt.video.i_height = p_sample->data.p_sample_vide->i_height;
1662         p_track->fmt.video.i_bits_per_pixel =
1663             p_sample->data.p_sample_vide->i_depth;
1664
1665         /* fall on display size */
1666         if( p_track->fmt.video.i_width <= 0 )
1667             p_track->fmt.video.i_width = p_track->i_width;
1668         if( p_track->fmt.video.i_height <= 0 )
1669             p_track->fmt.video.i_height = p_track->i_height;
1670
1671         /* Find out apect ratio from display size */
1672         if( p_track->i_width > 0 && p_track->i_height > 0 &&
1673             /* Work-around buggy muxed files */
1674             p_sample->data.p_sample_vide->i_width != p_track->i_width )
1675             p_track->fmt.video.i_aspect =
1676                 VOUT_ASPECT_FACTOR * p_track->i_width / p_track->i_height;
1677
1678         /* Support for cropping (eg. in H263 files) */
1679         p_track->fmt.video.i_visible_width = p_track->fmt.video.i_width;
1680         p_track->fmt.video.i_visible_height = p_track->fmt.video.i_height;
1681
1682         /* Frame rate */
1683         p_track->fmt.video.i_frame_rate = p_track->i_timescale;
1684         p_track->fmt.video.i_frame_rate_base = 1;
1685
1686         if( p_track->fmt.video.i_frame_rate &&
1687             (p_box = MP4_BoxGet( p_track->p_stbl, "stts" )) &&
1688             p_box->data.p_stts->i_entry_count >= 1 )
1689         {
1690             p_track->fmt.video.i_frame_rate_base =
1691                 p_box->data.p_stts->i_sample_delta[0];
1692         }
1693
1694         break;
1695
1696     case( AUDIO_ES ):
1697         p_track->fmt.audio.i_channels =
1698             p_sample->data.p_sample_soun->i_channelcount;
1699         p_track->fmt.audio.i_rate =
1700             p_sample->data.p_sample_soun->i_sampleratehi;
1701         p_track->fmt.i_bitrate = p_sample->data.p_sample_soun->i_channelcount *
1702             p_sample->data.p_sample_soun->i_sampleratehi *
1703                 p_sample->data.p_sample_soun->i_samplesize;
1704         p_track->fmt.audio.i_bitspersample =
1705             p_sample->data.p_sample_soun->i_samplesize;
1706         break;
1707
1708     default:
1709         break;
1710     }
1711
1712     if( pp_es )
1713         *pp_es = es_out_Add( p_demux->out, &p_track->fmt );
1714
1715     return VLC_SUCCESS;
1716 }
1717
1718 /* given a time it return sample/chunk
1719  * it also update elst field of the track
1720  */
1721 static int TrackTimeToSampleChunk( demux_t *p_demux, mp4_track_t *p_track,
1722                                    int64_t i_start, uint32_t *pi_chunk,
1723                                    uint32_t *pi_sample )
1724 {
1725     demux_sys_t *p_sys = p_demux->p_sys;
1726     MP4_Box_t   *p_stss;
1727     uint64_t     i_dts;
1728     unsigned int i_sample;
1729     unsigned int i_chunk;
1730     int          i_index;
1731
1732     /* FIXME see if it's needed to check p_track->i_chunk_count */
1733     if( p_track->i_chunk_count == 0 )
1734         return( VLC_EGENERIC );
1735
1736     /* handle elst (find the correct one) */
1737     MP4_TrackSetELST( p_demux, p_track, i_start );
1738     if( p_track->p_elst && p_track->p_elst->data.p_elst->i_entry_count > 0 )
1739     {
1740         MP4_Box_data_elst_t *elst = p_track->p_elst->data.p_elst;
1741         int64_t i_mvt= i_start * p_sys->i_timescale / (int64_t)1000000;
1742
1743         /* now calculate i_start for this elst */
1744         /* offset */
1745         i_start -= p_track->i_elst_time * INT64_C(1000000) / p_sys->i_timescale;
1746         if( i_start < 0 )
1747         {
1748             *pi_chunk = 0;
1749             *pi_sample= 0;
1750
1751             return VLC_SUCCESS;
1752         }
1753         /* to track time scale */
1754         i_start  = i_start * p_track->i_timescale / (int64_t)1000000;
1755         /* add elst offset */
1756         if( ( elst->i_media_rate_integer[p_track->i_elst] > 0 ||
1757              elst->i_media_rate_fraction[p_track->i_elst] > 0 ) &&
1758             elst->i_media_time[p_track->i_elst] > 0 )
1759         {
1760             i_start += elst->i_media_time[p_track->i_elst];
1761         }
1762
1763         msg_Dbg( p_demux, "elst (%d) gives %"PRId64"ms (movie)-> %"PRId64
1764                  "ms (track)", p_track->i_elst,
1765                  i_mvt * 1000 / p_sys->i_timescale,
1766                  i_start * 1000 / p_track->i_timescale );
1767     }
1768     else
1769     {
1770         /* convert absolute time to in timescale unit */
1771         i_start = i_start * p_track->i_timescale / (int64_t)1000000;
1772     }
1773
1774     /* we start from sample 0/chunk 0, hope it won't take too much time */
1775     /* *** find good chunk *** */
1776     for( i_chunk = 0; ; i_chunk++ )
1777     {
1778         if( i_chunk + 1 >= p_track->i_chunk_count )
1779         {
1780             /* at the end and can't check if i_start in this chunk,
1781                it will be check while searching i_sample */
1782             i_chunk = p_track->i_chunk_count - 1;
1783             break;
1784         }
1785
1786         if( (uint64_t)i_start >= p_track->chunk[i_chunk].i_first_dts &&
1787             (uint64_t)i_start <  p_track->chunk[i_chunk + 1].i_first_dts )
1788         {
1789             break;
1790         }
1791     }
1792
1793     /* *** find sample in the chunk *** */
1794     i_sample = p_track->chunk[i_chunk].i_sample_first;
1795     i_dts    = p_track->chunk[i_chunk].i_first_dts;
1796     for( i_index = 0; i_sample < p_track->chunk[i_chunk].i_sample_count; )
1797     {
1798         if( i_dts +
1799             p_track->chunk[i_chunk].p_sample_count_dts[i_index] *
1800             p_track->chunk[i_chunk].p_sample_delta_dts[i_index] < (uint64_t)i_start )
1801         {
1802             i_dts    +=
1803                 p_track->chunk[i_chunk].p_sample_count_dts[i_index] *
1804                 p_track->chunk[i_chunk].p_sample_delta_dts[i_index];
1805
1806             i_sample += p_track->chunk[i_chunk].p_sample_count_dts[i_index];
1807             i_index++;
1808         }
1809         else
1810         {
1811             if( p_track->chunk[i_chunk].p_sample_delta_dts[i_index] <= 0 )
1812             {
1813                 break;
1814             }
1815             i_sample += ( i_start - i_dts ) /
1816                 p_track->chunk[i_chunk].p_sample_delta_dts[i_index];
1817             break;
1818         }
1819     }
1820
1821     if( i_sample >= p_track->i_sample_count )
1822     {
1823         msg_Warn( p_demux, "track[Id 0x%x] will be disabled "
1824                   "(seeking too far) chunk=%d sample=%d",
1825                   p_track->i_track_ID, i_chunk, i_sample );
1826         return( VLC_EGENERIC );
1827     }
1828
1829
1830     /* *** Try to find nearest sync points *** */
1831     if( ( p_stss = MP4_BoxGet( p_track->p_stbl, "stss" ) ) )
1832     {
1833         unsigned int i_index;
1834         msg_Dbg( p_demux,
1835                     "track[Id 0x%x] using Sync Sample Box (stss)",
1836                     p_track->i_track_ID );
1837         for( i_index = 0; i_index < p_stss->data.p_stss->i_entry_count; i_index++ )
1838         {
1839             if( p_stss->data.p_stss->i_sample_number[i_index] >= i_sample )
1840             {
1841                 if( i_index > 0 )
1842                 {
1843                     msg_Dbg( p_demux, "stts gives %d --> %d (sample number)",
1844                             i_sample,
1845                             p_stss->data.p_stss->i_sample_number[i_index-1] );
1846                     i_sample = p_stss->data.p_stss->i_sample_number[i_index-1];
1847                     /* new i_sample is less than old so i_chunk can only decreased */
1848                     while( i_chunk > 0 &&
1849                             i_sample < p_track->chunk[i_chunk].i_sample_first )
1850                     {
1851                         i_chunk--;
1852                     }
1853                 }
1854                 else
1855                 {
1856                     msg_Dbg( p_demux, "stts gives %d --> %d (sample number)",
1857                             i_sample,
1858                             p_stss->data.p_stss->i_sample_number[i_index] );
1859                     i_sample = p_stss->data.p_stss->i_sample_number[i_index];
1860                     /* new i_sample is more than old so i_chunk can only increased */
1861                     while( i_chunk < p_track->i_chunk_count - 1 &&
1862                            i_sample >= p_track->chunk[i_chunk].i_sample_first +
1863                              p_track->chunk[i_chunk].i_sample_count )
1864                     {
1865                         i_chunk++;
1866                     }
1867                 }
1868                 break;
1869             }
1870         }
1871     }
1872     else
1873     {
1874         msg_Dbg( p_demux, "track[Id 0x%x] does not provide Sync "
1875                  "Sample Box (stss)", p_track->i_track_ID );
1876     }
1877
1878     *pi_chunk  = i_chunk;
1879     *pi_sample = i_sample;
1880
1881     return VLC_SUCCESS;
1882 }
1883
1884 static int TrackGotoChunkSample( demux_t *p_demux, mp4_track_t *p_track,
1885                                  unsigned int i_chunk, unsigned int i_sample )
1886 {
1887     bool b_reselect = false;
1888
1889     /* now see if actual es is ok */
1890     if( (p_track->i_chunk >= p_track->i_chunk_count - 1) ||
1891         (p_track->chunk[p_track->i_chunk].i_sample_description_index !=
1892             p_track->chunk[i_chunk].i_sample_description_index) )
1893     {
1894         msg_Warn( p_demux, "recreate ES for track[Id 0x%x]",
1895                   p_track->i_track_ID );
1896
1897         es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE,
1898                         p_track->p_es, &b_reselect );
1899
1900         es_out_Del( p_demux->out, p_track->p_es );
1901
1902         p_track->p_es = NULL;
1903
1904         if( TrackCreateES( p_demux, p_track, i_chunk, &p_track->p_es ) )
1905         {
1906             msg_Err( p_demux, "cannot create es for track[Id 0x%x]",
1907                      p_track->i_track_ID );
1908
1909             p_track->b_ok       = false;
1910             p_track->b_selected = false;
1911             return VLC_EGENERIC;
1912         }
1913     }
1914
1915     /* select again the new decoder */
1916     if( b_reselect )
1917     {
1918         es_out_Control( p_demux->out, ES_OUT_SET_ES, p_track->p_es );
1919     }
1920
1921     p_track->i_chunk    = i_chunk;
1922     p_track->i_sample   = i_sample;
1923
1924     return p_track->b_selected ? VLC_SUCCESS : VLC_EGENERIC;
1925 }
1926
1927 /****************************************************************************
1928  * MP4_TrackCreate:
1929  ****************************************************************************
1930  * Parse track information and create all needed data to run a track
1931  * If it succeed b_ok is set to 1 else to 0
1932  ****************************************************************************/
1933 static void MP4_TrackCreate( demux_t *p_demux, mp4_track_t *p_track,
1934                              MP4_Box_t *p_box_trak )
1935 {
1936     demux_sys_t *p_sys = p_demux->p_sys;
1937
1938     MP4_Box_t *p_tkhd = MP4_BoxGet( p_box_trak, "tkhd" );
1939     MP4_Box_t *p_tref = MP4_BoxGet( p_box_trak, "tref" );
1940     MP4_Box_t *p_elst;
1941
1942     MP4_Box_t *p_mdhd;
1943     MP4_Box_t *p_udta;
1944     MP4_Box_t *p_hdlr;
1945
1946     MP4_Box_t *p_vmhd;
1947     MP4_Box_t *p_smhd;
1948
1949     MP4_Box_t *p_drms;
1950
1951     unsigned int i;
1952     char language[4];
1953
1954     /* hint track unsupported */
1955
1956     /* set default value (-> track unusable) */
1957     p_track->b_ok       = false;
1958     p_track->b_enable   = false;
1959     p_track->b_selected = false;
1960     p_track->b_chapter  = false;
1961
1962     es_format_Init( &p_track->fmt, UNKNOWN_ES, 0 );
1963
1964     if( !p_tkhd )
1965     {
1966         return;
1967     }
1968
1969     /* do we launch this track by default ? */
1970     p_track->b_enable =
1971         ( ( p_tkhd->data.p_tkhd->i_flags&MP4_TRACK_ENABLED ) != 0 );
1972
1973     p_track->i_track_ID = p_tkhd->data.p_tkhd->i_track_ID;
1974     p_track->i_width = p_tkhd->data.p_tkhd->i_width / 65536;
1975     p_track->i_height = p_tkhd->data.p_tkhd->i_height / 65536;
1976
1977     if( p_tref )
1978     {
1979 /*        msg_Warn( p_demux, "unhandled box: tref --> FIXME" ); */
1980     }
1981
1982     p_mdhd = MP4_BoxGet( p_box_trak, "mdia/mdhd" );
1983     p_hdlr = MP4_BoxGet( p_box_trak, "mdia/hdlr" );
1984
1985     if( ( !p_mdhd )||( !p_hdlr ) )
1986     {
1987         return;
1988     }
1989
1990     p_track->i_timescale = p_mdhd->data.p_mdhd->i_timescale;
1991     if( !p_track->i_timescale )
1992         return;
1993
1994     for( i = 0; i < 3; i++ )
1995     {
1996         language[i] = p_mdhd->data.p_mdhd->i_language[i];
1997     }
1998     language[3] = '\0';
1999
2000     switch( p_hdlr->data.p_hdlr->i_handler_type )
2001     {
2002         case( FOURCC_soun ):
2003             if( !( p_smhd = MP4_BoxGet( p_box_trak, "mdia/minf/smhd" ) ) )
2004             {
2005                 return;
2006             }
2007             p_track->fmt.i_cat = AUDIO_ES;
2008             break;
2009
2010         case( FOURCC_vide ):
2011             if( !( p_vmhd = MP4_BoxGet( p_box_trak, "mdia/minf/vmhd" ) ) )
2012             {
2013                 return;
2014             }
2015             p_track->fmt.i_cat = VIDEO_ES;
2016             break;
2017
2018         case( FOURCC_text ):
2019         case( FOURCC_subp ):
2020         case( FOURCC_tx3g ):
2021             p_track->fmt.i_cat = SPU_ES;
2022             break;
2023
2024         default:
2025             return;
2026     }
2027
2028     p_track->i_elst = 0;
2029     p_track->i_elst_time = 0;
2030     if( ( p_track->p_elst = p_elst = MP4_BoxGet( p_box_trak, "edts/elst" ) ) )
2031     {
2032         MP4_Box_data_elst_t *elst = p_elst->data.p_elst;
2033         unsigned int i;
2034
2035         msg_Warn( p_demux, "elst box found" );
2036         for( i = 0; i < elst->i_entry_count; i++ )
2037         {
2038             msg_Dbg( p_demux, "   - [%d] duration=%"PRId64"ms media time=%"PRId64
2039                      "ms) rate=%d.%d", i,
2040                      elst->i_segment_duration[i] * 1000 / p_sys->i_timescale,
2041                      elst->i_media_time[i] >= 0 ?
2042                      (int64_t)(elst->i_media_time[i] * 1000 / p_track->i_timescale) :
2043                      INT64_C(-1),
2044                      elst->i_media_rate_integer[i],
2045                      elst->i_media_rate_fraction[i] );
2046         }
2047     }
2048
2049
2050 /*  TODO
2051     add support for:
2052     p_dinf = MP4_BoxGet( p_minf, "dinf" );
2053 */
2054     if( !( p_track->p_stbl = MP4_BoxGet( p_box_trak,"mdia/minf/stbl" ) ) ||
2055         !( p_track->p_stsd = MP4_BoxGet( p_box_trak,"mdia/minf/stbl/stsd") ) )
2056     {
2057         return;
2058     }
2059
2060     p_drms = MP4_BoxGet( p_track->p_stsd, "drms" );
2061     p_track->b_drms = p_drms != NULL;
2062     p_track->p_drms = p_track->b_drms ?
2063         p_drms->data.p_sample_soun->p_drms : NULL;
2064
2065     /* Set language */
2066     if( strcmp( language, "```" ) && strcmp( language, "und" ) )
2067     {
2068         p_track->fmt.psz_language = strdup( language );
2069     }
2070
2071     p_udta = MP4_BoxGet( p_box_trak, "udta" );
2072     if( p_udta )
2073     {
2074         MP4_Box_t *p_0xa9xxx;
2075         for( p_0xa9xxx = p_udta->p_first; p_0xa9xxx != NULL;
2076                  p_0xa9xxx = p_0xa9xxx->p_next )
2077         {
2078             switch( p_0xa9xxx->i_type )
2079             {
2080                 case FOURCC_0xa9nam:
2081                     p_track->fmt.psz_description =
2082                         strdup( p_0xa9xxx->data.p_0xa9xxx->psz_text );
2083                     break;
2084             }
2085         }
2086     }
2087
2088     /* Create chunk index table and sample index table */
2089     if( TrackCreateChunksIndex( p_demux,p_track  ) ||
2090         TrackCreateSamplesIndex( p_demux, p_track ) )
2091     {
2092         return; /* cannot create chunks index */
2093     }
2094
2095     p_track->i_chunk  = 0;
2096     p_track->i_sample = 0;
2097
2098     /* Mark chapter only track */
2099     if( !p_track->b_enable && p_sys->p_tref_chap )
2100     {
2101         MP4_Box_data_tref_generic_t *p_chap = p_sys->p_tref_chap->data.p_tref_generic;
2102         unsigned int i;
2103
2104         for( i = 0; i < p_chap->i_entry_count; i++ )
2105         {
2106             if( p_track->i_track_ID == p_chap->i_track_ID[i] )
2107             {
2108                 p_track->b_chapter = true;
2109                 break;
2110             }
2111         }
2112     }
2113
2114     /* now create es */
2115     p_track->p_es = NULL;
2116     if( TrackCreateES( p_demux,
2117                        p_track, p_track->i_chunk,
2118                        p_track->b_chapter ? NULL : &p_track->p_es ) )
2119     {
2120         msg_Err( p_demux, "cannot create es for track[Id 0x%x]",
2121                  p_track->i_track_ID );
2122         return;
2123     }
2124     p_track->b_ok = true;
2125 #if 0
2126     {
2127         int i;
2128         for( i = 0; i < p_track->i_chunk_count; i++ )
2129         {
2130             fprintf( stderr, "%-5d sample_count=%d pts=%lld\n",
2131                      i, p_track->chunk[i].i_sample_count,
2132                      p_track->chunk[i].i_first_dts );
2133
2134         }
2135     }
2136 #endif
2137 }
2138
2139 /****************************************************************************
2140  * MP4_TrackDestroy:
2141  ****************************************************************************
2142  * Destroy a track created by MP4_TrackCreate.
2143  ****************************************************************************/
2144 static void MP4_TrackDestroy( demux_t *p_demux, mp4_track_t *p_track )
2145 {
2146     unsigned int i_chunk;
2147
2148     p_track->b_ok = false;
2149     p_track->b_enable   = false;
2150     p_track->b_selected = false;
2151
2152     es_format_Clean( &p_track->fmt );
2153
2154     for( i_chunk = 0; i_chunk < p_track->i_chunk_count; i_chunk++ )
2155     {
2156         if( p_track->chunk )
2157         {
2158            FREENULL(p_track->chunk[i_chunk].p_sample_count_dts);
2159            FREENULL(p_track->chunk[i_chunk].p_sample_delta_dts );
2160
2161            FREENULL(p_track->chunk[i_chunk].p_sample_count_pts);
2162            FREENULL(p_track->chunk[i_chunk].p_sample_offset_pts );
2163         }
2164     }
2165     FREENULL( p_track->chunk );
2166
2167     if( !p_track->i_sample_size )
2168     {
2169         FREENULL( p_track->p_sample_size );
2170     }
2171 }
2172
2173 static int MP4_TrackSelect( demux_t *p_demux, mp4_track_t *p_track,
2174                             mtime_t i_start )
2175 {
2176     if( !p_track->b_ok || p_track->b_chapter )
2177     {
2178         return VLC_EGENERIC;
2179     }
2180
2181     if( p_track->b_selected )
2182     {
2183         msg_Warn( p_demux, "track[Id 0x%x] already selected",
2184                   p_track->i_track_ID );
2185         return VLC_SUCCESS;
2186     }
2187
2188     return MP4_TrackSeek( p_demux, p_track, i_start );
2189 }
2190
2191 static void MP4_TrackUnselect( demux_t *p_demux, mp4_track_t *p_track )
2192 {
2193     if( !p_track->b_ok || p_track->b_chapter )
2194     {
2195         return;
2196     }
2197
2198     if( !p_track->b_selected )
2199     {
2200         msg_Warn( p_demux, "track[Id 0x%x] already unselected",
2201                   p_track->i_track_ID );
2202         return;
2203     }
2204     if( p_track->p_es )
2205     {
2206         es_out_Control( p_demux->out, ES_OUT_SET_ES_STATE,
2207                         p_track->p_es, false );
2208     }
2209
2210     p_track->b_selected = false;
2211 }
2212
2213 static int MP4_TrackSeek( demux_t *p_demux, mp4_track_t *p_track,
2214                           mtime_t i_start )
2215 {
2216     uint32_t i_chunk;
2217     uint32_t i_sample;
2218
2219     if( !p_track->b_ok || p_track->b_chapter )
2220         return VLC_EGENERIC;
2221
2222     p_track->b_selected = false;
2223
2224     if( TrackTimeToSampleChunk( p_demux, p_track, i_start,
2225                                 &i_chunk, &i_sample ) )
2226     {
2227         msg_Warn( p_demux, "cannot select track[Id 0x%x]",
2228                   p_track->i_track_ID );
2229         return VLC_EGENERIC;
2230     }
2231
2232     p_track->b_selected = true;
2233
2234     if( TrackGotoChunkSample( p_demux, p_track, i_chunk, i_sample ) ==
2235         VLC_SUCCESS )
2236     {
2237         p_track->b_selected = true;
2238
2239         es_out_Control( p_demux->out, ES_OUT_SET_NEXT_DISPLAY_TIME,
2240                         p_track->p_es, i_start );
2241     }
2242
2243     return p_track->b_selected ? VLC_SUCCESS : VLC_EGENERIC;
2244 }
2245
2246
2247 /*
2248  * 3 types: for audio
2249  *
2250  */
2251 #define QT_V0_MAX_SAMPLES 1024
2252 static int MP4_TrackSampleSize( mp4_track_t *p_track )
2253 {
2254     int i_size;
2255     MP4_Box_data_sample_soun_t *p_soun;
2256
2257     if( p_track->i_sample_size == 0 )
2258     {
2259         /* most simple case */
2260         return p_track->p_sample_size[p_track->i_sample];
2261     }
2262     if( p_track->fmt.i_cat != AUDIO_ES )
2263     {
2264         return p_track->i_sample_size;
2265     }
2266
2267     p_soun = p_track->p_sample->data.p_sample_soun;
2268
2269     if( p_soun->i_qt_version == 1 )
2270     {
2271         i_size = p_track->chunk[p_track->i_chunk].i_sample_count /
2272             p_soun->i_sample_per_packet * p_soun->i_bytes_per_frame;
2273     }
2274     else if( p_track->i_sample_size > 256 )
2275     {
2276         /* We do that so we don't read too much data
2277          * (in this case we are likely dealing with compressed data) */
2278         i_size = p_track->i_sample_size;
2279     }
2280     else
2281     {
2282         /* Read a bunch of samples at once */
2283         int i_samples = p_track->chunk[p_track->i_chunk].i_sample_count -
2284             ( p_track->i_sample -
2285               p_track->chunk[p_track->i_chunk].i_sample_first );
2286
2287         i_samples = __MIN( QT_V0_MAX_SAMPLES, i_samples );
2288         i_size = i_samples * p_track->i_sample_size;
2289     }
2290
2291     //fprintf( stderr, "size=%d\n", i_size );
2292     return i_size;
2293 }
2294
2295 static uint64_t MP4_TrackGetPos( mp4_track_t *p_track )
2296 {
2297     unsigned int i_sample;
2298     uint64_t i_pos;
2299
2300     i_pos = p_track->chunk[p_track->i_chunk].i_offset;
2301
2302     if( p_track->i_sample_size )
2303     {
2304         MP4_Box_data_sample_soun_t *p_soun =
2305             p_track->p_sample->data.p_sample_soun;
2306
2307         if( p_soun->i_qt_version == 0 )
2308         {
2309             i_pos += ( p_track->i_sample -
2310                        p_track->chunk[p_track->i_chunk].i_sample_first ) *
2311                      p_track->i_sample_size;
2312         }
2313         else
2314         {
2315             /* we read chunk by chunk */
2316             i_pos += 0;
2317         }
2318     }
2319     else
2320     {
2321         for( i_sample = p_track->chunk[p_track->i_chunk].i_sample_first;
2322              i_sample < p_track->i_sample; i_sample++ )
2323         {
2324             i_pos += p_track->p_sample_size[i_sample];
2325         }
2326     }
2327
2328     return i_pos;
2329 }
2330
2331 static int MP4_TrackNextSample( demux_t *p_demux, mp4_track_t *p_track )
2332 {
2333     if( p_track->fmt.i_cat == AUDIO_ES && p_track->i_sample_size != 0 )
2334     {
2335         MP4_Box_data_sample_soun_t *p_soun;
2336
2337         p_soun = p_track->p_sample->data.p_sample_soun;
2338
2339         if( p_soun->i_qt_version == 1 )
2340         {
2341             /* chunk by chunk */
2342             p_track->i_sample =
2343                 p_track->chunk[p_track->i_chunk].i_sample_first +
2344                 p_track->chunk[p_track->i_chunk].i_sample_count;
2345         }
2346         else if( p_track->i_sample_size > 256 )
2347         {
2348             /* We do that so we don't read too much data
2349              * (in this case we are likely dealing with compressed data) */
2350             p_track->i_sample += 1;
2351         }
2352         else
2353         {
2354             /* FIXME */
2355             p_track->i_sample += QT_V0_MAX_SAMPLES;
2356             if( p_track->i_sample >
2357                 p_track->chunk[p_track->i_chunk].i_sample_first +
2358                 p_track->chunk[p_track->i_chunk].i_sample_count )
2359             {
2360                 p_track->i_sample =
2361                     p_track->chunk[p_track->i_chunk].i_sample_first +
2362                     p_track->chunk[p_track->i_chunk].i_sample_count;
2363             }
2364         }
2365     }
2366     else
2367     {
2368         p_track->i_sample++;
2369     }
2370
2371     if( p_track->i_sample >= p_track->i_sample_count )
2372         return VLC_EGENERIC;
2373
2374     /* Have we changed chunk ? */
2375     if( p_track->i_sample >=
2376             p_track->chunk[p_track->i_chunk].i_sample_first +
2377             p_track->chunk[p_track->i_chunk].i_sample_count )
2378     {
2379         if( TrackGotoChunkSample( p_demux, p_track, p_track->i_chunk + 1,
2380                                   p_track->i_sample ) )
2381         {
2382             msg_Warn( p_demux, "track[0x%x] will be disabled "
2383                       "(cannot restart decoder)", p_track->i_track_ID );
2384             MP4_TrackUnselect( p_demux, p_track );
2385             return VLC_EGENERIC;
2386         }
2387     }
2388
2389     /* Have we changed elst */
2390     if( p_track->p_elst && p_track->p_elst->data.p_elst->i_entry_count > 0 )
2391     {
2392         demux_sys_t *p_sys = p_demux->p_sys;
2393         MP4_Box_data_elst_t *elst = p_track->p_elst->data.p_elst;
2394         uint64_t i_mvt = MP4_TrackGetDTS( p_demux, p_track ) *
2395                         p_sys->i_timescale / (int64_t)1000000;
2396
2397         if( (unsigned int)p_track->i_elst < elst->i_entry_count &&
2398             i_mvt >= p_track->i_elst_time +
2399                      elst->i_segment_duration[p_track->i_elst] )
2400         {
2401             MP4_TrackSetELST( p_demux, p_track,
2402                               MP4_TrackGetDTS( p_demux, p_track ) );
2403         }
2404     }
2405
2406     return VLC_SUCCESS;
2407 }
2408
2409 static void MP4_TrackSetELST( demux_t *p_demux, mp4_track_t *tk,
2410                               int64_t i_time )
2411 {
2412     demux_sys_t *p_sys = p_demux->p_sys;
2413     int         i_elst_last = tk->i_elst;
2414
2415     /* handle elst (find the correct one) */
2416     tk->i_elst      = 0;
2417     tk->i_elst_time = 0;
2418     if( tk->p_elst && tk->p_elst->data.p_elst->i_entry_count > 0 )
2419     {
2420         MP4_Box_data_elst_t *elst = tk->p_elst->data.p_elst;
2421         int64_t i_mvt= i_time * p_sys->i_timescale / (int64_t)1000000;
2422
2423         for( tk->i_elst = 0; (unsigned int)tk->i_elst < elst->i_entry_count; tk->i_elst++ )
2424         {
2425             mtime_t i_dur = elst->i_segment_duration[tk->i_elst];
2426
2427             if( tk->i_elst_time <= i_mvt && i_mvt < tk->i_elst_time + i_dur )
2428             {
2429                 break;
2430             }
2431             tk->i_elst_time += i_dur;
2432         }
2433
2434         if( (unsigned int)tk->i_elst >= elst->i_entry_count )
2435         {
2436             /* msg_Dbg( p_demux, "invalid number of entry in elst" ); */
2437             tk->i_elst = elst->i_entry_count - 1;
2438             tk->i_elst_time -= elst->i_segment_duration[tk->i_elst];
2439         }
2440
2441         if( elst->i_media_time[tk->i_elst] < 0 )
2442         {
2443             /* track offset */
2444             tk->i_elst_time += elst->i_segment_duration[tk->i_elst];
2445         }
2446     }
2447     if( i_elst_last != tk->i_elst )
2448     {
2449         msg_Warn( p_demux, "elst old=%d new=%d", i_elst_last, tk->i_elst );
2450     }
2451 }