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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * mkv.cpp : matroska demuxer
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2004 the VideoLAN team
  5.  * $Id: 33fffa5023799f8dc33774c9cb31935f51f37086 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Steve Lhomme <steve.lhomme@free.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #include "matroska_segment.hpp"
  25. #include "chapters.hpp"
  26. #include "demux.hpp"
  27. /*****************************************************************************
  28.  * Some functions to manipulate memory
  29.  *****************************************************************************/
  30. static inline char * ToUTF8( const UTFstring &u )
  31. {
  32.     return strdup( u.GetUTF8().c_str() );
  33. }
  34. /*****************************************************************************
  35.  * ParseSeekHead:
  36.  *****************************************************************************/
  37. void matroska_segment_c::ParseSeekHead( KaxSeekHead *seekhead )
  38. {
  39.     EbmlParser  *ep;
  40.     EbmlElement *l;
  41.     bool b_seekable;
  42.     i_seekhead_count++;
  43.     stream_Control( sys.demuxer.s, STREAM_CAN_SEEK, &b_seekable );
  44.     if( !b_seekable )
  45.         return;
  46.     ep = new EbmlParser( &es, seekhead, &sys.demuxer );
  47.     while( ( l = ep->Get() ) != NULL )
  48.     {
  49.         if( MKV_IS_ID( l, KaxSeek ) )
  50.         {
  51.             EbmlId id = EbmlVoid::ClassInfos.GlobalId;
  52.             int64_t i_pos = -1;
  53.             msg_Dbg( &sys.demuxer, "|   |   + Seek" );
  54.             ep->Down();
  55.             while( ( l = ep->Get() ) != NULL )
  56.             {
  57.                 if( MKV_IS_ID( l, KaxSeekID ) )
  58.                 {
  59.                     KaxSeekID &sid = *(KaxSeekID*)l;
  60.                     sid.ReadData( es.I_O() );
  61.                     id = EbmlId( sid.GetBuffer(), sid.GetSize() );
  62.                 }
  63.                 else if( MKV_IS_ID( l, KaxSeekPosition ) )
  64.                 {
  65.                     KaxSeekPosition &spos = *(KaxSeekPosition*)l;
  66.                     spos.ReadData( es.I_O() );
  67.                     i_pos = (int64_t)segment->GetGlobalPosition( uint64( spos ) );
  68.                 }
  69.                 else
  70.                 {
  71.                     /* Many mkvmerge files hit this case. It seems to be a broken SeekHead */
  72.                     msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name()  );
  73.                 }
  74.             }
  75.             ep->Up();
  76.             if( i_pos >= 0 )
  77.             {
  78.                 if( id == KaxCues::ClassInfos.GlobalId )
  79.                 {
  80.                     msg_Dbg( &sys.demuxer, "|   - cues at %"PRId64, i_pos );
  81.                     LoadSeekHeadItem( KaxCues::ClassInfos, i_pos );
  82.                 }
  83.                 else if( id == KaxInfo::ClassInfos.GlobalId )
  84.                 {
  85.                     msg_Dbg( &sys.demuxer, "|   - info at %"PRId64, i_pos );
  86.                     LoadSeekHeadItem( KaxInfo::ClassInfos, i_pos );
  87.                 }
  88.                 else if( id == KaxChapters::ClassInfos.GlobalId )
  89.                 {
  90.                     msg_Dbg( &sys.demuxer, "|   - chapters at %"PRId64, i_pos );
  91.                     LoadSeekHeadItem( KaxChapters::ClassInfos, i_pos );
  92.                 }
  93.                 else if( id == KaxTags::ClassInfos.GlobalId )
  94.                 {
  95.                     msg_Dbg( &sys.demuxer, "|   - tags at %"PRId64, i_pos );
  96.                     LoadSeekHeadItem( KaxTags::ClassInfos, i_pos );
  97.                 }
  98.                 else if( id == KaxSeekHead::ClassInfos.GlobalId )
  99.                 {
  100.                     msg_Dbg( &sys.demuxer, "|   - chained seekhead at %"PRId64, i_pos );
  101.                     LoadSeekHeadItem( KaxSeekHead::ClassInfos, i_pos );
  102.                 }
  103.                 else if( id == KaxTracks::ClassInfos.GlobalId )
  104.                 {
  105.                     msg_Dbg( &sys.demuxer, "|   - tracks at %"PRId64, i_pos );
  106.                     LoadSeekHeadItem( KaxTracks::ClassInfos, i_pos );
  107.                 }
  108.                 else if( id == KaxAttachments::ClassInfos.GlobalId )
  109.                 {
  110.                     msg_Dbg( &sys.demuxer, "|   - attachments at %"PRId64, i_pos );
  111.                     LoadSeekHeadItem( KaxAttachments::ClassInfos, i_pos );
  112.                 }
  113.                 else
  114.                     msg_Dbg( &sys.demuxer, "|   - unknown seekhead reference at %"PRId64, i_pos );
  115.             }
  116.         }
  117.         else
  118.             msg_Dbg( &sys.demuxer, "|   |   + ParseSeekHead Unknown (%s)", typeid(*l).name() );
  119.     }
  120.     delete ep;
  121. }
  122. /**
  123.  * Helper function to print the mkv parse tree
  124.  */
  125. static void MkvTree( demux_t & demuxer, int i_level, const char *psz_format, ... )
  126. {
  127.     va_list args;
  128.     if( i_level > 9 )
  129.     {
  130.         msg_Err( &demuxer, "too deep tree" );
  131.         return;
  132.     }
  133.     va_start( args, psz_format );
  134.     static const char psz_foo[] = "|   |   |   |   |   |   |   |   |   |";
  135.     char *psz_foo2 = (char*)malloc( i_level * 4 + 3 + strlen( psz_format ) );
  136.     strncpy( psz_foo2, psz_foo, 4 * i_level );
  137.     psz_foo2[ 4 * i_level ] = '+';
  138.     psz_foo2[ 4 * i_level + 1 ] = ' ';
  139.     strcpy( &psz_foo2[ 4 * i_level + 2 ], psz_format );
  140.     __msg_GenericVa( VLC_OBJECT(&demuxer),VLC_MSG_DBG, "mkv", psz_foo2, args );
  141.     free( psz_foo2 );
  142.     va_end( args );
  143. }
  144. /*****************************************************************************
  145.  * ParseTrackEntry:
  146.  *****************************************************************************/
  147. void matroska_segment_c::ParseTrackEntry( KaxTrackEntry *m )
  148. {
  149.     size_t i, j, k, n;
  150.     bool bSupported = true;
  151.     mkv_track_t *tk;
  152.     msg_Dbg( &sys.demuxer, "|   |   + Track Entry" );
  153.     tk = new mkv_track_t();
  154.     /* Init the track */
  155.     memset( tk, 0, sizeof( mkv_track_t ) );
  156.     es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
  157.     tk->fmt.psz_language = strdup("English");
  158.     tk->fmt.psz_description = NULL;
  159.     tk->b_default = true;
  160.     tk->b_enabled = true;
  161.     tk->b_silent = false;
  162.     tk->i_number = tracks.size() - 1;
  163.     tk->i_extra_data = 0;
  164.     tk->p_extra_data = NULL;
  165.     tk->psz_codec = NULL;
  166.     tk->b_dts_only = false;
  167.     tk->i_default_duration = 0;
  168.     tk->f_timecodescale = 1.0;
  169.     tk->b_inited = false;
  170.     tk->i_data_init = 0;
  171.     tk->p_data_init = NULL;
  172.     tk->psz_codec_name = NULL;
  173.     tk->psz_codec_settings = NULL;
  174.     tk->psz_codec_info_url = NULL;
  175.     tk->psz_codec_download_url = NULL;
  176.  
  177.     tk->i_compression_type = MATROSKA_COMPRESSION_NONE;
  178.     tk->p_compression_data = NULL;
  179.     for( i = 0; i < m->ListSize(); i++ )
  180.     {
  181.         EbmlElement *l = (*m)[i];
  182.         if( MKV_IS_ID( l, KaxTrackNumber ) )
  183.         {
  184.             KaxTrackNumber &tnum = *(KaxTrackNumber*)l;
  185.             tk->i_number = uint32( tnum );
  186.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Number=%u", uint32( tnum ) );
  187.         }
  188.         else  if( MKV_IS_ID( l, KaxTrackUID ) )
  189.         {
  190.             KaxTrackUID &tuid = *(KaxTrackUID*)l;
  191.             msg_Dbg( &sys.demuxer, "|   |   |   + Track UID=%u",  uint32( tuid ) );
  192.         }
  193.         else  if( MKV_IS_ID( l, KaxTrackType ) )
  194.         {
  195.             const char *psz_type;
  196.             KaxTrackType &ttype = *(KaxTrackType*)l;
  197.             switch( uint8(ttype) )
  198.             {
  199.                 case track_audio:
  200.                     psz_type = "audio";
  201.                     tk->fmt.i_cat = AUDIO_ES;
  202.                     break;
  203.                 case track_video:
  204.                     psz_type = "video";
  205.                     tk->fmt.i_cat = VIDEO_ES;
  206.                     break;
  207.                 case track_subtitle:
  208.                     psz_type = "subtitle";
  209.                     tk->fmt.i_cat = SPU_ES;
  210.                     break;
  211.                 case track_buttons:
  212.                     psz_type = "buttons";
  213.                     tk->fmt.i_cat = SPU_ES;
  214.                     break;
  215.                 default:
  216.                     psz_type = "unknown";
  217.                     tk->fmt.i_cat = UNKNOWN_ES;
  218.                     break;
  219.             }
  220.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Type=%s", psz_type );
  221.         }
  222. //        else  if( EbmlId( *l ) == KaxTrackFlagEnabled::ClassInfos.GlobalId )
  223. //        {
  224. //            KaxTrackFlagEnabled &fenb = *(KaxTrackFlagEnabled*)l;
  225. //            tk->b_enabled = uint32( fenb );
  226. //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Enabled=%u",
  227. //                     uint32( fenb )  );
  228. //        }
  229.         else  if( MKV_IS_ID( l, KaxTrackFlagDefault ) )
  230.         {
  231.             KaxTrackFlagDefault &fdef = *(KaxTrackFlagDefault*)l;
  232.             tk->b_default = uint32( fdef );
  233.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Default=%u", uint32( fdef )  );
  234.         }
  235.         else  if( MKV_IS_ID( l, KaxTrackFlagLacing ) )
  236.         {
  237.             KaxTrackFlagLacing &lac = *(KaxTrackFlagLacing*)l;
  238.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Lacing=%d", uint32( lac ) );
  239.         }
  240.         else  if( MKV_IS_ID( l, KaxTrackMinCache ) )
  241.         {
  242.             KaxTrackMinCache &cmin = *(KaxTrackMinCache*)l;
  243.             msg_Dbg( &sys.demuxer, "|   |   |   + Track MinCache=%d", uint32( cmin ) );
  244.         }
  245.         else  if( MKV_IS_ID( l, KaxTrackMaxCache ) )
  246.         {
  247.             KaxTrackMaxCache &cmax = *(KaxTrackMaxCache*)l;
  248.             msg_Dbg( &sys.demuxer, "|   |   |   + Track MaxCache=%d", uint32( cmax ) );
  249.         }
  250.         else  if( MKV_IS_ID( l, KaxTrackDefaultDuration ) )
  251.         {
  252.             KaxTrackDefaultDuration &defd = *(KaxTrackDefaultDuration*)l;
  253.             tk->i_default_duration = uint64(defd);
  254.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Default Duration=%"PRId64, uint64(defd) );
  255.         }
  256.         else  if( MKV_IS_ID( l, KaxTrackTimecodeScale ) )
  257.         {
  258.             KaxTrackTimecodeScale &ttcs = *(KaxTrackTimecodeScale*)l;
  259.             tk->f_timecodescale = float( ttcs );
  260.             msg_Dbg( &sys.demuxer, "|   |   |   + Track TimeCodeScale=%f", tk->f_timecodescale );
  261.         }
  262.         else if( MKV_IS_ID( l, KaxTrackName ) )
  263.         {
  264.             KaxTrackName &tname = *(KaxTrackName*)l;
  265.             tk->fmt.psz_description = ToUTF8( UTFstring( tname ) );
  266.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Name=%s", tk->fmt.psz_description );
  267.         }
  268.         else  if( MKV_IS_ID( l, KaxTrackLanguage ) )
  269.         {
  270.             KaxTrackLanguage &lang = *(KaxTrackLanguage*)l;
  271.             if ( tk->fmt.psz_language != NULL )
  272.                 free( tk->fmt.psz_language );
  273.             tk->fmt.psz_language = strdup( string( lang ).c_str() );
  274.             msg_Dbg( &sys.demuxer,
  275.                      "|   |   |   + Track Language=`%s'", tk->fmt.psz_language );
  276.         }
  277.         else  if( MKV_IS_ID( l, KaxCodecID ) )
  278.         {
  279.             KaxCodecID &codecid = *(KaxCodecID*)l;
  280.             tk->psz_codec = strdup( string( codecid ).c_str() );
  281.             msg_Dbg( &sys.demuxer, "|   |   |   + Track CodecId=%s", string( codecid ).c_str() );
  282.         }
  283.         else  if( MKV_IS_ID( l, KaxCodecPrivate ) )
  284.         {
  285.             KaxCodecPrivate &cpriv = *(KaxCodecPrivate*)l;
  286.             tk->i_extra_data = cpriv.GetSize();
  287.             if( tk->i_extra_data > 0 )
  288.             {
  289.                 tk->p_extra_data = (uint8_t*)malloc( tk->i_extra_data );
  290.                 memcpy( tk->p_extra_data, cpriv.GetBuffer(), tk->i_extra_data );
  291.             }
  292.             msg_Dbg( &sys.demuxer, "|   |   |   + Track CodecPrivate size=%"PRId64, cpriv.GetSize() );
  293.         }
  294.         else if( MKV_IS_ID( l, KaxCodecName ) )
  295.         {
  296.             KaxCodecName &cname = *(KaxCodecName*)l;
  297.             tk->psz_codec_name = ToUTF8( UTFstring( cname ) );
  298.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Name=%s", tk->psz_codec_name );
  299.         }
  300.         else if( MKV_IS_ID( l, KaxContentEncodings ) )
  301.         {
  302.             EbmlMaster *cencs = static_cast<EbmlMaster*>(l);
  303.             MkvTree( sys.demuxer, 3, "Content Encodings" );
  304.             if ( cencs->ListSize() > 1 )
  305.             {
  306.                 msg_Err( &sys.demuxer, "Multiple Compression method not supported" );
  307.                 bSupported = false;
  308.             }
  309.             for( j = 0; j < cencs->ListSize(); j++ )
  310.             {
  311.                 EbmlElement *l2 = (*cencs)[j];
  312.                 if( MKV_IS_ID( l2, KaxContentEncoding ) )
  313.                 {
  314.                     MkvTree( sys.demuxer, 4, "Content Encoding" );
  315.                     EbmlMaster *cenc = static_cast<EbmlMaster*>(l2);
  316.                     for( k = 0; k < cenc->ListSize(); k++ )
  317.                     {
  318.                         EbmlElement *l3 = (*cenc)[k];
  319.                         if( MKV_IS_ID( l3, KaxContentEncodingOrder ) )
  320.                         {
  321.                             KaxContentEncodingOrder &encord = *(KaxContentEncodingOrder*)l3;
  322.                             MkvTree( sys.demuxer, 5, "Order: %i", uint32( encord ) );
  323.                         }
  324.                         else if( MKV_IS_ID( l3, KaxContentEncodingScope ) )
  325.                         {
  326.                             KaxContentEncodingScope &encscope = *(KaxContentEncodingScope*)l3;
  327.                             MkvTree( sys.demuxer, 5, "Scope: %i", uint32( encscope ) );
  328.                         }
  329.                         else if( MKV_IS_ID( l3, KaxContentEncodingType ) )
  330.                         {
  331.                             KaxContentEncodingType &enctype = *(KaxContentEncodingType*)l3;
  332.                             MkvTree( sys.demuxer, 5, "Type: %i", uint32( enctype ) );
  333.                         }
  334.                         else if( MKV_IS_ID( l3, KaxContentCompression ) )
  335.                         {
  336.                             EbmlMaster *compr = static_cast<EbmlMaster*>(l3);
  337.                             MkvTree( sys.demuxer, 5, "Content Compression" );
  338.                             for( n = 0; n < compr->ListSize(); n++ )
  339.                             {
  340.                                 EbmlElement *l4 = (*compr)[n];
  341.                                 if( MKV_IS_ID( l4, KaxContentCompAlgo ) )
  342.                                 {
  343.                                     KaxContentCompAlgo &compalg = *(KaxContentCompAlgo*)l4;
  344.                                     MkvTree( sys.demuxer, 6, "Compression Algorithm: %i", uint32(compalg) );
  345.                                     tk->i_compression_type = uint32( compalg );
  346.                                     if ( ( tk->i_compression_type != MATROSKA_COMPRESSION_ZLIB ) &&
  347.                                          ( tk->i_compression_type != MATROSKA_COMPRESSION_HEADER ) )
  348.                                     {
  349.                                         msg_Err( &sys.demuxer, "Track Compression method %d not supported", tk->i_compression_type );
  350.                                         bSupported = false;
  351.                                     }
  352.                                 }
  353.                                 else if( MKV_IS_ID( l4, KaxContentCompSettings ) )
  354.                                 {
  355.                                     tk->p_compression_data = new KaxContentCompSettings( *(KaxContentCompSettings*)l4 );
  356.                                 }
  357.                                 else
  358.                                 {
  359.                                     MkvTree( sys.demuxer, 6, "Unknown (%s)", typeid(*l4).name() );
  360.                                 }
  361.                             }
  362.                         }
  363.                         else
  364.                         {
  365.                             MkvTree( sys.demuxer, 5, "Unknown (%s)", typeid(*l3).name() );
  366.                         }
  367.                     }
  368.                 }
  369.                 else
  370.                 {
  371.                     MkvTree( sys.demuxer, 4, "Unknown (%s)", typeid(*l2).name() );
  372.                 }
  373.             }
  374.         }
  375. //        else if( EbmlId( *l ) == KaxCodecSettings::ClassInfos.GlobalId )
  376. //        {
  377. //            KaxCodecSettings &cset = *(KaxCodecSettings*)l;
  378. //            tk->psz_codec_settings = ToUTF8( UTFstring( cset ) );
  379. //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Settings=%s", tk->psz_codec_settings );
  380. //        }
  381. //        else if( EbmlId( *l ) == KaxCodecInfoURL::ClassInfos.GlobalId )
  382. //        {
  383. //            KaxCodecInfoURL &ciurl = *(KaxCodecInfoURL*)l;
  384. //            tk->psz_codec_info_url = strdup( string( ciurl ).c_str() );
  385. //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Info URL=%s", tk->psz_codec_info_url );
  386. //        }
  387. //        else if( EbmlId( *l ) == KaxCodecDownloadURL::ClassInfos.GlobalId )
  388. //        {
  389. //            KaxCodecDownloadURL &cdurl = *(KaxCodecDownloadURL*)l;
  390. //            tk->psz_codec_download_url = strdup( string( cdurl ).c_str() );
  391. //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Info URL=%s", tk->psz_codec_download_url );
  392. //        }
  393. //        else if( EbmlId( *l ) == KaxCodecDecodeAll::ClassInfos.GlobalId )
  394. //        {
  395. //            KaxCodecDecodeAll &cdall = *(KaxCodecDecodeAll*)l;
  396. //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Codec Decode All=%u <== UNUSED", uint8( cdall ) );
  397. //        }
  398. //        else if( EbmlId( *l ) == KaxTrackOverlay::ClassInfos.GlobalId )
  399. //        {
  400. //            KaxTrackOverlay &tovr = *(KaxTrackOverlay*)l;
  401. //            msg_Dbg( &sys.demuxer, "|   |   |   + Track Overlay=%u <== UNUSED", uint32( tovr ) );
  402. //        }
  403.         else  if( MKV_IS_ID( l, KaxTrackVideo ) )
  404.         {
  405.             EbmlMaster *tkv = static_cast<EbmlMaster*>(l);
  406.             unsigned int j;
  407.             unsigned int i_crop_right = 0, i_crop_left = 0, i_crop_top = 0, i_crop_bottom = 0;
  408.             unsigned int i_display_unit = 0, i_display_width = 0, i_display_height = 0;
  409.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Video" );
  410.             tk->f_fps = 0.0;
  411.             tk->fmt.video.i_frame_rate_base = (unsigned int)(tk->i_default_duration / 1000);
  412.             tk->fmt.video.i_frame_rate = 1000000;
  413.  
  414.             for( j = 0; j < tkv->ListSize(); j++ )
  415.             {
  416.                 EbmlElement *l = (*tkv)[j];
  417. //                if( EbmlId( *el4 ) == KaxVideoFlagInterlaced::ClassInfos.GlobalId )
  418. //                {
  419. //                    KaxVideoFlagInterlaced &fint = *(KaxVideoFlagInterlaced*)el4;
  420. //                    msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Interlaced=%u", uint8( fint ) );
  421. //                }
  422. //                else if( EbmlId( *el4 ) == KaxVideoStereoMode::ClassInfos.GlobalId )
  423. //                {
  424. //                    KaxVideoStereoMode &stereo = *(KaxVideoStereoMode*)el4;
  425. //                    msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Stereo Mode=%u", uint8( stereo ) );
  426. //                }
  427. //                else
  428.                 if( MKV_IS_ID( l, KaxVideoPixelWidth ) )
  429.                 {
  430.                     KaxVideoPixelWidth &vwidth = *(KaxVideoPixelWidth*)l;
  431.                     tk->fmt.video.i_width += uint16( vwidth );
  432.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + width=%d", uint16( vwidth ) );
  433.                 }
  434.                 else if( MKV_IS_ID( l, KaxVideoPixelHeight ) )
  435.                 {
  436.                     KaxVideoPixelWidth &vheight = *(KaxVideoPixelWidth*)l;
  437.                     tk->fmt.video.i_height += uint16( vheight );
  438.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + height=%d", uint16( vheight ) );
  439.                 }
  440.                 else if( MKV_IS_ID( l, KaxVideoDisplayWidth ) )
  441.                 {
  442.                     KaxVideoDisplayWidth &vwidth = *(KaxVideoDisplayWidth*)l;
  443.                     i_display_width = uint16( vwidth );
  444.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + display width=%d", uint16( vwidth ) );
  445.                 }
  446.                 else if( MKV_IS_ID( l, KaxVideoDisplayHeight ) )
  447.                 {
  448.                     KaxVideoDisplayWidth &vheight = *(KaxVideoDisplayWidth*)l;
  449.                     i_display_height = uint16( vheight );
  450.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + display height=%d", uint16( vheight ) );
  451.                 }
  452.                 else if( MKV_IS_ID( l, KaxVideoPixelCropBottom ) )
  453.                 {
  454.                     KaxVideoPixelCropBottom &cropval = *(KaxVideoPixelCropBottom*)l;
  455.                     i_crop_bottom = uint16( cropval );
  456.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + crop pixel bottom=%d", uint16( cropval ) );
  457.                 }
  458.                 else if( MKV_IS_ID( l, KaxVideoPixelCropTop ) )
  459.                 {
  460.                     KaxVideoPixelCropTop &cropval = *(KaxVideoPixelCropTop*)l;
  461.                     i_crop_top = uint16( cropval );
  462.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + crop pixel top=%d", uint16( cropval ) );
  463.                 }
  464.                 else if( MKV_IS_ID( l, KaxVideoPixelCropRight ) )
  465.                 {
  466.                     KaxVideoPixelCropRight &cropval = *(KaxVideoPixelCropRight*)l;
  467.                     i_crop_right = uint16( cropval );
  468.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + crop pixel right=%d", uint16( cropval ) );
  469.                 }
  470.                 else if( MKV_IS_ID( l, KaxVideoPixelCropLeft ) )
  471.                 {
  472.                     KaxVideoPixelCropLeft &cropval = *(KaxVideoPixelCropLeft*)l;
  473.                     i_crop_left = uint16( cropval );
  474.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + crop pixel left=%d", uint16( cropval ) );
  475.                 }
  476.                 else if( MKV_IS_ID( l, KaxVideoFrameRate ) )
  477.                 {
  478.                     KaxVideoFrameRate &vfps = *(KaxVideoFrameRate*)l;
  479.                     tk->f_fps = float( vfps );
  480.                     msg_Dbg( &sys.demuxer, "   |   |   |   + fps=%f", float( vfps ) );
  481.                 }
  482.                 else if( EbmlId( *l ) == KaxVideoDisplayUnit::ClassInfos.GlobalId )
  483.                 {
  484.                     KaxVideoDisplayUnit &vdmode = *(KaxVideoDisplayUnit*)l;
  485.                     i_display_unit = uint8( vdmode );
  486.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + Track Video Display Unit=%s",
  487.                              uint8( vdmode ) == 0 ? "pixels" : ( uint8( vdmode ) == 1 ? "centimeters": "inches" ) );
  488.                 }
  489. //                else if( EbmlId( *l ) == KaxVideoAspectRatio::ClassInfos.GlobalId )
  490. //                {
  491. //                    KaxVideoAspectRatio &ratio = *(KaxVideoAspectRatio*)l;
  492. //                    msg_Dbg( &sys.demuxer, "   |   |   |   + Track Video Aspect Ratio Type=%u", uint8( ratio ) );
  493. //                }
  494. //                else if( EbmlId( *l ) == KaxVideoGamma::ClassInfos.GlobalId )
  495. //                {
  496. //                    KaxVideoGamma &gamma = *(KaxVideoGamma*)l;
  497. //                    msg_Dbg( &sys.demuxer, "   |   |   |   + gamma=%f", float( gamma ) );
  498. //                }
  499.                 else
  500.                 {
  501.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + Unknown (%s)", typeid(*l).name() );
  502.                 }
  503.             }
  504.             if( i_display_height && i_display_width )
  505.                 tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * i_display_width / i_display_height;
  506.             if( i_crop_left || i_crop_right || i_crop_top || i_crop_bottom )
  507.             {
  508.                 tk->fmt.video.i_visible_width = tk->fmt.video.i_width;
  509.                 tk->fmt.video.i_visible_height = tk->fmt.video.i_height;
  510.                 tk->fmt.video.i_x_offset = i_crop_left;
  511.                 tk->fmt.video.i_y_offset = i_crop_top;
  512.                 tk->fmt.video.i_visible_width -= i_crop_left + i_crop_right;
  513.                 tk->fmt.video.i_visible_height -= i_crop_top + i_crop_bottom;
  514.             }
  515.             /* FIXME: i_display_* allows you to not only set DAR, but also a zoom factor.
  516.                we do not support this atm */
  517.         }
  518.         else  if( MKV_IS_ID( l, KaxTrackAudio ) )
  519.         {
  520.             EbmlMaster *tka = static_cast<EbmlMaster*>(l);
  521.             unsigned int j;
  522.             msg_Dbg( &sys.demuxer, "|   |   |   + Track Audio" );
  523.             for( j = 0; j < tka->ListSize(); j++ )
  524.             {
  525.                 EbmlElement *l = (*tka)[j];
  526.                 if( MKV_IS_ID( l, KaxAudioSamplingFreq ) )
  527.                 {
  528.                     KaxAudioSamplingFreq &afreq = *(KaxAudioSamplingFreq*)l;
  529.                     tk->i_original_rate = tk->fmt.audio.i_rate = (int)float( afreq );
  530.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + afreq=%d", tk->fmt.audio.i_rate );
  531.                 }
  532.                 else if( MKV_IS_ID( l, KaxAudioOutputSamplingFreq ) )
  533.                 {
  534.                     KaxAudioOutputSamplingFreq &afreq = *(KaxAudioOutputSamplingFreq*)l;
  535.                     tk->fmt.audio.i_rate = (int)float( afreq );
  536.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + aoutfreq=%d", tk->fmt.audio.i_rate );
  537.                 }
  538.                 else if( MKV_IS_ID( l, KaxAudioChannels ) )
  539.                 {
  540.                     KaxAudioChannels &achan = *(KaxAudioChannels*)l;
  541.                     tk->fmt.audio.i_channels = uint8( achan );
  542.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + achan=%u", uint8( achan ) );
  543.                 }
  544.                 else if( MKV_IS_ID( l, KaxAudioBitDepth ) )
  545.                 {
  546.                     KaxAudioBitDepth &abits = *(KaxAudioBitDepth*)l;
  547.                     tk->fmt.audio.i_bitspersample = uint8( abits );
  548.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + abits=%u", uint8( abits ) );
  549.                 }
  550.                 else
  551.                 {
  552.                     msg_Dbg( &sys.demuxer, "|   |   |   |   + Unknown (%s)", typeid(*l).name() );
  553.                 }
  554.             }
  555.         }
  556.         else
  557.         {
  558.             msg_Dbg( &sys.demuxer, "|   |   |   + Unknown (%s)",
  559.                      typeid(*l).name() );
  560.         }
  561.     }
  562.     if ( bSupported )
  563.     {
  564.         tracks.push_back( tk );
  565.     }
  566.     else
  567.     {
  568.         msg_Err( &sys.demuxer, "Track Entry %d not supported", tk->i_number );
  569.         delete tk;
  570.     }
  571. }
  572. /*****************************************************************************
  573.  * ParseTracks:
  574.  *****************************************************************************/
  575. void matroska_segment_c::ParseTracks( KaxTracks *tracks )
  576. {
  577.     EbmlElement *el;
  578.     unsigned int i;
  579.     int i_upper_level = 0;
  580.     /* Master elements */
  581.     tracks->Read( es, tracks->Generic().Context, i_upper_level, el, true );
  582.     for( i = 0; i < tracks->ListSize(); i++ )
  583.     {
  584.         EbmlElement *l = (*tracks)[i];
  585.         if( MKV_IS_ID( l, KaxTrackEntry ) )
  586.         {
  587.             ParseTrackEntry( static_cast<KaxTrackEntry *>(l) );
  588.         }
  589.         else
  590.         {
  591.             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
  592.         }
  593.     }
  594. }
  595. /*****************************************************************************
  596.  * ParseInfo:
  597.  *****************************************************************************/
  598. void matroska_segment_c::ParseInfo( KaxInfo *info )
  599. {
  600.     EbmlElement *el;
  601.     EbmlMaster  *m;
  602.     size_t i, j;
  603.     int i_upper_level = 0;
  604.     /* Master elements */
  605.     m = static_cast<EbmlMaster *>(info);
  606.     m->Read( es, info->Generic().Context, i_upper_level, el, true );
  607.     for( i = 0; i < m->ListSize(); i++ )
  608.     {
  609.         EbmlElement *l = (*m)[i];
  610.         if( MKV_IS_ID( l, KaxSegmentUID ) )
  611.         {
  612.             if ( p_segment_uid == NULL )
  613.                 p_segment_uid = new KaxSegmentUID(*static_cast<KaxSegmentUID*>(l));
  614.             msg_Dbg( &sys.demuxer, "|   |   + UID=%d", *(uint32*)p_segment_uid->GetBuffer() );
  615.         }
  616.         else if( MKV_IS_ID( l, KaxPrevUID ) )
  617.         {
  618.             if ( p_prev_segment_uid == NULL )
  619.                 p_prev_segment_uid = new KaxPrevUID(*static_cast<KaxPrevUID*>(l));
  620.             msg_Dbg( &sys.demuxer, "|   |   + PrevUID=%d", *(uint32*)p_prev_segment_uid->GetBuffer() );
  621.         }
  622.         else if( MKV_IS_ID( l, KaxNextUID ) )
  623.         {
  624.             if ( p_next_segment_uid == NULL )
  625.                 p_next_segment_uid = new KaxNextUID(*static_cast<KaxNextUID*>(l));
  626.             msg_Dbg( &sys.demuxer, "|   |   + NextUID=%d", *(uint32*)p_next_segment_uid->GetBuffer() );
  627.         }
  628.         else if( MKV_IS_ID( l, KaxTimecodeScale ) )
  629.         {
  630.             KaxTimecodeScale &tcs = *(KaxTimecodeScale*)l;
  631.             i_timescale = uint64(tcs);
  632.             msg_Dbg( &sys.demuxer, "|   |   + TimecodeScale=%"PRId64,
  633.                      i_timescale );
  634.         }
  635.         else if( MKV_IS_ID( l, KaxDuration ) )
  636.         {
  637.             KaxDuration &dur = *(KaxDuration*)l;
  638.             i_duration = mtime_t( double( dur ) );
  639.             msg_Dbg( &sys.demuxer, "|   |   + Duration=%"PRId64,
  640.                      i_duration );
  641.         }
  642.         else if( MKV_IS_ID( l, KaxMuxingApp ) )
  643.         {
  644.             KaxMuxingApp &mapp = *(KaxMuxingApp*)l;
  645.             psz_muxing_application = ToUTF8( UTFstring( mapp ) );
  646.             msg_Dbg( &sys.demuxer, "|   |   + Muxing Application=%s",
  647.                      psz_muxing_application );
  648.         }
  649.         else if( MKV_IS_ID( l, KaxWritingApp ) )
  650.         {
  651.             KaxWritingApp &wapp = *(KaxWritingApp*)l;
  652.             psz_writing_application = ToUTF8( UTFstring( wapp ) );
  653.             msg_Dbg( &sys.demuxer, "|   |   + Writing Application=%s",
  654.                      psz_writing_application );
  655.         }
  656.         else if( MKV_IS_ID( l, KaxSegmentFilename ) )
  657.         {
  658.             KaxSegmentFilename &sfn = *(KaxSegmentFilename*)l;
  659.             psz_segment_filename = ToUTF8( UTFstring( sfn ) );
  660.             msg_Dbg( &sys.demuxer, "|   |   + Segment Filename=%s",
  661.                      psz_segment_filename );
  662.         }
  663.         else if( MKV_IS_ID( l, KaxTitle ) )
  664.         {
  665.             KaxTitle &title = *(KaxTitle*)l;
  666.             psz_title = ToUTF8( UTFstring( title ) );
  667.             msg_Dbg( &sys.demuxer, "|   |   + Title=%s", psz_title );
  668.         }
  669.         else if( MKV_IS_ID( l, KaxSegmentFamily ) )
  670.         {
  671.             KaxSegmentFamily *uid = static_cast<KaxSegmentFamily*>(l);
  672.             families.push_back( new KaxSegmentFamily(*uid) );
  673.             msg_Dbg( &sys.demuxer, "|   |   + family=%d", *(uint32*)uid->GetBuffer() );
  674.         }
  675.         else if( MKV_IS_ID( l, KaxDateUTC ) )
  676.         {
  677.             KaxDateUTC &date = *(KaxDateUTC*)l;
  678.             time_t i_date;
  679.             struct tm tmres;
  680.             char   buffer[25];
  681.             i_date = date.GetEpochDate();
  682.             if( gmtime_r( &i_date, &tmres ) &&
  683.                 strftime( buffer, sizeof(buffer), "%a %b %d %H:%M:%S %Y",
  684.                           &tmres ) )
  685.             {
  686.                 psz_date_utc = strdup( buffer );
  687.                 msg_Dbg( &sys.demuxer, "|   |   + Date=%s", buffer );
  688.             }
  689.         }
  690.         else if( MKV_IS_ID( l, KaxChapterTranslate ) )
  691.         {
  692.             KaxChapterTranslate *p_trans = static_cast<KaxChapterTranslate*>( l );
  693.             chapter_translation_c *p_translate = new chapter_translation_c();
  694.             p_trans->Read( es, p_trans->Generic().Context, i_upper_level, el, true );
  695.             for( j = 0; j < p_trans->ListSize(); j++ )
  696.             {
  697.                 EbmlElement *l = (*p_trans)[j];
  698.                 if( MKV_IS_ID( l, KaxChapterTranslateEditionUID ) )
  699.                 {
  700.                     p_translate->editions.push_back( uint64( *static_cast<KaxChapterTranslateEditionUID*>( l ) ) );
  701.                 }
  702.                 else if( MKV_IS_ID( l, KaxChapterTranslateCodec ) )
  703.                 {
  704.                     p_translate->codec_id = uint32( *static_cast<KaxChapterTranslateCodec*>( l ) );
  705.                 }
  706.                 else if( MKV_IS_ID( l, KaxChapterTranslateID ) )
  707.                 {
  708.                     p_translate->p_translated = new KaxChapterTranslateID( *static_cast<KaxChapterTranslateID*>( l ) );
  709.                 }
  710.             }
  711.             translations.push_back( p_translate );
  712.         }
  713.         else
  714.         {
  715.             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
  716.         }
  717.     }
  718.     double f_dur = double(i_duration) * double(i_timescale) / 1000000.0;
  719.     i_duration = mtime_t(f_dur);
  720. }
  721. /*****************************************************************************
  722.  * ParseChapterAtom
  723.  *****************************************************************************/
  724. void matroska_segment_c::ParseChapterAtom( int i_level, KaxChapterAtom *ca, chapter_item_c & chapters )
  725. {
  726.     size_t i, j;
  727.     msg_Dbg( &sys.demuxer, "|   |   |   + ChapterAtom (level=%d)", i_level );
  728.     for( i = 0; i < ca->ListSize(); i++ )
  729.     {
  730.         EbmlElement *l = (*ca)[i];
  731.         if( MKV_IS_ID( l, KaxChapterUID ) )
  732.         {
  733.             chapters.i_uid = uint64_t(*(KaxChapterUID*)l);
  734.             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterUID: %lld", chapters.i_uid );
  735.         }
  736.         else if( MKV_IS_ID( l, KaxChapterFlagHidden ) )
  737.         {
  738.             KaxChapterFlagHidden &flag =*(KaxChapterFlagHidden*)l;
  739.             chapters.b_display_seekpoint = uint8( flag ) == 0;
  740.             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterFlagHidden: %s", chapters.b_display_seekpoint ? "no":"yes" );
  741.         }
  742.         else if( MKV_IS_ID( l, KaxChapterTimeStart ) )
  743.         {
  744.             KaxChapterTimeStart &start =*(KaxChapterTimeStart*)l;
  745.             chapters.i_start_time = uint64( start ) / INT64_C(1000);
  746.             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterTimeStart: %lld", chapters.i_start_time );
  747.         }
  748.         else if( MKV_IS_ID( l, KaxChapterTimeEnd ) )
  749.         {
  750.             KaxChapterTimeEnd &end =*(KaxChapterTimeEnd*)l;
  751.             chapters.i_end_time = uint64( end ) / INT64_C(1000);
  752.             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterTimeEnd: %lld", chapters.i_end_time );
  753.         }
  754.         else if( MKV_IS_ID( l, KaxChapterDisplay ) )
  755.         {
  756.             EbmlMaster *cd = static_cast<EbmlMaster *>(l);
  757.             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterDisplay" );
  758.             for( j = 0; j < cd->ListSize(); j++ )
  759.             {
  760.                 EbmlElement *l= (*cd)[j];
  761.                 if( MKV_IS_ID( l, KaxChapterString ) )
  762.                 {
  763.                     int k;
  764.                     KaxChapterString &name =*(KaxChapterString*)l;
  765.                     for (k = 0; k < i_level; k++)
  766.                         chapters.psz_name += '+';
  767.                     chapters.psz_name += ' ';
  768.                     char *psz_tmp_utf8 = ToUTF8( UTFstring( name ) );
  769.                     chapters.psz_name += psz_tmp_utf8;
  770.                     chapters.b_user_display = true;
  771.                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterString '%s'", psz_tmp_utf8 );
  772.                     free( psz_tmp_utf8 );
  773.                 }
  774.                 else if( MKV_IS_ID( l, KaxChapterLanguage ) )
  775.                 {
  776.                     KaxChapterLanguage &lang =*(KaxChapterLanguage*)l;
  777.                     const char *psz = string( lang ).c_str();
  778.                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterLanguage '%s'", psz );
  779.                 }
  780.                 else if( MKV_IS_ID( l, KaxChapterCountry ) )
  781.                 {
  782.                     KaxChapterCountry &ct =*(KaxChapterCountry*)l;
  783.                     const char *psz = string( ct ).c_str();
  784.                     msg_Dbg( &sys.demuxer, "|   |   |   |   |    + ChapterCountry '%s'", psz );
  785.                 }
  786.             }
  787.         }
  788.         else if( MKV_IS_ID( l, KaxChapterProcess ) )
  789.         {
  790.             msg_Dbg( &sys.demuxer, "|   |   |   |   + ChapterProcess" );
  791.             KaxChapterProcess *cp = static_cast<KaxChapterProcess *>(l);
  792.             chapter_codec_cmds_c *p_ccodec = NULL;
  793.             for( j = 0; j < cp->ListSize(); j++ )
  794.             {
  795.                 EbmlElement *k= (*cp)[j];
  796.                 if( MKV_IS_ID( k, KaxChapterProcessCodecID ) )
  797.                 {
  798.                     KaxChapterProcessCodecID *p_codec_id = static_cast<KaxChapterProcessCodecID*>( k );
  799.                     if ( uint32(*p_codec_id) == 0 )
  800.                         p_ccodec = new matroska_script_codec_c( sys );
  801.                     else if ( uint32(*p_codec_id) == 1 )
  802.                         p_ccodec = new dvd_chapter_codec_c( sys );
  803.                     break;
  804.                 }
  805.             }
  806.             if ( p_ccodec != NULL )
  807.             {
  808.                 for( j = 0; j < cp->ListSize(); j++ )
  809.                 {
  810.                     EbmlElement *k= (*cp)[j];
  811.                     if( MKV_IS_ID( k, KaxChapterProcessPrivate ) )
  812.                     {
  813.                         KaxChapterProcessPrivate * p_private = static_cast<KaxChapterProcessPrivate*>( k );
  814.                         p_ccodec->SetPrivate( *p_private );
  815.                     }
  816.                     else if( MKV_IS_ID( k, KaxChapterProcessCommand ) )
  817.                     {
  818.                         p_ccodec->AddCommand( *static_cast<KaxChapterProcessCommand*>( k ) );
  819.                     }
  820.                 }
  821.                 chapters.codecs.push_back( p_ccodec );
  822.             }
  823.         }
  824.         else if( MKV_IS_ID( l, KaxChapterAtom ) )
  825.         {
  826.             chapter_item_c *new_sub_chapter = new chapter_item_c();
  827.             ParseChapterAtom( i_level+1, static_cast<KaxChapterAtom *>(l), *new_sub_chapter );
  828.             new_sub_chapter->psz_parent = &chapters;
  829.             chapters.sub_chapters.push_back( new_sub_chapter );
  830.         }
  831.     }
  832. }
  833. /*****************************************************************************
  834.  * ParseAttachments:
  835.  *****************************************************************************/
  836. void matroska_segment_c::ParseAttachments( KaxAttachments *attachments )
  837. {
  838.     EbmlElement *el;
  839.     int i_upper_level = 0;
  840.     attachments->Read( es, attachments->Generic().Context, i_upper_level, el, true );
  841.     KaxAttached *attachedFile = FindChild<KaxAttached>( *attachments );
  842.     while( attachedFile && ( attachedFile->GetSize() > 0 ) )
  843.     {
  844.         std::string psz_mime_type  = GetChild<KaxMimeType>( *attachedFile );
  845.         KaxFileName  &file_name    = GetChild<KaxFileName>( *attachedFile );
  846.         KaxFileData  &img_data     = GetChild<KaxFileData>( *attachedFile );
  847.         attachment_c *new_attachment = new attachment_c();
  848.         if( new_attachment )
  849.         {
  850.             new_attachment->psz_file_name  = ToUTF8( UTFstring( file_name ) );
  851.             new_attachment->psz_mime_type  = psz_mime_type;
  852.             new_attachment->i_size         = img_data.GetSize();
  853.             new_attachment->p_data         = malloc( img_data.GetSize() );
  854.             if( new_attachment->p_data )
  855.             {
  856.                 memcpy( new_attachment->p_data, img_data.GetBuffer(), img_data.GetSize() );
  857.                 sys.stored_attachments.push_back( new_attachment );
  858.             }
  859.             else
  860.             {
  861.                 delete new_attachment;
  862.             }
  863.         }
  864.         attachedFile = &GetNextChild<KaxAttached>( *attachments, *attachedFile );
  865.     }
  866. }
  867. /*****************************************************************************
  868.  * ParseChapters:
  869.  *****************************************************************************/
  870. void matroska_segment_c::ParseChapters( KaxChapters *chapters )
  871. {
  872.     EbmlElement *el;
  873.     size_t i;
  874.     int i_upper_level = 0;
  875.     mtime_t i_dur;
  876.     /* Master elements */
  877.     chapters->Read( es, chapters->Generic().Context, i_upper_level, el, true );
  878.     for( i = 0; i < chapters->ListSize(); i++ )
  879.     {
  880.         EbmlElement *l = (*chapters)[i];
  881.         if( MKV_IS_ID( l, KaxEditionEntry ) )
  882.         {
  883.             chapter_edition_c *p_edition = new chapter_edition_c();
  884.  
  885.             EbmlMaster *E = static_cast<EbmlMaster *>(l );
  886.             size_t j;
  887.             msg_Dbg( &sys.demuxer, "|   |   + EditionEntry" );
  888.             for( j = 0; j < E->ListSize(); j++ )
  889.             {
  890.                 EbmlElement *l = (*E)[j];
  891.                 if( MKV_IS_ID( l, KaxChapterAtom ) )
  892.                 {
  893.                     chapter_item_c *new_sub_chapter = new chapter_item_c();
  894.                     ParseChapterAtom( 0, static_cast<KaxChapterAtom *>(l), *new_sub_chapter );
  895.                     p_edition->sub_chapters.push_back( new_sub_chapter );
  896.                 }
  897.                 else if( MKV_IS_ID( l, KaxEditionUID ) )
  898.                 {
  899.                     p_edition->i_uid = uint64(*static_cast<KaxEditionUID *>( l ));
  900.                 }
  901.                 else if( MKV_IS_ID( l, KaxEditionFlagOrdered ) )
  902.                 {
  903.                     p_edition->b_ordered = config_GetInt( &sys.demuxer, "mkv-use-ordered-chapters" ) ? (uint8(*static_cast<KaxEditionFlagOrdered *>( l )) != 0) : 0;
  904.                 }
  905.                 else if( MKV_IS_ID( l, KaxEditionFlagDefault ) )
  906.                 {
  907.                     if (uint8(*static_cast<KaxEditionFlagDefault *>( l )) != 0)
  908.                         i_default_edition = stored_editions.size();
  909.                 }
  910.                 else
  911.                 {
  912.                     msg_Dbg( &sys.demuxer, "|   |   |   + Unknown (%s)", typeid(*l).name() );
  913.                 }
  914.             }
  915.             stored_editions.push_back( p_edition );
  916.         }
  917.         else
  918.         {
  919.             msg_Dbg( &sys.demuxer, "|   |   + Unknown (%s)", typeid(*l).name() );
  920.         }
  921.     }
  922.     for( i = 0; i < stored_editions.size(); i++ )
  923.     {
  924.         stored_editions[i]->RefreshChapters( );
  925.     }
  926.  
  927.     if ( stored_editions.size() != 0 && stored_editions[i_default_edition]->b_ordered )
  928.     {
  929.         /* update the duration of the segment according to the sum of all sub chapters */
  930.         i_dur = stored_editions[i_default_edition]->Duration() / INT64_C(1000);
  931.         if (i_dur > 0)
  932.             i_duration = i_dur;
  933.     }
  934. }
  935. void matroska_segment_c::ParseCluster( )
  936. {
  937.     EbmlElement *el;
  938.     EbmlMaster  *m;
  939.     unsigned int i;
  940.     int i_upper_level = 0;
  941.     /* Master elements */
  942.     m = static_cast<EbmlMaster *>( cluster );
  943.     m->Read( es, cluster->Generic().Context, i_upper_level, el, true );
  944.     for( i = 0; i < m->ListSize(); i++ )
  945.     {
  946.         EbmlElement *l = (*m)[i];
  947.         if( MKV_IS_ID( l, KaxClusterTimecode ) )
  948.         {
  949.             KaxClusterTimecode &ctc = *(KaxClusterTimecode*)l;
  950.             cluster->InitTimecode( uint64( ctc ), i_timescale );
  951.             break;
  952.         }
  953.     }
  954.     i_start_time = cluster->GlobalTimecode() / 1000;
  955. }