mp4.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:89k
源码类别:

midi

开发平台:

Unix_Linux

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