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