[Android] Profiling

Felix Abecassis felix.abecassis at gmail.com
Tue Mar 18 18:39:01 CET 2014


Hello everyone,

A few months ago there was a patch by "prof" to benchmark vlc using gprof
through https://code.google.com/p/android-ndk-profiler/
Recently I've tried to reapply his patch to benchmark again but it didn't
work, I had undefined symbols for mcount (used by gprof). I've modified his
patch and it now works for me, you might also be interested in trying
yourself so I've enclosed both patches (vlc and vlc-android). I had to
disable some contribs that were causing some build issues. If you still
encounter build errors, please tell me.

The results I got are attached, they still look a bit suspicious since
total time reported by gprof changes a lot between different runs with the
same video.
- With SW the video freezes immediately, I don't know why yet.
- With HW decoding, it's difficult to benchmark since MediaCodec is an
async API. However we can see the execution time is dominated by chroma
conversion routines: depending on the vout format, it's either yuv_rgb_neon
or deinterleave_chroma_neon. There could be room for improvement here.
- With full HW acceleration, we don't have the chroma conversion functions.
We only have a handful of small functions left, most of the time is now
spent in audio decoding according to gprof.

 I've also tried to use callgrind but since we are not a fully native app,
it seems valgrind was analyzing all the Java part of our app, making the
app extremely slow. Given the architecture of valgrind I don't think it's
possible to only target libvlcjni.so. But I can help if you want to try and
have issues trying to make it work.

One last thing, if you have a Snapdragon processor you should consider
using Trepn (standalone APK and also an eclipse plugin) to get information
like power consumption, CPU frequency, CPU load, GPU frequency, etc.
https://developer.qualcomm.com/mobile-development/increase-app-performance/trepn-profiler
I've done some quick tests with this app and noticed power consumption with
full HW acceleration was approximately 65% of the power consumption with SW
decoding, so this is good news.

Let me know if you have an idea why SW decoding freezes with gprof.

-- 
Félix Abecassis
http://felix.abecassis.me
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.videolan.org/pipermail/android/attachments/20140318/52c1b74f/attachment-0001.html>
-------------- next part --------------
Flat profile:

Each sample counts as 0.01 seconds.
  %   cumulative   self              self     total           
 time   seconds   seconds    calls  ms/call  ms/call  name    
 89.41     21.11    21.11                             deinterleave_chroma_neon
  1.31     21.42     0.31    17914     0.02     0.02  decode_ics_info
  0.89     21.63     0.21     5972     0.04     0.04  Fl32toS16
  0.55     21.76     0.13                             ff_imdct_half_neon
  0.38     21.85     0.09     7006     0.01     0.01  Lookup
  0.38     21.94     0.09                             __gnu_mcount_nc
  0.34     22.02     0.08                             __emutls_get_address
  0.34     22.10     0.08                             ff_vector_fmul_window_neon
  0.34     22.18     0.08                             profCount
  0.25     22.24     0.06     6913     0.01     0.01  CopyOmxPicture
  0.25     22.30     0.06     6907     0.01     0.02  vout_new_buffer
  0.25     22.36     0.06     5969     0.01     0.01  aout_ChannelExtract
  0.25     22.42     0.06                             fft_pass_neon
  0.21     22.47     0.05   460619     0.00     0.00  vlc_mutex_unlock
  0.21     22.52     0.05    12870     0.00     0.00  input_clock_ConvertTS
  0.17     22.56     0.04   156222     0.00     0.00  mdate
  0.17     22.60     0.04    20150     0.00     0.01  ThreadDisplayPicture
  0.17     22.64     0.04    13732     0.00     0.02  DecodeVideo
  0.17     22.68     0.04                             __divdi3
  0.13     22.71     0.03   392860     0.00     0.00  vlc_mutex_lock
  0.13     22.74     0.03    74267     0.00     0.00  vlc_testcancel
  0.13     22.77     0.03    17916     0.00     0.00  av_frame_unref
  0.13     22.80     0.03    11929     0.00     0.05  DecodeAudio
  0.13     22.83     0.03     5972     0.01     0.01  aout_Interleave
  0.13     22.86     0.03     5971     0.01     0.08  aac_decode_frame
  0.13     22.89     0.03     1319     0.02     0.02  apply_ltp
  0.13     22.92     0.03                             fft16_neon
  0.08     22.94     0.02    37499     0.00     0.00  stats_Update
  0.08     22.96     0.02    31121     0.00     0.00  picture_Hold
  0.08     22.98     0.02    17307     0.00     0.00  picture_pool_Get
  0.08     23.00     0.02    13386     0.00     0.00  vout_AreDisplayPicturesInvalid
  0.08     23.02     0.02    10398     0.00     0.00  mwait
  0.08     23.04     0.02     8217     0.00     0.00  libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool)
  0.08     23.06     0.02     6923     0.00     0.00  Open
  0.08     23.08     0.02     6923     0.00     0.01  vout_FilterDisplay
  0.08     23.10     0.02     6846     0.00     0.06  DecoderDecodeVideo
  0.08     23.12     0.02     5973     0.00     0.06  decode_cpe
  0.08     23.14     0.02     5969     0.00     0.08  aac_decode_frame_int
  0.08     23.16     0.02     5969     0.00     0.01  avcodec_default_get_buffer2
  0.08     23.18     0.02        2    10.00   684.27  DecoderThread
  0.04     23.19     0.01   143289     0.00     0.00  av_buffer_unref
  0.04     23.20     0.01    65813     0.00     0.00  stream_Read
  0.04     23.21     0.01    49759     0.00     0.00  FileControl
  0.04     23.22     0.01    32911     0.00     0.00  Read
  0.04     23.23     0.01    32907     0.00     0.00  AStreamReadNoSeekStream
  0.04     23.24     0.01    31174     0.00     0.00  picture_Release
  0.04     23.25     0.01    30699     0.00     0.00  vlc_cond_timedwait
  0.04     23.26     0.01    30130     0.00     0.00  av_malloc
  0.04     23.27     0.01    27699     0.00     0.00  filter_chain_VideoFilter
  0.04     23.28     0.01    25194     0.00     0.00  block_generic_Release
  0.04     23.29     0.01    25186     0.00     0.00  block_Alloc
  0.04     23.30     0.01    13353     0.00     0.00  vout_control_Pop
  0.04     23.31     0.01    13319     0.00     0.00  vout_ManageDisplay
  0.04     23.32     0.01    12903     0.00     0.00  EsOutSend
  0.04     23.33     0.01    12893     0.00     0.00  input_DecoderDecode
  0.04     23.34     0.01    11940     0.00     0.00  av_get_channel_layout_nb_channels
  0.04     23.35     0.01    11937     0.00     0.00  av_buffer_pool_get
  0.04     23.36     0.01     8256     0.00     0.00  libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const
  0.04     23.37     0.01     7706     0.00     0.01  BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool)
  0.04     23.38     0.01     7702     0.00     0.01  matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*)
  0.04     23.39     0.01     7005     0.00     0.01  Find
  0.04     23.40     0.01     6925     0.00     0.01  Semiplanar_Planar_420_Filter
  0.04     23.41     0.01     6924     0.00     0.00  video_format_GetTransform
  0.04     23.42     0.01     6924     0.00     0.00  vout_IsDisplayFiltered
  0.04     23.43     0.01     6921     0.00     0.00  picture_CopyProperties
  0.04     23.44     0.01     6915     0.00     0.00  video_format_CopyCrop
  0.04     23.45     0.01     6911     0.00     0.02  GetVlcChromaSizes
  0.04     23.46     0.01     5974     0.00     0.00  TimeGet
  0.04     23.47     0.01     5972     0.00     0.00  spectral_to_sample
  0.04     23.48     0.01     5969     0.00     0.00  aout_volume_Amplify
  0.04     23.49     0.01     5967     0.00     0.00  aout_DecGetResetLost
  0.04     23.50     0.01      420     0.02     0.02  vlc_rwlock_unlock
  0.04     23.51     0.01      178     0.06     0.06  ff_init_vlc_sparse
  0.04     23.52     0.01                             __adddf3
  0.04     23.53     0.01                             __aeabi_idiv
  0.04     23.54     0.01                             __aeabi_ldivmod
  0.04     23.55     0.01                             __aeabi_uidiv
  0.04     23.56     0.01                             __aeabi_ul2d
  0.04     23.57     0.01                             __cmpdf2
  0.04     23.58     0.01                             __gnu_uldivmod_helper
  0.04     23.59     0.01                             fft128_neon
  0.04     23.60     0.01                             fft8_neon
  0.00     23.60     0.00    71997     0.00     0.00  av_free
  0.00     23.60     0.00    71794     0.00     0.00  av_freep
  0.00     23.60     0.00    68402     0.00     0.00  vlc_mutex_trylock
  0.00     23.60     0.00    63875     0.00     0.00  libebml::EbmlElement::GetSize() const
  0.00     23.60     0.00    49754     0.00     0.00  access_Control
  0.00     23.60     0.00    49521     0.00     0.00  AStreamControl
  0.00     23.60     0.00    49521     0.00     0.00  stream_vaControl
  0.00     23.60     0.00    49516     0.00     0.00  Control
  0.00     23.60     0.00    49516     0.00     0.00  stream_Control
  0.00     23.60     0.00    38651     0.00     0.00  libmatroska::DataBuffer::Size()
  0.00     23.60     0.00    33017     0.00     0.00  varcmp
  0.00     23.60     0.00    32908     0.00     0.00  vlc_stream_io_callback::read(void*, unsigned int)
  0.00     23.60     0.00    32906     0.00     0.00  AStreamReadStream
  0.00     23.60     0.00    29880     0.00     0.00  av_mallocz
  0.00     23.60     0.00    29868     0.00     0.00  libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&)
  0.00     23.60     0.00    27695     0.00     0.00  transform_GetBasicOps
  0.00     23.60     0.00    26822     0.00     0.00  vlc_cond_broadcast
  0.00     23.60     0.00    26146     0.00     0.00  av_opt_next
  0.00     23.60     0.00    25771     0.00     0.00  libmatroska::DataBuffer::Buffer()
  0.00     23.60     0.00    25317     0.00     0.00  TsStop
  0.00     23.60     0.00    25184     0.00     0.00  block_Init
  0.00     23.60     0.00    20729     0.00     0.00  FilterChainVideoFilter
  0.00     23.60     0.00    20260     0.00     0.00  vlc_cond_signal
  0.00     23.60     0.00    18826     0.00     0.00  DeleteDecoder
  0.00     23.60     0.00    17907     0.00     0.00  date_Get
  0.00     23.60     0.00    16587     0.00     0.00  AStreamSeekStream
  0.00     23.60     0.00    16586     0.00     0.00  vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode)
  0.00     23.60     0.00    16336     0.00     0.00  vlc_stream_io_callback::getFilePointer()
  0.00     23.60     0.00    15409     0.00     0.00  virtual_chapter_c::getSubChapterbyTimecode(long long)
  0.00     23.60     0.00    15404     0.00     0.00  virtual_edition_c::getChapterbyTimecode(long long)
  0.00     23.60     0.00    15401     0.00     0.00  virtual_segment_c::UpdateCurrentToChapter(demux_t&)
  0.00     23.60     0.00    15392     0.00     0.00  matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*)
  0.00     23.60     0.00    13811     0.00     0.00  Destroy
  0.00     23.60     0.00    13746     0.00     0.00  block_FifoSize
  0.00     23.60     0.00    13371     0.00     0.00  vout_ManageWrapper
  0.00     23.60     0.00    13368     0.00     0.00  libmatroska::DataBuffer::~DataBuffer()
  0.00     23.60     0.00    13334     0.00     0.00  vout_SetInterlacingState
  0.00     23.60     0.00    12920     0.00     0.00  vlc_restorecancel
  0.00     23.60     0.00    12909     0.00     0.00  Send
  0.00     23.60     0.00    12904     0.00     0.00  block_FifoPut
  0.00     23.60     0.00    12903     0.00     0.00  block_FifoGet
  0.00     23.60     0.00    12901     0.00     0.00  CmdExecuteSend
  0.00     23.60     0.00    12895     0.00     0.00  MemToBlock(unsigned char*, unsigned int, unsigned int)
  0.00     23.60     0.00    12883     0.00     0.00  input_DecoderHasFormatChanged
  0.00     23.60     0.00    12863     0.00     0.00  DecoderFixTs
  0.00     23.60     0.00    12859     0.00     0.00  input_DecoderIsCcPresent
  0.00     23.60     0.00    12761     0.00     0.00  vlc_savecancel
  0.00     23.60     0.00    12449     0.00     0.00  Control
  0.00     23.60     0.00    12449     0.00     0.00  EsOutControl
  0.00     23.60     0.00    12440     0.00     0.00  es_out_Control
  0.00     23.60     0.00    11942     0.00     0.00  av_sample_fmt_is_planar
  0.00     23.60     0.00    11940     0.00     0.00  av_packet_get_side_data
  0.00     23.60     0.00    11940     0.00     0.00  imdct_and_windowing
  0.00     23.60     0.00    11939     0.00     0.00  pool_release_buffer
  0.00     23.60     0.00    11924     0.00     0.00  av_buffer_create
  0.00     23.60     0.00    10463     0.00     0.00  vlc_mutex_init
  0.00     23.60     0.00    10437     0.00     0.00  vlc_cond_init
  0.00     23.60     0.00    10432     0.00     0.00  vlc_mutex_destroy
  0.00     23.60     0.00    10405     0.00     0.00  vlc_cond_destroy
  0.00     23.60     0.00    10373     0.00     0.00  vout_GetPicture
  0.00     23.60     0.00    10308     0.00     0.00  std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&)
  0.00     23.60     0.00     9946     0.00     0.03  GetOutput
  0.00     23.60     0.00     8899     0.00     0.00  libebml::CodedSizeLength(unsigned long long, unsigned int, bool)
  0.00     23.60     0.00     8692     0.00     0.00  libebml::EbmlElement::EbmlElement(unsigned long long, bool)
  0.00     23.60     0.00     8688     0.00     0.00  libebml::EbmlElement::~EbmlElement()
  0.00     23.60     0.00     8351     0.00     0.00  libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int)
  0.00     23.60     0.00     8351     0.00     0.00  libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int)
  0.00     23.60     0.00     8341     0.00     0.00  libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int)
  0.00     23.60     0.00     8250     0.00     0.00  libmatroska::KaxSimpleBlock::Generic() const
  0.00     23.60     0.00     8172     0.00     0.00  module_get_capability
  0.00     23.60     0.00     8172     0.00     0.00  module_provides
  0.00     23.60     0.00     8144     0.00     0.01  EbmlParser::Get(int)
  0.00     23.60     0.00     8129     0.00     0.00  libebml::EbmlBinary::~EbmlBinary()
  0.00     23.60     0.00     8127     0.00     0.00  libebml::EbmlBinary::EbmlBinary()
  0.00     23.60     0.00     8119     0.00     0.00  es_out_Control(es_out_t*, int, ...)
  0.00     23.60     0.00     7983     0.00     0.00  libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     23.60     0.00     7981     0.00     0.00  libmatroska::KaxSimpleBlock::~KaxSimpleBlock()
  0.00     23.60     0.00     7981     0.00     0.00  libmatroska::KaxInternalBlock::ReleaseFrames()
  0.00     23.60     0.00     7981     0.00     0.00  libmatroska::KaxInternalBlock::~KaxInternalBlock()
  0.00     23.60     0.00     7979     0.00     0.00  libmatroska::KaxSimpleBlock::Create()
  0.00     23.60     0.00     7979     0.00     0.00  libmatroska::KaxInternalBlock::ValidateSize() const
  0.00     23.60     0.00     7970     0.00     0.00  libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     23.60     0.00     7969     0.00     0.00  std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&)
  0.00     23.60     0.00     7950     0.00     0.00  libebml::EbmlElement::IsDummy() const
  0.00     23.60     0.00     7843     0.00     0.00  EbmlParser::GetLevel() const
  0.00     23.60     0.00     7809     0.00     0.00  libmatroska::KaxCluster::Generic() const
  0.00     23.60     0.00     7739     0.00     0.00  EbmlParser::IsTopPresent(libebml::EbmlElement*) const
  0.00     23.60     0.00     7699     0.00     0.00  EsIsSelected
  0.00     23.60     0.00     7694     0.00     0.00  libmatroska::KaxCluster::GlobalTimecode() const
  0.00     23.60     0.00     7689     0.00     0.00  libmatroska::KaxCluster::GetBlockGlobalTimecode(short)
  0.00     23.60     0.00     7686     0.00     0.00  libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&)
  0.00     23.60     0.00     7685     0.00     0.00  libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&)
  0.00     23.60     0.00     6997     0.00     0.01  vlc_fourcc_GetCodec
  0.00     23.60     0.00     6987     0.00     0.01  ThreadDisplayPreparePicture
  0.00     23.60     0.00     6976     0.00     0.00  picture_fifo_Pop
  0.00     23.60     0.00     6926     0.00     0.00  AndroidLockSurface
  0.00     23.60     0.00     6926     0.00     0.00  Pool
  0.00     23.60     0.00     6925     0.00     0.00  VideoBufferNew
  0.00     23.60     0.00     6925     0.00     0.00  jni_LockAndGetAndroidJavaSurface
  0.00     23.60     0.00     6924     0.00     0.00  video_format_TransformTo
  0.00     23.60     0.00     6923     0.00     0.00  filter_chain_GetLength
  0.00     23.60     0.00     6923     0.00     0.00  video_format_ApplyRotation
  0.00     23.60     0.00     6923     0.00     0.00  video_format_TransformBy
  0.00     23.60     0.00     6922     0.00     0.00  spu_Render
  0.00     23.60     0.00     6922     0.00     0.00  vlc_fourcc_IsYUV
  0.00     23.60     0.00     6922     0.00     0.00  vout_UpdateDisplaySourceProperties
  0.00     23.60     0.00     6921     0.00     0.00  vout_snapshot_IsRequested
  0.00     23.60     0.00     6920     0.00     0.00  vlc_fourcc_AreUVPlanesSwapped
  0.00     23.60     0.00     6919     0.00     0.00  jni_UnlockAndroidSurface
  0.00     23.60     0.00     6918     0.00     0.00  Display
  0.00     23.60     0.00     6916     0.00     0.00  filter_chain_SubSource
  0.00     23.60     0.00     6908     0.00     0.00  vout_PutPicture
  0.00     23.60     0.00     6907     0.00     0.02  decoder_NewPicture
  0.00     23.60     0.00     6905     0.00     0.00  vout_GetResetStatistic
  0.00     23.60     0.00     6901     0.00     0.00  AndroidUnlockSurface
  0.00     23.60     0.00     6901     0.00     0.00  picture_fifo_Push
  0.00     23.60     0.00     6899     0.00     0.00  vout_control_Wake
  0.00     23.60     0.00     6874     0.00     0.00  picture_Reset
  0.00     23.60     0.00     5983     0.00     0.00  aout_OutputLock
  0.00     23.60     0.00     5979     0.00     0.00  aout_OutputUnlock
  0.00     23.60     0.00     5973     0.00     0.00  aout_OutputTimeGet
  0.00     23.60     0.00     5973     0.00     0.00  av_frame_free
  0.00     23.60     0.00     5972     0.00     0.00  DoWork
  0.00     23.60     0.00     5972     0.00     0.04  aout_FiltersPlay
  0.00     23.60     0.00     5971     0.00     0.00  av_frame_alloc
  0.00     23.60     0.00     5971     0.00     0.01  ff_get_buffer
  0.00     23.60     0.00     5971     0.00     0.00  get_che
  0.00     23.60     0.00     5970     0.00     0.00  Play
  0.00     23.60     0.00     5970     0.00     0.04  aout_DecPlay
  0.00     23.60     0.00     5970     0.00     0.08  avcodec_decode_audio4
  0.00     23.60     0.00     5969     0.00     0.00  FilterS16N
  0.00     23.60     0.00     5969     0.00     0.00  aout_OutputPlay
  0.00     23.60     0.00     5969     0.00     0.00  av_init_packet
  0.00     23.60     0.00     5969     0.00     0.00  date_Increment
  0.00     23.60     0.00     5968     0.00     0.00  SetupOutputFormat
  0.00     23.60     0.00     5967     0.00     0.00  aout_update_format
  0.00     23.60     0.00     5967     0.00     0.00  block_Realloc
  0.00     23.60     0.00     5965     0.00     0.16  DecoderDecodeAudio
  0.00     23.60     0.00     4608     0.00     0.00  libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&)
  0.00     23.60     0.00     4325     0.00     0.00  es_out_Control
  0.00     23.60     0.00     4104     0.00     0.00  tfind
  0.00     23.60     0.00     3488     0.00     0.00  picture_fifo_Peek
  0.00     23.60     0.00     3481     0.00     0.00  msleep
  0.00     23.60     0.00     3478     0.00     0.00  harmful_delay
  0.00     23.60     0.00     3477     0.00     0.00  vout_FixLeaks
  0.00     23.60     0.00     3329     0.00     0.00  DupDummy
  0.00     23.60     0.00     3102     0.00     0.00  vlc_object_alive
  0.00     23.60     0.00     2549     0.00     0.00  input_clock_GetWakeup
  0.00     23.60     0.00     2358     0.00     0.00  var_GetChecked
  0.00     23.60     0.00     1642     0.00     0.00  FreeDummy
  0.00     23.60     0.00     1591     0.00     0.00  CheckValue
  0.00     23.60     0.00     1408     0.00     0.00  split_radix_permutation
  0.00     23.60     0.00     1390     0.00     0.00  TriggerCallback
  0.00     23.60     0.00     1286     0.00     0.00  Control(demux_t*, int, std::__va_list)
  0.00     23.60     0.00     1286     0.00     0.00  demux_Control
  0.00     23.60     0.00     1282     0.00     0.11  Demux(demux_t*)
  0.00     23.60     0.00     1002     0.00     0.00  var_Change
  0.00     23.60     0.00      881     0.00     0.00  libvlc_event_send
  0.00     23.60     0.00      859     0.00     0.00  CmdExecuteControl
  0.00     23.60     0.00      848     0.00     0.00  input_DecoderGetFifoSize
  0.00     23.60     0.00      625     0.00     0.00  var_SetChecked
  0.00     23.60     0.00      582     0.00     0.00  input_event_changed
  0.00     23.60     0.00      493     0.00     0.00  AReadStream
  0.00     23.60     0.00      493     0.00     0.00  FileRead
  0.00     23.60     0.00      480     0.00     0.00  AStreamRefillStream
  0.00     23.60     0.00      451     0.00     0.00  getLong
  0.00     23.60     0.00      450     0.00     0.00  getMediaPlayer
  0.00     23.60     0.00      432     0.00     0.00  input_clock_GetState
  0.00     23.60     0.00      431     0.00     0.00  libvlc_media_player_get_state
  0.00     23.60     0.00      431     0.00     0.00  vlc_event_callback
  0.00     23.60     0.00      430     0.00     0.00  libvlc_media_player_is_playing
  0.00     23.60     0.00      426     0.00     0.00  input_SendEventLength
  0.00     23.60     0.00      426     0.00     0.00  input_SendEventPosition
  0.00     23.60     0.00      425     0.00     0.00  input_clock_Update
  0.00     23.60     0.00      420     0.00     0.00  vlc_rwlock_rdlock
  0.00     23.60     0.00      383     0.00     0.00  CmpString
  0.00     23.60     0.00      366     0.00     0.00  ft_mem_free
  0.00     23.60     0.00      361     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger()
  0.00     23.60     0.00      342     0.00     0.00  aout_FiltersAdjustResampling
  0.00     23.60     0.00      318     0.00     0.00  libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode)
  0.00     23.60     0.00      308     0.00     0.03  avcodec_register
  0.00     23.60     0.00      273     0.00     0.00  debug_log
  0.00     23.60     0.00      273     0.00     0.00  libvlc_logf
  0.00     23.60     0.00      273     0.00     0.02  vlc_Log
  0.00     23.60     0.00      273     0.00     0.02  vlc_vaLog
  0.00     23.60     0.00      242     0.00     0.00  libebml::GetEbmlGlobal_Context()
  0.00     23.60     0.00      224     0.00     0.00  tsearch
  0.00     23.60     0.00      224     0.00     0.01  var_Create
  0.00     23.60     0.00      210     0.00     0.00  libebml::EbmlUInteger::ValidateSize() const
  0.00     23.60     0.00      207     0.00     0.00  libebml::EbmlMaster::PushElement(libebml::EbmlElement&)
  0.00     23.60     0.00      201     0.00     0.00  std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&)
  0.00     23.60     0.00      190     0.00     0.00  libebml::IOCallback::readFully(void*, unsigned int)
  0.00     23.60     0.00      188     0.00     0.02  var_Inherit
  0.00     23.60     0.00      178     0.00     0.00  build_table
  0.00     23.60     0.00      177     0.00     0.00  libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     23.60     0.00      176     0.00     0.00  av_codec_is_decoder
  0.00     23.60     0.00      172     0.00     0.00  ft_alloc
  0.00     23.60     0.00      172     0.00     0.00  ft_free
  0.00     23.60     0.00      172     0.00     0.00  ft_mem_qalloc
  0.00     23.60     0.00      167     0.00     0.00  av_opt_find2
  0.00     23.60     0.00      157     0.00     0.00  Destroy
  0.00     23.60     0.00      154     0.00     0.00  config_FindConfig
  0.00     23.60     0.00      152     0.00     0.00  libebml::EbmlElement::SetDefaultSize(unsigned long long)
  0.00     23.60     0.00      142     0.00     0.00  av_opt_set_int
  0.00     23.60     0.00      137     0.00     0.00  CleanupVar
  0.00     23.60     0.00      137     0.00     0.00  libebml::EbmlMaster::ProcessMandatory()
  0.00     23.60     0.00      137     0.00     0.00  libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool)
  0.00     23.60     0.00      137     0.00     0.00  libebml::EbmlMaster::~EbmlMaster()
  0.00     23.60     0.00      137     0.00     0.00  libebml::EbmlCrc32::ResetCRC()
  0.00     23.60     0.00      137     0.00     0.00  libebml::EbmlCrc32::EbmlCrc32()
  0.00     23.60     0.00      137     0.00     0.00  libebml::EbmlMaster::ValidateSize() const
  0.00     23.60     0.00      135     0.00     0.00  vlc_gettext
  0.00     23.60     0.00      132     0.00     0.00  libmatroska::KaxCueTrackPositions::Generic() const
  0.00     23.60     0.00      127     0.00     0.00  libebml::EbmlUInteger::operator unsigned long long() const
  0.00     23.60     0.00      123     0.00     0.00  libmatroska::GetKaxGlobal_Context()
  0.00     23.60     0.00      121     0.00     0.00  EbmlParser::Down()
  0.00     23.60     0.00      120     0.00     0.00  EbmlParser::Up()
  0.00     23.60     0.00      116     0.00     0.00  ft_mem_alloc
  0.00     23.60     0.00      116     0.00     0.00  input_SendEventStatistics
  0.00     23.60     0.00      116     0.00     0.00  stats_ComputeInputStats
  0.00     23.60     0.00      115     0.00     0.00  DupString
  0.00     23.60     0.00      113     0.00     0.00  FreeString
  0.00     23.60     0.00      112     0.00     0.00  FT_Stream_GetULong
  0.00     23.60     0.00      105     0.00     0.06  build_canonical_huff
  0.00     23.60     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::Create()
  0.00     23.60     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::KaxClusterTimecode()
  0.00     23.60     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::~KaxClusterTimecode()
  0.00     23.60     0.00      102     0.00     0.00  FT_Stream_ReadFields
  0.00     23.60     0.00      102     0.00     0.00  ft_ansi_stream_io
  0.00     23.60     0.00       87     0.00     0.02  config_GetInt
  0.00     23.60     0.00       75     0.00     0.00  vlc_towc
  0.00     23.60     0.00       70     0.00     0.00  vlc_ureduce
  0.00     23.60     0.00       68     0.00     0.00  vlc_cond_wait
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueTime::Create()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueTime::KaxCueTime()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueTime::~KaxCueTime()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::Create()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::KaxCueTrack()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::~KaxCueTrack()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::Create()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::KaxCueClusterPosition()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition()
  0.00     23.60     0.00       66     0.00     0.00  libmatroska::KaxCuePoint::Generic() const
  0.00     23.60     0.00       65     0.00     0.18  generic_start
  0.00     23.60     0.00       65     0.00     0.00  module_Map
  0.00     23.60     0.00       65     0.00     0.00  module_load
  0.00     23.60     0.00       64     0.00     0.01  video_format_Setup
  0.00     23.60     0.00       56     0.00     0.00  FT_Stream_EnterFrame
  0.00     23.60     0.00       53     0.00     0.00  libmatroska::KaxClusterTimecode::Generic() const
  0.00     23.60     0.00       52     0.00     0.00  FT_Stream_ExitFrame
  0.00     23.60     0.00       52     0.00     0.00  libmatroska::KaxCluster::Create()
  0.00     23.60     0.00       52     0.00     0.00  libmatroska::KaxCluster::KaxCluster()
  0.00     23.60     0.00       51     0.00     0.00  libmatroska::KaxCluster::~KaxCluster()
  0.00     23.60     0.00       51     0.00     0.00  var_AddCallback
  0.00     23.60     0.00       46     0.00     0.00  vlc_object_hold
  0.00     23.60     0.00       45     0.00     0.02  config_GetPsz
  0.00     23.60     0.00       45     0.00     0.00  module_get_object
  0.00     23.60     0.00       44     0.00     0.00  CmpInt
  0.00     23.60     0.00       44     0.00     0.00  vlc_object_release
  0.00     23.60     0.00       42     0.00     0.00  tt_face_goto_table
  0.00     23.60     0.00       41     0.00     0.00  libebml::EbmlUInteger::operator unsigned short() const
  0.00     23.60     0.00       39     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger(unsigned long long)
  0.00     23.60     0.00       37     0.00     0.00  TagLib::RefCounter::deref()
  0.00     23.60     0.00       37     0.00     0.00  libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const
  0.00     23.60     0.00       37     0.00     0.00  libmatroska::KaxSegment::operator libebml::EbmlId const&() const
  0.00     23.60     0.00       36     0.00     0.00  FT_Add_Module
  0.00     23.60     0.00       36     0.00     0.00  FT_Remove_Module
  0.00     23.60     0.00       36     0.00     0.00  FT_Stream_Seek
  0.00     23.60     0.00       35     0.00     0.00  TagLib::RefCounter::RefCounter()
  0.00     23.60     0.00       35     0.00     0.00  TagLib::RefCounter::~RefCounter()
  0.00     23.60     0.00       34     0.00     0.00  var_DelCallback
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::Create()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::KaxCuePoint()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::~KaxCuePoint()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::Create()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::KaxCueTrackPositions()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::Create()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::KaxCueRelativePosition()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition()
  0.00     23.60     0.00       33     0.00     0.00  TagLib::String::StringPrivate::~StringPrivate()
  0.00     23.60     0.00       33     0.00     0.00  TagLib::String::~String()
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueTime::Generic() const
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueTrack::Generic() const
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueClusterPosition::Generic() const
  0.00     23.60     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::Generic() const
  0.00     23.60     0.00       33     0.00     0.00  es_format_Clean
  0.00     23.60     0.00       31     0.00     0.00  av_register_codec_parser
  0.00     23.60     0.00       31     0.00     0.00  block_FifoCount
  0.00     23.60     0.00       31     0.00     0.00  vlc_fourcc_GetChromaDescription
  0.00     23.60     0.00       30     0.00     0.00  PictureDestroy
  0.00     23.60     0.00       30     0.00     0.00  TagLib::String::copyFromLatin1(char const*, unsigned int)
  0.00     23.60     0.00       30     0.00     0.00  TagLib::String::String(char const*, TagLib::String::Type)
  0.00     23.60     0.00       30     0.00     0.03  picture_NewFromResource
  0.00     23.60     0.00       30     0.00     0.01  picture_Setup
  0.00     23.60     0.00       30     0.00     0.00  wmemset
  0.00     23.60     0.00       29     0.00     0.00  input_DecoderIsEmpty
  0.00     23.60     0.00       29     0.00     0.03  picture_NewFromFormat
  0.00     23.60     0.00       29     0.00     0.00  posix_memalign
  0.00     23.60     0.00       28     0.00     0.00  TagLib::String::operator==(TagLib::String const&) const
  0.00     23.60     0.00       28     0.00     0.00  es_format_Init
  0.00     23.60     0.00       28     0.00     0.00  ft_service_list_lookup
  0.00     23.60     0.00       27     0.00     0.00  libvlc_event_manager_register_event_type
  0.00     23.60     0.00       26     0.00     0.00  libebml::UTFstring::~UTFstring()
  0.00     23.60     0.00       26     0.00     0.00  es_format_Copy
  0.00     23.60     0.00       26     0.00     0.00  vout_control_Push
  0.00     23.60     0.00       25     0.00     0.00  av_pix_fmt_desc_get
  0.00     23.60     0.00       25     0.00     0.00  module_list_free
  0.00     23.60     0.00       25     0.00     0.00  wmemcmp
  0.00     23.60     0.00       24     0.00     0.00  libebml::UTFstring::UTFstring()
  0.00     23.60     0.00       24     0.00     0.00  ff_init_ff_cos_tabs
  0.00     23.60     0.00       24     0.00     0.00  var_TriggerCallback
  0.00     23.60     0.00       24     0.00     0.00  vlc_custom_create
  0.00     23.60     0.00       24     0.00     0.00  vout_control_cmd_Clean
  0.00     23.60     0.00       22     0.00     0.00  av_opt_set_double
  0.00     23.60     0.00       22     0.00     0.00  ft_mem_qrealloc
  0.00     23.60     0.00       22     0.00     0.00  ft_mem_realloc
  0.00     23.60     0.00       22     0.00     0.00  tdestroy
  0.00     23.60     0.00       22     0.00     0.00  var_DestroyAll
  0.00     23.60     0.00       20     0.00     0.00  FT_List_Finalize
  0.00     23.60     0.00       20     0.00     0.00  block_FifoWake
  0.00     23.60     0.00       19     0.00     0.00  libvlc_get_input_thread
  0.00     23.60     0.00       19     0.00     0.00  module_get_score
  0.00     23.60     0.00       18     0.00     0.00  FT_Stream_ReleaseFrame
  0.00     23.60     0.00       18     0.00     0.00  libebml::EbmlMaster::GetSize() const
  0.00     23.60     0.00       18     0.00     0.00  module_list_cap
  0.00     23.60     0.00       18     0.00     0.00  module_need
  0.00     23.60     0.00       18     0.00     0.06  vlc_module_load
  0.00     23.60     0.00       17     0.00     0.00  vlc_event_send
  0.00     23.60     0.00       16     0.00     0.00  FT_GlyphLoader_Done
  0.00     23.60     0.00       16     0.00     0.00  FT_GlyphLoader_New
  0.00     23.60     0.00       16     0.00     0.00  FT_GlyphLoader_Reset
  0.00     23.60     0.00       16     0.00     0.00  FT_GlyphLoader_Rewind
  0.00     23.60     0.00       16     0.00     0.00  FT_Lookup_Renderer
  0.00     23.60     0.00       16     0.00     0.00  FT_MulFix
  0.00     23.60     0.00       16     0.00     0.00  vlc_readdir
  0.00     23.60     0.00       15     0.00     0.02  config_GetFloat
  0.00     23.60     0.00       15     0.00     0.01  vlc_module_unload
  0.00     23.60     0.00       15     0.00     0.00  vlc_object_set_name
  0.00     23.60     0.00       14     0.00     0.00  CmpFloat
  0.00     23.60     0.00       14     0.00     0.00  filter_chain_VideoFlush
  0.00     23.60     0.00       14     0.00     0.03  module_unneed
  0.00     23.60     0.00       14     0.00     0.00  stream_Peek
  0.00     23.60     0.00       13     0.00     0.00  av_get_cpu_flags
  0.00     23.60     0.00       13     0.00     0.00  subtitles_Filter
  0.00     23.60     0.00       13     0.00     0.00  var_Destroy
  0.00     23.60     0.00       12     0.00     0.00  FT_List_Add
  0.00     23.60     0.00       12     0.00     0.00  LanguageSplit
  0.00     23.60     0.00       12     0.00     0.00  libebml::EbmlUnicodeString::EbmlUnicodeString()
  0.00     23.60     0.00       12     0.00     0.01  aout_BitsPerSample
  0.00     23.60     0.00       12     0.00     0.00  tt_face_get_name
  0.00     23.60     0.00       11     0.00     0.00  ASeek
  0.00     23.60     0.00       11     0.00     0.00  AStreamPeekStream
  0.00     23.60     0.00       11     0.00     0.00  FileSeek
  0.00     23.60     0.00       11     0.00     0.00  filter_chain_Reset
  0.00     23.60     0.00       11     0.00     0.01  generic_stop
  0.00     23.60     0.00       10     0.00     0.00  FT_DivFix
  0.00     23.60     0.00       10     0.00     0.00  FT_Get_Module
  0.00     23.60     0.00       10     0.00     0.00  FT_List_Find
  0.00     23.60     0.00       10     0.00     0.00  FT_List_Remove
  0.00     23.60     0.00       10     0.00     0.00  libmatroska::KaxSegment::Generic() const
  0.00     23.60     0.00       10     0.00     0.00  libmatroska::KaxSeek::Generic() const
  0.00     23.60     0.00       10     0.00     0.00  vout_IsEmpty
  0.00     23.60     0.00        9     0.00     0.03  es_out_Control
  0.00     23.60     0.00        8     0.00     0.00  FT_Stream_Pos
  0.00     23.60     0.00        8     0.00     0.00  VoutVideoFilterStaticNewPicture
  0.00     23.60     0.00        8     0.00     0.00  libebml::EbmlUInteger::operator unsigned int() const
  0.00     23.60     0.00        8     0.00     0.00  event_attach
  0.00     23.60     0.00        8     0.00     0.00  input_SendEventCache
  0.00     23.60     0.00        8     0.00     0.00  libvlc_event_attach
  0.00     23.60     0.00        8     0.00     0.00  ps_mask_table_done
  0.00     23.60     0.00        8     0.00     0.00  sws_getCachedContext
  0.00     23.60     0.00        8     0.00     0.00  tdelete
  0.00     23.60     0.00        8     0.00     0.00  vlc_event_manager_register_event_type
  0.00     23.60     0.00        7     0.00     0.01  aout_FormatPrepare
  0.00     23.60     0.00        7     0.00     0.00  date_Set
  0.00     23.60     0.00        7     0.00     0.00  input_Control
  0.00     23.60     0.00        7     0.00     0.00  input_vaControl
  0.00     23.60     0.00        7     0.00     0.00  module_exists
  0.00     23.60     0.00        7     0.00     0.00  module_find
  0.00     23.60     0.00        7     0.00     0.00  module_list_get
  0.00     23.60     0.00        7     0.00     0.00  pthread_once
  0.00     23.60     0.00        7     0.00     0.00  vlc_CPU
  0.00     23.60     0.00        7     0.00     0.01  vlc_fourcc_GetDescription
  0.00     23.60     0.00        7     0.00     0.00  vlc_meta_GetExtra
  0.00     23.60     0.00        7     0.00     0.00  vout_control_PushInteger
  0.00     23.60     0.00        7     0.00     0.00  vout_control_PushString
  0.00     23.60     0.00        6     0.00     0.00  FT_CMap_New
  0.00     23.60     0.00        6     0.00     0.00  FT_Stream_ReadULong
  0.00     23.60     0.00        6     0.00     0.00  FixParameters
  0.00     23.60     0.00        6     0.00     0.00  GetFfmpegChroma
  0.00     23.60     0.00        6     0.00     0.00  VarListDel
  0.00     23.60     0.00        6     0.00     0.00  VarListSelect
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::Create()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::KaxMuxingApp()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::~KaxMuxingApp()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::Create()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::KaxWritingApp()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::~KaxWritingApp()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::Create()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::KaxSeekPosition()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::~KaxSeekPosition()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::Create()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::KaxTimecodeScale()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::~KaxTimecodeScale()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxSeekID::Create()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxSeekID::KaxSeekID()
  0.00     23.60     0.00        6     0.00     0.00  libmatroska::KaxSeekID::~KaxSeekID()
  0.00     23.60     0.00        6     0.00     0.00  libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long)
  0.00     23.60     0.00        6     0.00     0.01  libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long)
  0.00     23.60     0.00        6     0.00     0.00  libebml::EbmlBinary::ValidateSize() const
  0.00     23.60     0.00        6     0.00     0.00  libebml::EbmlString::operator std::string const&() const
  0.00     23.60     0.00        6     0.00     0.00  aout_DecIsEmpty
  0.00     23.60     0.00        6     0.00     0.00  av_get_bits_per_pixel
  0.00     23.60     0.00        6     0.00     0.00  block_FifoEmpty
  0.00     23.60     0.00        6     0.00     0.00  ff_fft_end
  0.00     23.60     0.00        6     0.00     0.00  ff_fft_init
  0.00     23.60     0.00        6     0.00     0.00  ff_fft_init_arm
  0.00     23.60     0.00        6     0.00     0.00  ff_mdct_end
  0.00     23.60     0.00        6     0.00     0.00  ff_mdct_init
  0.00     23.60     0.00        6     0.00     0.00  ft_cmap_done_internal
  0.00     23.60     0.00        6     0.00     0.00  ft_smooth_init
  0.00     23.60     0.00        6     0.00     0.00  ft_validator_init
  0.00     23.60     0.00        6     0.00     0.00  gray_raster_done
  0.00     23.60     0.00        6     0.00     0.00  gray_raster_new
  0.00     23.60     0.00        6     0.00     0.00  gray_raster_reset
  0.00     23.60     0.00        6     0.00     0.00  input_GetItem
  0.00     23.60     0.00        6     0.00     0.00  input_item_meta_changed
  0.00     23.60     0.00        6     0.00     0.00  libvlc_media_release
  0.00     23.60     0.00        6     0.00     0.00  libvlc_media_retain
  0.00     23.60     0.00        6     0.00     0.00  picture_fifo_Flush
  0.00     23.60     0.00        6     0.00     0.00  sfnt_get_interface
  0.00     23.60     0.00        6     0.00     0.00  tdestroy_recurse
  0.00     23.60     0.00        6     0.00     0.00  vlc_global_mutex
  0.00     23.60     0.00        6     0.00     0.00  vlc_meta_Get
  0.00     23.60     0.00        6     0.00     0.00  vout_control_PushPair
  0.00     23.60     0.00        5     0.00     0.02  FilterRelease
  0.00     23.60     0.00        5     0.00     0.00  GetParameters
  0.00     23.60     0.00        5     0.00     0.00  ThreadFlush
  0.00     23.60     0.00        5     0.00     0.00  es_out_Control(es_out_t*, int, ...)
  0.00     23.60     0.00        5     0.00     0.02  EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*)
  0.00     23.60     0.00        5     0.00     0.00  EbmlParser::~EbmlParser()
  0.00     23.60     0.00        5     0.00     0.00  libebml::EbmlMaster::SetSizeInfinite(bool)
  0.00     23.60     0.00        5     0.00     0.64  libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode)
  0.00     23.60     0.00        5     0.00     0.00  aout_FormatPrintChannels
  0.00     23.60     0.00        5     0.00     0.00  av_buffer_pool_uninit
  0.00     23.60     0.00        5     0.00     0.00  decode_URI
  0.00     23.60     0.00        5     0.00     0.00  filter_chain_Delete
  0.00     23.60     0.00        5     0.00     0.00  filter_chain_New
  0.00     23.60     0.00        5     0.00     0.00  input_SendEventEsDel
  0.00     23.60     0.00        5     0.00     0.00  set_state
  0.00     23.60     0.00        5     0.00     0.00  vlc_event_attach
  0.00     23.60     0.00        5     0.00     0.00  vlc_mutex_init_recursive
  0.00     23.60     0.00        5     0.00     0.00  vlc_opendir
  0.00     23.60     0.00        5     0.00     0.00  vout_control_WaitEmpty
  0.00     23.60     0.00        4     0.00     0.00  AboveCallback
  0.00     23.60     0.00        4     0.00     0.00  Control
  0.00     23.60     0.00        4     0.00     0.00  Dummy_Select
  0.00     23.60     0.00        4     0.00     0.00  EsOutSelect
  0.00     23.60     0.00        4     0.00     0.00  FT_Get_Module_Interface
  0.00     23.60     0.00        4     0.00     0.00  FT_Stream_ExtractFrame
  0.00     23.60     0.00        4     0.00     0.00  FT_Stream_Read
  0.00     23.60     0.00        4     0.00     0.00  FT_Stream_ReadAt
  0.00     23.60     0.00        4     0.00     0.00  InputItemFindCat
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxCodecID::Create()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxCodecID::KaxCodecID()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxCodecID::~KaxCodecID()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::Create()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::KaxTrackUID()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::~KaxTrackUID()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackType::Create()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackType::KaxTrackType()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackType::~KaxTrackType()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::Create()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::KaxTrackNumber()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::~KaxTrackNumber()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxInfo::Create()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxInfo::KaxInfo()
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxInfo::~KaxInfo()
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlString::EbmlString()
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlVoid::Create()
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlVoid::EbmlVoid()
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlVoid::~EbmlVoid()
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision)
  0.00     23.60     0.00        4     0.00     0.00  libebml::UTFstring::UpdateFromUTF8()
  0.00     23.60     0.00        4     0.00     0.00  libebml::UTFstring::SetUTF8(std::string const&)
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxCodecID::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxDateUTC::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxDuration::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxMuxingApp::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackType::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxSegmentUID::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackEntry::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxWritingApp::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxCodecPrivate::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTimecodeScale::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libmatroska::KaxTrackDefaultDuration::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlString::ValidateSize() const
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlUInteger::operator unsigned char() const
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlUnicodeString::ValidateSize() const
  0.00     23.60     0.00        4     0.00     0.00  libebml::EbmlVoid::Generic() const
  0.00     23.60     0.00        4     0.00     0.00  es_format_InitFromVideo
  0.00     23.60     0.00        4     0.00     0.00  filter_chain_GetFmtOut
  0.00     23.60     0.00        4     0.00     0.00  find_unicode_charmap
  0.00     23.60     0.00        4     0.00     0.00  ft_realloc
  0.00     23.60     0.00        4     0.00     0.02  info_category_AddInfo
  0.00     23.60     0.00        4     0.00     0.00  input_ChangeState
  0.00     23.60     0.00        4     0.00     0.00  input_DecoderStopWait
  0.00     23.60     0.00        4     0.00     0.00  input_SendEventMetaInfo
  0.00     23.60     0.00        4     0.00     0.00  input_item_GetMeta
  0.00     23.60     0.00        4     0.00     0.00  input_item_ReplaceInfos
  0.00     23.60     0.00        4     0.00     0.00  input_item_UpdateTracksInfo
  0.00     23.60     0.00        4     0.00     0.03  input_resource_RequestVout
  0.00     23.60     0.00        4     0.00     0.00  libvlc_media_set_state
  0.00     23.60     0.00        4     0.00     0.00  make_filters_from_proto
  0.00     23.60     0.00        4     0.00     0.00  make_path
  0.00     23.60     0.00        4     0.00     0.04  picture_New
  0.00     23.60     0.00        4     0.00     0.00  tt_cmap4_init
  0.00     23.60     0.00        4     0.00     0.00  tt_cmap4_validate
  0.00     23.60     0.00        4     0.00     0.00  tt_face_load_hhea
  0.00     23.60     0.00        4     0.00     0.00  tt_name_entry_ascii_from_utf16
  0.00     23.60     0.00        4     0.00     0.00  var_Set
  0.00     23.60     0.00        4     0.00     0.00  vlc_clone
  0.00     23.60     0.00        4     0.00     0.00  vlc_clone_attr
  0.00     23.60     0.00        4     0.00     0.00  vlc_join
  0.00     23.60     0.00        4     0.00     0.00  vlc_sem_destroy
  0.00     23.60     0.00        4     0.00     0.00  vlc_sem_init
  0.00     23.60     0.00        4     0.00     0.00  vlc_sem_post
  0.00     23.60     0.00        4     0.00     0.00  vlc_sem_wait
  0.00     23.60     0.00        4     0.00     0.00  vout_ControlChangeWindowState
  0.00     23.60     0.00        4     0.00     0.00  vout_SetWindowState
  0.00     23.60     0.00        4     0.00     0.00  vout_display_Control
  0.00     23.60     0.00        3     0.00     0.00  Create
  0.00     23.60     0.00        3     0.00     0.00  Flush
  0.00     23.60     0.00        3     0.00     0.01  InputDelCallbacks
  0.00     23.60     0.00        3     0.00     0.00  Peek
  0.00     23.60     0.00        3     0.00     0.00  VarListAdd
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxSegmentUID::~KaxSegmentUID()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::Create()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::KaxTrackMinCache()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::~KaxTrackMinCache()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::Create()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxSeek::Create()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxSeek::KaxSeek()
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxSeek::~KaxSeek()
  0.00     23.60     0.00        3     0.00     1.60  matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long)
  0.00     23.60     0.00        3     0.00     0.00  libebml::EbmlString::EbmlString(std::string const&)
  0.00     23.60     0.00        3     0.00     0.00  libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&)
  0.00     23.60     0.00        3     0.00     0.00  libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxSeekHead::Generic() const
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxSeekPosition::Generic() const
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxSeekID::ValidateSize() const
  0.00     23.60     0.00        3     0.00     0.00  libmatroska::KaxSeekID::Generic() const
  0.00     23.60     0.00        3     0.00     0.00  libebml::EMaxIdLength::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        3     0.00     0.00  libebml::EReadVersion::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        3     0.00     0.00  libebml::EMaxSizeLength::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        3     0.00     0.00  libebml::EDocType::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        3     0.00     0.00  libebml::EVersion::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        3     0.00     0.00  libebml::EbmlFloat::ValidateSize() const
  0.00     23.60     0.00        3     0.00     0.00  aout_OutputFlush
  0.00     23.60     0.00        3     0.00     0.00  av_opt_set_defaults
  0.00     23.60     0.00        3     0.00     0.00  config_GetType
  0.00     23.60     0.00        3     0.00     0.00  convert_omx_to_profile_idc
  0.00     23.60     0.00        3     0.00     0.00  ff_init_ff_sine_windows
  0.00     23.60     0.00        3     0.00     0.00  ff_sine_window_init
  0.00     23.60     0.00        3     0.00     0.00  input_SendEventEsSelect
  0.00     23.60     0.00        3     0.00     0.00  input_SendEventMeta
  0.00     23.60     0.00        3     0.00     0.00  input_SendEventState
  0.00     23.60     0.00        3     0.00     0.00  input_item_AddOption
  0.00     23.60     0.00        3     0.00     0.00  input_item_SetErrorWhenReading
  0.00     23.60     0.00        3     0.00     0.00  input_item_SetMeta
  0.00     23.60     0.00        3     0.00     0.00  libvlc_media_add_option
  0.00     23.60     0.00        3     0.00     0.00  libvlc_media_add_option_flag
  0.00     23.60     0.00        3     0.00     0.00  libvlc_retain
  0.00     23.60     0.00        3     0.00     0.00  picture_pool_Delete
  0.00     23.60     0.00        3     0.00     0.00  stream_CommonDelete
  0.00     23.60     0.00        3     0.00     0.00  stream_CommonNew
  0.00     23.60     0.00        3     0.00     0.01  var_OptionParse
  0.00     23.60     0.00        3     0.00     0.00  video_format_IsSimilar
  0.00     23.60     0.00        3     0.00     0.00  vlc_inhibit_Destroy
  0.00     23.60     0.00        3     0.00     0.00  vlc_meta_New
  0.00     23.60     0.00        3     0.00     0.00  vlc_meta_Set
  0.00     23.60     0.00        3     0.00     0.00  vlc_object_set_destructor
  0.00     23.60     0.00        3     0.00     0.00  vout_Flush
  0.00     23.60     0.00        3     0.00     0.00  vout_control_PushTime
  0.00     23.60     0.00        3     0.00     0.00  vout_control_PushVoid
  0.00     23.60     0.00        2     0.00     0.00  Add
  0.00     23.60     0.00        2     0.00     0.00  ArchitectureSpecificCopyHooksDestroy
  0.00     23.60     0.00        2     0.00     0.00  AspectCallback
  0.00     23.60     0.00        2     0.00     0.01  CmdExecuteDel
  0.00     23.60     0.00        2     0.00     0.00  ControlPause
  0.00     23.60     0.00        2     0.00     0.33  Create
  0.00     23.60     0.00        2     0.00     0.00  CreateDecoder
  0.00     23.60     0.00        2     0.00     0.00  CreateFilter
  0.00     23.60     0.00        2     0.00     0.00  CropCallback
  0.00     23.60     0.00        2     0.00     0.00  DecoderBlockFlushNew
  0.00     23.60     0.00        2     0.00     0.00  DecoderFlush
  0.00     23.60     0.00        2     0.00     0.00  DecoderUpdateFormatLocked
  0.00     23.60     0.00        2     0.00     0.04  DeinterlaceCallback
  0.00     23.60     0.00        2     0.00     0.01  Del
  0.00     23.60     0.00        2     0.00     0.00  Destroy
  0.00     23.60     0.00        2     0.00     0.00  EsCreateDecoder
  0.00     23.60     0.00        2     0.00     0.06  EsOutAdd
  0.00     23.60     0.00        2     0.00     0.01  EsOutDel
  0.00     23.60     0.00        2     0.00     0.00  EsOutProgramFind
  0.00     23.60     0.00        2     0.00     0.00  EsSelect
  0.00     23.60     0.00        2     0.00     0.00  EsUnselect
  0.00     23.60     0.00        2     0.00     0.00  FT_Add_Default_Modules
  0.00     23.60     0.00        2     0.00     0.00  FT_Done_Face
  0.00     23.60     0.00        2     0.00     0.00  FT_Done_FreeType
  0.00     23.60     0.00        2     0.00     0.00  FT_Done_GlyphSlot
  0.00     23.60     0.00        2     0.00     0.00  FT_Done_Library
  0.00     23.60     0.00        2     0.00     0.00  FT_Done_Memory
  0.00     23.60     0.00        2     0.00     0.00  FT_GlyphLoader_Adjust_Points
  0.00     23.60     0.00        2     0.00     0.00  FT_GlyphLoader_CreateExtra
  0.00     23.60     0.00        2     0.00     0.00  FT_Init_FreeType
  0.00     23.60     0.00        2     0.00     0.00  FT_New_Face
  0.00     23.60     0.00        2     0.00     0.00  FT_New_GlyphSlot
  0.00     23.60     0.00        2     0.00     0.00  FT_New_Library
  0.00     23.60     0.00        2     0.00     0.00  FT_New_Memory
  0.00     23.60     0.00        2     0.00     0.00  FT_New_Size
  0.00     23.60     0.00        2     0.00     0.00  FT_Open_Face
  0.00     23.60     0.00        2     0.00     0.00  FT_Request_Metrics
  0.00     23.60     0.00        2     0.00     0.00  FT_Request_Size
  0.00     23.60     0.00        2     0.00     0.00  FT_Select_Charmap
  0.00     23.60     0.00        2     0.00     0.00  FT_Set_Pixel_Sizes
  0.00     23.60     0.00        2     0.00     0.00  FT_Stream_Close
  0.00     23.60     0.00        2     0.00     0.00  FT_Stream_Free
  0.00     23.60     0.00        2     0.00     0.00  FT_Stream_New
  0.00     23.60     0.00        2     0.00     0.00  FT_Stream_Open
  0.00     23.60     0.00        2     0.00     0.00  FT_Stroker_Done
  0.00     23.60     0.00        2     0.00     0.00  FT_Stroker_New
  0.00     23.60     0.00        2     0.00     0.00  FullscreenCallback
  0.00     23.60     0.00        2     0.00     0.02  GetFontSize
  0.00     23.60     0.00        2     0.00     0.00  Get_Interface
  0.00     23.60     0.00        2     0.00     0.00  LanguageGetCode
  0.00     23.60     0.00        2     0.00     0.00  Open
  0.00     23.60     0.00        2     0.00     0.13  OpenDecoder
  0.00     23.60     0.00        2     0.00     0.12  OpenScaler
  0.00     23.60     0.00        2     0.00     0.00  ScaleCallback
  0.00     23.60     0.00        2     0.00     0.00  SpuRenderCreateAndLoadScale
  0.00     23.60     0.00        2     0.00     0.02  SpuRenderCreateAndLoadText
  0.00     23.60     0.00        2     0.00     0.00  SubFilterCallback
  0.00     23.60     0.00        2     0.00     0.00  SubMarginCallback
  0.00     23.60     0.00        2     0.00     0.00  SubSourceCallback
  0.00     23.60     0.00        2     0.00     0.00  T1_Driver_Done
  0.00     23.60     0.00        2     0.00     0.00  T1_Driver_Init
  0.00     23.60     0.00        2     0.00     0.00  T42_Driver_Done
  0.00     23.60     0.00        2     0.00     0.00  T42_Driver_Init
  0.00     23.60     0.00        2     0.00     0.00  T42_Get_Interface
  0.00     23.60     0.00        2     0.00     0.00  TT_Done_Context
  0.00     23.60     0.00        2     0.00     0.00  TT_New_Context
  0.00     23.60     0.00        2     0.00     0.04  ThreadChangeFilters
  0.00     23.60     0.00        2     0.00     0.00  UpdateBufferFunctions
  0.00     23.60     0.00        2     0.00     0.00  VideoFilterCallback
  0.00     23.60     0.00        2     0.00     0.00  WallPaperCallback
  0.00     23.60     0.00        2     0.00     0.00  ZoomCallback
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::KaxDateUTC()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::~KaxDateUTC()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxDuration::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxDuration::KaxDuration()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxDuration::~KaxDuration()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::KaxSeekHead()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::~KaxSeekHead()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::KaxSegmentUID()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::KaxTrackEntry()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::~KaxTrackEntry()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::KaxSeekPreRoll()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::KaxCodecPrivate()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::~KaxCodecPrivate()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::KaxAudioChannels()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::~KaxAudioChannels()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::KaxTrackFlagForced()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCues::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCues::KaxCues()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCues::~KaxCues()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCues::~KaxCues()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTracks::Create()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTracks::KaxTracks()
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTracks::~KaxTracks()
  0.00     23.60     0.00        2     0.00     0.00  event_thread_t::ResetPci()
  0.00     23.60     0.00        2     0.00     0.30  matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*)
  0.00     23.60     0.00        2     0.00     0.00  matroska_segment_c::TrackInit(mkv_track_t*)
  0.00     23.60     0.00        2     0.00     0.00  TagLib::RefCounter::ref()
  0.00     23.60     0.00        2     0.00     0.00  TagLib::String::String()
  0.00     23.60     0.00        2     0.00     0.00  TagLib::FileRef::FileRefPrivate::~FileRefPrivate()
  0.00     23.60     0.00        2     0.00     0.00  TagLib::FileRef::~FileRef()
  0.00     23.60     0.00        2     0.00     0.00  TagLib::FileRef::~FileRef()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool)
  0.00     23.60     0.00        2     0.00     0.00  libebml::EMaxIdLength::Create()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EMaxIdLength::EMaxIdLength()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EMaxIdLength::~EMaxIdLength()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EReadVersion::Create()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EReadVersion::EReadVersion()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EReadVersion::~EReadVersion()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EMaxSizeLength::Create()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EMaxSizeLength::EMaxSizeLength()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EMaxSizeLength::~EMaxSizeLength()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeVersion::Create()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeVersion::EDocTypeVersion()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeVersion::~EDocTypeVersion()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::Create()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::EDocTypeReadVersion()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::~EDocTypeReadVersion()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocType::Create()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocType::EDocType()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocType::~EDocType()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EVersion::Create()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EVersion::EVersion()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EVersion::~EVersion()
  0.00     23.60     0.00        2     0.00     0.00  libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     23.60     0.00        2     0.00     0.00  libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision)
  0.00     23.60     0.00        2     0.00     0.00  libebml::UTFstring::UpdateFromUCS2()
  0.00     23.60     0.00        2     0.00     0.00  libebml::UTFstring::UTFstring(libebml::UTFstring const&)
  0.00     23.60     0.00        2     0.00     0.00  libebml::UTFstring::operator=(wchar_t const*)
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCodecID::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxDuration::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackType::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::ValidateSize() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackAudio::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackVideo::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackLanguage::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackMinCache::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagLacing::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoDisplayWidth::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxVideoDisplayHeight::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxInfo::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libmatroska::KaxTracks::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EMaxIdLength::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EReadVersion::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EMaxSizeLength::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeVersion::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeVersion::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EDocType::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EVersion::Generic() const
  0.00     23.60     0.00        2     0.00     0.00  libebml::EbmlDate::ValidateSize() const
  0.00     23.60     0.00        2     0.00     0.00  std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&)
  0.00     23.60     0.00        2     0.00     0.00  std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&)
  0.00     23.60     0.00        2     0.00     0.00  af_autofitter_done
  0.00     23.60     0.00        2     0.00     0.00  af_autofitter_init
  0.00     23.60     0.00        2     0.00     0.00  af_get_interface
  0.00     23.60     0.00        2     0.00     0.00  af_glyph_hints_done
  0.00     23.60     0.00        2     0.00     0.00  aout_CheckChannelExtraction
  0.00     23.60     0.00        2     0.00     0.00  aout_DecFlush
  0.00     23.60     0.00        2     0.00     0.03  aout_FiltersPipelineDestroy
  0.00     23.60     0.00        2     0.00     0.02  aout_FormatPrint
  0.00     23.60     0.00        2     0.00     0.00  av_buffer_alloc
  0.00     23.60     0.00        2     0.00     0.00  av_buffer_default_free
  0.00     23.60     0.00        2     0.00     0.00  av_codec_is_encoder
  0.00     23.60     0.00        2     0.00     0.00  av_d2q
  0.00     23.60     0.00        2     0.00     0.00  av_dict_free
  0.00     23.60     0.00        2     0.00     0.00  av_dict_get
  0.00     23.60     0.00        2     0.00     0.00  av_gcd
  0.00     23.60     0.00        2     0.00     0.00  av_opt_set_q
  0.00     23.60     0.00        2     0.00     0.00  av_reduce
  0.00     23.60     0.00        2     0.00     0.00  avcodec_is_open
  0.00     23.60     0.00        2     0.00     0.00  bdf_driver_requester
  0.00     23.60     0.00        2     0.00     0.00  block_FifoNew
  0.00     23.60     0.00        2     0.00     0.00  block_FifoRelease
  0.00     23.60     0.00        2     0.00     0.00  cff_driver_done
  0.00     23.60     0.00        2     0.00     0.00  cff_driver_init
  0.00     23.60     0.00        2     0.00     0.00  cff_get_interface
  0.00     23.60     0.00        2     0.00     0.00  cid_driver_done
  0.00     23.60     0.00        2     0.00     0.00  cid_driver_init
  0.00     23.60     0.00        2     0.00     0.00  cid_get_interface
  0.00     23.60     0.00        2     0.00     0.00  config_ChainCreate
  0.00     23.60     0.00        2     0.00     0.00  decoder_New
  0.00     23.60     0.00        2     0.00     0.03  demux_New
  0.00     23.60     0.00        2     0.00     0.00  destroy_charmaps
  0.00     23.60     0.00        2     0.00     0.00  destroy_face
  0.00     23.60     0.00        2     0.00     0.00  destroy_size
  0.00     23.60     0.00        2     0.00     0.03  es_format_IsSimilar
  0.00     23.60     0.00        2     0.00     0.00  ff_getSwsFunc
  0.00     23.60     0.00        2     0.00     0.00  ff_kbd_window_init
  0.00     23.60     0.00        2     0.00     0.00  ff_sws_init_input_funcs
  0.00     23.60     0.00        2     0.00     0.00  ff_sws_init_output_funcs
  0.00     23.60     0.00        2     0.00     0.00  ft_ansi_stream_close
  0.00     23.60     0.00        2     0.00     0.00  ft_black_done
  0.00     23.60     0.00        2     0.00     0.00  ft_black_new
  0.00     23.60     0.00        2     0.00     0.00  ft_black_reset
  0.00     23.60     0.00        2     0.00     0.00  ft_glyphslot_done
  0.00     23.60     0.00        2     0.00     0.00  ft_glyphslot_free_bitmap
  0.00     23.60     0.00        2     0.00     0.00  ft_module_get_service
  0.00     23.60     0.00        2     0.00     0.00  ft_raster1_init
  0.00     23.60     0.00        2     0.00     0.00  ft_recompute_scaled_metrics
  0.00     23.60     0.00        2     0.00     0.00  get_android_opaque_mutex
  0.00     23.60     0.00        2     0.00     0.03  input_DecoderDelete
  0.00     23.60     0.00        2     0.00     0.00  input_DecoderNew
  0.00     23.60     0.00        2     0.00     0.00  input_DecoderStartWait
  0.00     23.60     0.00        2     0.00     0.01  input_DecoderWait
  0.00     23.60     0.00        2     0.00     0.00  input_SendEventEsAdd
  0.00     23.60     0.00        2     0.00     0.00  input_SendEventTeletextSelect
  0.00     23.60     0.00        2     0.00     0.00  input_SendEventVout
  0.00     23.60     0.00        2     0.00     0.00  input_clock_SetJitter
  0.00     23.60     0.00        2     0.00     0.00  input_item_GetName
  0.00     23.60     0.00        2     0.00     0.00  input_item_Hold
  0.00     23.60     0.00        2     0.00     0.00  input_item_Release
  0.00     23.60     0.00        2     0.00     0.08  input_resource_GetAout
  0.00     23.60     0.00        2     0.00     0.00  input_resource_HoldVouts
  0.00     23.60     0.00        2     0.00     0.02  input_resource_PutAout
  0.00     23.60     0.00        2     0.00     0.00  input_resource_SetInput
  0.00     23.60     0.00        2     0.00     0.00  input_resource_TerminateVout
  0.00     23.60     0.00        2     0.00     0.00  jni_SetAndroidSurfaceSize
  0.00     23.60     0.00        2     0.00     0.00  jni_SetAndroidSurfaceSizeEnv
  0.00     23.60     0.00        2     0.00     0.00  libvlc_event_manager_new
  0.00     23.60     0.00        2     0.00     0.00  open_face
  0.00     23.60     0.00        2     0.00     0.00  pcf_driver_requester
  0.00     23.60     0.00        2     0.00     0.00  pfr_get_service
  0.00     23.60     0.00        2     0.00     0.00  picture_pool_NewExtended
  0.00     23.60     0.00        2     0.00     0.00  ps_hinter_done
  0.00     23.60     0.00        2     0.00     0.00  ps_hinter_init
  0.00     23.60     0.00        2     0.00     0.00  psnames_get_service
  0.00     23.60     0.00        2     0.00     0.00  release_input_thread
  0.00     23.60     0.00        2     0.00     0.00  sfnt_done_face
  0.00     23.60     0.00        2     0.00     0.00  sfnt_init_face
  0.00     23.60     0.00        2     0.00     0.00  sfnt_load_face
  0.00     23.60     0.00        2     0.00     0.03  spu_Attach
  0.00     23.60     0.00        2     0.00     0.00  spu_ChangeFilters
  0.00     23.60     0.00        2     0.00     0.00  spu_ChangeMargin
  0.00     23.60     0.00        2     0.00     0.00  spu_ChangeSources
  0.00     23.60     0.00        2     0.00     0.00  spu_get_attachments
  0.00     23.60     0.00        2     0.00     0.00  strcpy_strip_ext
  0.00     23.60     0.00        2     0.00     0.00  strcpy_trim
  0.00     23.60     0.00        2     0.00     0.02  stream_Delete
  0.00     23.60     0.00        2     0.00     0.00  stream_FilterNew
  0.00     23.60     0.00        2     0.00     0.00  sws_alloc_context
  0.00     23.60     0.00        2     0.00     0.00  sws_freeContext
  0.00     23.60     0.00        2     0.00     0.01  sws_getContext
  0.00     23.60     0.00        2     0.00     0.01  sws_init_context
  0.00     23.60     0.00        2     0.00     0.00  sws_isSupportedInput
  0.00     23.60     0.00        2     0.00     0.00  sws_isSupportedOutput
  0.00     23.60     0.00        2     0.00     0.00  sws_setColorspaceDetails
  0.00     23.60     0.00        2     0.00     0.00  tt_cmap6_validate
  0.00     23.60     0.00        2     0.00     0.00  tt_cmap_init
  0.00     23.60     0.00        2     0.00     0.00  tt_driver_done
  0.00     23.60     0.00        2     0.00     0.00  tt_driver_init
  0.00     23.60     0.00        2     0.00     0.00  tt_face_build_cmaps
  0.00     23.60     0.00        2     0.00     0.00  tt_face_done
  0.00     23.60     0.00        2     0.00     0.00  tt_face_free_eblc
  0.00     23.60     0.00        2     0.00     0.00  tt_face_free_name
  0.00     23.60     0.00        2     0.00     0.00  tt_face_free_ps_names
  0.00     23.60     0.00        2     0.00     0.00  tt_face_init
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_cmap
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_cvt
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_eblc
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_font_dir
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_gasp
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_generic_header
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_head
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_hmtx
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_kern
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_maxp
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_name
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_os2
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_pclt
  0.00     23.60     0.00        2     0.00     0.00  tt_face_load_post
  0.00     23.60     0.00        2     0.00     0.00  tt_get_interface
  0.00     23.60     0.00        2     0.00     0.00  tt_size_done
  0.00     23.60     0.00        2     0.00     0.00  tt_size_init
  0.00     23.60     0.00        2     0.00     0.00  tt_size_request
  0.00     23.60     0.00        2     0.00     0.00  tt_size_reset
  0.00     23.60     0.00        2     0.00     0.00  tt_slot_init
  0.00     23.60     0.00        2     0.00     0.00  var_Get
  0.00     23.60     0.00        2     0.00     0.00  video_format_FixRgb
  0.00     23.60     0.00        2     0.00     0.00  vlc_cancel
  0.00     23.60     0.00        2     0.00     0.00  vlc_meta_Delete
  0.00     23.60     0.00        2     0.00     0.00  vlc_meta_Merge
  0.00     23.60     0.00        2     0.00     0.00  vout_ControlChangeCropRatio
  0.00     23.60     0.00        2     0.00     0.00  vout_ControlChangeFilters
  0.00     23.60     0.00        2     0.00     0.00  vout_ControlChangeSampleAspectRatio
  0.00     23.60     0.00        2     0.00     0.00  vout_ControlChangeSubFilters
  0.00     23.60     0.00        2     0.00     0.00  vout_ControlChangeSubMargin
  0.00     23.60     0.00        2     0.00     0.00  vout_ControlChangeSubSources
  0.00     23.60     0.00        2     0.00     0.00  vout_ControlChangeZoom
  0.00     23.60     0.00        2     0.00     0.01  vout_IntfReinit
  0.00     23.60     0.00        2     0.00     0.30  vout_Request
  0.00     23.60     0.00        2     0.00     0.00  vout_SetDisplayAspect
  0.00     23.60     0.00        2     0.00     0.00  vout_SetDisplayCrop
  0.00     23.60     0.00        2     0.00     0.00  vout_SetDisplayZoom
  0.00     23.60     0.00        2     0.00     0.00  winfnt_get_service
  0.00     23.60     0.00        2     0.00     0.00  wmemcpy
  0.00     23.60     0.00        1     0.00     0.03  AStreamDestroy
  0.00     23.60     0.00        1     0.00     0.08  AStreamPrebufferStream
  0.00     23.60     0.00        1     0.00     0.00  Activate
  0.00     23.60     0.00        1     0.00     0.00  Activate
  0.00     23.60     0.00        1     0.00     0.00  Activate
  0.00     23.60     0.00        1     0.00     0.00  Activate
  0.00     23.60     0.00        1     0.00     0.00  Activate
  0.00     23.60     0.00        1     0.00     0.00  Activate
  0.00     23.60     0.00        1     0.00     0.00  Activate
  0.00     23.60     0.00        1     0.00     0.00  Activate
  0.00     23.60     0.00        1     0.00     0.00  ArchitectureSpecificCopyHooks
  0.00     23.60     0.00        1     0.00     0.00  Close
  0.00     23.60     0.00        1     0.00     0.00  Close
  0.00     23.60     0.00        1     0.00     0.00  Close
  0.00     23.60     0.00        1     0.00     0.00  Close
  0.00     23.60     0.00        1     0.00     0.00  CloseDecoder
  0.00     23.60     0.00        1     0.00     0.03  CloseDecoder
  0.00     23.60     0.00        1     0.00     0.00  CloseScaler
  0.00     23.60     0.00        1     0.00     0.00  Create
  0.00     23.60     0.00        1     0.00     0.00  Create
  0.00     23.60     0.00        1     0.00     0.00  Create
  0.00     23.60     0.00        1     0.00     0.00  Create
  0.00     23.60     0.00        1     0.00     0.96  Create
  0.00     23.60     0.00        1     0.00     0.01  CreateResampler
  0.00     23.60     0.00        1     0.00     0.00  DecoderOpen
  0.00     23.60     0.00        1     0.00     0.00  DecoderOpen
  0.00     23.60     0.00        1     0.00     0.00  DecoderOpen
  0.00     23.60     0.00        1     0.00     0.00  DeinterlaceIsPresent
  0.00     23.60     0.00        1     0.00     0.00  Destroy
  0.00     23.60     0.00        1     0.00     0.00  Destructor
  0.00     23.60     0.00        1     0.00     0.06  DisplayNew
  0.00     23.60     0.00        1     0.00     0.03  End
  0.00     23.60     0.00        1     0.00     0.00  EnsureUTF8
  0.00     23.60     0.00        1     0.00     0.00  EqualizerCallback
  0.00     23.60     0.00        1     0.00     0.00  EsOutDelete
  0.00     23.60     0.00        1     0.00     0.04  EsOutProgramAdd
  0.00     23.60     0.00        1     0.00     0.04  EsOutProgramSelect
  0.00     23.60     0.00        1     0.00     0.00  FileClose
  0.00     23.60     0.00        1     0.00     0.02  FileOpen
  0.00     23.60     0.00        1     0.00     0.00  FilterAllocationClean
  0.00     23.60     0.00        1     0.00     0.00  FilterAllocationInit
  0.00     23.60     0.00        1     0.00     0.03  GetFfmpegCodec
  0.00     23.60     0.00        1     0.00     0.01  GetOmxRole
  0.00     23.60     0.00        1     0.00     0.01  GetVlcChromaFormat
  0.00     23.60     0.00        1     0.00     0.00  IgnoreOmxDecoderPadding
  0.00     23.60     0.00        1     0.00     0.21  Init
  0.00     23.60     0.00        1     0.00     0.44  Init
  0.00     23.60     0.00        1     0.00     1.86  InitAudioDec
  0.00     23.60     0.00        1     0.00     0.00  InitOmxCore
  0.00     23.60     0.00        1     0.00     0.02  InitTitle
  0.00     23.60     0.00        1     0.00     0.25  InputSourceInit
  0.00     23.60     0.00        1     0.00     0.00  LoadNativeWindowAPI
  0.00     23.60     0.00        1     0.00     0.00  MRLSeekPoint
  0.00     23.60     0.00        1     0.00   148.22  MainLoop
  0.00     23.60     0.00        1     0.00     0.00  ObjectKillChildrens
  0.00     23.60     0.00        1     0.00     0.02  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.09  Open
  0.00     23.60     0.00        1     0.00     0.00  Open
  0.00     23.60     0.00        1     0.00     0.02  Open
  0.00     23.60     0.00        1     0.00     0.00  OpenBzip2
  0.00     23.60     0.00        1     0.00     0.00  OpenCommon
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.01  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00    10.23  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenDecoder
  0.00     23.60     0.00        1     0.00     0.00  OpenFilter
  0.00     23.60     0.00        1     0.00     0.00  OpenFilter
  0.00     23.60     0.00        1     0.00     0.00  OpenFilter
  0.00     23.60     0.00        1     0.00     0.00  OpenGeneric
  0.00     23.60     0.00        1     0.00     0.00  OpenGzip
  0.00     23.60     0.00        1     0.00     0.00  OpenXZ
  0.00     23.60     0.00        1     0.00     0.00  Probe
  0.00     23.60     0.00        1     0.00     0.00  RarProbe
  0.00     23.60     0.00        1     0.00     0.00  RarStreamOpen
  0.00     23.60     0.00        1     0.00     0.02  ReplayGainCallback
  0.00     23.60     0.00        1     0.00   148.70  Run
  0.00     23.60     0.00        1     0.00     0.01  Start
  0.00     23.60     0.00        1     0.00     0.00  Stop
  0.00     23.60     0.00        1     0.00     0.03  StreamDelete
  0.00     23.60     0.00        1     0.00     0.00  StreamOpen
  0.00     23.60     0.00        1     0.00   287.05  Thread
  0.00     23.60     0.00        1     0.00     1.03  ThreadStart
  0.00     23.60     0.00        1     0.00     0.05  ThreadStop
  0.00     23.60     0.00        1     0.00     0.02  TryFormat
  0.00     23.60     0.00        1     0.00     0.00  UpdatePtsDelay
  0.00     23.60     0.00        1     0.00     0.00  VoutDestructor
  0.00     23.60     0.00        1     0.00     0.05  VoutDisplayCreateRender
  0.00     23.60     0.00        1     0.00     0.02  VoutDisplayEvent
  0.00     23.60     0.00        1     0.00     0.01  VoutValidateFormat
  0.00     23.60     0.00        1     0.00     0.00  fill_extra_data(mkv_track_t*, unsigned int)
  0.00     23.60     0.00        1     0.00     7.38  Open(vlc_object_t*)
  0.00     23.60     0.00        1     0.00     0.00  Open(vlc_object_t*)
  0.00     23.60     0.00        1     0.00     0.06  Close(vlc_object_t*)
  0.00     23.60     0.00        1     0.00     0.00  ReadMeta(vlc_object_t*)
  0.00     23.60     0.00        1     0.00     0.02  EbmlParser::Reset(demux_t*)
  0.00     23.60     0.00        1     0.00     0.00  demux_sys_t::FreeUnused()
  0.00     23.60     0.00        1     0.00     0.00  demux_sys_t::PreloadLinked()
  0.00     23.60     0.00        1     0.00     0.00  demux_sys_t::PreparePlayback(virtual_segment_c*)
  0.00     23.60     0.00        1     0.00     1.34  demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool)
  0.00     23.60     0.00        1     0.00     0.10  demux_sys_t::InitUi()
  0.00     23.60     0.00        1     0.00     0.03  demux_sys_t::CleanUi()
  0.00     23.60     0.00        1     0.00     0.03  demux_sys_t::~demux_sys_t()
  0.00     23.60     0.00        1     0.00     0.03  demux_sys_t::~demux_sys_t()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxSegment::Create()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxSegment::KaxSegment()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxSegment::~KaxSegment()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::Create()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::KaxTrackAudio()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::~KaxTrackAudio()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::Create()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::KaxTrackVideo()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::~KaxTrackVideo()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::Create()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::KaxTrackLanguage()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::~KaxTrackLanguage()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::Create()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::Create()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::Create()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced()
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced()
  0.00     23.60     0.00        1     0.00     0.00  event_thread_t::~event_thread_t()
  0.00     23.60     0.00        1     0.00     0.00  event_thread_t::~event_thread_t()
  0.00     23.60     0.00        1     0.00     0.00  virtual_chapter_c::PublishChapters(input_title_t&, int&, int)
  0.00     23.60     0.00        1     0.00     0.00  virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool)
  0.00     23.60     0.00        1     0.00     0.00  virtual_chapter_c::~virtual_chapter_c()
  0.00     23.60     0.00        1     0.00     0.00  virtual_edition_c::GetMainName()
  0.00     23.60     0.00        1     0.00     0.00  virtual_edition_c::retimeChapters()
  0.00     23.60     0.00        1     0.00     0.00  virtual_edition_c::PublishChapters(input_title_t&, int&, int)
  0.00     23.60     0.00        1     0.00     0.00  virtual_edition_c::retimeSubChapters(virtual_chapter_c*)
  0.00     23.60     0.00        1     0.00     0.00  virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*)
  0.00     23.60     0.00        1     0.00     0.00  virtual_edition_c::~virtual_edition_c()
  0.00     23.60     0.00        1     0.00     0.00  virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long)
  0.00     23.60     0.00        1     0.00     0.00  virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*)
  0.00     23.60     0.00        1     0.00     0.00  virtual_segment_c::~virtual_segment_c()
  0.00     23.60     0.00        1     0.00     1.24  matroska_segment_c::ParseTracks(libmatroska::KaxTracks*)
  0.00     23.60     0.00        1     0.00     0.64  matroska_segment_c::ParseCluster(bool)
  0.00     23.60     0.00        1     0.00     5.09  matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*)
  0.00     23.60     0.00        1     0.00     0.00  matroska_segment_c::InformationCreate()
  0.00     23.60     0.00        1     0.00     0.00  matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*)
  0.00     23.60     0.00        1     0.00     0.00  matroska_segment_c::ComputeTrackPriority()
  0.00     23.60     0.00        1     0.00     0.02  matroska_segment_c::Seek(long long, long long, long long)
  0.00     23.60     0.00        1     0.00     0.04  matroska_segment_c::Select(long long)
  0.00     23.60     0.00        1     0.00     5.93  matroska_segment_c::Preload()
  0.00     23.60     0.00        1     0.00     2.68  matroska_segment_c::LoadCues(libmatroska::KaxCues*)
  0.00     23.60     0.00        1     0.00     0.03  matroska_segment_c::UnSelect()
  0.00     23.60     0.00        1     0.00     0.79  matroska_segment_c::ParseInfo(libmatroska::KaxInfo*)
  0.00     23.60     0.00        1     0.00     0.00  matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&)
  0.00     23.60     0.00        1     0.00     0.00  matroska_segment_c::~matroska_segment_c()
  0.00     23.60     0.00        1     0.00     0.00  matroska_segment_c::~matroska_segment_c()
  0.00     23.60     0.00        1     0.00     0.00  vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool)
  0.00     23.60     0.00        1     0.00     0.00  vlc_stream_io_callback::~vlc_stream_io_callback()
  0.00     23.60     0.00        1     0.00     0.00  dash::xml::DOMParser::isDash(stream_t*)
  0.00     23.60     0.00        1     0.00     0.00  TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type)
  0.00     23.60     0.00        1     0.00     0.00  TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type)
  0.00     23.60     0.00        1     0.00     0.00  TagLib::String::operator=(TagLib::String const&)
  0.00     23.60     0.00        1     0.00     0.00  TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle)
  0.00     23.60     0.00        1     0.00     0.00  TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle)
  0.00     23.60     0.00        1     0.00     0.00  TagLib::FileRef::FileRef()
  0.00     23.60     0.00        1     0.00     0.00  TagLib::FileRef::operator=(TagLib::FileRef const&)
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&)
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlStream::EbmlStream(libebml::IOCallback&)
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlStream::~EbmlStream()
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlString::EbmlString(libebml::EbmlString const&)
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&)
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlHead::Create()
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlHead::EbmlHead()
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlHead::~EbmlHead()
  0.00     23.60     0.00        1     0.00     0.00  demux_sys_t::FindSegment(libebml::EbmlBinary const&) const
  0.00     23.60     0.00        1     0.00     0.00  demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const
  0.00     23.60     0.00        1     0.00     0.00  libmatroska::KaxCues::Generic() const
  0.00     23.60     0.00        1     0.00     0.00  TagLib::String::rfind(TagLib::String const&, int) const
  0.00     23.60     0.00        1     0.00     0.00  TagLib::String::upper() const
  0.00     23.60     0.00        1     0.00     0.00  TagLib::String::substr(unsigned int, unsigned int) const
  0.00     23.60     0.00        1     0.00     0.00  TagLib::String::isEmpty() const
  0.00     23.60     0.00        1     0.00     0.00  TagLib::FileRef::isNull() const
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlFloat::operator double() const
  0.00     23.60     0.00        1     0.00     0.00  libebml::EbmlFloat::operator float() const
  0.00     23.60     0.00        1     0.00     0.00  std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&)
  0.00     23.60     0.00        1     0.00     0.00  std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&)
  0.00     23.60     0.00        1     0.00     0.00  std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&)
  0.00     23.60     0.00        1     0.00     0.00  std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&)
  0.00     23.60     0.00        1     0.00     0.00  std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&)
  0.00     23.60     0.00        1     0.00     0.00  aac_decode_close
  0.00     23.60     0.00        1     0.00     1.81  aac_decode_init
  0.00     23.60     0.00        1     0.00     0.03  access_Delete
  0.00     23.60     0.00        1     0.00     0.03  access_New
  0.00     23.60     0.00        1     0.00     0.00  aout_ChangeFilterString
  0.00     23.60     0.00        1     0.00     0.10  aout_DecDelete
  0.00     23.60     0.00        1     0.00     0.28  aout_DecNew
  0.00     23.60     0.00        1     0.00     0.03  aout_Destroy
  0.00     23.60     0.00        1     0.00     0.00  aout_Destructor
  0.00     23.60     0.00        1     0.00     0.06  aout_FiltersDelete
  0.00     23.60     0.00        1     0.00     0.18  aout_FiltersNew
  0.00     23.60     0.00        1     0.00     0.08  aout_FiltersPipelineCreate
  0.00     23.60     0.00        1     0.00     0.02  aout_FormatsPrint
  0.00     23.60     0.00        1     0.00     0.12  aout_New
  0.00     23.60     0.00        1     0.00     0.00  aout_OutputDelete
  0.00     23.60     0.00        1     0.00     0.10  aout_OutputNew
  0.00     23.60     0.00        1     0.00     0.00  aout_get_native_sample_rate
  0.00     23.60     0.00        1     0.00     0.03  aout_volume_Delete
  0.00     23.60     0.00        1     0.00     0.00  aout_volume_New
  0.00     23.60     0.00        1     0.00     0.00  aout_volume_SetFormat
  0.00     23.60     0.00        1     0.00     0.40  atrac3_init_static_data
  0.00     23.60     0.00        1     0.00     0.00  av_buffer_pool_init
  0.00     23.60     0.00        1     0.00     0.00  av_crc_init
  0.00     23.60     0.00        1     0.00     0.00  av_get_bytes_per_sample
  0.00     23.60     0.00        1     0.00     0.00  av_log_set_level
  0.00     23.60     0.00        1     0.00     0.00  av_opt_free
  0.00     23.60     0.00        1     0.00     0.00  av_opt_set
  0.00     23.60     0.00        1     0.00     0.00  av_opt_set_dict
  0.00     23.60     0.00        1     0.00     0.00  av_samples_get_buffer_size
  0.00     23.60     0.00        1     0.00     0.00  avcodec_alloc_context3
  0.00     23.60     0.00        1     0.00     0.00  avcodec_close
  0.00     23.60     0.00        1     0.00     0.00  avcodec_find_decoder
  0.00     23.60     0.00        1     0.00     0.00  avcodec_flush_buffers
  0.00     23.60     0.00        1     0.00     0.00  avcodec_get_context_defaults3
  0.00     23.60     0.00        1     0.00     1.82  avcodec_open2
  0.00     23.60     0.00        1     0.00     8.25  avcodec_register_all
  0.00     23.60     0.00        1     0.00     0.00  avpriv_float_dsp_init
  0.00     23.60     0.00        1     0.00     0.00  avpriv_mpeg4audio_get_config
  0.00     23.60     0.00        1     0.00     0.00  che_configure
  0.00     23.60     0.00        1     0.00     0.00  date_Init
  0.00     23.60     0.00        1     0.00     0.00  decode_audio_specific_config
  0.00     23.60     0.00        1     0.00     0.00  demux_GetParentInput
  0.00     23.60     0.00        1     0.00     0.00  ff_aac_sbr_ctx_close
  0.00     23.60     0.00        1     0.00     0.00  ff_aac_sbr_ctx_init
  0.00     23.60     0.00        1     0.00     0.57  ff_aac_sbr_init
  0.00     23.60     0.00        1     0.00     0.00  ff_aac_tableinit
  0.00     23.60     0.00        1     0.00     6.84  ff_atrac3p_init_vlcs
  0.00     23.60     0.00        1     0.00     0.00  ff_atrac_generate_tables
  0.00     23.60     0.00        1     0.00     0.00  ff_dsputil_static_init
  0.00     23.60     0.00        1     0.00     0.00  ff_float_dsp_init_arm
  0.00     23.60     0.00        1     0.00     0.00  ff_float_dsp_init_neon
  0.00     23.60     0.00        1     0.00     0.00  ff_float_dsp_init_vfp
  0.00     23.60     0.00        1     0.00     0.00  ff_fmt_convert_init
  0.00     23.60     0.00        1     0.00     0.00  ff_fmt_convert_init_arm
  0.00     23.60     0.00        1     0.00     0.00  ff_get_cpu_flags_arm
  0.00     23.60     0.00        1     0.00     0.00  ff_jpeg2000_init_tier1_luts
  0.00     23.60     0.00        1     0.00     0.00  ff_mpa_synth_init_float
  0.00     23.60     0.00        1     0.00     0.00  ff_mqc_init_context_tables
  0.00     23.60     0.00        1     0.00     0.00  ff_ps_ctx_init
  0.00     23.60     0.00        1     0.00     0.57  ff_ps_init
  0.00     23.60     0.00        1     0.00     0.00  ff_psdsp_init
  0.00     23.60     0.00        1     0.00     0.00  ff_psdsp_init_arm
  0.00     23.60     0.00        1     0.00     0.00  ff_sbrdsp_init
  0.00     23.60     0.00        1     0.00     0.00  ff_sbrdsp_init_arm
  0.00     23.60     0.00        1     0.00     0.00  ff_tak_init_crc
  0.00     23.60     0.00        1     0.00     0.00  ff_thread_init
  0.00     23.60     0.00        1     0.00     0.00  ff_yuv2rgb_c_init_tables
  0.00     23.60     0.00        1     0.00     1.86  ffmpeg_OpenCodec
  0.00     23.60     0.00        1     0.00     0.00  filter_DeleteBlend
  0.00     23.60     0.00        1     0.00     0.00  filter_NewBlend
  0.00     23.60     0.00        1     0.00     0.03  filter_chain_AppendFilter
  0.00     23.60     0.00        1     0.00     0.03  filter_chain_AppendFilterInternal
  0.00     23.60     0.00        1     0.00     0.00  filter_chain_AppendFromString
  0.00     23.60     0.00        1     0.00     0.00  filter_chain_AppendFromStringInternal
  0.00     23.60     0.00        1     0.00     0.05  filter_chain_DeleteFilterInternal
  0.00     23.60     0.00        1     0.00     0.00  get_path
  0.00     23.60     0.00        1     0.00     0.00  h264_get_profile_level
  0.00     23.60     0.00        1     0.00     0.00  input_Close
  0.00     23.60     0.00        1     0.00     0.59  input_ConfigVarInit
  0.00     23.60     0.00        1     0.00     0.00  input_ControlPush
  0.00     23.60     0.00        1     0.00     0.28  input_ControlVarInit
  0.00     23.60     0.00        1     0.00     0.01  input_ControlVarNavigation
  0.00     23.60     0.00        1     0.00     0.03  input_ControlVarStop
  0.00     23.60     0.00        1     0.00     0.00  input_ControlVarTitle
  0.00     23.60     0.00        1     0.00     0.96  input_Create
  0.00     23.60     0.00        1     0.00     0.00  input_DecoderChangeDelay
  0.00     23.60     0.00        1     0.00     0.00  input_EsOutNew
  0.00     23.60     0.00        1     0.00     0.05  input_EsOutTimeshiftNew
  0.00     23.60     0.00        1     0.00     0.00  input_Join
  0.00     23.60     0.00        1     0.00     0.00  input_SendEventAout
  0.00     23.60     0.00        1     0.00     0.00  input_SendEventDead
  0.00     23.60     0.00        1     0.00     0.00  input_SendEventMetaEpg
  0.00     23.60     0.00        1     0.00     0.00  input_SendEventProgramAdd
  0.00     23.60     0.00        1     0.00     0.00  input_SendEventProgramScrambled
  0.00     23.60     0.00        1     0.00     0.00  input_SendEventProgramSelect
  0.00     23.60     0.00        1     0.00     0.00  input_SendEventTeletextDel
  0.00     23.60     0.00        1     0.00     0.00  input_SendEventTitle
  0.00     23.60     0.00        1     0.00     0.00  input_SplitMRL
  0.00     23.60     0.00        1     0.00     0.00  input_Start
  0.00     23.60     0.00        1     0.00     0.00  input_Stop
  0.00     23.60     0.00        1     0.00     0.00  input_clock_ChangeSystemOrigin
  0.00     23.60     0.00        1     0.00     0.00  input_clock_Delete
  0.00     23.60     0.00        1     0.00     0.00  input_clock_New
  0.00     23.60     0.00        1     0.00     0.00  input_item_NewExt
  0.00     23.60     0.00        1     0.00     0.00  input_item_NewWithType
  0.00     23.60     0.00        1     0.00     0.00  input_item_SetDuration
  0.00     23.60     0.00        1     0.00     0.00  input_item_SetEpgOffline
  0.00     23.60     0.00        1     0.00     0.00  input_item_SetPreparsed
  0.00     23.60     0.00        1     0.00     0.00  input_item_SetURI
  0.00     23.60     0.00        1     0.00     0.00  input_item_duration_changed
  0.00     23.60     0.00        1     0.00     0.00  input_item_preparsed_changed
  0.00     23.60     0.00        1     0.00     0.00  input_pausable_changed
  0.00     23.60     0.00        1     0.00     0.00  input_resource_Hold
  0.00     23.60     0.00        1     0.00     0.00  input_resource_HoldAout
  0.00     23.60     0.00        1     0.00     0.00  input_resource_New
  0.00     23.60     0.00        1     0.00     0.00  input_resource_Release
  0.00     23.60     0.00        1     0.00     0.00  input_resource_RequestSout
  0.00     23.60     0.00        1     0.00     0.03  input_resource_ResetAout
  0.00     23.60     0.00        1     0.00     0.04  input_resource_Terminate
  0.00     23.60     0.00        1     0.00     0.00  input_scrambled_changed
  0.00     23.60     0.00        1     0.00     0.00  input_seekable_changed
  0.00     23.60     0.00        1     0.00     0.00  jni_IsVideoPlayerActivityCreated
  0.00     23.60     0.00        1     0.00     0.00  jpeg2000_init_static_data
  0.00     23.60     0.00        1     0.00     0.00  libvlc_media_event_manager
  0.00     23.60     0.00        1     0.00     0.00  libvlc_media_new_from_input_item
  0.00     23.60     0.00        1     0.00     0.00  libvlc_media_new_location
  0.00     23.60     0.00        1     0.00     0.00  libvlc_media_player_event_manager
  0.00     23.60     0.00        1     0.00     0.00  libvlc_media_player_get_media
  0.00     23.60     0.00        1     0.00     0.85  libvlc_media_player_new
  0.00     23.60     0.00        1     0.00     0.00  libvlc_media_player_set_media
  0.00     23.60     0.00        1     0.00     0.00  libvlc_media_player_set_video_title_display
  0.00     23.60     0.00        1     0.00     0.04  libvlc_media_player_stop
  0.00     23.60     0.00        1     0.00     0.00  libvlc_media_subitems
  0.00     23.60     0.00        1     0.00     0.00  module_get_name
  0.00     23.60     0.00        1     0.00     0.00  picture_fifo_Delete
  0.00     23.60     0.00        1     0.00     0.00  picture_fifo_New
  0.00     23.60     0.00        1     0.00     0.00  picture_pool_GetSize
  0.00     23.60     0.00        1     0.00     0.00  picture_pool_New
  0.00     23.60     0.00        1     0.00     0.75  picture_pool_NewFromFormat
  0.00     23.60     0.00        1     0.00     0.00  picture_pool_NonEmpty
  0.00     23.60     0.00        1     0.00     0.00  picture_pool_Reserve
  0.00     23.60     0.00        1     0.00     0.96  qdm2_init_static_data
  0.00     23.60     0.00        1     0.00     0.00  secstotimestr
  0.00     23.60     0.00        1     0.00     0.00  setLong
  0.00     23.60     0.00        1     0.00     0.00  sniff_channel_order
  0.00     23.60     0.00        1     0.00     0.00  spu_ClearChannel
  0.00     23.60     0.00        1     0.00     0.02  spu_Create
  0.00     23.60     0.00        1     0.00     0.08  spu_Destroy
  0.00     23.60     0.00        1     0.00     0.00  stats_NewInputStats
  0.00     23.60     0.00        1     0.00     0.00  stats_ReinitInputStats
  0.00     23.60     0.00        1     0.00     0.10  stream_AccessNew
  0.00     23.60     0.00        1     0.00     0.00  stream_FilterChainNew
  0.00     23.60     0.00        1     0.00     0.02  subtitles_Detect
  0.00     23.60     0.00        1     0.00     0.00  sws_rgb2rgb_init
  0.00     23.60     0.00        1     0.00     0.00  tak_init_static_data
  0.00     23.60     0.00        1     0.00     0.00  var_Copy
  0.00     23.60     0.00        1     0.00     0.02  var_InheritURational
  0.00     23.60     0.00        1     0.00     0.00  var_Type
  0.00     23.60     0.00        1     0.00     0.02  video_format_Print
  0.00     23.60     0.00        1     0.00     0.00  vlc_audio_replay_gain_MergeFromMeta
  0.00     23.60     0.00        1     0.00     0.00  vlc_av_frame_Release
  0.00     23.60     0.00        1     0.00     0.00  vlc_event_manager_init
  0.00     23.60     0.00        1     0.00     0.01  vlc_fourcc_GetCodecAudio
  0.00     23.60     0.00        1     0.00     0.01  vlc_fourcc_GetCodecFromString
  0.00     23.60     0.00        1     0.00     0.00  vlc_list_children
  0.00     23.60     0.00        1     0.00     0.00  vlc_list_release
  0.00     23.60     0.00        1     0.00     0.00  vlc_meta_GetStatus
  0.00     23.60     0.00        1     0.00     0.00  vlc_meta_SetStatus
  0.00     23.60     0.00        1     0.00     0.00  vlc_object_create
  0.00     23.60     0.00        1     0.00     0.00  vlc_open
  0.00     23.60     0.00        1     0.00     0.08  vout_Close
  0.00     23.60     0.00        1     0.00     0.04  vout_CloseWrapper
  0.00     23.60     0.00        1     0.00     0.04  vout_DeleteDisplay
  0.00     23.60     0.00        1     0.00     0.00  vout_DisplayTitle
  0.00     23.60     0.00        1     0.00     0.01  vout_EndWrapper
  0.00     23.60     0.00        1     0.00     0.00  vout_FlushSubpictureChannel
  0.00     23.60     0.00        1     0.00     0.07  vout_InitInterlacingSupport
  0.00     23.60     0.00        1     0.00     0.75  vout_InitWrapper
  0.00     23.60     0.00        1     0.00     0.40  vout_IntfInit
  0.00     23.60     0.00        1     0.00     0.06  vout_NewDisplay
  0.00     23.60     0.00        1     0.00     0.11  vout_OpenWrapper
  0.00     23.60     0.00        1     0.00     0.00  vout_Reset
  0.00     23.60     0.00        1     0.00     0.00  vout_control_Clean
  0.00     23.60     0.00        1     0.00     0.00  vout_control_Dead
  0.00     23.60     0.00        1     0.00     0.00  vout_control_Init
  0.00     23.60     0.00        1     0.00     0.00  vout_display_GetDefaultDisplaySize
  0.00     23.60     0.00        1     0.00     0.00  vout_snapshot_Clean
  0.00     23.60     0.00        1     0.00     0.00  vout_snapshot_End
  0.00     23.60     0.00        1     0.00     0.00  vout_snapshot_Init
  0.00     23.60     0.00        1     0.00     0.06  wmavoice_init_static_data

 %         the percentage of the total running time of the
time       program used by this function.

cumulative a running sum of the number of seconds accounted
 seconds   for by this function and those listed above it.

 self      the number of seconds accounted for by this
seconds    function alone.  This is the major sort for this
           listing.

calls      the number of times this function was invoked, if
           this function is profiled, else blank.
 
 self      the average number of milliseconds spent in this
ms/call    function per call, if this function is profiled,
	   else blank.

 total     the average number of milliseconds spent in this
ms/call    function and its descendents per call, if this 
	   function is profiled, else blank.

name       the name of the function.  This is the minor sort
           for this listing. The index shows the location of
	   the function in the gprof listing. If the index is
	   in parenthesis it shows where it would appear in
	   the gprof listing if it were to be printed.


		     Call graph (explanation follows)


granularity: each sample hit covers 2 byte(s) for 0.04% of 23.60 seconds

index % time    self  children    called     name
                                                 <spontaneous>
[1]     89.4   21.11    0.00                 deinterleave_chroma_neon [1]
-----------------------------------------------
                                                 <spontaneous>
[2]      7.6    0.00    1.80                 joinable_thread [2]
                0.02    1.35       2/2           DecoderThread [3]
                0.00    0.29       1/1           Thread [13]
                0.00    0.15       1/1           Run [19]
-----------------------------------------------
                0.02    1.35       2/2           joinable_thread [2]
[3]      5.8    0.02    1.35       2         DecoderThread [3]
                0.00    0.94    5965/5965        DecoderDecodeAudio [4]
                0.02    0.38    6846/6846        DecoderDecodeVideo [9]
                0.00    0.01   12903/12903       block_FifoGet [130]
                0.00    0.00   12740/460619      vlc_mutex_unlock [44]
                0.00    0.00   12822/392860      vlc_mutex_lock [65]
                0.00    0.00       2/25194       block_generic_Release [103]
                0.00    0.00       2/4           input_DecoderStopWait [451]
                0.00    0.00   12897/12920       vlc_restorecancel [560]
                0.00    0.00   12738/12761       vlc_savecancel [561]
                0.00    0.00      25/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.94    5965/5965        DecoderThread [3]
[4]      4.0    0.00    0.94    5965         DecoderDecodeAudio [4]
                0.03    0.61   11929/11929       DecodeAudio [5]
                0.00    0.24    5970/5970        aout_DecPlay [15]
                0.00    0.03    5964/12863       DecoderFixTs [40]
                0.00    0.01   11933/31285       DeleteDecoder <cycle 4> [128]
                0.01    0.00    5967/5967        aout_DecGetResetLost [113]
                0.01    0.00   17901/37499       stats_Update [74]
                0.00    0.00   17902/460619      vlc_mutex_unlock [44]
                0.00    0.00   17902/392860      vlc_mutex_lock [65]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/2           aout_DecFlush [372]
                0.00    0.00       1/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.03    0.61   11929/11929       DecoderDecodeAudio [4]
[5]      2.7    0.03    0.61   11929         DecodeAudio [5]
                0.00    0.49    5970/5970        avcodec_decode_audio4 [6]
                0.06    0.00    5969/5969        aout_ChannelExtract [36]
                0.03    0.00    5972/5972        aout_Interleave [62]
                0.00    0.01    5972/5973        av_frame_free [84]
                0.00    0.00   11946/25194       block_generic_Release [103]
                0.00    0.00   11941/25186       block_Alloc [104]
                0.00    0.00    5970/5971        av_frame_alloc [162]
                0.00    0.00    5967/5967        aout_update_format [209]
                0.00    0.00    5967/5968        SetupOutputFormat [307]
                0.00    0.00   17907/17907       date_Get [557]
                0.00    0.00    5971/11942       av_sample_fmt_is_planar [563]
                0.00    0.00    5969/5969        av_init_packet [588]
                0.00    0.00    5969/71794       av_freep [547]
                0.00    0.00    5969/5969        date_Increment [589]
                0.00    0.00    5967/5967        block_Realloc [590]
                0.00    0.00       6/7           date_Set [691]
                0.00    0.00       1/1           avcodec_flush_buffers [982]
-----------------------------------------------
                0.00    0.49    5970/5970        DecodeAudio [5]
[6]      2.1    0.00    0.49    5970         avcodec_decode_audio4 [6]
                0.03    0.45    5971/5971        aac_decode_frame [7]
                0.01    0.00    5970/17916       av_frame_unref [50]
                0.00    0.00    5969/11940       av_packet_get_side_data [564]
-----------------------------------------------
                0.03    0.45    5971/5971        avcodec_decode_audio4 [6]
[7]      2.0    0.03    0.45    5971         aac_decode_frame [7]
                0.02    0.43    5969/5969        aac_decode_frame_int [8]
                0.00    0.00    5971/11940       av_packet_get_side_data [564]
-----------------------------------------------
                0.02    0.43    5969/5969        aac_decode_frame [7]
[8]      1.9    0.02    0.43    5969         aac_decode_frame_int [8]
                0.02    0.32    5973/5973        decode_cpe [10]
                0.00    0.05    5971/5971        ff_get_buffer [45]
                0.01    0.02    5972/5972        spectral_to_sample [70]
                0.01    0.00    5973/17916       av_frame_unref [50]
                0.00    0.00    5971/5971        get_che [586]
-----------------------------------------------
                0.02    0.38    6846/6846        DecoderThread [3]
[9]      1.7    0.02    0.38    6846         DecoderDecodeVideo [9]
                0.04    0.28   13732/13732       DecodeVideo [12]
                0.00    0.03    6899/12863       DecoderFixTs [40]
                0.01    0.00   18119/37499       stats_Update [74]
                0.00    0.01    6891/31285       DeleteDecoder <cycle 4> [128]
                0.00    0.00    6908/6908        vout_PutPicture [146]
                0.00    0.00   19856/460619      vlc_mutex_unlock [44]
                0.00    0.00   19859/392860      vlc_mutex_lock [65]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       2/3           vout_Flush [393]
                0.00    0.00    6905/6905        vout_GetResetStatistic [583]
                0.00    0.00       1/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.02    0.32    5973/5973        aac_decode_frame_int [8]
[10]     1.5    0.02    0.32    5973         decode_cpe [10]
                0.31    0.01   17914/17914       decode_ics_info [11]
-----------------------------------------------
                0.31    0.01   17914/17914       decode_cpe [10]
[11]     1.4    0.31    0.01   17914         decode_ics_info [11]
                0.01    0.00     659/1319        apply_ltp [63]
-----------------------------------------------
                0.04    0.28   13732/13732       DecoderDecodeVideo [9]
[12]     1.4    0.04    0.28   13732         DecodeVideo [12]
                0.00    0.28    9946/9946        GetOutput [14]
                0.00    0.00    6932/25194       block_generic_Release [103]
-----------------------------------------------
                0.00    0.29       1/1           joinable_thread [2]
[13]     1.2    0.00    0.29       1         Thread [13]
                0.04    0.17   20150/20150       ThreadDisplayPicture [18]
                0.00    0.04   13371/13371       vout_ManageWrapper [49]
                0.01    0.02   13353/13353       vout_control_Pop [57]
                0.00    0.00   13334/13334       vout_SetInterlacingState [150]
                0.00    0.00   13383/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/1           ThreadStart [176]
                0.00    0.00   13285/392860      vlc_mutex_lock [65]
                0.00    0.00       2/2           ThreadChangeFilters [257]
                0.00    0.00       1/1           ThreadStop [278]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       4/5           ThreadFlush [403]
                0.00    0.00       4/4           vout_SetWindowState [455]
                0.00    0.00       2/156222      mdate [52]
                0.00    0.00       2/2           spu_ChangeMargin [502]
                0.00    0.00       2/2           spu_ChangeFilters [501]
                0.00    0.00       2/2           spu_ChangeSources [503]
                0.00    0.00       1/8           VoutVideoFilterStaticNewPicture [423]
                0.00    0.00       1/1           spu_ClearChannel [532]
                0.00    0.00      24/24          vout_control_cmd_Clean [656]
                0.00    0.00       2/2           vout_SetDisplayCrop [903]
                0.00    0.00       2/2           vout_SetDisplayAspect [902]
                0.00    0.00       2/2           vout_SetDisplayZoom [904]
                0.00    0.00       1/1           picture_pool_NonEmpty [1029]
-----------------------------------------------
                0.00    0.28    9946/9946        DecodeVideo [12]
[14]     1.2    0.00    0.28    9946         GetOutput [14]
                0.00    0.11    6907/6907        decoder_NewPicture [23]
                0.01    0.10    6911/6911        GetVlcChromaSizes [25]
                0.06    0.00    6913/6913        CopyOmxPicture [35]
                0.00    0.00       3/273         vlc_Log [134]
                0.00    0.00       1/1           GetVlcChromaFormat [348]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       2/2           get_android_opaque_mutex [846]
                0.00    0.00       1/2           ArchitectureSpecificCopyHooksDestroy [763]
                0.00    0.00       1/1           ArchitectureSpecificCopyHooks [915]
                0.00    0.00       1/1           IgnoreOmxDecoderPadding [934]
-----------------------------------------------
                0.00    0.24    5970/5970        DecoderDecodeAudio [4]
[15]     1.0    0.00    0.24    5970         aout_DecPlay [15]
                0.00    0.21    5972/5972        aout_FiltersPlay [16]
                0.00    0.01    5973/5973        aout_OutputTimeGet [91]
                0.01    0.00    5969/5969        aout_volume_Amplify [112]
                0.00    0.00    5969/5969        aout_OutputPlay [149]
                0.00    0.00   11932/156222      mdate [52]
                0.00    0.00    5968/5979        aout_OutputUnlock [167]
                0.00    0.00    5973/5983        aout_OutputLock [204]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00     342/342         aout_FiltersAdjustResampling [607]
-----------------------------------------------
                0.00    0.21    5972/5972        aout_DecPlay [15]
[16]     0.9    0.00    0.21    5972         aout_FiltersPlay [16]
                0.21    0.00    5972/5972        Fl32toS16 [17]
                0.00    0.00    5972/5972        DoWork [217]
-----------------------------------------------
                0.21    0.00    5972/5972        aout_FiltersPlay [16]
[17]     0.9    0.21    0.00    5972         Fl32toS16 [17]
-----------------------------------------------
                0.04    0.17   20150/20150       Thread [13]
[18]     0.9    0.04    0.17   20150         ThreadDisplayPicture [18]
                0.00    0.04    6987/6987        ThreadDisplayPreparePicture [46]
                0.02    0.02    6923/6923        vout_FilterDisplay [54]
                0.01    0.01    6915/10398       mwait [56]
                0.00    0.01    6921/27699       filter_chain_VideoFilter [34]
                0.01    0.00   47809/156222      mdate [52]
                0.00    0.01    6923/6923        video_format_ApplyRotation [109]
                0.01    0.00    6923/6924        vout_IsDisplayFiltered [108]
                0.00    0.00    6919/31121       picture_Hold [75]
                0.00    0.00    6922/6922        spu_Render [145]
                0.00    0.00    6918/6918        Display [160]
                0.00    0.00    6911/31174       picture_Release [102]
                0.00    0.00    6925/460619      vlc_mutex_unlock [44]
                0.00    0.00    6921/6921        vout_snapshot_IsRequested [191]
                0.00    0.00    6921/392860      vlc_mutex_lock [65]
                0.00    0.00       1/1           filter_NewBlend [523]
                0.00    0.00    6922/6922        vout_UpdateDisplaySourceProperties [579]
-----------------------------------------------
                0.00    0.15       1/1           joinable_thread [2]
[19]     0.6    0.00    0.15       1         Run [19]
                0.00    0.15       1/1           MainLoop [20]
                0.00    0.00       1/1           Init [205]
                0.00    0.00       1/1           End [298]
                0.00    0.00       1/1           input_SendEventDead [437]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/12761       vlc_savecancel [561]
                0.00    0.00       1/12920       vlc_restorecancel [560]
-----------------------------------------------
                0.00    0.15       1/1           Run [19]
[20]     0.6    0.00    0.15       1         MainLoop [20]
                0.00    0.14    1282/1282        Demux(demux_t*) [21]
                0.00    0.00    4317/4325        es_out_Control [140]
                0.00    0.00    1308/30699       vlc_cond_timedwait [48]
                0.00    0.00      23/273         vlc_Log [134]
                0.00    0.00    1329/156222      mdate [52]
                0.00    0.00    1722/460619      vlc_mutex_unlock [44]
                0.00    0.00     116/116         input_SendEventStatistics [229]
                0.00    0.00    1725/392860      vlc_mutex_lock [65]
                0.00    0.00       1/224         var_Create [156]
                0.00    0.00       1/4           input_ChangeState [375]
                0.00    0.00       2/2358        var_GetChecked [206]
                0.00    0.00    2608/3102        vlc_object_alive [594]
                0.00    0.00    1276/1286        demux_Control [598]
                0.00    0.00     116/116         stats_ComputeInputStats [623]
-----------------------------------------------
                0.00    0.14    1282/1282        MainLoop [20]
[21]     0.6    0.00    0.14    1282         Demux(demux_t*) [21]
                0.01    0.07    7702/7702        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
                0.01    0.05    7706/7706        BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
                0.00    0.00     424/8119        es_out_Control(es_out_t*, int, ...) [125]
                0.00    0.00    1284/460619      vlc_mutex_unlock [44]
                0.00    0.00    1284/392860      vlc_mutex_lock [65]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00   15401/15401       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [16177]
-----------------------------------------------
                                                 <spontaneous>
[22]     0.6    0.13    0.00                 ff_imdct_half_neon [22]
-----------------------------------------------
                0.00    0.11    6907/6907        GetOutput [14]
[23]     0.5    0.00    0.11    6907         decoder_NewPicture [23]
                0.06    0.05    6907/6907        vout_new_buffer [24]
-----------------------------------------------
                0.06    0.05    6907/6907        decoder_NewPicture [23]
[24]     0.5    0.06    0.05    6907         vout_new_buffer [24]
                0.00    0.03   10373/10373       vout_GetPicture [68]
                0.00    0.01    3480/3481        msleep [85]
                0.00    0.00    3477/3477        vout_FixLeaks [143]
                0.00    0.00   17328/460619      vlc_mutex_unlock [44]
                0.00    0.00   17343/392860      vlc_mutex_lock [65]
                0.00    0.00       1/2           input_SendEventVout [406]
                0.00    0.00       1/31285       input_resource_RequestVout <cycle 4> [231]
                0.00    0.00    3478/3478        harmful_delay [592]
                0.00    0.00       1/6922        vlc_fourcc_IsYUV [578]
                0.00    0.00       1/70          vlc_ureduce [630]
                0.00    0.00       1/2           DecoderUpdateFormatLocked [764]
                0.00    0.00       1/31          vlc_fourcc_GetChromaDescription [645]
-----------------------------------------------
                0.01    0.10    6911/6911        GetOutput [14]
[25]     0.5    0.01    0.10    6911         GetVlcChromaSizes [25]
                0.00    0.10    6911/6997        vlc_fourcc_GetCodec [27]
-----------------------------------------------
                                   4             Find [26]
                0.00    0.00       7/7005        vlc_fourcc_GetDescription [239]
                0.01    0.09    6998/7005        vlc_fourcc_GetCodec [27]
[26]     0.4    0.01    0.09    7005+4       Find [26]
                0.09    0.00    7006/7006        Lookup [28]
                                   4             Find [26]
-----------------------------------------------
                0.00    0.00       1/6997        GetOmxRole [342]
                0.00    0.00       1/6997        GetFfmpegCodec [308]
                0.00    0.00       1/6997        VoutValidateFormat [343]
                0.00    0.00       1/6997        vlc_fourcc_GetCodecFromString [345]
                0.00    0.00       1/6997        vlc_fourcc_GetCodecAudio [344]
                0.00    0.00       1/6997        EsOutAdd <cycle 4> [234]
                0.00    0.00       4/6997        es_format_IsSimilar [271]
                0.00    0.00      12/6997        aout_BitsPerSample [226]
                0.00    0.00      64/6997        video_format_Setup [182]
                0.00    0.10    6911/6997        GetVlcChromaSizes [25]
[27]     0.4    0.00    0.10    6997         vlc_fourcc_GetCodec [27]
                0.01    0.09    6998/7005        Find [26]
-----------------------------------------------
                0.09    0.00    7006/7006        Find [26]
[28]     0.4    0.09    0.00    7006         Lookup [28]
-----------------------------------------------
                                                 <spontaneous>
[29]     0.4    0.09    0.00                 __gnu_mcount_nc [29]
-----------------------------------------------
                0.01    0.07    7702/7702        Demux(demux_t*) [21]
[30]     0.3    0.01    0.07    7702         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
                0.00    0.05    7856/8144        EbmlParser::Get(int) [43]
                0.00    0.02    7693/7970        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
                0.00    0.00      51/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [228]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00      51/120         EbmlParser::Up() [330]
                0.00    0.00    7843/7843        EbmlParser::GetLevel() const [16196]
                0.00    0.00    7747/63875       libebml::EbmlElement::GetSize() const [16171]
                0.00    0.00    7739/7739        EbmlParser::IsTopPresent(libebml::EbmlElement*) const [16198]
                0.00    0.00    7697/15392       matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16178]
                0.00    0.00    7686/7686        libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16201]
                0.00    0.00    7685/7685        libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [16202]
                0.00    0.00      51/127         libebml::EbmlUInteger::operator unsigned long long() const [16218]
                0.00    0.00      51/121         EbmlParser::Down() [16220]
                0.00    0.00       1/1           matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16526]
-----------------------------------------------
                                                 <spontaneous>
[31]     0.3    0.08    0.00                 ff_vector_fmul_window_neon [31]
-----------------------------------------------
                                                 <spontaneous>
[32]     0.3    0.08    0.00                 profCount [32]
-----------------------------------------------
                                                 <spontaneous>
[33]     0.3    0.08    0.00                 __emutls_get_address [33]
-----------------------------------------------
                0.00    0.01    6921/27699       ThreadDisplayPicture [18]
                0.00    0.01    6925/27699       vout_FilterDisplay [54]
                0.01    0.03   13853/27699       ThreadDisplayPreparePicture [46]
[34]     0.3    0.01    0.05   27699         filter_chain_VideoFilter [34]
                0.00    0.05   20729/20729       FilterChainVideoFilter [41]
-----------------------------------------------
                0.06    0.00    6913/6913        GetOutput [14]
[35]     0.3    0.06    0.00    6913         CopyOmxPicture [35]
-----------------------------------------------
                0.06    0.00    5969/5969        DecodeAudio [5]
[36]     0.3    0.06    0.00    5969         aout_ChannelExtract [36]
-----------------------------------------------
                                                 <spontaneous>
[37]     0.3    0.06    0.00                 fft_pass_neon [37]
-----------------------------------------------
                0.01    0.05    7706/7706        Demux(demux_t*) [21]
[38]     0.3    0.01    0.05    7706         BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
                0.00    0.04   12909/12909       Send [55]
                0.00    0.01    7695/8119        es_out_Control(es_out_t*, int, ...) [125]
                0.00    0.01   12895/12895       MemToBlock(unsigned char*, unsigned int, unsigned int) [138]
                0.00    0.00   38651/38651       libmatroska::DataBuffer::Size() [16172]
                0.00    0.00   25771/25771       libmatroska::DataBuffer::Buffer() [16174]
                0.00    0.00    7695/15392       matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16178]
                0.00    0.00    7674/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.05    0.01   12870/12870       DecoderFixTs [40]
[39]     0.2    0.05    0.01   12870         input_clock_ConvertTS [39]
                0.00    0.00   12879/156222      mdate [52]
                0.00    0.00   12879/460619      vlc_mutex_unlock [44]
                0.00    0.00   12874/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.03    5964/12863       DecoderDecodeAudio [4]
                0.00    0.03    6899/12863       DecoderDecodeVideo [9]
[40]     0.2    0.00    0.06   12863         DecoderFixTs [40]
                0.05    0.01   12870/12870       input_clock_ConvertTS [39]
-----------------------------------------------
                0.00    0.05   20729/20729       filter_chain_VideoFilter [34]
[41]     0.2    0.00    0.05   20729         FilterChainVideoFilter [41]
                0.01    0.04    6925/6925        Semiplanar_Planar_420_Filter [42]
-----------------------------------------------
                0.01    0.04    6925/6925        FilterChainVideoFilter [41]
[42]     0.2    0.01    0.04    6925         Semiplanar_Planar_420_Filter [42]
                0.02    0.00    6920/6923        Open [76]
                0.00    0.01    6925/6925        VideoBufferNew [89]
                0.01    0.00    6921/6921        picture_CopyProperties [110]
                0.00    0.00    6922/31174       picture_Release [102]
                0.00    0.00       2/273         vlc_Log [134]
-----------------------------------------------
                0.00    0.00       3/8144        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
                0.00    0.00       6/8144        matroska_segment_c::Preload() [136]
                0.00    0.00      14/8144        matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00     265/8144        matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
                0.00    0.05    7856/8144        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
[43]     0.2    0.00    0.05    8144         EbmlParser::Get(int) [43]
                0.00    0.03    8029/8351        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
                0.02    0.00    7894/8217        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [71]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00    8029/8351        libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16184]
                0.00    0.00    7938/7950        libebml::EbmlElement::IsDummy() const [16195]
                0.00    0.00    7808/7809        libmatroska::KaxCluster::Generic() const [16197]
                0.00    0.00    7704/7981        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16189]
                0.00    0.00    7696/8250        libmatroska::KaxSimpleBlock::Generic() const [16186]
                0.00    0.00     132/132         libmatroska::KaxCueTrackPositions::Generic() const [16217]
                0.00    0.00      66/66          libmatroska::KaxCuePoint::Generic() const [16233]
                0.00    0.00      51/53          libmatroska::KaxClusterTimecode::Generic() const [16234]
                0.00    0.00      51/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16223]
                0.00    0.00      50/51          libmatroska::KaxCluster::~KaxCluster() [16237]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Generic() const [16259]
                0.00    0.00      33/33          libmatroska::KaxCueClusterPosition::Generic() const [16258]
                0.00    0.00      33/33          libmatroska::KaxCueTrack::Generic() const [16257]
                0.00    0.00      33/33          libmatroska::KaxCueTime::Generic() const [16256]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16253]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16232]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::~KaxCueTrack() [16229]
                0.00    0.00      33/66          libmatroska::KaxCueTime::~KaxCueTime() [16226]
                0.00    0.00      32/33          libmatroska::KaxCuePoint::~KaxCuePoint() [16247]
                0.00    0.00      32/33          libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16250]
                0.00    0.00      10/10          libmatroska::KaxSegment::Generic() const [16267]
                0.00    0.00      10/10          libmatroska::KaxSeek::Generic() const [16268]
                0.00    0.00       4/4           libebml::EbmlVoid::Generic() const [16329]
                0.00    0.00       4/4           libebml::EbmlVoid::~EbmlVoid() [16309]
                0.00    0.00       3/3           libmatroska::KaxSeekHead::Generic() const [16342]
                0.00    0.00       3/3           libmatroska::KaxSeekPosition::Generic() const [16343]
                0.00    0.00       3/3           libmatroska::KaxSeekID::Generic() const [16345]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::~KaxSeekPosition() [16278]
                0.00    0.00       3/3           libmatroska::KaxSeek::~KaxSeek() [16339]
                0.00    0.00       3/6           libmatroska::KaxSeekID::~KaxSeekID() [16284]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::~KaxSeekHead() [16360]
                0.00    0.00       1/2           libmatroska::KaxTracks::Generic() const [16471]
                0.00    0.00       1/2           libmatroska::KaxInfo::Generic() const [16470]
                0.00    0.00       1/1           libmatroska::KaxCues::Generic() const [16563]
                0.00    0.00       1/2           libmatroska::KaxTracks::~KaxTracks() [16411]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16305]
-----------------------------------------------
                0.00    0.00       1/460619      Close [395]
                0.00    0.00       1/460619      input_DecoderChangeDelay [525]
                0.00    0.00       1/460619      GetOutput [14]
                0.00    0.00       1/460619      InitOmxCore [521]
                0.00    0.00       1/460619      ReadMeta(vlc_object_t*) [542]
                0.00    0.00       1/460619      libvlc_media_player_get_media [530]
                0.00    0.00       1/460619      libvlc_media_player_stop [286]
                0.00    0.00       1/460619      input_item_SetPreparsed [458]
                0.00    0.00       1/460619      input_item_SetURI [527]
                0.00    0.00       1/460619      input_item_SetDuration [457]
                0.00    0.00       1/460619      aout_update_format [209]
                0.00    0.00       1/460619      InitTitle [339]
                0.00    0.00       1/460619      End [298]
                0.00    0.00       1/460619      input_ControlPush [524]
                0.00    0.00       1/460619      input_Stop [471]
                0.00    0.00       1/460619      InputSourceInit [219]
                0.00    0.00       1/460619      Init [205]
                0.00    0.00       1/460619      Run [19]
                0.00    0.00       1/460619      input_resource_PutAout [280]
                0.00    0.00       1/460619      input_resource_HoldAout [528]
                0.00    0.00       1/460619      input_resource_ResetAout [296]
                0.00    0.00       1/460619      input_resource_RequestSout [529]
                0.00    0.00       1/460619      input_resource_Terminate [293]
                0.00    0.00       1/460619      stats_ReinitInputStats [534]
                0.00    0.00       1/460619      VoutDisplayEvent [324]
                0.00    0.00       1/460619      vout_Close [248]
                0.00    0.00       1/460619      FilterRelease [232]
                0.00    0.00       1/460619      spu_ClearChannel [532]
                0.00    0.00       1/460619      vlc_list_children [536]
                0.00    0.00       1/460619      ObjectKillChildrens [505]
                0.00    0.00       1/460619      var_Type [535]
                0.00    0.00       1/460619      input_clock_ChangeSystemOrigin [526]
                0.00    0.00       1/460619      vout_control_Dead [539]
                0.00    0.00       1/460619      vout_snapshot_End [540]
                0.00    0.00       1/460619      input_item_preparsed_changed [473]
                0.00    0.00       1/460619      input_vaControl <cycle 5> [392]
                0.00    0.00       2/460619      EsOutDel [317]
                0.00    0.00       2/460619      Del [314]
                0.00    0.00       2/460619      Flush [361]
                0.00    0.00       2/460619      libvlc_media_player_set_media [378]
                0.00    0.00       2/460619      libvlc_media_player_play [178]
                0.00    0.00       2/460619      input_item_GetName [498]
                0.00    0.00       2/460619      input_item_SetEpgOffline [446]
                0.00    0.00       2/460619      input_DecoderDelete [266]
                0.00    0.00       2/460619      input_DecoderStartWait [367]
                0.00    0.00       2/460619      input_DecoderWait [331]
                0.00    0.00       2/460619      Create [180]
                0.00    0.00       2/460619      input_resource_SetInput [499]
                0.00    0.00       2/460619      ThreadChangeFilters [257]
                0.00    0.00       2/460619      spu_Attach <cycle 4> [265]
                0.00    0.00       2/460619      spu_ChangeSources [503]
                0.00    0.00       2/460619      spu_ChangeFilters [501]
                0.00    0.00       2/460619      spu_ChangeMargin [502]
                0.00    0.00       2/460619      vlc_cleanup_lock [517]
                0.00    0.00       2/460619      vlc_cancel [504]
                0.00    0.00       2/460619      input_clock_SetJitter [497]
                0.00    0.00       2/460619      Add <cycle 4> [447]
                0.00    0.00       2/460619      input_resource_HoldVouts [482]
                0.00    0.00       3/460619      vlc_global_mutex [472]
                0.00    0.00       3/460619      libvlc_retain [469]
                0.00    0.00       3/460619      input_item_SetErrorWhenReading [466]
                0.00    0.00       3/460619      input_item_SetMeta [415]
                0.00    0.00       3/460619      input_item_AddOption [465]
                0.00    0.00       3/460619      input_resource_GetAout [227]
                0.00    0.00       3/460619      EsOutAdd <cycle 4> [234]
                0.00    0.00       4/460619      set_state [417]
                0.00    0.00       4/460619      input_item_GetMeta [452]
                0.00    0.00       4/460619      input_item_UpdateTracksInfo [453]
                0.00    0.00       4/460619      input_DecoderStopWait [451]
                0.00    0.00       4/460619      vout_SetWindowState [455]
                0.00    0.00       4/460619      vlc_cleanup_lock [477]
                0.00    0.00       4/460619      vlc_sem_post [454]
                0.00    0.00       4/460619      input_item_ReplaceInfos [394]
                0.00    0.00       5/460619      vlc_event_attach [445]
                0.00    0.00       5/460619      vout_control_WaitEmpty [373]
                0.00    0.00       6/460619      input_resource_RequestVout <cycle 4> [231]
                0.00    0.00       6/460619      block_FifoEmpty [443]
                0.00    0.00       6/460619      picture_fifo_Flush [444]
                0.00    0.00       7/460619      VoutVideoFilterStaticNewPicture [423]
                0.00    0.00       8/460619      event_attach [426]
                0.00    0.00       8/460619      vlc_event_manager_register_event_type [428]
                0.00    0.00      10/460619      vout_IsEmpty [352]
                0.00    0.00      13/460619      var_Destroy [350]
                0.00    0.00      15/460619      vlc_object_set_name [398]
                0.00    0.00      16/460619      input_DecoderIsEmpty [333]
                0.00    0.00      19/460619      libvlc_get_input_thread [391]
                0.00    0.00      20/460619      block_FifoWake [388]
                0.00    0.00      22/460619      vlc_object_release [382]
                0.00    0.00      24/460619      vlc_custom_create [377]
                0.00    0.00      24/460619      var_TriggerCallback <cycle 5> [376]
                0.00    0.00      26/460619      vout_control_Push [374]
                0.00    0.00      27/460619      libvlc_event_manager_register_event_type [371]
                0.00    0.00      34/460619      var_DelCallback [285]
                0.00    0.00      34/460619      vlc_event_send [354]
                0.00    0.00      51/460619      var_AddCallback [261]
                0.00    0.00     131/460619      vlc_cond_wait [263]
                0.00    0.00     224/460619      var_Create [156]
                0.00    0.00     418/460619      libvlc_media_player_get_state [253]
                0.00    0.00     420/460619      vlc_rwlock_rdlock [258]
                0.00    0.00     420/460619      vlc_rwlock_unlock [95]
                0.00    0.00     424/460619      input_clock_Update [252]
                0.00    0.00     429/460619      input_clock_GetState [251]
                0.00    0.00     493/460619      AReadStream [185]
                0.00    0.00     614/460619      TriggerCallback <cycle 5> [230]
                0.00    0.00     625/460619      var_SetChecked <cycle 5> [235]
                0.00    0.00    1003/460619      var_Change [222]
                0.00    0.00    1284/460619      Demux(demux_t*) [21]
                0.00    0.00    1722/460619      MainLoop [20]
                0.00    0.00    1759/460619      libvlc_event_send [213]
                0.00    0.00    2363/460619      var_GetChecked [206]
                0.00    0.00    2552/460619      input_clock_GetWakeup [203]
                0.00    0.00    3474/460619      vout_FixLeaks [143]
                0.00    0.00    3489/460619      picture_fifo_Peek [152]
                0.00    0.00    5968/460619      TimeGet [90]
                0.00    0.00    5971/460619      Play [148]
                0.00    0.00    6804/460619      vout_PutPicture [146]
                0.00    0.00    6872/460619      picture_fifo_Push [171]
                0.00    0.00    6903/460619      vout_control_Wake [170]
                0.00    0.00    6920/460619      vout_snapshot_IsRequested [191]
                0.00    0.00    6925/460619      ThreadDisplayPicture [18]
                0.00    0.00    6962/460619      ThreadDisplayPreparePicture [46]
                0.00    0.00    6974/460619      picture_fifo_Pop [169]
                0.00    0.00   10373/460619      vout_GetPicture [68]
                0.00    0.00   10382/460619      vlc_cleanup_lock [173]
                0.00    0.00   11949/460619      aout_OutputUnlock [167]
                0.00    0.00   12421/460619      Control <cycle 4> [155]
                0.00    0.00   12441/460619      EsOutControl <cycle 4> [144]
                0.00    0.00   12740/460619      DecoderThread [3]
                0.00    0.00   12855/460619      Send [55]
                0.00    0.00   12858/460619      EsOutSend [66]
                0.00    0.00   12862/460619      input_DecoderIsCcPresent [159]
                0.00    0.00   12870/460619      input_DecoderHasFormatChanged [158]
                0.00    0.00   12879/460619      input_clock_ConvertTS [39]
                0.00    0.00   12886/460619      block_FifoGet [130]
                0.00    0.00   12913/460619      block_FifoPut [157]
                0.00    0.00   13307/460619      vout_control_Pop [57]
                0.00    0.00   13351/460619      vout_AreDisplayPicturesInvalid [72]
                0.00    0.00   13383/460619      Thread [13]
                0.00    0.00   13854/460619      PlayedCallback [154]
                0.00    0.00   17328/460619      vout_new_buffer [24]
                0.00    0.00   17902/460619      DecoderDecodeAudio [4]
                0.00    0.00   19856/460619      DecoderDecodeVideo [9]
                0.00    0.00   20763/460619      spu_Render [145]
                0.00    0.00   26577/460619      vout_ManageDisplay [78]
                0.01    0.00   61207/460619      vlc_cond_timedwait [48]
[44]     0.2    0.05    0.00  460619         vlc_mutex_unlock [44]
-----------------------------------------------
                0.00    0.05    5971/5971        aac_decode_frame_int [8]
[45]     0.2    0.00    0.05    5971         ff_get_buffer [45]
                0.02    0.02    5969/5969        avcodec_default_get_buffer2 [47]
                0.01    0.00    5970/11940       av_get_channel_layout_nb_channels [105]
-----------------------------------------------
                0.00    0.04    6987/6987        ThreadDisplayPicture [18]
[46]     0.2    0.00    0.04    6987         ThreadDisplayPreparePicture [46]
                0.01    0.03   13853/27699       filter_chain_VideoFilter [34]
                0.00    0.00    6894/31121       picture_Hold [75]
                0.00    0.00    6909/31174       picture_Release [102]
                0.00    0.00    6896/156222      mdate [52]
                0.00    0.00    6976/6976        picture_fifo_Pop [169]
                0.00    0.00    6962/460619      vlc_mutex_unlock [44]
                0.00    0.00      28/273         vlc_Log [134]
                0.00    0.00    6987/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.02    0.02    5969/5969        ff_get_buffer [45]
[47]     0.2    0.02    0.02    5969         avcodec_default_get_buffer2 [47]
                0.01    0.01   11937/11937       av_buffer_pool_get [79]
                0.00    0.00    5969/11940       av_get_channel_layout_nb_channels [105]
                0.00    0.00       1/1           av_buffer_pool_init [510]
                0.00    0.00    5970/11942       av_sample_fmt_is_planar [563]
                0.00    0.00       1/5           av_buffer_pool_uninit [720]
                0.00    0.00       1/1           av_samples_get_buffer_size [980]
-----------------------------------------------
                0.00    0.00    1308/30699       MainLoop [20]
                0.00    0.01    5984/30699       DeleteDecoder <cycle 4> [128]
                0.00    0.01   10450/30699       mwait [56]
                0.00    0.01   12957/30699       vout_control_Pop [57]
[48]     0.2    0.01    0.03   30699         vlc_cond_timedwait [48]
                0.02    0.00   61236/74267       vlc_testcancel [61]
                0.01    0.00   61207/460619      vlc_mutex_unlock [44]
                0.00    0.00   61347/68402       vlc_mutex_trylock [548]
-----------------------------------------------
                0.00    0.04   13371/13371       Thread [13]
[49]     0.2    0.00    0.04   13371         vout_ManageWrapper [49]
                0.02    0.00   13386/13386       vout_AreDisplayPicturesInvalid [72]
                0.01    0.01   13319/13319       vout_ManageDisplay [78]
-----------------------------------------------
                0.01    0.00    5970/17916       avcodec_decode_audio4 [6]
                0.01    0.00    5973/17916       aac_decode_frame_int [8]
                0.01    0.00    5973/17916       av_frame_free [84]
[50]     0.2    0.03    0.01   17916         av_frame_unref [50]
                0.01    0.00  143289/143289      av_buffer_unref [100]
                0.00    0.00   35829/71794       av_freep [547]
-----------------------------------------------
                                                 <spontaneous>
[51]     0.2    0.04    0.00                 __divdi3 [51]
-----------------------------------------------
                0.00    0.00       1/156222      DisplayNew [273]
                0.00    0.00       2/156222      Del [314]
                0.00    0.00       2/156222      Thread [13]
                0.00    0.00       2/156222      Add <cycle 4> [447]
                0.00    0.00       3/156222      es_out_Control <cycle 4> [214]
                0.00    0.00       4/156222      AStreamPrebufferStream [259]
                0.00    0.00       6/156222      aout_DecIsEmpty [364]
                0.00    0.00     628/156222      AStreamRefillStream [175]
                0.00    0.00     849/156222      EsOutControl <cycle 4> [144]
                0.00    0.00     855/156222      Control <cycle 4> [155]
                0.00    0.00    1329/156222      MainLoop [20]
                0.00    0.00    3480/156222      msleep [85]
                0.00    0.00    6896/156222      ThreadDisplayPreparePicture [46]
                0.00    0.00   11932/156222      aout_DecPlay [15]
                0.00    0.00   12879/156222      input_clock_ConvertTS [39]
                0.00    0.00   12888/156222      Send [55]
                0.00    0.00   13337/156222      vout_ManageDisplay [78]
                0.00    0.00   13346/156222      vout_SetInterlacingState [150]
                0.00    0.00   13389/156222      vout_control_Pop [57]
                0.00    0.00   16585/156222      AStreamSeekStream [87]
                0.01    0.00   47809/156222      ThreadDisplayPicture [18]
[52]     0.2    0.04    0.00  156222         mdate [52]
-----------------------------------------------
[53]     0.2    0.00    0.04   31285+25958   <cycle 4 as a whole> [53]
                0.00    0.01      65             generic_start <cycle 4> [88]
                0.00    0.01   18826             DeleteDecoder <cycle 4> [128]
                0.00    0.01       1             Open(vlc_object_t*) <cycle 4> [131]
                0.00    0.00   12449             EsOutControl <cycle 4> [144]
                0.00    0.00   12449             Control <cycle 4> [155]
                0.00    0.00      18             vlc_module_load <cycle 4> [177]
                0.00    0.00       2             vout_Request <cycle 4> [198]
                0.00    0.00       9             es_out_Control <cycle 4> [214]
                0.00    0.00       4             input_resource_RequestVout <cycle 4> [231]
                0.00    0.00       2             EsOutAdd <cycle 4> [234]
                0.00    0.00       2             spu_Attach <cycle 4> [265]
                0.00    0.00       2             SpuRenderCreateAndLoadText <cycle 4> [283]
                0.00    0.00       1             matroska_segment_c::Select(long long) <cycle 4> [284]
                0.00    0.00       1             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [335]
                0.00    0.00       1             spu_Create <cycle 4> [336]
                0.00    0.00       2             EsSelect <cycle 4> [358]
                0.00    0.00       2             EsCreateDecoder <cycle 4> [366]
                0.00    0.00       2             EsUnselect <cycle 4> [422]
                0.00    0.00       2             Add <cycle 4> [447]
                0.00    0.00       2             SpuRenderCreateAndLoadScale <cycle 4> [495]
                0.00    0.00       2             CreateDecoder <cycle 4> [494]
                0.00    0.00   12440             es_out_Control <cycle 4> [562]
                0.00    0.00     859             CmdExecuteControl <cycle 4> [599]
                0.00    0.00      65             module_load <cycle 4> [632]
                0.00    0.00      18             module_need <cycle 4> [666]
                0.00    0.00       5             es_out_Control(es_out_t*, int, ...) <cycle 4> [16288]
                0.00    0.00       4             EsOutSelect <cycle 4> [728]
                0.00    0.00       2             input_resource_TerminateVout <cycle 4> [851]
                0.00    0.00       2             input_DecoderNew <cycle 4> [847]
                0.00    0.00       2             decoder_New <cycle 4> [829]
                0.00    0.00       1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
                0.00    0.00       1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
-----------------------------------------------
                0.02    0.02    6923/6923        ThreadDisplayPicture [18]
[54]     0.2    0.02    0.02    6923         vout_FilterDisplay [54]
                0.00    0.01    6925/27699       filter_chain_VideoFilter [34]
                0.00    0.00    6923/6923        filter_chain_GetLength [576]
-----------------------------------------------
                0.00    0.04   12909/12909       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
[55]     0.1    0.00    0.04   12909         Send [55]
                0.00    0.03   12901/12901       CmdExecuteSend [67]
                0.00    0.00   12888/156222      mdate [52]
                0.00    0.00   12855/460619      vlc_mutex_unlock [44]
                0.00    0.00   12911/392860      vlc_mutex_lock [65]
                0.00    0.00   12885/25317       TsStop [554]
-----------------------------------------------
                0.01    0.00    3483/10398       msleep [85]
                0.01    0.01    6915/10398       ThreadDisplayPicture [18]
[56]     0.1    0.02    0.01   10398         mwait [56]
                0.00    0.01   10450/30699       vlc_cond_timedwait [48]
                0.00    0.00   10396/392860      vlc_mutex_lock [65]
                0.00    0.00   10398/10463       vlc_mutex_init [567]
                0.00    0.00   10395/10437       vlc_cond_init [568]
                0.00    0.00   10378/10432       vlc_mutex_destroy [569]
                0.00    0.00   10368/10405       vlc_cond_destroy [570]
-----------------------------------------------
                0.01    0.02   13353/13353       Thread [13]
[57]     0.1    0.01    0.02   13353         vout_control_Pop [57]
                0.00    0.01   12957/30699       vlc_cond_timedwait [48]
                0.00    0.00   13389/156222      mdate [52]
                0.00    0.00   13307/460619      vlc_mutex_unlock [44]
                0.00    0.00   13372/392860      vlc_mutex_lock [65]
                0.00    0.00   13287/26822       vlc_cond_broadcast [552]
-----------------------------------------------
                0.00    0.00     322/8351        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.03    8029/8351        EbmlParser::Get(int) [43]
[58]     0.1    0.00    0.03    8351         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
                0.00    0.02   24695/32908       vlc_stream_io_callback::read(void*, unsigned int) [60]
                0.00    0.01    8347/16586       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
                0.00    0.00    8348/16336       vlc_stream_io_callback::getFilePointer() [141]
                0.00    0.00   24460/29868       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16173]
                0.00    0.00    8341/8341        libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00    7979/7979        libmatroska::KaxInternalBlock::ValidateSize() const [16193]
                0.00    0.00     210/210         libebml::EbmlUInteger::ValidateSize() const [16207]
                0.00    0.00     132/137         libebml::EbmlMaster::ValidateSize() const [16216]
                0.00    0.00      12/7950        libebml::EbmlElement::IsDummy() const [16195]
                0.00    0.00       6/6           libebml::EbmlBinary::ValidateSize() const [16286]
                0.00    0.00       4/4           libebml::EbmlString::ValidateSize() const [16326]
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ValidateSize() const [16328]
                0.00    0.00       3/3           libmatroska::KaxSeekID::ValidateSize() const [16344]
                0.00    0.00       3/3           libebml::EbmlFloat::ValidateSize() const [16351]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::ValidateSize() const [16451]
                0.00    0.00       2/2           libebml::EbmlDate::ValidateSize() const [16482]
-----------------------------------------------
[59]     0.1    0.02    0.01   32908+65816   <cycle 1 as a whole> [59]
                0.01    0.01   65813             stream_Read <cycle 1> [73]
                0.01    0.00   32911             Read <cycle 1> [101]
-----------------------------------------------
                0.00    0.00      36/32908       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00     190/32908       libebml::IOCallback::readFully(void*, unsigned int) [225]
                0.00    0.01    7987/32908       libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [132]
                0.00    0.02   24695/32908       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[60]     0.1    0.00    0.03   32908         vlc_stream_io_callback::read(void*, unsigned int) [60]
                0.02    0.01   32908/32908       stream_Read <cycle 1> [73]
-----------------------------------------------
                0.00    0.00     130/74267       vlc_cond_wait [263]
                0.01    0.00   12901/74267       block_FifoGet [130]
                0.02    0.00   61236/74267       vlc_cond_timedwait [48]
[61]     0.1    0.03    0.00   74267         vlc_testcancel [61]
-----------------------------------------------
                0.03    0.00    5972/5972        DecodeAudio [5]
[62]     0.1    0.03    0.00    5972         aout_Interleave [62]
-----------------------------------------------
                0.01    0.00     659/1319        decode_ics_info [11]
                0.02    0.00     660/1319        spectral_to_sample [70]
[63]     0.1    0.03    0.00    1319         apply_ltp [63]
-----------------------------------------------
                                                 <spontaneous>
[64]     0.1    0.03    0.00                 fft16_neon [64]
-----------------------------------------------
                0.00    0.00       1/392860      input_DecoderChangeDelay [525]
                0.00    0.00       1/392860      GetOutput [14]
                0.00    0.00       1/392860      InitOmxCore [521]
                0.00    0.00       1/392860      ReadMeta(vlc_object_t*) [542]
                0.00    0.00       1/392860      libvlc_media_player_get_media [530]
                0.00    0.00       1/392860      libvlc_media_player_stop [286]
                0.00    0.00       1/392860      input_item_SetPreparsed [458]
                0.00    0.00       1/392860      input_item_SetURI [527]
                0.00    0.00       1/392860      input_item_SetDuration [457]
                0.00    0.00       1/392860      aout_update_format [209]
                0.00    0.00       1/392860      InitTitle [339]
                0.00    0.00       1/392860      End [298]
                0.00    0.00       1/392860      input_ControlPush [524]
                0.00    0.00       1/392860      input_Stop [471]
                0.00    0.00       1/392860      InputSourceInit [219]
                0.00    0.00       1/392860      Init [205]
                0.00    0.00       1/392860      Run [19]
                0.00    0.00       1/392860      input_resource_HoldAout [528]
                0.00    0.00       1/392860      input_resource_ResetAout [296]
                0.00    0.00       1/392860      input_resource_RequestSout [529]
                0.00    0.00       1/392860      input_resource_Terminate [293]
                0.00    0.00       1/392860      stats_ReinitInputStats [534]
                0.00    0.00       1/392860      VoutDisplayEvent [324]
                0.00    0.00       1/392860      vout_Close [248]
                0.00    0.00       1/392860      FilterRelease [232]
                0.00    0.00       1/392860      spu_ClearChannel [532]
                0.00    0.00       1/392860      aout_Destroy [297]
                0.00    0.00       1/392860      vlc_list_children [536]
                0.00    0.00       1/392860      ObjectKillChildrens [505]
                0.00    0.00       1/392860      var_Type [535]
                0.00    0.00       1/392860      input_clock_ChangeSystemOrigin [526]
                0.00    0.00       1/392860      vout_control_Dead [539]
                0.00    0.00       1/392860      vout_snapshot_End [540]
                0.00    0.00       1/392860      input_item_preparsed_changed [473]
                0.00    0.00       1/392860      input_vaControl <cycle 5> [392]
                0.00    0.00       2/392860      EsOutDel [317]
                0.00    0.00       2/392860      Del [314]
                0.00    0.00       2/392860      Flush [361]
                0.00    0.00       2/392860      libvlc_media_player_set_media [378]
                0.00    0.00       2/392860      libvlc_media_player_play [178]
                0.00    0.00       2/392860      input_item_GetName [498]
                0.00    0.00       2/392860      input_item_SetEpgOffline [446]
                0.00    0.00       2/392860      input_DecoderDelete [266]
                0.00    0.00       2/392860      input_DecoderStartWait [367]
                0.00    0.00       2/392860      input_DecoderWait [331]
                0.00    0.00       2/392860      Create [180]
                0.00    0.00       2/392860      input_resource_PutAout [280]
                0.00    0.00       2/392860      input_resource_SetInput [499]
                0.00    0.00       2/392860      ThreadChangeFilters [257]
                0.00    0.00       2/392860      spu_Attach <cycle 4> [265]
                0.00    0.00       2/392860      spu_ChangeSources [503]
                0.00    0.00       2/392860      spu_ChangeFilters [501]
                0.00    0.00       2/392860      spu_ChangeMargin [502]
                0.00    0.00       2/392860      vlc_cancel [504]
                0.00    0.00       2/392860      input_clock_SetJitter [497]
                0.00    0.00       2/392860      Add <cycle 4> [447]
                0.00    0.00       2/392860      input_resource_HoldVouts [482]
                0.00    0.00       3/392860      vlc_global_mutex [472]
                0.00    0.00       3/392860      libvlc_retain [469]
                0.00    0.00       3/392860      input_item_SetErrorWhenReading [466]
                0.00    0.00       3/392860      input_item_SetMeta [415]
                0.00    0.00       3/392860      input_item_AddOption [465]
                0.00    0.00       3/392860      input_resource_GetAout [227]
                0.00    0.00       3/392860      EsOutAdd <cycle 4> [234]
                0.00    0.00       4/392860      set_state [417]
                0.00    0.00       4/392860      input_item_GetMeta [452]
                0.00    0.00       4/392860      input_item_UpdateTracksInfo [453]
                0.00    0.00       4/392860      input_DecoderStopWait [451]
                0.00    0.00       4/392860      vout_SetWindowState [455]
                0.00    0.00       4/392860      vlc_sem_post [454]
                0.00    0.00       4/392860      vlc_sem_wait [413]
                0.00    0.00       4/392860      input_item_ReplaceInfos [394]
                0.00    0.00       5/392860      vlc_event_attach [445]
                0.00    0.00       5/392860      vout_control_WaitEmpty [373]
                0.00    0.00       6/392860      input_resource_RequestVout <cycle 4> [231]
                0.00    0.00       6/392860      VoutVideoFilterStaticNewPicture [423]
                0.00    0.00       6/392860      block_FifoEmpty [443]
                0.00    0.00       6/392860      picture_fifo_Flush [444]
                0.00    0.00       8/392860      event_attach [426]
                0.00    0.00       8/392860      vlc_event_manager_register_event_type [428]
                0.00    0.00      10/392860      vout_IsEmpty [352]
                0.00    0.00      13/392860      var_Destroy [350]
                0.00    0.00      15/392860      vlc_object_set_name [398]
                0.00    0.00      16/392860      input_DecoderIsEmpty [333]
                0.00    0.00      19/392860      libvlc_get_input_thread [391]
                0.00    0.00      20/392860      block_FifoWake [388]
                0.00    0.00      22/392860      vlc_object_release [382]
                0.00    0.00      24/392860      vlc_custom_create [377]
                0.00    0.00      24/392860      var_TriggerCallback <cycle 5> [376]
                0.00    0.00      26/392860      vout_control_Push [374]
                0.00    0.00      27/392860      libvlc_event_manager_register_event_type [371]
                0.00    0.00      34/392860      var_DelCallback [285]
                0.00    0.00      34/392860      vlc_event_send [354]
                0.00    0.00      51/392860      var_AddCallback [261]
                0.00    0.00     224/392860      var_Create [156]
                0.00    0.00     420/392860      vlc_rwlock_rdlock [258]
                0.00    0.00     420/392860      vlc_rwlock_unlock [95]
                0.00    0.00     425/392860      input_clock_Update [252]
                0.00    0.00     431/392860      libvlc_media_player_get_state [253]
                0.00    0.00     432/392860      input_clock_GetState [251]
                0.00    0.00     493/392860      AReadStream [185]
                0.00    0.00     613/392860      TriggerCallback <cycle 5> [230]
                0.00    0.00     625/392860      var_SetChecked <cycle 5> [235]
                0.00    0.00    1002/392860      var_Change [222]
                0.00    0.00    1284/392860      Demux(demux_t*) [21]
                0.00    0.00    1725/392860      MainLoop [20]
                0.00    0.00    1758/392860      libvlc_event_send [213]
                0.00    0.00    2359/392860      var_GetChecked [206]
                0.00    0.00    2550/392860      input_clock_GetWakeup [203]
                0.00    0.00    3478/392860      vout_FixLeaks [143]
                0.00    0.00    3489/392860      picture_fifo_Peek [152]
                0.00    0.00    5970/392860      Play [148]
                0.00    0.00    5973/392860      TimeGet [90]
                0.00    0.00    5980/392860      aout_OutputUnlock [167]
                0.00    0.00    5983/392860      aout_OutputLock [204]
                0.00    0.00    6901/392860      vout_control_Wake [170]
                0.00    0.00    6902/392860      picture_fifo_Push [171]
                0.00    0.00    6910/392860      vout_PutPicture [146]
                0.00    0.00    6921/392860      ThreadDisplayPicture [18]
                0.00    0.00    6979/392860      picture_fifo_Pop [169]
                0.00    0.00    6987/392860      ThreadDisplayPreparePicture [46]
                0.00    0.00   10377/392860      vout_GetPicture [68]
                0.00    0.00   10396/392860      mwait [56]
                0.00    0.00   12449/392860      EsOutControl <cycle 4> [144]
                0.00    0.00   12449/392860      Control <cycle 4> [155]
                0.00    0.00   12822/392860      DecoderThread [3]
                0.00    0.00   12864/392860      block_FifoGet [130]
                0.00    0.00   12866/392860      input_DecoderIsCcPresent [159]
                0.00    0.00   12874/392860      input_clock_ConvertTS [39]
                0.00    0.00   12884/392860      input_DecoderHasFormatChanged [158]
                0.00    0.00   12893/392860      EsOutSend [66]
                0.00    0.00   12906/392860      block_FifoPut [157]
                0.00    0.00   12911/392860      Send [55]
                0.00    0.00   13285/392860      Thread [13]
                0.00    0.00   13372/392860      vout_control_Pop [57]
                0.00    0.00   13395/392860      vout_AreDisplayPicturesInvalid [72]
                0.00    0.00   13859/392860      PlayedCallback [154]
                0.00    0.00   17343/392860      vout_new_buffer [24]
                0.00    0.00   17902/392860      DecoderDecodeAudio [4]
                0.00    0.00   19859/392860      DecoderDecodeVideo [9]
                0.00    0.00   20765/392860      spu_Render [145]
                0.00    0.00   26638/392860      vout_ManageDisplay [78]
[65]     0.1    0.03    0.00  392860         vlc_mutex_lock [65]
-----------------------------------------------
                0.01    0.02   12903/12903       CmdExecuteSend [67]
[66]     0.1    0.01    0.02   12903         EsOutSend [66]
                0.01    0.00   12889/12893       input_DecoderDecode [86]
                0.00    0.00   12883/12883       input_DecoderHasFormatChanged [158]
                0.00    0.00   12859/12859       input_DecoderIsCcPresent [159]
                0.00    0.00   12858/460619      vlc_mutex_unlock [44]
                0.00    0.00   12893/392860      vlc_mutex_lock [65]
                0.00    0.00       2/4           info_category_AddInfo [244]
                0.00    0.00       2/33          es_format_Clean [642]
-----------------------------------------------
                0.00    0.03   12901/12901       Send [55]
[67]     0.1    0.00    0.03   12901         CmdExecuteSend [67]
                0.01    0.02   12903/12903       EsOutSend [66]
-----------------------------------------------
                0.00    0.03   10373/10373       vout_new_buffer [24]
[68]     0.1    0.00    0.03   10373         vout_GetPicture [68]
                0.01    0.01   10383/17307       picture_pool_Get [69]
                0.01    0.00    6885/6915        video_format_CopyCrop [111]
                0.00    0.00   10373/460619      vlc_mutex_unlock [44]
                0.00    0.00   10377/392860      vlc_mutex_lock [65]
                0.00    0.00    6874/6874        picture_Reset [585]
-----------------------------------------------
                0.01    0.00    6924/17307       VideoBufferNew [89]
                0.01    0.01   10383/17307       vout_GetPicture [68]
[69]     0.1    0.02    0.01   17307         picture_pool_Get [69]
                0.01    0.00   13824/31121       picture_Hold [75]
                0.00    0.00    6925/6926        AndroidLockSurface [323]
-----------------------------------------------
                0.01    0.02    5972/5972        aac_decode_frame_int [8]
[70]     0.1    0.01    0.02    5972         spectral_to_sample [70]
                0.02    0.00     660/1319        apply_ltp [63]
                0.00    0.00   11940/11940       imdct_and_windowing [565]
-----------------------------------------------
                0.00    0.00       1/8217        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
                0.00    0.00     322/8217        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.02    0.00    7894/8217        EbmlParser::Get(int) [43]
[71]     0.1    0.02    0.00    8217         libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [71]
                0.00    0.00    8221/16586       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
                0.00    0.00    8218/8899        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16181]
-----------------------------------------------
                0.02    0.00   13386/13386       vout_ManageWrapper [49]
[72]     0.1    0.02    0.00   13386         vout_AreDisplayPicturesInvalid [72]
                0.00    0.00   13351/460619      vlc_mutex_unlock [44]
                0.00    0.00   13395/392860      vlc_mutex_lock [65]
-----------------------------------------------
                               32905             Read <cycle 1> [101]
                0.02    0.01   32908/32908       vlc_stream_io_callback::read(void*, unsigned int) [60]
[73]     0.1    0.01    0.01   65813         stream_Read <cycle 1> [73]
                0.01    0.00   32907/32907       AStreamReadNoSeekStream [92]
                0.00    0.00   32906/32906       AStreamReadStream [550]
                               32911             Read <cycle 1> [101]
-----------------------------------------------
                0.00    0.00    1479/37499       AReadStream [185]
                0.01    0.00   17901/37499       DecoderDecodeAudio [4]
                0.01    0.00   18119/37499       DecoderDecodeVideo [9]
[74]     0.1    0.02    0.00   37499         stats_Update [74]
-----------------------------------------------
                0.00    0.00    3484/31121       picture_fifo_Peek [152]
                0.00    0.00    6894/31121       ThreadDisplayPreparePicture [46]
                0.00    0.00    6919/31121       ThreadDisplayPicture [18]
                0.01    0.00   13824/31121       picture_pool_Get [69]
[75]     0.1    0.02    0.00   31121         picture_Hold [75]
-----------------------------------------------
                0.00    0.00       3/6923        generic_start <cycle 4> [88]
                0.02    0.00    6920/6923        Semiplanar_Planar_420_Filter [42]
[76]     0.1    0.02    0.00    6923         Open [76]
                0.00    0.00       3/7           vlc_CPU [697]
-----------------------------------------------
                0.00    0.00     277/7970        libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
                0.00    0.02    7693/7970        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
[77]     0.1    0.00    0.02    7970         libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
                0.01    0.00    7979/8256        libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [116]
                0.00    0.01    7976/7983        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [132]
                0.00    0.00    7971/16336       vlc_stream_io_callback::getFilePointer() [141]
                0.00    0.00   15157/63875       libebml::EbmlElement::GetSize() const [16171]
                0.00    0.00   10308/10308       std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [16180]
                0.00    0.00    7969/7969        std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [16194]
                0.00    0.00    4608/4608        libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16203]
                0.00    0.00     785/29868       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16173]
-----------------------------------------------
                0.01    0.01   13319/13319       vout_ManageWrapper [49]
[78]     0.1    0.01    0.01   13319         vout_ManageDisplay [78]
                0.00    0.00   13337/156222      mdate [52]
                0.00    0.00   26577/460619      vlc_mutex_unlock [44]
                0.00    0.00   26638/392860      vlc_mutex_lock [65]
                0.00    0.00       4/273         vlc_Log [134]
                0.00    0.00       4/4           vout_display_Control [749]
-----------------------------------------------
                0.01    0.01   11937/11937       avcodec_default_get_buffer2 [47]
[79]     0.1    0.01    0.01   11937         av_buffer_pool_get [79]
                0.00    0.01   11922/11924       av_buffer_create [129]
                0.00    0.00       2/2           av_buffer_alloc [419]
                0.00    0.00       2/29880       av_mallocz [124]
-----------------------------------------------
                0.00    0.02   49521/49521       stream_vaControl [81]
[80]     0.1    0.00    0.02   49521         AStreamControl [80]
                0.00    0.01   16587/16587       AStreamSeekStream [87]
                0.00    0.00   16583/49754       access_Control [98]
                0.00    0.00       5/49759       FileControl [97]
-----------------------------------------------
                0.00    0.02   49521/49521       Control [82]
[81]     0.1    0.00    0.02   49521         stream_vaControl [81]
                0.00    0.02   49521/49521       AStreamControl [80]
-----------------------------------------------
                0.00    0.02   49516/49516       stream_Control [83]
[82]     0.1    0.00    0.02   49516         Control [82]
                0.00    0.02   49521/49521       stream_vaControl [81]
-----------------------------------------------
                0.00    0.00       1/49516       matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00       4/49516       InputSourceInit [219]
                0.00    0.00   16338/49516       vlc_stream_io_callback::getFilePointer() [141]
                0.00    0.01   33173/49516       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
[83]     0.1    0.00    0.02   49516         stream_Control [83]
                0.00    0.02   49516/49516       Control [82]
-----------------------------------------------
                0.00    0.00       1/5973        avcodec_close [414]
                0.00    0.01    5972/5973        DecodeAudio [5]
[84]     0.1    0.00    0.01    5973         av_frame_free [84]
                0.01    0.00    5973/17916       av_frame_unref [50]
-----------------------------------------------
                0.00    0.00       1/3481        Flush [361]
                0.00    0.01    3480/3481        vout_new_buffer [24]
[85]     0.1    0.00    0.01    3481         msleep [85]
                0.01    0.00    3483/10398       mwait [56]
                0.00    0.00    3480/156222      mdate [52]
-----------------------------------------------
                0.00    0.00       2/12893       DecoderFlush [370]
                0.00    0.00       2/12893       EsOutControl <cycle 4> [144]
                0.01    0.00   12889/12893       EsOutSend [66]
[86]     0.1    0.01    0.00   12893         input_DecoderDecode [86]
                0.00    0.00   12904/12904       block_FifoPut [157]
                0.00    0.00   12898/13746       block_FifoSize [559]
-----------------------------------------------
                0.00    0.01   16587/16587       AStreamControl [80]
[87]     0.0    0.00    0.01   16587         AStreamSeekStream [87]
                0.00    0.01   33170/49754       access_Control [98]
                0.00    0.00   16585/156222      mdate [52]
                0.00    0.00     365/480         AStreamRefillStream [175]
                0.00    0.00      11/11          ASeek [681]
-----------------------------------------------
                                  65             module_load <cycle 4> [632]
[88]     0.0    0.00    0.01      65         generic_start <cycle 4> [88]
                0.00    0.01       1/1           OpenDecoder [93]
                0.00    0.00       2/2           Create [195]
                0.00    0.00       2/2           OpenDecoder [218]
                0.00    0.00       2/2           OpenScaler [220]
                0.00    0.00       1/1           Open [245]
                0.00    0.00       1/1           Open [326]
                0.00    0.00       1/1           Open [327]
                0.00    0.00       1/1           FileOpen [325]
                0.00    0.00       1/1           OpenDecoder [341]
                0.00    0.00       1/1           CreateResampler [346]
                0.00    0.00       3/6923        Open [76]
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [542]
                0.00    0.00       2/2           Open [795]
                0.00    0.00       1/1           Open [945]
                0.00    0.00       1/1           OpenFilter [960]
                0.00    0.00       1/1           Activate [912]
                0.00    0.00       1/1           Activate [909]
                0.00    0.00       1/1           Activate [910]
                0.00    0.00       1/1           Activate [911]
                0.00    0.00       1/1           Activate [907]
                0.00    0.00       1/1           Activate [913]
                0.00    0.00       1/1           Activate [914]
                0.00    0.00       1/1           Create [922]
                0.00    0.00       1/1           Create [923]
                0.00    0.00       1/1           OpenFilter [962]
                0.00    0.00       1/1           OpenFilter [961]
                0.00    0.00       1/1           Activate [908]
                0.00    0.00       1/1           Create [921]
                0.00    0.00       1/1           Probe [965]
                0.00    0.00       1/1           DecoderOpen [924]
                0.00    0.00       1/1           Open [938]
                0.00    0.00       1/1           OpenDecoder [954]
                0.00    0.00       1/1           OpenDecoder [955]
                0.00    0.00       1/1           OpenDecoder [956]
                0.00    0.00       1/1           DecoderOpen [925]
                0.00    0.00       1/1           OpenDecoder [949]
                0.00    0.00       1/1           OpenDecoder [957]
                0.00    0.00       1/1           OpenCommon [947]
                0.00    0.00       1/1           OpenDecoder [952]
                0.00    0.00       1/1           Create [920]
                0.00    0.00       1/1           OpenDecoder [951]
                0.00    0.00       1/1           DecoderOpen [926]
                0.00    0.00       1/1           OpenDecoder [959]
                0.00    0.00       1/1           Open [942]
                0.00    0.00       1/1           OpenDecoder [958]
                0.00    0.00       1/1           OpenDecoder [953]
                0.00    0.00       1/1           OpenDecoder [948]
                0.00    0.00       1/1           OpenDecoder [950]
                0.00    0.00       1/1           Open [944]
                0.00    0.00       1/1           Open [937]
                0.00    0.00       1/1           RarStreamOpen [967]
                0.00    0.00       1/1           StreamOpen [969]
                0.00    0.00       1/1           Open(vlc_object_t*) [16486]
                0.00    0.00       1/1           OpenXZ [964]
                0.00    0.00       1/1           Open [939]
                0.00    0.00       1/1           OpenBzip2 [946]
                0.00    0.00       1/1           OpenGzip [963]
                0.00    0.00       1/1           Open [941]
                0.00    0.00       1/1           Open [943]
                0.00    0.00       1/1           Open [940]
                                   1             Open(vlc_object_t*) <cycle 4> [131]
-----------------------------------------------
                0.00    0.01    6925/6925        Semiplanar_Planar_420_Filter [42]
[89]     0.0    0.00    0.01    6925         VideoBufferNew [89]
                0.01    0.00    6924/17307       picture_pool_Get [69]
                0.00    0.00    6925/6926        Pool [574]
-----------------------------------------------
                0.00    0.00       1/5974        Flush [361]
                0.01    0.00    5973/5974        aout_OutputTimeGet [91]
[90]     0.0    0.01    0.00    5974         TimeGet [90]
                0.00    0.00    5968/460619      vlc_mutex_unlock [44]
                0.00    0.00    5973/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.01    5973/5973        aout_DecPlay [15]
[91]     0.0    0.00    0.01    5973         aout_OutputTimeGet [91]
                0.01    0.00    5973/5974        TimeGet [90]
-----------------------------------------------
                0.01    0.00   32907/32907       stream_Read <cycle 1> [73]
[92]     0.0    0.01    0.00   32907         AStreamReadNoSeekStream [92]
                0.00    0.00     115/480         AStreamRefillStream [175]
-----------------------------------------------
                0.00    0.01       1/1           generic_start <cycle 4> [88]
[93]     0.0    0.00    0.01       1         OpenDecoder [93]
                0.00    0.01       1/1           avcodec_register_all [127]
                0.00    0.00       1/1           InitAudioDec [163]
                0.00    0.00       3/188         var_Inherit [147]
                0.00    0.00       1/1           GetFfmpegCodec [308]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/224         var_Create [156]
                0.00    0.00       1/1           avcodec_alloc_context3 [460]
                0.00    0.00       1/2358        var_GetChecked [206]
                0.00    0.00       2/6           vlc_global_mutex [472]
                0.00    0.00       1/1           av_log_set_level [976]
                0.00    0.00       1/13          av_get_cpu_flags [677]
                0.00    0.00       1/31          av_register_codec_parser [643]
                0.00    0.00       1/1           avcodec_find_decoder [981]
-----------------------------------------------
                0.00    0.00       1/16586       matroska_segment_c::Select(long long) <cycle 4> [284]
                0.00    0.00       1/16586       matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [335]
                0.00    0.00       1/16586       EbmlParser::Reset(demux_t*) [334]
                0.00    0.00       6/16586       matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       9/16586       libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00    8221/16586       libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [71]
                0.00    0.01    8347/16586       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[94]     0.0    0.00    0.01   16586         vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
                0.00    0.01   33173/49516       stream_Control [83]
-----------------------------------------------
                0.00    0.00      15/420         config_GetFloat [212]
                0.00    0.00      45/420         config_GetPsz [174]
                0.00    0.00      87/420         config_GetInt [161]
                0.01    0.00     273/420         vlc_vaLog [135]
[95]     0.0    0.01    0.00     420         vlc_rwlock_unlock [95]
                0.00    0.00     420/460619      vlc_mutex_unlock [44]
                0.00    0.00     420/392860      vlc_mutex_lock [65]
                0.00    0.00     420/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00       1/178         wmavoice_init_static_data [272]
                0.00    0.00       7/178         atrac3_init_static_data [211]
                0.00    0.00      10/178         ff_aac_sbr_init [200]
                0.00    0.00      10/178         ff_ps_init [201]
                0.00    0.00      12/178         aac_decode_init [166]
                0.00    0.00      16/178         ff_atrac3p_init_vlcs [133]
                0.00    0.00      17/178         qdm2_init_static_data [179]
                0.01    0.00     105/178         build_canonical_huff [137]
[96]     0.0    0.01    0.00     178         ff_init_vlc_sparse [96]
                0.00    0.00     178/30130       av_malloc [99]
                0.00    0.00     178/178         build_table [611]
                0.00    0.00     178/71997       av_free [546]
-----------------------------------------------
                0.00    0.00       5/49759       AStreamControl [80]
                0.01    0.00   49754/49759       access_Control [98]
[97]     0.0    0.01    0.00   49759         FileControl [97]
                0.00    0.00       1/188         var_Inherit [147]
-----------------------------------------------
                0.00    0.00       1/49754       stream_AccessNew [240]
                0.00    0.00   16583/49754       AStreamControl [80]
                0.00    0.01   33170/49754       AStreamSeekStream [87]
[98]     0.0    0.00    0.01   49754         access_Control [98]
                0.01    0.00   49754/49759       FileControl [97]
-----------------------------------------------
                0.00    0.00       1/30130       vlc_av_frame_Release [514]
                0.00    0.00       1/30130       avcodec_alloc_context3 [460]
                0.00    0.00       1/30130       ff_yuv2rgb_c_init_tables [513]
                0.00    0.00       2/30130       av_buffer_alloc [419]
                0.00    0.00       6/30130       ff_mdct_init [363]
                0.00    0.00      12/30130       ff_fft_init [384]
                0.00    0.00      24/30130       sws_getCachedContext [351]
                0.00    0.00      24/30130       sws_init_context [312]
                0.00    0.00     178/30130       ff_init_vlc_sparse [96]
                0.01    0.00   29881/30130       av_mallocz [124]
[99]     0.0    0.01    0.00   30130         av_malloc [99]
-----------------------------------------------
                0.01    0.00  143289/143289      av_frame_unref [50]
[100]    0.0    0.01    0.00  143289         av_buffer_unref [100]
                0.00    0.00   23867/71794       av_freep [547]
                0.00    0.00   11939/11939       pool_release_buffer [566]
-----------------------------------------------
                               32911             stream_Read <cycle 1> [73]
[101]    0.0    0.01    0.00   32911         Read <cycle 1> [101]
                               32905             stream_Read <cycle 1> [73]
-----------------------------------------------
                0.00    0.00       1/31174       VoutVideoFilterStaticNewPicture [423]
                0.00    0.00       2/31174       ThreadFlush [403]
                0.00    0.00       4/31174       GetParameters [433]
                0.00    0.00       4/31174       vout_IsEmpty [352]
                0.00    0.00      26/31174       picture_pool_Delete [357]
                0.00    0.00    3479/31174       vout_FixLeaks [143]
                0.00    0.00    6909/31174       ThreadDisplayPreparePicture [46]
                0.00    0.00    6911/31174       ThreadDisplayPicture [18]
                0.00    0.00    6916/31174       Display [160]
                0.00    0.00    6922/31174       Semiplanar_Planar_420_Filter [42]
[102]    0.0    0.01    0.00   31174         picture_Release [102]
                0.00    0.00   13811/13811       Destroy [558]
                0.00    0.00      30/30          PictureDestroy [646]
-----------------------------------------------
                0.00    0.00       1/25194       Flush [361]
                0.00    0.00       2/25194       DecoderThread [3]
                0.00    0.00     341/25194       DoWork [217]
                0.00    0.00    5972/25194       Play [148]
                0.00    0.00    6932/25194       DecodeVideo [12]
                0.00    0.00   11946/25194       DecodeAudio [5]
[103]    0.0    0.01    0.00   25194         block_generic_Release [103]
-----------------------------------------------
                0.00    0.00       2/25186       DecoderBlockFlushNew [448]
                0.00    0.00       2/25186       EsOutControl <cycle 4> [144]
                0.00    0.00     341/25186       DoWork [217]
                0.00    0.00   11941/25186       DecodeAudio [5]
                0.01    0.00   12900/25186       MemToBlock(unsigned char*, unsigned int, unsigned int) [138]
[104]    0.0    0.01    0.00   25186         block_Alloc [104]
                0.00    0.00   25184/25184       block_Init [555]
-----------------------------------------------
                0.00    0.00       1/11940       avcodec_open2 [165]
                0.00    0.00    5969/11940       avcodec_default_get_buffer2 [47]
                0.01    0.00    5970/11940       ff_get_buffer [45]
[105]    0.0    0.01    0.00   11940         av_get_channel_layout_nb_channels [105]
-----------------------------------------------
                0.01    0.00    6924/6924        video_format_TransformTo [107]
[106]    0.0    0.01    0.00    6924         video_format_GetTransform [106]
                0.00    0.00   13847/27695       transform_GetBasicOps [551]
-----------------------------------------------
                0.00    0.01    6924/6924        video_format_ApplyRotation [109]
[107]    0.0    0.00    0.01    6924         video_format_TransformTo [107]
                0.01    0.00    6924/6924        video_format_GetTransform [106]
                0.00    0.00    6923/6923        video_format_TransformBy [577]
-----------------------------------------------
                0.00    0.00       1/6924        vout_InitWrapper [190]
                0.01    0.00    6923/6924        ThreadDisplayPicture [18]
[108]    0.0    0.01    0.00    6924         vout_IsDisplayFiltered [108]
-----------------------------------------------
                0.00    0.01    6923/6923        ThreadDisplayPicture [18]
[109]    0.0    0.00    0.01    6923         video_format_ApplyRotation [109]
                0.00    0.01    6924/6924        video_format_TransformTo [107]
-----------------------------------------------
                0.01    0.00    6921/6921        Semiplanar_Planar_420_Filter [42]
[110]    0.0    0.01    0.00    6921         picture_CopyProperties [110]
-----------------------------------------------
                0.00    0.00      30/6915        picture_NewFromResource [183]
                0.01    0.00    6885/6915        vout_GetPicture [68]
[111]    0.0    0.01    0.00    6915         video_format_CopyCrop [111]
-----------------------------------------------
                0.01    0.00    5969/5969        aout_DecPlay [15]
[112]    0.0    0.01    0.00    5969         aout_volume_Amplify [112]
                0.00    0.00    5969/5969        FilterS16N [587]
-----------------------------------------------
                0.01    0.00    5967/5967        DecoderDecodeAudio [4]
[113]    0.0    0.01    0.00    5967         aout_DecGetResetLost [113]
-----------------------------------------------
                                                 <spontaneous>
[114]    0.0    0.01    0.00                 fft128_neon [114]
-----------------------------------------------
                                                 <spontaneous>
[115]    0.0    0.01    0.00                 fft8_neon [115]
-----------------------------------------------
                0.00    0.00     277/8256        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.01    0.00    7979/8256        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
[116]    0.0    0.01    0.00    8256         libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [116]
-----------------------------------------------
                                                 <spontaneous>
[117]    0.0    0.01    0.00                 __adddf3 [117]
-----------------------------------------------
                                                 <spontaneous>
[118]    0.0    0.01    0.00                 __aeabi_idiv [118]
-----------------------------------------------
                                                 <spontaneous>
[119]    0.0    0.01    0.00                 __aeabi_ldivmod [119]
-----------------------------------------------
                                                 <spontaneous>
[120]    0.0    0.01    0.00                 __aeabi_uidiv [120]
-----------------------------------------------
                                                 <spontaneous>
[121]    0.0    0.01    0.00                 __aeabi_ul2d [121]
-----------------------------------------------
                                                 <spontaneous>
[122]    0.0    0.01    0.00                 __cmpdf2 [122]
-----------------------------------------------
                                                 <spontaneous>
[123]    0.0    0.01    0.00                 __gnu_uldivmod_helper [123]
-----------------------------------------------
                0.00    0.00       1/29880       avcodec_get_context_defaults3 [511]
                0.00    0.00       1/29880       che_configure [410]
                0.00    0.00       1/29880       av_buffer_pool_init [510]
                0.00    0.00       2/29880       avcodec_open2 [165]
                0.00    0.00       2/29880       sws_alloc_context [459]
                0.00    0.00       2/29880       av_buffer_pool_get [79]
                0.00    0.00      16/29880       sws_getCachedContext [351]
                0.00    0.00      16/29880       sws_init_context [312]
                0.00    0.00    5974/29880       av_frame_alloc [162]
                0.00    0.01   23865/29880       av_buffer_create [129]
[124]    0.0    0.00    0.01   29880         av_mallocz [124]
                0.01    0.00   29881/30130       av_malloc [99]
-----------------------------------------------
                0.00    0.00     424/8119        Demux(demux_t*) [21]
                0.00    0.01    7695/8119        BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
[125]    0.0    0.00    0.01    8119         es_out_Control(es_out_t*, int, ...) [125]
                0.00    0.01    8119/31285       Control <cycle 4> [155]
-----------------------------------------------
                0.00    0.01     308/308         avcodec_register_all [127]
[126]    0.0    0.00    0.01     308         avcodec_register [126]
                0.00    0.01       1/1           ff_atrac3p_init_vlcs [133]
                0.00    0.00       1/1           qdm2_init_static_data [179]
                0.00    0.00       1/1           atrac3_init_static_data [211]
                0.00    0.00       1/1           wmavoice_init_static_data [272]
                0.00    0.00       1/1           ff_dsputil_static_init [990]
                0.00    0.00       1/1           ff_tak_init_crc [1005]
                0.00    0.00       1/1           tak_init_static_data [1035]
                0.00    0.00       1/1           ff_mqc_init_context_tables [999]
                0.00    0.00       1/1           jpeg2000_init_static_data [1021]
-----------------------------------------------
                0.00    0.01       1/1           OpenDecoder [93]
[127]    0.0    0.00    0.01       1         avcodec_register_all [127]
                0.00    0.01     308/308         avcodec_register [126]
                0.00    0.00      30/31          av_register_codec_parser [643]
-----------------------------------------------
                                   2             es_out_Control <cycle 4> [214]
                0.00    0.01    6891/31285       DecoderDecodeVideo [9]
                0.00    0.01   11933/31285       DecoderDecodeAudio [4]
[128]    0.0    0.00    0.01   18826         DeleteDecoder <cycle 4> [128]
                0.00    0.01    5984/30699       vlc_cond_timedwait [48]
                0.00    0.00       1/1           aout_DecDelete [241]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       1/2           input_resource_PutAout [280]
                0.00    0.00       1/2           aout_DecFlush [372]
                0.00    0.00       2/68          vlc_cond_wait [263]
                0.00    0.00       1/2           input_SendEventVout [406]
                0.00    0.00       1/1           vout_Reset [440]
                0.00    0.00       2/6           block_FifoEmpty [443]
                0.00    0.00       2/2           block_FifoRelease [496]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       3/33          es_format_Clean [642]
                0.00    0.00       2/31          block_FifoCount [644]
                0.00    0.00       2/10405       vlc_cond_destroy [570]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
                                   1             input_resource_RequestVout <cycle 4> [231]
-----------------------------------------------
                0.00    0.00       2/11924       av_buffer_alloc [419]
                0.00    0.01   11922/11924       av_buffer_pool_get [79]
[129]    0.0    0.00    0.01   11924         av_buffer_create [129]
                0.00    0.01   23865/29880       av_mallocz [124]
-----------------------------------------------
                0.00    0.01   12903/12903       DecoderThread [3]
[130]    0.0    0.00    0.01   12903         block_FifoGet [130]
                0.01    0.00   12901/74267       vlc_testcancel [61]
                0.00    0.00   12886/460619      vlc_mutex_unlock [44]
                0.00    0.00   12864/392860      vlc_mutex_lock [65]
                0.00    0.00      38/68          vlc_cond_wait [263]
                0.00    0.00   12894/26822       vlc_cond_broadcast [552]
-----------------------------------------------
                                   1             generic_start <cycle 4> [88]
[131]    0.0    0.00    0.01       1         Open(vlc_object_t*) <cycle 4> [131]
                0.00    0.01       1/1           matroska_segment_c::Preload() [136]
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
                0.00    0.00       1/1           demux_sys_t::InitUi() [237]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
                0.00    0.00       1/10463       vlc_mutex_init [567]
                0.00    0.00       1/1           vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) [16531]
                0.00    0.00       1/1           libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [16542]
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
                0.00    0.00       1/1           demux_sys_t::FreeUnused() [16487]
                0.00    0.00       1/1           std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) [16572]
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
-----------------------------------------------
                0.00    0.00       3/7983        matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00       4/7983        libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
                0.00    0.01    7976/7983        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
[132]    0.0    0.00    0.01    7983         libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [132]
                0.00    0.01    7987/32908       vlc_stream_io_callback::read(void*, unsigned int) [60]
                0.00    0.00   23936/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.01       1/1           avcodec_register [126]
[133]    0.0    0.00    0.01       1         ff_atrac3p_init_vlcs [133]
                0.00    0.01     105/105         build_canonical_huff [137]
                0.00    0.00      16/178         ff_init_vlc_sparse [96]
-----------------------------------------------
                0.00    0.00       1/273         CloseDecoder [311]
                0.00    0.00       1/273         demux_sys_t::CleanUi() [300]
                0.00    0.00       1/273         EsOutDel [317]
                0.00    0.00       1/273         Open [326]
                0.00    0.00       1/273         OpenDecoder [93]
                0.00    0.00       1/273         ffmpeg_OpenCodec [164]
                0.00    0.00       1/273         FileOpen [325]
                0.00    0.00       1/273         Demux(demux_t*) [21]
                0.00    0.00       1/273         matroska_segment_c::Select(long long) <cycle 4> [284]
                0.00    0.00       1/273         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
                0.00    0.00       1/273         demux_sys_t::InitUi() [237]
                0.00    0.00       1/273         EbmlParser::Up() [330]
                0.00    0.00       1/273         EbmlParser::Get(int) [43]
                0.00    0.00       1/273         OpenScaler [220]
                0.00    0.00       1/273         Open [245]
                0.00    0.00       1/273         Open [327]
                0.00    0.00       1/273         access_New [318]
                0.00    0.00       1/273         DecoderDecodeAudio [4]
                0.00    0.00       1/273         Create [180]
                0.00    0.00       1/273         Init [205]
                0.00    0.00       1/273         stream_AccessNew [240]
                0.00    0.00       1/273         subtitles_Detect [322]
                0.00    0.00       1/273         VoutDisplayCreateRender [277]
                0.00    0.00       1/273         VoutDisplayEvent [324]
                0.00    0.00       1/273         vout_Request <cycle 4> [198]
                0.00    0.00       1/273         vout_OpenWrapper [236]
                0.00    0.00       1/273         aout_FormatsPrint [328]
                0.00    0.00       1/273         aout_FiltersPipelineCreate [254]
                0.00    0.00       1/273         video_format_Print [329]
                0.00    0.00       1/273         filter_chain_DeleteFilterInternal [276]
                0.00    0.00       1/273         filter_chain_AppendFilterInternal [320]
                0.00    0.00       1/273         EsOutProgramSelect [290]
                0.00    0.00       1/273         input_EsOutTimeshiftNew [282]
                0.00    0.00       1/273         vout_InitInterlacingSupport [262]
                0.00    0.00       1/273         vout_SetInterlacingState [150]
                0.00    0.00       2/273         Semiplanar_Planar_420_Filter [42]
                0.00    0.00       2/273         DeleteDecoder <cycle 4> [128]
                0.00    0.00       2/273         DecoderDecodeVideo [9]
                0.00    0.00       2/273         demux_New [279]
                0.00    0.00       2/273         InputSourceInit [219]
                0.00    0.00       2/273         input_resource_GetAout [227]
                0.00    0.00       2/273         input_resource_PutAout [280]
                0.00    0.00       2/273         input_resource_RequestVout <cycle 4> [231]
                0.00    0.00       2/273         aout_FormatPrint [281]
                0.00    0.00       2/273         aout_DecPlay [15]
                0.00    0.00       2/273         DeinterlaceCallback <cycle 5> [260]
                0.00    0.00       3/273         GetOutput [14]
                0.00    0.00       3/273         matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       3/273         AStreamPrebufferStream [259]
                0.00    0.00       4/273         vout_ManageDisplay [78]
                0.00    0.00       6/273         matroska_segment_c::Preload() [136]
                0.00    0.00       6/273         matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
                0.00    0.00       6/273         Create [195]
                0.00    0.00       7/273         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00       8/273         es_out_Control <cycle 4> [214]
                0.00    0.00      10/273         OpenDecoder [218]
                0.00    0.00      14/273         module_unneed [208]
                0.00    0.00      23/273         MainLoop [20]
                0.00    0.00      25/273         matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
                0.00    0.00      28/273         ThreadDisplayPreparePicture [46]
                0.00    0.00      34/273         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
                0.00    0.00      36/273         vlc_module_load <cycle 4> [177]
[134]    0.0    0.00    0.01     273         vlc_Log [134]
                0.00    0.01     273/273         vlc_vaLog [135]
-----------------------------------------------
                0.00    0.01     273/273         vlc_Log [134]
[135]    0.0    0.00    0.01     273         vlc_vaLog [135]
                0.01    0.00     273/420         vlc_rwlock_unlock [95]
                0.00    0.00     273/420         vlc_rwlock_rdlock [258]
                0.00    0.00     273/273         libvlc_logf [609]
-----------------------------------------------
                0.00    0.01       1/1           Open(vlc_object_t*) <cycle 4> [131]
[136]    0.0    0.00    0.01       1         matroska_segment_c::Preload() [136]
                0.00    0.01       1/1           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00       1/1           matroska_segment_c::ParseCluster(bool) [196]
                0.00    0.00       6/273         vlc_Log [134]
                0.00    0.00       6/8144        EbmlParser::Get(int) [43]
                0.00    0.00       1/1           EbmlParser::Reset(demux_t*) [334]
                0.00    0.00       3/16336       vlc_stream_io_callback::getFilePointer() [141]
                0.00    0.00       1/121         EbmlParser::Down() [16220]
                0.00    0.00       1/1           matroska_segment_c::ComputeTrackPriority() [16527]
-----------------------------------------------
                0.00    0.01     105/105         ff_atrac3p_init_vlcs [133]
[137]    0.0    0.00    0.01     105         build_canonical_huff [137]
                0.01    0.00     105/178         ff_init_vlc_sparse [96]
-----------------------------------------------
                0.00    0.01   12895/12895       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
[138]    0.0    0.00    0.01   12895         MemToBlock(unsigned char*, unsigned int, unsigned int) [138]
                0.01    0.00   12900/25186       block_Alloc [104]
-----------------------------------------------
                0.00    0.01       1/1           matroska_segment_c::Preload() [136]
[139]    0.0    0.00    0.01       1         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00       3/3           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       7/273         vlc_Log [134]
                0.00    0.00      14/8144        EbmlParser::Get(int) [43]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [242]
                0.00    0.00       3/7983        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [132]
                0.00    0.00       3/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [228]
                0.00    0.00       3/120         EbmlParser::Up() [330]
                0.00    0.00       1/49516       stream_Control [83]
                0.00    0.00      10/63875       libebml::EbmlElement::GetSize() const [16171]
                0.00    0.00       3/121         EbmlParser::Down() [16220]
                0.00    0.00       3/127         libebml::EbmlUInteger::operator unsigned long long() const [16218]
                0.00    0.00       3/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16241]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16289]
-----------------------------------------------
                0.00    0.00       1/4325        ControlPause [405]
                0.00    0.00       2/4325        End [298]
                0.00    0.00       2/4325        Init [205]
                0.00    0.00       3/4325        UpdatePtsDelay [383]
                0.00    0.00    4317/4325        MainLoop [20]
[140]    0.0    0.00    0.00    4325         es_out_Control [140]
                0.00    0.00    4325/31285       Control <cycle 4> [155]
                0.00    0.00       3/31285       EsOutControl <cycle 4> [144]
-----------------------------------------------
                0.00    0.00       3/16336       matroska_segment_c::Preload() [136]
                0.00    0.00       3/16336       matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00      11/16336       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00    7971/16336       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
                0.00    0.00    8348/16336       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[141]    0.0    0.00    0.00   16336         vlc_stream_io_callback::getFilePointer() [141]
                0.00    0.00   16338/49516       stream_Control [83]
-----------------------------------------------
                0.00    0.00       3/3           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
[142]    0.0    0.00    0.00       3         matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       1/1           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
                0.00    0.00       1/1           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [172]
                0.00    0.00       1/1           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
                0.00    0.00       3/273         vlc_Log [134]
                0.00    0.00       3/6           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00       6/16586       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
                0.00    0.00       3/16336       vlc_stream_io_callback::getFilePointer() [141]
                0.00    0.00       3/6           libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16285]
                0.00    0.00       1/2           libmatroska::KaxCues::~KaxCues() [16407]
                0.00    0.00       1/2           libmatroska::KaxTracks::~KaxTracks() [16411]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16305]
-----------------------------------------------
                0.00    0.00    3477/3477        vout_new_buffer [24]
[143]    0.0    0.00    0.00    3477         vout_FixLeaks [143]
                0.00    0.00    3478/3488        picture_fifo_Peek [152]
                0.00    0.00    3479/31174       picture_Release [102]
                0.00    0.00    3474/460619      vlc_mutex_unlock [44]
                0.00    0.00    3478/392860      vlc_mutex_lock [65]
-----------------------------------------------
                               12446             es_out_Control <cycle 4> [562]
                0.00    0.00       3/31285       es_out_Control [140]
[144]    0.0    0.00    0.00   12449         EsOutControl <cycle 4> [144]
                0.00    0.00   12441/460619      vlc_mutex_unlock [44]
                0.00    0.00   12449/392860      vlc_mutex_lock [65]
                0.00    0.00     425/426         input_SendEventPosition [194]
                0.00    0.00    2549/2549        input_clock_GetWakeup [203]
                0.00    0.00     849/156222      mdate [52]
                0.00    0.00     425/426         input_SendEventLength [250]
                0.00    0.00     425/425         input_clock_Update [252]
                0.00    0.00     425/432         input_clock_GetState [251]
                0.00    0.00      29/29          input_DecoderIsEmpty [333]
                0.00    0.00       4/12          LanguageSplit [359]
                0.00    0.00       2/12893       input_DecoderDecode [86]
                0.00    0.00       1/3           input_SendEventMeta [368]
                0.00    0.00       1/1           input_SendEventMetaEpg [438]
                0.00    0.00       1/1           input_item_SetEpgOffline [446]
                0.00    0.00       2/25186       block_Alloc [104]
                0.00    0.00       1/1           input_item_SetPreparsed [458]
                0.00    0.00       1/4           input_item_GetMeta [452]
                0.00    0.00       1/2           input_clock_SetJitter [497]
                0.00    0.00    7691/7699        EsIsSelected [573]
                0.00    0.00     848/848         input_DecoderGetFifoSize [600]
                0.00    0.00       2/6           vlc_meta_Get [718]
                0.00    0.00       1/6           input_GetItem [713]
                0.00    0.00       1/2           vlc_meta_Merge [901]
                0.00    0.00       1/1           input_clock_Delete [1015]
                                   7             es_out_Control <cycle 4> [214]
                                   2             EsUnselect <cycle 4> [422]
                                   2             EsOutSelect <cycle 4> [728]
-----------------------------------------------
                0.00    0.00    6922/6922        ThreadDisplayPicture [18]
[145]    0.0    0.00    0.00    6922         spu_Render [145]
                0.00    0.00   20763/460619      vlc_mutex_unlock [44]
                0.00    0.00   20765/392860      vlc_mutex_lock [65]
                0.00    0.00       1/11          filter_chain_Reset [275]
                0.00    0.00    6921/6922        vlc_fourcc_IsYUV [578]
                0.00    0.00    6916/6916        filter_chain_SubSource [582]
                0.00    0.00       1/2           UpdateBufferFunctions [803]
                0.00    0.00       1/1           filter_chain_AppendFromString [1007]
-----------------------------------------------
                0.00    0.00    6908/6908        DecoderDecodeVideo [9]
[146]    0.0    0.00    0.00    6908         vout_PutPicture [146]
                0.00    0.00    6899/6899        vout_control_Wake [170]
                0.00    0.00    6901/6901        picture_fifo_Push [171]
                0.00    0.00    6804/460619      vlc_mutex_unlock [44]
                0.00    0.00    6910/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/188         FileControl [97]
                0.00    0.00       1/188         OpenDecoder [218]
                0.00    0.00       1/188         ffmpeg_OpenCodec [164]
                0.00    0.00       1/188         EbmlParser::Reset(demux_t*) [334]
                0.00    0.00       1/188         Open [245]
                0.00    0.00       1/188         aout_update_format [209]
                0.00    0.00       1/188         Create [180]
                0.00    0.00       1/188         Init [205]
                0.00    0.00       1/188         Thread [13]
                0.00    0.00       1/188         spu_Create <cycle 4> [336]
                0.00    0.00       1/188         vout_OpenWrapper [236]
                0.00    0.00       1/188         var_InheritURational [338]
                0.00    0.00       1/188         ReplayGainCallback [337]
                0.00    0.00       2/188         GetFontSize [289]
                0.00    0.00       2/188         ThreadStart [176]
                0.00    0.00       3/188         OpenDecoder [93]
                0.00    0.00       3/188         aout_FiltersNew [223]
                0.00    0.00       4/188         vout_Request <cycle 4> [198]
                0.00    0.00       5/188         EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [242]
                0.00    0.00       7/188         vlc_module_load <cycle 4> [177]
                0.00    0.00      24/188         Create [195]
                0.00    0.00     125/188         var_Create [156]
[147]    0.0    0.00    0.00     188         var_Inherit [147]
                0.00    0.00      87/87          config_GetInt [161]
                0.00    0.00      45/45          config_GetPsz [174]
                0.00    0.00      15/15          config_GetFloat [212]
                0.00    0.00     557/2358        var_GetChecked [206]
-----------------------------------------------
                0.00    0.00    5970/5970        aout_OutputPlay [149]
[148]    0.0    0.00    0.00    5970         Play [148]
                0.00    0.00    5972/25194       block_generic_Release [103]
                0.00    0.00    5971/460619      vlc_mutex_unlock [44]
                0.00    0.00    5970/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00    5969/5969        aout_DecPlay [15]
[149]    0.0    0.00    0.00    5969         aout_OutputPlay [149]
                0.00    0.00    5970/5970        Play [148]
-----------------------------------------------
                0.00    0.00   13334/13334       Thread [13]
[150]    0.0    0.00    0.00   13334         vout_SetInterlacingState [150]
                0.00    0.00   13346/156222      mdate [52]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
-----------------------------------------------
                                   4             libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       1/5           matroska_segment_c::ParseCluster(bool) [196]
                0.00    0.00       1/5           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [172]
                0.00    0.00       1/5           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
                0.00    0.00       2/5           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[151]    0.0    0.00    0.00       5+4       libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00     322/8351        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
                0.00    0.00     322/8217        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [71]
                0.00    0.00     318/318         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
                0.00    0.00     277/8256        libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [116]
                0.00    0.00       9/16586       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
                0.00    0.00     644/8899        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16181]
                0.00    0.00     554/8250        libmatroska::KaxSimpleBlock::Generic() const [16186]
                0.00    0.00     322/8351        libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16184]
                0.00    0.00      13/201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16209]
                0.00    0.00       9/18          libebml::EbmlMaster::GetSize() const [16265]
                0.00    0.00       4/4           libmatroska::KaxTrackDefaultDuration::Generic() const [16325]
                0.00    0.00       4/4           libmatroska::KaxCodecPrivate::Generic() const [16323]
                0.00    0.00       4/4           libmatroska::KaxCodecID::Generic() const [16313]
                0.00    0.00       4/4           libmatroska::KaxTrackType::Generic() const [16318]
                0.00    0.00       4/4           libmatroska::KaxTrackUID::Generic() const [16316]
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::Generic() const [16322]
                0.00    0.00       4/4           libmatroska::KaxTrackEntry::Generic() const [16320]
                0.00    0.00       4/4           libmatroska::KaxSegmentUID::Generic() const [16319]
                0.00    0.00       4/4           libmatroska::KaxDateUTC::Generic() const [16314]
                0.00    0.00       4/4           libmatroska::KaxDuration::Generic() const [16315]
                0.00    0.00       4/4           libmatroska::KaxWritingApp::Generic() const [16321]
                0.00    0.00       4/4           libmatroska::KaxMuxingApp::Generic() const [16317]
                0.00    0.00       4/4           libmatroska::KaxTimecodeScale::Generic() const [16324]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16368]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16377]
                0.00    0.00       2/4           libmatroska::KaxCodecID::~KaxCodecID() [16293]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16398]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16401]
                0.00    0.00       2/3           libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16333]
                0.00    0.00       2/3           libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16336]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16380]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16386]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16389]
                0.00    0.00       2/4           libmatroska::KaxTrackType::~KaxTrackType() [16299]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::~KaxTrackUID() [16296]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::~KaxTrackNumber() [16302]
                0.00    0.00       2/6           libmatroska::KaxWritingApp::~KaxWritingApp() [16275]
                0.00    0.00       2/6           libmatroska::KaxMuxingApp::~KaxMuxingApp() [16272]
                0.00    0.00       2/6           libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16281]
                0.00    0.00       2/53          libmatroska::KaxClusterTimecode::Generic() const [16234]
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::Generic() const [16459]
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::Generic() const [16466]
                0.00    0.00       2/2           libmatroska::KaxTrackAudio::Generic() const [16453]
                0.00    0.00       2/2           libmatroska::KaxTrackLanguage::Generic() const [16461]
                0.00    0.00       2/2           libmatroska::KaxVideoDisplayHeight::Generic() const [16468]
                0.00    0.00       2/2           libmatroska::KaxVideoDisplayWidth::Generic() const [16467]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::Generic() const [16465]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::Generic() const [16464]
                0.00    0.00       2/2           libmatroska::KaxTrackVideo::Generic() const [16455]
                0.00    0.00       2/2           libmatroska::KaxTrackMinCache::Generic() const [16462]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagLacing::Generic() const [16463]
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::Generic() const [16478]
                0.00    0.00       2/2           libebml::EDocTypeVersion::Generic() const [16475]
                0.00    0.00       2/2           libebml::EDocType::Generic() const [16480]
                0.00    0.00       2/2           libebml::EMaxSizeLength::Generic() const [16474]
                0.00    0.00       2/2           libebml::EMaxIdLength::Generic() const [16472]
                0.00    0.00       2/2           libebml::EReadVersion::Generic() const [16473]
                0.00    0.00       2/2           libebml::EVersion::Generic() const [16481]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [16454]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [16469]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [16458]
                0.00    0.00       2/2           libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [16445]
                0.00    0.00       2/2           libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [16450]
                0.00    0.00       2/2           libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [16448]
                0.00    0.00       2/2           libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [16457]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const [16452]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [16446]
                0.00    0.00       2/2           libmatroska::KaxDuration::operator libebml::EbmlId const&() const [16447]
                0.00    0.00       2/2           libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [16456]
                0.00    0.00       2/2           libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [16449]
                0.00    0.00       2/2           libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [16460]
                0.00    0.00       1/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16223]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::~KaxAudioChannels() [16374]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16395]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16392]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16383]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16510]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16434]
                0.00    0.00       1/2           libebml::EDocTypeVersion::~EDocTypeVersion() [16431]
                0.00    0.00       1/2           libebml::EDocType::~EDocType() [16437]
                0.00    0.00       1/2           libebml::EMaxSizeLength::~EMaxSizeLength() [16428]
                0.00    0.00       1/2           libebml::EMaxIdLength::~EMaxIdLength() [16422]
                0.00    0.00       1/2           libebml::EReadVersion::~EReadVersion() [16425]
                0.00    0.00       1/2           libebml::EVersion::~EVersion() [16440]
                0.00    0.00       1/1           libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [16556]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [16551]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [16554]
                0.00    0.00       1/1           libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [16553]
                0.00    0.00       1/1           libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [16560]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [16552]
                0.00    0.00       1/1           libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [16555]
                0.00    0.00       1/1           libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [16557]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [16562]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [16561]
                0.00    0.00       1/1           libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [16559]
                0.00    0.00       1/1           libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [16558]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16479]
                0.00    0.00       1/2           libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16476]
                0.00    0.00       1/3           libebml::EDocType::operator libebml::EbmlId const&() const [16349]
                0.00    0.00       1/3           libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16348]
                0.00    0.00       1/3           libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16346]
                0.00    0.00       1/3           libebml::EReadVersion::operator libebml::EbmlId const&() const [16347]
                0.00    0.00       1/3           libebml::EVersion::operator libebml::EbmlId const&() const [16350]
                                   4             libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
-----------------------------------------------
                0.00    0.00      10/3488        vout_IsEmpty [352]
                0.00    0.00    3478/3488        vout_FixLeaks [143]
[152]    0.0    0.00    0.00    3488         picture_fifo_Peek [152]
                0.00    0.00    3484/31121       picture_Hold [75]
                0.00    0.00    3489/460619      vlc_mutex_unlock [44]
                0.00    0.00    3489/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
[153]    0.0    0.00    0.00       1         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
                0.00    0.00     265/8144        EbmlParser::Get(int) [43]
                0.00    0.00      34/273         vlc_Log [134]
                0.00    0.00      99/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [228]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [242]
                0.00    0.00      66/120         EbmlParser::Up() [330]
                0.00    0.00     132/63875       libebml::EbmlElement::GetSize() const [16171]
                0.00    0.00      66/121         EbmlParser::Down() [16220]
                0.00    0.00      66/127         libebml::EbmlUInteger::operator unsigned long long() const [16218]
                0.00    0.00      33/41          libebml::EbmlUInteger::operator unsigned short() const [16238]
                0.00    0.00      33/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16241]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16289]
-----------------------------------------------
                                                 <spontaneous>
[154]    0.0    0.00    0.00                 PlayedCallback [154]
                0.00    0.00   13854/460619      vlc_mutex_unlock [44]
                0.00    0.00   13859/392860      vlc_mutex_lock [65]
-----------------------------------------------
                                   5             es_out_Control(es_out_t*, int, ...) <cycle 4> [16288]
                0.00    0.00    4325/31285       es_out_Control [140]
                0.00    0.01    8119/31285       es_out_Control(es_out_t*, int, ...) [125]
[155]    0.0    0.00    0.00   12449         Control <cycle 4> [155]
                0.00    0.00   12421/460619      vlc_mutex_unlock [44]
                0.00    0.00   12449/392860      vlc_mutex_lock [65]
                0.00    0.00     855/156222      mdate [52]
                0.00    0.00   12428/25317       TsStop [554]
                               12013             es_out_Control <cycle 4> [562]
                                 859             CmdExecuteControl <cycle 4> [599]
-----------------------------------------------
                0.00    0.00       1/224         OpenDecoder [93]
                0.00    0.00       1/224         OpenScaler [220]
                0.00    0.00       1/224         InputSourceInit [219]
                0.00    0.00       1/224         MainLoop [20]
                0.00    0.00       1/224         input_ControlVarNavigation [349]
                0.00    0.00       1/224         spu_Attach <cycle 4> [265]
                0.00    0.00       1/224         vout_OpenWrapper [236]
                0.00    0.00       1/224         aout_OutputNew [243]
                0.00    0.00       2/224         input_EsOutTimeshiftNew [282]
                0.00    0.00       2/224         DeinterlaceCallback <cycle 5> [260]
                0.00    0.00       3/224         var_OptionParse [291]
                0.00    0.00       3/224         vout_InitInterlacingSupport [262]
                0.00    0.00       4/224         Init [205]
                0.00    0.00       4/224         SpuRenderCreateAndLoadText <cycle 4> [283]
                0.00    0.00       7/224         demux_sys_t::InitUi() [237]
                0.00    0.00       8/224         ThreadStart [176]
                0.00    0.00      10/224         aout_New [233]
                0.00    0.00      23/224         input_ControlVarInit [216]
                0.00    0.00      32/224         vout_IntfInit [210]
                0.00    0.00      52/224         input_ConfigVarInit [199]
                0.00    0.00      66/224         libvlc_media_player_new [188]
[156]    0.0    0.00    0.00     224         var_Create [156]
                0.00    0.00     125/188         var_Inherit [147]
                0.00    0.00     224/460619      vlc_mutex_unlock [44]
                0.00    0.00     224/392860      vlc_mutex_lock [65]
                0.00    0.00     224/224         tsearch [610]
                0.00    0.00      12/157         Destroy [617]
                0.00    0.00       4/3329        DupDummy [593]
                0.00    0.00       3/115         DupString [624]
-----------------------------------------------
                0.00    0.00   12904/12904       input_DecoderDecode [86]
[157]    0.0    0.00    0.00   12904         block_FifoPut [157]
                0.00    0.00   12913/460619      vlc_mutex_unlock [44]
                0.00    0.00   12906/392860      vlc_mutex_lock [65]
                0.00    0.00   12887/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00   12883/12883       EsOutSend [66]
[158]    0.0    0.00    0.00   12883         input_DecoderHasFormatChanged [158]
                0.00    0.00   12870/460619      vlc_mutex_unlock [44]
                0.00    0.00   12884/392860      vlc_mutex_lock [65]
                0.00    0.00       2/26          es_format_Copy [651]
-----------------------------------------------
                0.00    0.00   12859/12859       EsOutSend [66]
[159]    0.0    0.00    0.00   12859         input_DecoderIsCcPresent [159]
                0.00    0.00   12862/460619      vlc_mutex_unlock [44]
                0.00    0.00   12866/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00    6918/6918        ThreadDisplayPicture [18]
[160]    0.0    0.00    0.00    6918         Display [160]
                0.00    0.00    6916/31174       picture_Release [102]
-----------------------------------------------
                0.00    0.00      87/87          var_Inherit [147]
[161]    0.0    0.00    0.00      87         config_GetInt [161]
                0.00    0.00      87/420         vlc_rwlock_unlock [95]
                0.00    0.00      87/420         vlc_rwlock_rdlock [258]
                0.00    0.00      87/154         config_FindConfig [618]
-----------------------------------------------
                0.00    0.00       1/5971        avcodec_open2 [165]
                0.00    0.00    5970/5971        DecodeAudio [5]
[162]    0.0    0.00    0.00    5971         av_frame_alloc [162]
                0.00    0.00    5974/29880       av_mallocz [124]
                0.00    0.00    5972/71794       av_freep [547]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [93]
[163]    0.0    0.00    0.00       1         InitAudioDec [163]
                0.00    0.00       1/1           ffmpeg_OpenCodec [164]
                0.00    0.00       1/1           vlc_av_frame_Release [514]
                0.00    0.00       1/5968        SetupOutputFormat [307]
                0.00    0.00       1/7           date_Set [691]
                0.00    0.00       1/1           date_Init [985]
-----------------------------------------------
                0.00    0.00       1/1           InitAudioDec [163]
[164]    0.0    0.00    0.00       1         ffmpeg_OpenCodec [164]
                0.00    0.00       1/1           avcodec_open2 [165]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       2/6           vlc_global_mutex [472]
                0.00    0.00       1/2           av_dict_get [815]
                0.00    0.00       1/71794       av_freep [547]
                0.00    0.00       1/2           av_dict_free [814]
-----------------------------------------------
                0.00    0.00       1/1           ffmpeg_OpenCodec [164]
[165]    0.0    0.00    0.00       1         avcodec_open2 [165]
                0.00    0.00       1/1           aac_decode_init [166]
                0.00    0.00       1/11940       av_get_channel_layout_nb_channels [105]
                0.00    0.00       2/29880       av_mallocz [124]
                0.00    0.00       1/5971        av_frame_alloc [162]
                0.00    0.00       2/176         av_codec_is_decoder [612]
                0.00    0.00       1/2           avcodec_is_open [819]
                0.00    0.00       1/1           av_opt_set_dict [979]
                0.00    0.00       1/71794       av_freep [547]
                0.00    0.00       1/1           ff_thread_init [1006]
                0.00    0.00       1/2           av_codec_is_encoder [812]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_open2 [165]
[166]    0.0    0.00    0.00       1         aac_decode_init [166]
                0.00    0.00      12/178         ff_init_vlc_sparse [96]
                0.00    0.00       1/1           ff_ps_init [201]
                0.00    0.00       1/1           ff_aac_sbr_init [200]
                0.00    0.00       4/6           ff_mdct_init [363]
                0.00    0.00       1/1           decode_audio_specific_config [411]
                0.00    0.00       3/3           ff_sine_window_init [756]
                0.00    0.00       3/3           ff_init_ff_sine_windows [755]
                0.00    0.00       2/2           ff_kbd_window_init [834]
                0.00    0.00       1/4           make_filters_from_proto [738]
                0.00    0.00       1/1           ff_fmt_convert_init_arm [995]
                0.00    0.00       1/1           ff_fmt_convert_init [994]
                0.00    0.00       1/1           ff_float_dsp_init_neon [992]
                0.00    0.00       1/1           ff_float_dsp_init_arm [991]
                0.00    0.00       1/1           avpriv_float_dsp_init [983]
                0.00    0.00       1/1           ff_aac_tableinit [988]
-----------------------------------------------
                0.00    0.00       1/5979        aout_DecNew [215]
                0.00    0.00       1/5979        aout_DecDelete [241]
                0.00    0.00       1/5979        aout_Destroy [297]
                0.00    0.00       2/5979        aout_DecFlush [372]
                0.00    0.00       6/5979        aout_DecIsEmpty [364]
                0.00    0.00    5968/5979        aout_DecPlay [15]
[167]    0.0    0.00    0.00    5979         aout_OutputUnlock [167]
                0.00    0.00   11949/460619      vlc_mutex_unlock [44]
                0.00    0.00    5980/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [131]
[168]    0.0    0.00    0.00       1         demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
                0.00    0.00       2/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       3/8144        EbmlParser::Get(int) [43]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [242]
                0.00    0.00       3/6           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00       1/8217        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [71]
                0.00    0.00       3/6           libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16285]
                0.00    0.00       2/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
                0.00    0.00       2/2           std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) [16484]
                0.00    0.00       1/1           libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16544]
                0.00    0.00       1/6           libebml::EbmlString::operator std::string const&() const [16287]
                0.00    0.00       1/1           libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16545]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16218]
                0.00    0.00       1/1           libebml::EbmlHead::~EbmlHead() [16548]
                0.00    0.00       1/1           matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) [16528]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16265]
                0.00    0.00       1/1           demux_sys_t::FindSegment(libebml::EbmlBinary const&) const [16549]
                0.00    0.00       1/1           libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [16541]
-----------------------------------------------
                0.00    0.00    6976/6976        ThreadDisplayPreparePicture [46]
[169]    0.0    0.00    0.00    6976         picture_fifo_Pop [169]
                0.00    0.00    6974/460619      vlc_mutex_unlock [44]
                0.00    0.00    6979/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00    6899/6899        vout_PutPicture [146]
[170]    0.0    0.00    0.00    6899         vout_control_Wake [170]
                0.00    0.00    6903/460619      vlc_mutex_unlock [44]
                0.00    0.00    6901/392860      vlc_mutex_lock [65]
                0.00    0.00    6885/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00    6901/6901        vout_PutPicture [146]
[171]    0.0    0.00    0.00    6901         picture_fifo_Push [171]
                0.00    0.00    6872/460619      vlc_mutex_unlock [44]
                0.00    0.00    6902/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
[172]    0.0    0.00    0.00       1         matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [172]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16265]
                0.00    0.00       1/2           libmatroska::KaxTracks::Generic() const [16471]
-----------------------------------------------
                                                 <spontaneous>
[173]    0.0    0.00    0.00                 vlc_cleanup_lock [173]
                0.00    0.00   10382/460619      vlc_mutex_unlock [44]
-----------------------------------------------
                0.00    0.00      45/45          var_Inherit [147]
[174]    0.0    0.00    0.00      45         config_GetPsz [174]
                0.00    0.00      45/420         vlc_rwlock_unlock [95]
                0.00    0.00      45/420         vlc_rwlock_rdlock [258]
                0.00    0.00      45/154         config_FindConfig [618]
-----------------------------------------------
                0.00    0.00     115/480         AStreamReadNoSeekStream [92]
                0.00    0.00     365/480         AStreamSeekStream [87]
[175]    0.0    0.00    0.00     480         AStreamRefillStream [175]
                0.00    0.00     492/493         AReadStream [185]
                0.00    0.00     628/156222      mdate [52]
                0.00    0.00     492/3102        vlc_object_alive [594]
-----------------------------------------------
                0.00    0.00       1/1           Thread [13]
[176]    0.0    0.00    0.00       1         ThreadStart [176]
                0.00    0.00       1/1           vout_InitWrapper [190]
                0.00    0.00       1/1           vout_OpenWrapper [236]
                0.00    0.00       8/224         var_Create [156]
                0.00    0.00       2/188         var_Inherit [147]
                0.00    0.00       1/1           video_format_Print [329]
                0.00    0.00       1/1           var_InheritURational [338]
                0.00    0.00       7/2358        var_GetChecked [206]
                0.00    0.00       2/5           filter_chain_New [722]
                0.00    0.00       1/1           picture_fifo_New [1026]
                0.00    0.00       1/70          vlc_ureduce [630]
-----------------------------------------------
                                  18             module_need <cycle 4> [666]
[177]    0.0    0.00    0.00      18         vlc_module_load <cycle 4> [177]
                0.00    0.00      36/273         vlc_Log [134]
                0.00    0.00       7/188         var_Inherit [147]
                0.00    0.00      15/15          vlc_object_set_name [398]
                0.00    0.00      30/45          module_get_object [636]
                0.00    0.00      19/19          module_get_score [663]
                0.00    0.00      18/18          module_list_cap [665]
                0.00    0.00      18/25          module_list_free [653]
                                  65             module_load <cycle 4> [632]
-----------------------------------------------
                                                 <spontaneous>
[178]    0.0    0.00    0.00                 libvlc_media_player_play [178]
                0.00    0.00       1/1           input_Create [181]
                0.00    0.00       4/51          var_AddCallback [261]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       1/1           input_Start [1014]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [126]
[179]    0.0    0.00    0.00       1         qdm2_init_static_data [179]
                0.00    0.00      17/178         ff_init_vlc_sparse [96]
                0.00    0.00       1/1           ff_mpa_synth_init_float [998]
-----------------------------------------------
                0.00    0.00       1/1           input_Create [181]
[180]    0.0    0.00    0.00       1         Create [180]
                0.00    0.00       1/1           input_ConfigVarInit [199]
                0.00    0.00       1/1           input_ControlVarInit [216]
                0.00    0.00       3/3           var_OptionParse [291]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       1/1           input_EsOutNew [409]
                0.00    0.00       1/3           input_SendEventMeta [368]
                0.00    0.00       1/3           input_item_SetMeta [415]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/2358        var_GetChecked [206]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       1/2           input_item_GetName [498]
                0.00    0.00       1/2           input_resource_SetInput [499]
                0.00    0.00       1/1           stats_NewInputStats [533]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       2/10463       vlc_mutex_init [567]
                0.00    0.00       1/2           input_item_Hold [849]
                0.00    0.00       1/1           input_resource_Hold [1017]
                0.00    0.00       1/10437       vlc_cond_init [568]
                0.00    0.00       1/3           vlc_object_set_destructor [762]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_play [178]
[181]    0.0    0.00    0.00       1         input_Create [181]
                0.00    0.00       1/1           Create [180]
-----------------------------------------------
                0.00    0.00       4/64          picture_New [224]
                0.00    0.00      30/64          picture_Setup [207]
                0.00    0.00      30/64          picture_NewFromResource [183]
[182]    0.0    0.00    0.00      64         video_format_Setup [182]
                0.00    0.00      64/6997        vlc_fourcc_GetCodec [27]
                0.00    0.00      64/70          vlc_ureduce [630]
-----------------------------------------------
                0.00    0.00       1/30          Open [245]
                0.00    0.00      29/30          picture_NewFromFormat [186]
[183]    0.0    0.00    0.00      30         picture_NewFromResource [183]
                0.00    0.00      30/64          video_format_Setup [182]
                0.00    0.00      30/30          picture_Setup [207]
                0.00    0.00      30/6915        video_format_CopyCrop [111]
                0.00    0.00      29/29          posix_memalign [648]
-----------------------------------------------
[184]    0.0    0.00    0.00     731+1919    <cycle 5 as a whole> [184]
                0.00    0.00     582             input_event_changed <cycle 5> [202]
                0.00    0.00    1390             TriggerCallback <cycle 5> [230]
                0.00    0.00     625             var_SetChecked <cycle 5> [235]
                0.00    0.00       2             DeinterlaceCallback <cycle 5> [260]
                0.00    0.00      24             var_TriggerCallback <cycle 5> [376]
                0.00    0.00       7             input_vaControl <cycle 5> [392]
                0.00    0.00       4             input_SendEventMetaInfo <cycle 5> [416]
                0.00    0.00       7             input_Control <cycle 5> [692]
                0.00    0.00       4             var_Set <cycle 5> [744]
                0.00    0.00       2             ZoomCallback <cycle 5> [805]
                0.00    0.00       2             WallPaperCallback <cycle 5> [804]
                0.00    0.00       1             var_Copy <cycle 5> [1036]
-----------------------------------------------
                0.00    0.00       1/493         AStreamPrebufferStream [259]
                0.00    0.00     492/493         AStreamRefillStream [175]
[185]    0.0    0.00    0.00     493         AReadStream [185]
                0.00    0.00    1479/37499       stats_Update [74]
                0.00    0.00     493/460619      vlc_mutex_unlock [44]
                0.00    0.00     493/392860      vlc_mutex_lock [65]
                0.00    0.00     493/493         FileRead [601]
-----------------------------------------------
                0.00    0.00       4/29          picture_New [224]
                0.00    0.00      25/29          picture_pool_NewFromFormat [192]
[186]    0.0    0.00    0.00      29         picture_NewFromFormat [186]
                0.00    0.00      29/30          picture_NewFromResource [183]
-----------------------------------------------
                                                 <spontaneous>
[187]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_playMRL [187]
                0.00    0.00       1/1           libvlc_media_player_new [188]
                0.00    0.00       1/1           libvlc_media_player_set_media [378]
                0.00    0.00       1/1           libvlc_media_new_location [381]
                0.00    0.00       8/8           libvlc_event_attach [427]
                0.00    0.00       1/1           libvlc_media_player_set_video_title_display [439]
                0.00    0.00       3/3           libvlc_media_add_option [467]
                0.00    0.00       1/1           libvlc_media_player_event_manager [1023]
                0.00    0.00       1/1           setLong [1032]
                0.00    0.00       1/1           libvlc_media_event_manager [1022]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[188]    0.0    0.00    0.00       1         libvlc_media_player_new [188]
                0.00    0.00      66/224         var_Create [156]
                0.00    0.00       1/2           input_resource_GetAout [227]
                0.00    0.00       1/2           input_resource_PutAout [280]
                0.00    0.00       4/731         var_SetChecked <cycle 5> [235]
                0.00    0.00      20/27          libvlc_event_manager_register_event_type [371]
                0.00    0.00       1/51          var_AddCallback [261]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       1/2           libvlc_event_manager_new [500]
                0.00    0.00       1/3           libvlc_retain [469]
                0.00    0.00       2/10463       vlc_mutex_init [567]
                0.00    0.00       1/1           vlc_object_create [1042]
                0.00    0.00       1/1           input_resource_New [1018]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
[189]    0.0    0.00    0.00       1         matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       6/273         vlc_Log [134]
                0.00    0.00       2/2           libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [16477]
                0.00    0.00       2/2           libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16443]
                0.00    0.00       2/26          libebml::UTFstring::~UTFstring() [16263]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16265]
                0.00    0.00       1/2           libmatroska::KaxInfo::Generic() const [16470]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16218]
                0.00    0.00       1/1           libebml::EbmlFloat::operator double() const [16569]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [176]
[190]    0.0    0.00    0.00       1         vout_InitWrapper [190]
                0.00    0.00       1/1           picture_pool_NewFromFormat [192]
                0.00    0.00       1/6924        vout_IsDisplayFiltered [108]
                0.00    0.00       1/6926        Pool [574]
                0.00    0.00       1/1           picture_pool_Reserve [1030]
                0.00    0.00       1/1           picture_pool_GetSize [1027]
-----------------------------------------------
                0.00    0.00    6921/6921        ThreadDisplayPicture [18]
[191]    0.0    0.00    0.00    6921         vout_snapshot_IsRequested [191]
                0.00    0.00    6920/460619      vlc_mutex_unlock [44]
                0.00    0.00    6921/68402       vlc_mutex_trylock [548]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [190]
[192]    0.0    0.00    0.00       1         picture_pool_NewFromFormat [192]
                0.00    0.00      25/29          picture_NewFromFormat [186]
                0.00    0.00       1/1           picture_pool_New [1028]
-----------------------------------------------
                0.00    0.00     318/318         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[193]    0.0    0.00    0.00     318         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
                0.00    0.00     277/7970        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
                0.00    0.00      24/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [228]
                0.00    0.00       4/7983        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [132]
                0.00    0.00       4/4           libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [389]
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [390]
                0.00    0.00       3/3           libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [401]
                0.00    0.00       2/2           libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [421]
-----------------------------------------------
                0.00    0.00       1/426         Init [205]
                0.00    0.00     425/426         EsOutControl <cycle 4> [144]
[194]    0.0    0.00    0.00     426         input_SendEventPosition [194]
                0.00    0.00     425/731         var_SetChecked <cycle 5> [235]
                0.00    0.00     851/1002        var_Change [222]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [88]
[195]    0.0    0.00    0.00       2         Create [195]
                0.00    0.00      24/188         var_Inherit [147]
                0.00    0.00       6/273         vlc_Log [134]
                0.00    0.00       2/2           GetFontSize [289]
                0.00    0.00       2/2           spu_get_attachments [435]
                0.00    0.00       4/4           Dummy_Select [727]
                0.00    0.00       2/2           FT_Init_FreeType [775]
                0.00    0.00       2/2           FT_New_Face [776]
                0.00    0.00       2/4           find_unicode_charmap [736]
                0.00    0.00       2/2           FT_Select_Charmap [784]
                0.00    0.00       2/2           FT_Set_Pixel_Sizes [785]
                0.00    0.00       2/2           FT_Stroker_New [791]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [136]
[196]    0.0    0.00    0.00       1         matroska_segment_c::ParseCluster(bool) [196]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16265]
                0.00    0.00       1/7809        libmatroska::KaxCluster::Generic() const [16197]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16218]
                0.00    0.00       1/7694        libmatroska::KaxCluster::GlobalTimecode() const [16199]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [172]
[197]    0.0    0.00    0.00       2         matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
                0.00    0.00      25/273         vlc_Log [134]
                0.00    0.00       8/8           libebml::EbmlUInteger::operator unsigned int() const [16269]
                0.00    0.00       8/41          libebml::EbmlUInteger::operator unsigned short() const [16238]
                0.00    0.00       5/6           libebml::EbmlString::operator std::string const&() const [16287]
                0.00    0.00       4/4           libebml::EbmlUInteger::operator unsigned char() const [16327]
                0.00    0.00       4/127         libebml::EbmlUInteger::operator unsigned long long() const [16218]
                0.00    0.00       4/63875       libebml::EbmlElement::GetSize() const [16171]
                0.00    0.00       2/28          es_format_Init [649]
                0.00    0.00       2/2           matroska_segment_c::TrackInit(mkv_track_t*) [16413]
                0.00    0.00       2/2           std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) [16483]
                0.00    0.00       1/1           libebml::EbmlFloat::operator float() const [16570]
-----------------------------------------------
                                   2             input_resource_RequestVout <cycle 4> [231]
[198]    0.0    0.00    0.00       2         vout_Request <cycle 4> [198]
                0.00    0.00       1/1           vout_IntfInit [210]
                0.00    0.00       4/188         var_Inherit [147]
                0.00    0.00       1/1           vout_InitInterlacingSupport [262]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/1           VoutValidateFormat [343]
                0.00    0.00       1/2           vout_IntfReinit [332]
                0.00    0.00       1/5           vout_control_WaitEmpty [373]
                0.00    0.00       1/3           vout_control_PushVoid [464]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       3/10463       vlc_mutex_init [567]
                0.00    0.00       1/1           vout_control_Init [1045]
                0.00    0.00       1/1           vout_snapshot_Init [1048]
                0.00    0.00       1/3           vlc_object_set_destructor [762]
                0.00    0.00       1/4           vlc_clone_attr [746]
                0.00    0.00       1/4           vlc_clone [745]
                                   2             spu_Attach <cycle 4> [265]
                                   1             spu_Create <cycle 4> [336]
-----------------------------------------------
                0.00    0.00       1/1           Create [180]
[199]    0.0    0.00    0.00       1         input_ConfigVarInit [199]
                0.00    0.00      52/224         var_Create [156]
                0.00    0.00      11/731         var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[200]    0.0    0.00    0.00       1         ff_aac_sbr_init [200]
                0.00    0.00      10/178         ff_init_vlc_sparse [96]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[201]    0.0    0.00    0.00       1         ff_ps_init [201]
                0.00    0.00      10/178         ff_init_vlc_sparse [96]
                0.00    0.00       3/4           make_filters_from_proto [738]
-----------------------------------------------
                                 582             TriggerCallback <cycle 5> [230]
[202]    0.0    0.00    0.00     582         input_event_changed <cycle 5> [202]
                0.00    0.00     864/881         libvlc_event_send [213]
                0.00    0.00    1284/2358        var_GetChecked [206]
                0.00    0.00       3/5           set_state [417]
                0.00    0.00       1/44          vlc_object_release [382]
                                   2             input_Control <cycle 5> [692]
-----------------------------------------------
                0.00    0.00    2549/2549        EsOutControl <cycle 4> [144]
[203]    0.0    0.00    0.00    2549         input_clock_GetWakeup [203]
                0.00    0.00    2552/460619      vlc_mutex_unlock [44]
                0.00    0.00    2550/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/5983        aout_DecNew [215]
                0.00    0.00       1/5983        aout_DecDelete [241]
                0.00    0.00       2/5983        aout_DecFlush [372]
                0.00    0.00       6/5983        aout_DecIsEmpty [364]
                0.00    0.00    5973/5983        aout_DecPlay [15]
[204]    0.0    0.00    0.00    5983         aout_OutputLock [204]
                0.00    0.00    5983/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           Run [19]
[205]    0.0    0.00    0.00       1         Init [205]
                0.00    0.00       1/1           InputSourceInit [219]
                0.00    0.00       1/1           input_EsOutTimeshiftNew [282]
                0.00    0.00       4/224         var_Create [156]
                0.00    0.00       1/1           subtitles_Detect [322]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       1/1           InitTitle [339]
                0.00    0.00       1/1           UpdatePtsDelay [383]
                0.00    0.00      17/2358        var_GetChecked [206]
                0.00    0.00       2/2           ControlPause [405]
                0.00    0.00       2/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       2/4           input_ChangeState [375]
                0.00    0.00       2/4325        es_out_Control [140]
                0.00    0.00       1/426         input_SendEventPosition [194]
                0.00    0.00       1/8           input_SendEventCache [353]
                0.00    0.00       1/426         input_SendEventLength [250]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       2/1286        demux_Control [598]
                0.00    0.00       1/3           vlc_meta_New [760]
-----------------------------------------------
                0.00    0.00       1/2358        OpenDecoder [93]
                0.00    0.00       1/2358        OpenScaler [220]
                0.00    0.00       1/2358        input_SendEventProgramScrambled [404]
                0.00    0.00       1/2358        Create [180]
                0.00    0.00       1/2358        subtitles_Detect [322]
                0.00    0.00       1/2358        input_ControlVarInit [216]
                0.00    0.00       1/2358        vout_OpenWrapper [236]
                0.00    0.00       1/2358        aout_New [233]
                0.00    0.00       1/2358        aout_OutputNew [243]
                0.00    0.00       1/2358        DeinterlaceIsPresent [520]
                0.00    0.00       1/2358        aout_ChangeFilterString [519]
                0.00    0.00       2/2358        MainLoop [20]
                0.00    0.00       2/2358        var_Get [478]
                0.00    0.00       2/2358        EsSelect <cycle 4> [358]
                0.00    0.00       2/2358        EsUnselect <cycle 4> [422]
                0.00    0.00       2/2358        input_EsOutTimeshiftNew [282]
                0.00    0.00       2/2358        vout_InitInterlacingSupport [262]
                0.00    0.00       3/2358        UpdatePtsDelay [383]
                0.00    0.00       3/2358        vout_IntfInit [210]
                0.00    0.00       5/2358        InputSourceInit [219]
                0.00    0.00       7/2358        ThreadStart [176]
                0.00    0.00       7/2358        input_EsOutNew [409]
                0.00    0.00       8/2358        libvlc_media_player_get_length [386]
                0.00    0.00       8/2358        libvlc_media_player_get_time [387]
                0.00    0.00      10/2358        DeinterlaceCallback <cycle 5> [260]
                0.00    0.00      17/2358        Init [205]
                0.00    0.00     426/2358        input_SendEventLength [250]
                0.00    0.00     557/2358        var_Inherit [147]
                0.00    0.00    1284/2358        input_event_changed <cycle 5> [202]
[206]    0.0    0.00    0.00    2358         var_GetChecked [206]
                0.00    0.00    2363/460619      vlc_mutex_unlock [44]
                0.00    0.00    2359/392860      vlc_mutex_lock [65]
                0.00    0.00    2355/4104        tfind [591]
                0.00    0.00    1801/3329        DupDummy [593]
                0.00    0.00      44/115         DupString [624]
-----------------------------------------------
                0.00    0.00      30/30          picture_NewFromResource [183]
[207]    0.0    0.00    0.00      30         picture_Setup [207]
                0.00    0.00      30/64          video_format_Setup [182]
                0.00    0.00      30/31          vlc_fourcc_GetChromaDescription [645]
-----------------------------------------------
                0.00    0.00       1/14          access_Delete [306]
                0.00    0.00       1/14          StreamDelete <cycle 3> [305]
                0.00    0.00       1/14          vout_DeleteDisplay [295]
                0.00    0.00       1/14          aout_Destroy [297]
                0.00    0.00       1/14          aout_volume_Delete [299]
                0.00    0.00       1/14          filter_chain_DeleteFilterInternal [276]
                0.00    0.00       2/14          input_DecoderDelete [266]
                0.00    0.00       2/14          aout_FiltersPipelineDestroy [269]
                0.00    0.00       4/14          FilterRelease [232]
[208]    0.0    0.00    0.00      14         module_unneed [208]
                0.00    0.00      14/273         vlc_Log [134]
                0.00    0.00      15/15          vlc_module_unload [247]
                0.00    0.00      14/45          module_get_object [636]
-----------------------------------------------
                0.00    0.00    5967/5967        DecodeAudio [5]
[209]    0.0    0.00    0.00    5967         aout_update_format [209]
                0.00    0.00       1/1           aout_DecNew [215]
                0.00    0.00       1/2           input_resource_GetAout [227]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       1/7           aout_FormatPrepare [238]
                0.00    0.00       1/1           input_SendEventAout [436]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/2           DecoderUpdateFormatLocked [764]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [198]
[210]    0.0    0.00    0.00       1         vout_IntfInit [210]
                0.00    0.00      32/224         var_Create [156]
                0.00    0.00      17/51          var_AddCallback [261]
                0.00    0.00       1/2           vout_IntfReinit [332]
                0.00    0.00      36/1002        var_Change [222]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       3/2358        var_GetChecked [206]
                0.00    0.00      32/135         vlc_gettext [621]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [126]
[211]    0.0    0.00    0.00       1         atrac3_init_static_data [211]
                0.00    0.00       7/178         ff_init_vlc_sparse [96]
                0.00    0.00       1/1           ff_atrac_generate_tables [989]
-----------------------------------------------
                0.00    0.00      15/15          var_Inherit [147]
[212]    0.0    0.00    0.00      15         config_GetFloat [212]
                0.00    0.00      15/420         vlc_rwlock_unlock [95]
                0.00    0.00      15/420         vlc_rwlock_rdlock [258]
                0.00    0.00      15/154         config_FindConfig [618]
-----------------------------------------------
                0.00    0.00       1/881         libvlc_media_player_set_media [378]
                0.00    0.00       1/881         libvlc_media_player_stop [286]
                0.00    0.00       1/881         input_item_duration_changed [506]
                0.00    0.00       1/881         input_item_preparsed_changed [473]
                0.00    0.00       1/881         input_scrambled_changed [508]
                0.00    0.00       1/881         input_pausable_changed [507]
                0.00    0.00       1/881         input_seekable_changed [509]
                0.00    0.00       4/881         libvlc_media_set_state [429]
                0.00    0.00       6/881         input_item_meta_changed [418]
                0.00    0.00     864/881         input_event_changed <cycle 5> [202]
[213]    0.0    0.00    0.00     881         libvlc_event_send [213]
                0.00    0.00    1759/460619      vlc_mutex_unlock [44]
                0.00    0.00    1758/392860      vlc_mutex_lock [65]
                0.00    0.00     431/431         vlc_event_callback [604]
-----------------------------------------------
                                   2             EsUnselect <cycle 4> [422]
                                   7             EsOutControl <cycle 4> [144]
[214]    0.0    0.00    0.00       9         es_out_Control <cycle 4> [214]
                0.00    0.00       8/273         vlc_Log [134]
                0.00    0.00       2/2           input_DecoderDelete [266]
                0.00    0.00       2/2           input_DecoderWait [331]
                0.00    0.00       7/8           input_SendEventCache [353]
                0.00    0.00       7/432         input_clock_GetState [251]
                0.00    0.00       3/156222      mdate [52]
                0.00    0.00       2/4           input_DecoderStopWait [451]
                0.00    0.00       1/1           input_clock_ChangeSystemOrigin [526]
                                   2             DeleteDecoder <cycle 4> [128]
                                   1             input_resource_TerminateVout <cycle 4> [851]
-----------------------------------------------
                0.00    0.00       1/1           aout_update_format [209]
[215]    0.0    0.00    0.00       1         aout_DecNew [215]
                0.00    0.00       1/1           aout_FiltersNew [223]
                0.00    0.00       1/1           aout_OutputNew [243]
                0.00    0.00       1/1           aout_volume_New [397]
                0.00    0.00       1/1           aout_volume_SetFormat [441]
                0.00    0.00       1/13          var_Destroy [350]
                0.00    0.00       1/5979        aout_OutputUnlock [167]
                0.00    0.00       1/5983        aout_OutputLock [204]
-----------------------------------------------
                0.00    0.00       1/1           Create [180]
[216]    0.0    0.00    0.00       1         input_ControlVarInit [216]
                0.00    0.00      23/224         var_Create [156]
                0.00    0.00      17/51          var_AddCallback [261]
                0.00    0.00      16/1002        var_Change [222]
                0.00    0.00       1/2           var_Get [478]
                0.00    0.00       1/2358        var_GetChecked [206]
                0.00    0.00       9/135         vlc_gettext [621]
-----------------------------------------------
                0.00    0.00    5972/5972        aout_FiltersPlay [16]
[217]    0.0    0.00    0.00    5972         DoWork [217]
                0.00    0.00     341/25186       block_Alloc [104]
                0.00    0.00     341/25194       block_generic_Release [103]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [88]
[218]    0.0    0.00    0.00       2         OpenDecoder [218]
                0.00    0.00      10/273         vlc_Log [134]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       3/3           convert_omx_to_profile_idc [754]
                0.00    0.00       1/1           jni_IsVideoPlayerActivityCreated [1020]
                0.00    0.00       1/1           h264_get_profile_level [1010]
-----------------------------------------------
                0.00    0.00       1/1           Init [205]
[219]    0.0    0.00    0.00       1         InputSourceInit [219]
                0.00    0.00       1/1           stream_AccessNew [240]
                0.00    0.00       2/2           demux_New [279]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       1/1           access_New [318]
                0.00    0.00       1/224         var_Create [156]
                0.00    0.00       5/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       1/1           stream_FilterChainNew [400]
                0.00    0.00       4/49516       stream_Control [83]
                0.00    0.00       5/2358        var_GetChecked [206]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       5/1286        demux_Control [598]
                0.00    0.00       1/1           input_SplitMRL [1013]
                0.00    0.00       1/1           MRLSeekPoint [936]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [88]
[220]    0.0    0.00    0.00       2         OpenScaler [220]
                0.00    0.00       1/1           Init [221]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/224         var_Create [156]
                0.00    0.00       2/5           GetParameters [433]
                0.00    0.00       1/2358        var_GetChecked [206]
-----------------------------------------------
                0.00    0.00       1/1           OpenScaler [220]
[221]    0.0    0.00    0.00       1         Init [221]
                0.00    0.00       4/4           picture_New [224]
                0.00    0.00       2/2           sws_getContext [310]
                0.00    0.00       2/5           GetParameters [433]
                0.00    0.00       1/3           video_format_IsSimilar [758]
-----------------------------------------------
                0.00    0.00       1/1002        libvlc_video_get_spu_count [475]
                0.00    0.00       1/1002        libvlc_video_get_track_count [476]
                0.00    0.00       1/1002        libvlc_audio_get_track_count [474]
                0.00    0.00       1/1002        input_SendEventLength [250]
                0.00    0.00       1/1002        input_SendEventTitle [385]
                0.00    0.00       2/1002        input_ControlVarTitle [407]
                0.00    0.00       3/1002        VarListAdd [380]
                0.00    0.00       3/1002        input_SendEventState [379]
                0.00    0.00       4/1002        LanguageSplit [359]
                0.00    0.00       4/1002        input_ControlVarNavigation [349]
                0.00    0.00       6/1002        VarListDel [356]
                0.00    0.00       6/1002        VarListSelect [355]
                0.00    0.00       7/1002        aout_OutputNew [243]
                0.00    0.00       8/1002        input_SendEventCache [353]
                0.00    0.00      16/1002        input_ControlVarInit [216]
                0.00    0.00      19/1002        vout_InitInterlacingSupport [262]
                0.00    0.00      32/1002        aout_New [233]
                0.00    0.00      36/1002        vout_IntfInit [210]
                0.00    0.00     851/1002        input_SendEventPosition [194]
[222]    0.0    0.00    0.00    1002         var_Change [222]
                0.00    0.00    1003/460619      vlc_mutex_unlock [44]
                0.00    0.00    1002/392860      vlc_mutex_lock [65]
                0.00    0.00    1001/4104        tfind [591]
                0.00    0.00     965/1591        CheckValue [596]
                0.00    0.00     899/3329        DupDummy [593]
                0.00    0.00     886/1642        FreeDummy [595]
                0.00    0.00      59/115         DupString [624]
                0.00    0.00       6/44          CmpInt [637]
                0.00    0.00       4/113         FreeString [625]
                0.00    0.00       2/383         CmpString [605]
                0.00    0.00       1/14          CmpFloat [674]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [215]
[223]    0.0    0.00    0.00       1         aout_FiltersNew [223]
                0.00    0.00       1/1           aout_FiltersPipelineCreate [254]
                0.00    0.00       3/188         var_Inherit [147]
                0.00    0.00       1/2           aout_FormatPrint [281]
                0.00    0.00       1/12          aout_BitsPerSample [226]
                0.00    0.00       3/51          var_AddCallback [261]
                0.00    0.00       1/2           CreateFilter [402]
                0.00    0.00       1/731         var_TriggerCallback <cycle 5> [376]
-----------------------------------------------
                0.00    0.00       4/4           Init [221]
[224]    0.0    0.00    0.00       4         picture_New [224]
                0.00    0.00       4/29          picture_NewFromFormat [186]
                0.00    0.00       4/64          video_format_Setup [182]
-----------------------------------------------
                0.00    0.00       2/190         libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [421]
                0.00    0.00       3/190         libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [401]
                0.00    0.00       4/190         libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [389]
                0.00    0.00       4/190         libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [390]
                0.00    0.00     177/190         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [228]
[225]    0.0    0.00    0.00     190         libebml::IOCallback::readFully(void*, unsigned int) [225]
                0.00    0.00     190/32908       vlc_stream_io_callback::read(void*, unsigned int) [60]
-----------------------------------------------
                0.00    0.00       1/12          CreateResampler [346]
                0.00    0.00       1/12          aout_FiltersPipelineCreate [254]
                0.00    0.00       1/12          aout_FiltersNew [223]
                0.00    0.00       1/12          aout_OutputNew [243]
                0.00    0.00       1/12          info_category_AddInfo [244]
                0.00    0.00       7/12          aout_FormatPrepare [238]
[226]    0.0    0.00    0.00      12         aout_BitsPerSample [226]
                0.00    0.00      12/6997        vlc_fourcc_GetCodec [27]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_player_new [188]
                0.00    0.00       1/2           aout_update_format [209]
[227]    0.0    0.00    0.00       2         input_resource_GetAout [227]
                0.00    0.00       1/1           aout_New [233]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       3/460619      vlc_mutex_unlock [44]
                0.00    0.00       3/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       3/177         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00      24/177         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
                0.00    0.00      51/177         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
                0.00    0.00      99/177         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
[228]    0.0    0.00    0.00     177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [228]
                0.00    0.00     177/190         libebml::IOCallback::readFully(void*, unsigned int) [225]
                0.00    0.00     946/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00     116/116         MainLoop [20]
[229]    0.0    0.00    0.00     116         input_SendEventStatistics [229]
                0.00    0.00     116/731         var_SetChecked <cycle 5> [235]
-----------------------------------------------
                                  48             var_TriggerCallback <cycle 5> [376]
                                1252             var_SetChecked <cycle 5> [235]
                0.00    0.00       9/731         var_Destroy [350]
                0.00    0.00      30/731         var_DelCallback [285]
                0.00    0.00      51/731         var_AddCallback [261]
[230]    0.0    0.00    0.00    1390         TriggerCallback <cycle 5> [230]
                0.00    0.00     614/460619      vlc_mutex_unlock [44]
                0.00    0.00     613/392860      vlc_mutex_lock [65]
                0.00    0.00       1/1           ReplayGainCallback [337]
                0.00    0.00       4/4           AboveCallback [449]
                0.00    0.00       2/2           AspectCallback [479]
                0.00    0.00       2/2           CropCallback [480]
                0.00    0.00       2/2           ScaleCallback [481]
                0.00    0.00       2/2           SubMarginCallback [487]
                0.00    0.00       2/2           SubFilterCallback [486]
                0.00    0.00       2/2           SubSourceCallback [488]
                0.00    0.00       2/2           VideoFilterCallback [489]
                0.00    0.00       1/1           input_scrambled_changed [508]
                0.00    0.00       1/1           input_seekable_changed [509]
                0.00    0.00       1/1           input_pausable_changed [507]
                0.00    0.00       1/1           EqualizerCallback [518]
                0.00    0.00     612/26822       vlc_cond_broadcast [552]
                0.00    0.00       2/2           FullscreenCallback [792]
                                 582             input_event_changed <cycle 5> [202]
                                   2             WallPaperCallback <cycle 5> [804]
                                   2             ZoomCallback <cycle 5> [805]
                                   2             DeinterlaceCallback <cycle 5> [260]
                                   1             var_Copy <cycle 5> [1036]
-----------------------------------------------
                                   1             DeleteDecoder <cycle 4> [128]
                                   2             input_resource_TerminateVout <cycle 4> [851]
                0.00    0.00       1/31285       vout_new_buffer [24]
[231]    0.0    0.00    0.00       4         input_resource_RequestVout <cycle 4> [231]
                0.00    0.00       1/1           vout_Close [248]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       1/3           vout_Flush [393]
                0.00    0.00       6/460619      vlc_mutex_unlock [44]
                0.00    0.00       3/4           input_item_GetMeta [452]
                0.00    0.00       6/392860      vlc_mutex_lock [65]
                0.00    0.00       1/1           vout_DisplayTitle [537]
                0.00    0.00       1/2           input_item_GetName [498]
                0.00    0.00       1/1           vout_FlushSubpictureChannel [538]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       1/6           input_GetItem [713]
                                   2             vout_Request <cycle 4> [198]
-----------------------------------------------
                0.00    0.00       2/5           spu_Attach <cycle 4> [265]
                0.00    0.00       3/5           spu_Destroy [249]
[232]    0.0    0.00    0.00       5         FilterRelease [232]
                0.00    0.00       4/14          module_unneed [208]
                0.00    0.00       4/44          vlc_object_release [382]
                0.00    0.00       1/2           var_Get [478]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_GetAout [227]
[233]    0.0    0.00    0.00       1         aout_New [233]
                0.00    0.00      10/224         var_Create [156]
                0.00    0.00      32/1002        var_Change [222]
                0.00    0.00       2/51          var_AddCallback [261]
                0.00    0.00       1/31285       module_need <cycle 4> [666]
                0.00    0.00       1/2358        var_GetChecked [206]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00      32/135         vlc_gettext [621]
                0.00    0.00       4/7           module_exists [693]
                0.00    0.00       3/10463       vlc_mutex_init [567]
                0.00    0.00       2/154         config_FindConfig [618]
                0.00    0.00       1/3           vlc_object_set_destructor [762]
-----------------------------------------------
                                   2             Add <cycle 4> [447]
[234]    0.0    0.00    0.00       2         EsOutAdd <cycle 4> [234]
                0.00    0.00       2/4           info_category_AddInfo [244]
                0.00    0.00       1/1           EsOutProgramAdd [288]
                0.00    0.00       1/6997        vlc_fourcc_GetCodec [27]
                0.00    0.00       1/1           vlc_fourcc_GetCodecAudio [344]
                0.00    0.00       2/12          LanguageSplit [359]
                0.00    0.00       3/460619      vlc_mutex_unlock [44]
                0.00    0.00       3/392860      vlc_mutex_lock [65]
                0.00    0.00       2/2           EsOutProgramFind [766]
                0.00    0.00       2/26          es_format_Copy [651]
                0.00    0.00       2/2           LanguageGetCode [794]
                0.00    0.00       1/70          vlc_ureduce [630]
                0.00    0.00       1/1           vlc_audio_replay_gain_MergeFromMeta [1037]
                                   2             EsOutSelect <cycle 4> [728]
-----------------------------------------------
                                   2             ZoomCallback <cycle 5> [805]
                                   2             DeinterlaceCallback <cycle 5> [260]
                                   4             input_SendEventMetaInfo <cycle 5> [416]
                                   4             var_Set <cycle 5> [744]
                0.00    0.00       1/731         libvlc_media_player_set_video_title_display [439]
                0.00    0.00       1/731         input_SendEventDead [437]
                0.00    0.00       1/731         input_SendEventLength [250]
                0.00    0.00       1/731         input_SendEventTitle [385]
                0.00    0.00       1/731         input_SendEventMetaEpg [438]
                0.00    0.00       1/731         input_SendEventAout [436]
                0.00    0.00       1/731         vout_IntfInit [210]
                0.00    0.00       1/731         aout_Destroy [297]
                0.00    0.00       1/731         EsOutProgramSelect [290]
                0.00    0.00       1/731         vout_InitInterlacingSupport [262]
                0.00    0.00       1/731         vout_SetInterlacingState [150]
                0.00    0.00       2/731         input_SendEventProgramScrambled [404]
                0.00    0.00       2/731         input_SendEventVout [406]
                0.00    0.00       2/731         Init [205]
                0.00    0.00       2/731         info_category_AddInfo [244]
                0.00    0.00       3/731         VarListAdd [380]
                0.00    0.00       3/731         input_SendEventState [379]
                0.00    0.00       3/731         input_SendEventMeta [368]
                0.00    0.00       4/731         libvlc_media_player_new [188]
                0.00    0.00       4/731         libvlc_media_player_set_equalizer [369]
                0.00    0.00       5/731         InputSourceInit [219]
                0.00    0.00       6/731         VarListDel [356]
                0.00    0.00       6/731         VarListSelect [355]
                0.00    0.00       8/731         input_SendEventCache [353]
                0.00    0.00      11/731         input_ConfigVarInit [199]
                0.00    0.00     116/731         input_SendEventStatistics [229]
                0.00    0.00     425/731         input_SendEventPosition [194]
[235]    0.0    0.00    0.00     625         var_SetChecked <cycle 5> [235]
                0.00    0.00     625/460619      vlc_mutex_unlock [44]
                0.00    0.00     625/392860      vlc_mutex_lock [65]
                0.00    0.00     626/1591        CheckValue [596]
                0.00    0.00     625/4104        tfind [591]
                0.00    0.00     621/3329        DupDummy [593]
                0.00    0.00     620/1642        FreeDummy [595]
                0.00    0.00       5/115         DupString [624]
                0.00    0.00       5/113         FreeString [625]
                                1252             TriggerCallback <cycle 5> [230]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [176]
[236]    0.0    0.00    0.00       1         vout_OpenWrapper [236]
                0.00    0.00       1/1           vout_NewDisplay [274]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       1/224         var_Create [156]
                0.00    0.00       1/2358        var_GetChecked [206]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [131]
[237]    0.0    0.00    0.00       1         demux_sys_t::InitUi() [237]
                0.00    0.00       7/224         var_Create [156]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/1           demux_GetParentInput [986]
                0.00    0.00       1/10463       vlc_mutex_init [567]
                0.00    0.00       1/10437       vlc_cond_init [568]
-----------------------------------------------
                0.00    0.00       1/7           Start [347]
                0.00    0.00       1/7           aout_update_format [209]
                0.00    0.00       1/7           TryFormat [340]
                0.00    0.00       2/7           SetupOutputFormat [307]
                0.00    0.00       2/7           aout_OutputNew [243]
[238]    0.0    0.00    0.00       7         aout_FormatPrepare [238]
                0.00    0.00       7/12          aout_BitsPerSample [226]
-----------------------------------------------
                0.00    0.00       1/7           GetVlcChromaFormat [348]
                0.00    0.00       1/7           GetFfmpegCodec [308]
                0.00    0.00       5/7           info_category_AddInfo [244]
[239]    0.0    0.00    0.00       7         vlc_fourcc_GetDescription [239]
                0.00    0.00       7/7005        Find [26]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [219]
[240]    0.0    0.00    0.00       1         stream_AccessNew [240]
                0.00    0.00       1/1           AStreamPrebufferStream [259]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/49754       access_Control [98]
                0.00    0.00       1/3           stream_CommonNew [470]
-----------------------------------------------
                0.00    0.00       1/1           DeleteDecoder <cycle 4> [128]
[241]    0.0    0.00    0.00       1         aout_DecDelete [241]
                0.00    0.00       1/1           aout_FiltersDelete [264]
                0.00    0.00       1/1           aout_volume_Delete [299]
                0.00    0.00       1/1           aout_OutputDelete [434]
                0.00    0.00       1/13          var_Destroy [350]
                0.00    0.00       1/5979        aout_OutputUnlock [167]
                0.00    0.00       1/5983        aout_OutputLock [204]
-----------------------------------------------
                0.00    0.00       1/5           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
                0.00    0.00       1/5           matroska_segment_c::Select(long long) <cycle 4> [284]
                0.00    0.00       1/5           matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [335]
                0.00    0.00       1/5           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00       1/5           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[242]    0.0    0.00    0.00       5         EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [242]
                0.00    0.00       5/188         var_Inherit [147]
                0.00    0.00       5/18          libebml::EbmlMaster::GetSize() const [16265]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [215]
[243]    0.0    0.00    0.00       1         aout_OutputNew [243]
                0.00    0.00       2/7           aout_FormatPrepare [238]
                0.00    0.00       1/2           aout_FormatPrint [281]
                0.00    0.00       1/12          aout_BitsPerSample [226]
                0.00    0.00       1/1           Start [347]
                0.00    0.00       1/224         var_Create [156]
                0.00    0.00       1/51          var_AddCallback [261]
                0.00    0.00       7/1002        var_Change [222]
                0.00    0.00       1/2358        var_GetChecked [206]
                0.00    0.00       1/1           var_Type [535]
                0.00    0.00       5/135         vlc_gettext [621]
-----------------------------------------------
                                  23             info_category_AddInfo [244]
                0.00    0.00       2/4           EsOutAdd <cycle 4> [234]
                0.00    0.00       2/4           EsOutSend [66]
[244]    0.0    0.00    0.00       4+23      info_category_AddInfo [244]
                0.00    0.00       5/7           vlc_fourcc_GetDescription [239]
                0.00    0.00       1/12          aout_BitsPerSample [226]
                0.00    0.00       4/731         input_Control <cycle 5> [692]
                0.00    0.00       2/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       4/4           input_item_UpdateTracksInfo [453]
                0.00    0.00      38/135         vlc_gettext [621]
                0.00    0.00       4/6           input_GetItem [713]
                0.00    0.00       1/5           aout_FormatPrintChannels [719]
                                  23             info_category_AddInfo [244]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[245]    0.0    0.00    0.00       1         Open [245]
                0.00    0.00       1/30          picture_NewFromResource [183]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       1/1           vlc_fourcc_GetCodecFromString [345]
                0.00    0.00       1/6926        AndroidLockSurface [323]
                0.00    0.00       1/68402       vlc_mutex_trylock [548]
                0.00    0.00       1/1           LoadNativeWindowAPI [935]
                0.00    0.00       1/2           video_format_FixRgb [899]
                0.00    0.00       1/2           picture_pool_NewExtended [857]
-----------------------------------------------
                0.00    0.00      11/11          vlc_module_unload [247]
[246]    0.0    0.00    0.00      11         generic_stop [246]
                0.00    0.00       1/1           Close(vlc_object_t*) [270]
                0.00    0.00       1/1           CloseDecoder [311]
                0.00    0.00       1/1           Close [395]
                0.00    0.00       1/1           CloseScaler [516]
                0.00    0.00       2/2           Destroy [765]
                0.00    0.00       1/1           Close [916]
                0.00    0.00       1/1           Close [918]
                0.00    0.00       1/1           FileClose [931]
                0.00    0.00       1/1           Close [917]
                0.00    0.00       1/1           CloseDecoder [919]
-----------------------------------------------
                0.00    0.00      15/15          module_unneed [208]
[247]    0.0    0.00    0.00      15         vlc_module_unload [247]
                0.00    0.00      11/11          generic_stop [246]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_RequestVout <cycle 4> [231]
[248]    0.0    0.00    0.00       1         vout_Close [248]
                0.00    0.00       1/1           spu_Destroy [249]
                0.00    0.00       1/4           vlc_join [412]
                0.00    0.00       1/3           vout_control_PushVoid [464]
                0.00    0.00       1/1           vout_snapshot_End [540]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           vout_Close [248]
[249]    0.0    0.00    0.00       1         spu_Destroy [249]
                0.00    0.00       3/5           FilterRelease [232]
                0.00    0.00       2/5           filter_chain_Delete [321]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       3/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/426         Init [205]
                0.00    0.00     425/426         EsOutControl <cycle 4> [144]
[250]    0.0    0.00    0.00     426         input_SendEventLength [250]
                0.00    0.00     426/2358        var_GetChecked [206]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       1/1           input_item_SetDuration [457]
                0.00    0.00       1/1002        var_Change [222]
-----------------------------------------------
                0.00    0.00       7/432         es_out_Control <cycle 4> [214]
                0.00    0.00     425/432         EsOutControl <cycle 4> [144]
[251]    0.0    0.00    0.00     432         input_clock_GetState [251]
                0.00    0.00     429/460619      vlc_mutex_unlock [44]
                0.00    0.00     432/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00     425/425         EsOutControl <cycle 4> [144]
[252]    0.0    0.00    0.00     425         input_clock_Update [252]
                0.00    0.00     424/460619      vlc_mutex_unlock [44]
                0.00    0.00     425/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/431         libvlc_media_player_stop [286]
                0.00    0.00     430/431         libvlc_media_player_is_playing [255]
[253]    0.0    0.00    0.00     431         libvlc_media_player_get_state [253]
                0.00    0.00     418/460619      vlc_mutex_unlock [44]
                0.00    0.00     431/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersNew [223]
[254]    0.0    0.00    0.00       1         aout_FiltersPipelineCreate [254]
                0.00    0.00       1/1           aout_FormatsPrint [328]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/1           TryFormat [340]
                0.00    0.00       1/12          aout_BitsPerSample [226]
-----------------------------------------------
                0.00    0.00     430/430         Java_org_videolan_libvlc_LibVLC_isPlaying [256]
[255]    0.0    0.00    0.00     430         libvlc_media_player_is_playing [255]
                0.00    0.00     430/431         libvlc_media_player_get_state [253]
-----------------------------------------------
                                                 <spontaneous>
[256]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_isPlaying [256]
                0.00    0.00     430/430         libvlc_media_player_is_playing [255]
                0.00    0.00     430/450         getMediaPlayer [603]
-----------------------------------------------
                0.00    0.00       2/2           Thread [13]
[257]    0.0    0.00    0.00       2         ThreadChangeFilters [257]
                0.00    0.00       2/2           es_format_IsSimilar [271]
                0.00    0.00       4/11          filter_chain_Reset [275]
                0.00    0.00       2/8           VoutVideoFilterStaticNewPicture [423]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       4/4           filter_chain_GetFmtOut [735]
                0.00    0.00       2/2           config_ChainCreate [828]
                0.00    0.00       2/4           es_format_InitFromVideo [734]
-----------------------------------------------
                0.00    0.00      15/420         config_GetFloat [212]
                0.00    0.00      45/420         config_GetPsz [174]
                0.00    0.00      87/420         config_GetInt [161]
                0.00    0.00     273/420         vlc_vaLog [135]
[258]    0.0    0.00    0.00     420         vlc_rwlock_rdlock [258]
                0.00    0.00     420/460619      vlc_mutex_unlock [44]
                0.00    0.00     420/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           stream_AccessNew [240]
[259]    0.0    0.00    0.00       1         AStreamPrebufferStream [259]
                0.00    0.00       3/273         vlc_Log [134]
                0.00    0.00       1/493         AReadStream [185]
                0.00    0.00       4/156222      mdate [52]
                0.00    0.00       2/3102        vlc_object_alive [594]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [230]
[260]    0.0    0.00    0.00       2         DeinterlaceCallback <cycle 5> [260]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       2/224         var_Create [156]
                0.00    0.00      10/2358        var_GetChecked [206]
                0.00    0.00       2/3           vlc_inhibit_Destroy [759]
                                   2             var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/51          libvlc_media_player_new [188]
                0.00    0.00       1/51          input_ControlVarNavigation [349]
                0.00    0.00       1/51          spu_Attach <cycle 4> [265]
                0.00    0.00       1/51          aout_OutputNew [243]
                0.00    0.00       1/51          aout_volume_New [397]
                0.00    0.00       2/51          aout_New [233]
                0.00    0.00       3/51          aout_FiltersNew [223]
                0.00    0.00       3/51          vout_InitInterlacingSupport [262]
                0.00    0.00       4/51          libvlc_media_player_play [178]
                0.00    0.00      17/51          input_ControlVarInit [216]
                0.00    0.00      17/51          vout_IntfInit [210]
[261]    0.0    0.00    0.00      51         var_AddCallback [261]
                0.00    0.00      51/731         TriggerCallback <cycle 5> [230]
                0.00    0.00      51/460619      vlc_mutex_unlock [44]
                0.00    0.00      51/392860      vlc_mutex_lock [65]
                0.00    0.00      51/4104        tfind [591]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [198]
[262]    0.0    0.00    0.00       1         vout_InitInterlacingSupport [262]
                0.00    0.00       3/224         var_Create [156]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       3/51          var_AddCallback [261]
                0.00    0.00      19/1002        var_Change [222]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       2/2358        var_GetChecked [206]
                0.00    0.00       1/1           DeinterlaceIsPresent [520]
                0.00    0.00      15/135         vlc_gettext [621]
                0.00    0.00       2/154         config_FindConfig [618]
-----------------------------------------------
                0.00    0.00       2/68          DeleteDecoder <cycle 4> [128]
                0.00    0.00       2/68          DecoderFlush [370]
                0.00    0.00       2/68          vlc_sem_wait [413]
                0.00    0.00       4/68          vout_control_WaitEmpty [373]
                0.00    0.00      20/68          input_DecoderWait [331]
                0.00    0.00      38/68          block_FifoGet [130]
[263]    0.0    0.00    0.00      68         vlc_cond_wait [263]
                0.00    0.00     130/74267       vlc_testcancel [61]
                0.00    0.00     131/460619      vlc_mutex_unlock [44]
                0.00    0.00     133/68402       vlc_mutex_trylock [548]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecDelete [241]
[264]    0.0    0.00    0.00       1         aout_FiltersDelete [264]
                0.00    0.00       2/2           aout_FiltersPipelineDestroy [269]
                0.00    0.00       3/34          var_DelCallback [285]
-----------------------------------------------
                                   2             vout_Request <cycle 4> [198]
[265]    0.0    0.00    0.00       2         spu_Attach <cycle 4> [265]
                0.00    0.00       2/5           FilterRelease [232]
                0.00    0.00       1/224         var_Create [156]
                0.00    0.00       1/51          var_AddCallback [261]
                0.00    0.00       1/34          var_DelCallback [285]
                0.00    0.00       1/13          var_Destroy [350]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                                   1             SpuRenderCreateAndLoadText <cycle 4> [283]
-----------------------------------------------
                0.00    0.00       2/2           es_out_Control <cycle 4> [214]
[266]    0.0    0.00    0.00       2         input_DecoderDelete [266]
                0.00    0.00       2/14          module_unneed [208]
                0.00    0.00       2/4           vlc_join [412]
                0.00    0.00       2/2           vlc_cancel [504]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       2/20260       vlc_cond_signal [556]
-----------------------------------------------
                                                 <spontaneous>
[267]    0.0    0.00    0.00                 demux_Delete [267]
                0.00    0.00       1/1           stream_Delete <cycle 3> [303]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
[268]    0.0    0.00    0.00       1+2       <cycle 3 as a whole> [268]
                0.00    0.00       2             stream_Delete <cycle 3> [303]
                0.00    0.00       1             StreamDelete <cycle 3> [305]
-----------------------------------------------
                0.00    0.00       2/2           aout_FiltersDelete [264]
[269]    0.0    0.00    0.00       2         aout_FiltersPipelineDestroy [269]
                0.00    0.00       2/14          module_unneed [208]
                0.00    0.00       2/44          vlc_object_release [382]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[270]    0.0    0.00    0.00       1         Close(vlc_object_t*) [270]
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [301]
                0.00    0.00       1/1           matroska_segment_c::UnSelect() [315]
-----------------------------------------------
                0.00    0.00       2/2           ThreadChangeFilters [257]
[271]    0.0    0.00    0.00       2         es_format_IsSimilar [271]
                0.00    0.00       4/6997        vlc_fourcc_GetCodec [27]
                0.00    0.00       2/3           video_format_IsSimilar [758]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [126]
[272]    0.0    0.00    0.00       1         wmavoice_init_static_data [272]
                0.00    0.00       1/178         ff_init_vlc_sparse [96]
-----------------------------------------------
                0.00    0.00       1/1           vout_NewDisplay [274]
[273]    0.0    0.00    0.00       1         DisplayNew [273]
                0.00    0.00       1/1           VoutDisplayCreateRender [277]
                0.00    0.00       1/31285       module_need <cycle 4> [666]
                0.00    0.00       1/156222      mdate [52]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       1/1           vout_display_GetDefaultDisplaySize [1046]
                0.00    0.00       1/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       1/1           vout_OpenWrapper [236]
[274]    0.0    0.00    0.00       1         vout_NewDisplay [274]
                0.00    0.00       1/1           DisplayNew [273]
-----------------------------------------------
                0.00    0.00       1/11          VoutDisplayCreateRender [277]
                0.00    0.00       1/11          spu_Render [145]
                0.00    0.00       4/11          ThreadChangeFilters [257]
                0.00    0.00       5/11          filter_chain_Delete [321]
[275]    0.0    0.00    0.00      11         filter_chain_Reset [275]
                0.00    0.00       1/1           filter_chain_DeleteFilterInternal [276]
                0.00    0.00      10/33          es_format_Clean [642]
                0.00    0.00      10/26          es_format_Copy [651]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_Reset [275]
[276]    0.0    0.00    0.00       1         filter_chain_DeleteFilterInternal [276]
                0.00    0.00       1/14          module_unneed [208]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       1/1           FilterAllocationClean [932]
-----------------------------------------------
                0.00    0.00       1/1           DisplayNew [273]
[277]    0.0    0.00    0.00       1         VoutDisplayCreateRender [277]
                0.00    0.00       1/1           filter_chain_AppendFilter [319]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/11          filter_chain_Reset [275]
                0.00    0.00       2/4           es_format_InitFromVideo [734]
                0.00    0.00       1/5           filter_chain_New [722]
-----------------------------------------------
                0.00    0.00       1/1           Thread [13]
[278]    0.0    0.00    0.00       1         ThreadStop [278]
                0.00    0.00       1/1           vout_CloseWrapper [294]
                0.00    0.00       2/5           filter_chain_Delete [321]
                0.00    0.00       1/1           vout_EndWrapper [365]
                0.00    0.00       1/5           ThreadFlush [403]
                0.00    0.00       1/1           picture_fifo_Delete [531]
                0.00    0.00       1/1           filter_DeleteBlend [543]
-----------------------------------------------
                0.00    0.00       2/2           InputSourceInit [219]
[279]    0.0    0.00    0.00       2         demux_New [279]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       2/31285       module_need <cycle 4> [666]
                0.00    0.00       2/24          vlc_custom_create [377]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       2/4           make_path [739]
                0.00    0.00       2/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_player_new [188]
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [128]
[280]    0.0    0.00    0.00       2         input_resource_PutAout [280]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
-----------------------------------------------
                0.00    0.00       1/2           aout_FiltersNew [223]
                0.00    0.00       1/2           aout_OutputNew [243]
[281]    0.0    0.00    0.00       2         aout_FormatPrint [281]
                0.00    0.00       2/273         vlc_Log [134]
                0.00    0.00       2/5           aout_FormatPrintChannels [719]
-----------------------------------------------
                0.00    0.00       1/1           Init [205]
[282]    0.0    0.00    0.00       1         input_EsOutTimeshiftNew [282]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       2/224         var_Create [156]
                0.00    0.00       2/2358        var_GetChecked [206]
                0.00    0.00       1/5           vlc_mutex_init_recursive [724]
-----------------------------------------------
                                   1             spu_Create <cycle 4> [336]
                                   1             spu_Attach <cycle 4> [265]
[283]    0.0    0.00    0.00       2         SpuRenderCreateAndLoadText <cycle 4> [283]
                0.00    0.00       4/224         var_Create [156]
                0.00    0.00       2/24          vlc_custom_create [377]
                0.00    0.00       4/28          es_format_Init [649]
                                   2             module_need <cycle 4> [666]
-----------------------------------------------
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
[284]    0.0    0.00    0.00       1         matroska_segment_c::Select(long long) <cycle 4> [284]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [242]
                0.00    0.00       1/16586       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16289]
                                   3             es_out_Control(es_out_t*, int, ...) <cycle 4> [16288]
                                   2             Add <cycle 4> [447]
-----------------------------------------------
                0.00    0.00       1/34          input_ControlVarStop [309]
                0.00    0.00       1/34          spu_Attach <cycle 4> [265]
                0.00    0.00       1/34          aout_OutputDelete [434]
                0.00    0.00       1/34          aout_volume_Delete [299]
                0.00    0.00       2/34          aout_Destroy [297]
                0.00    0.00       3/34          aout_FiltersDelete [264]
                0.00    0.00       4/34          release_input_thread [360]
                0.00    0.00      21/34          InputDelCallbacks [313]
[285]    0.0    0.00    0.00      34         var_DelCallback [285]
                0.00    0.00      30/731         TriggerCallback <cycle 5> [230]
                0.00    0.00      34/460619      vlc_mutex_unlock [44]
                0.00    0.00      34/392860      vlc_mutex_lock [65]
                0.00    0.00      34/4104        tfind [591]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_stop [287]
[286]    0.0    0.00    0.00       1         libvlc_media_player_stop [286]
                0.00    0.00       1/1           input_resource_Terminate [293]
                0.00    0.00       1/2           release_input_thread [360]
                0.00    0.00       1/5           set_state [417]
                0.00    0.00       1/881         libvlc_event_send [213]
                0.00    0.00       1/431         libvlc_media_player_get_state [253]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                                                 <spontaneous>
[287]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_stop [287]
                0.00    0.00       1/1           libvlc_media_player_stop [286]
                0.00    0.00       1/450         getMediaPlayer [603]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [234]
[288]    0.0    0.00    0.00       1         EsOutProgramAdd [288]
                0.00    0.00       1/1           EsOutProgramSelect [290]
                0.00    0.00       1/1           input_SendEventProgramAdd [430]
                0.00    0.00       1/2           input_clock_SetJitter [497]
                0.00    0.00       1/1           input_clock_New [1016]
-----------------------------------------------
                0.00    0.00       2/2           Create [195]
[289]    0.0    0.00    0.00       2         GetFontSize [289]
                0.00    0.00       2/188         var_Inherit [147]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [288]
[290]    0.0    0.00    0.00       1         EsOutProgramSelect [290]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       4/6           VarListDel [356]
                0.00    0.00       1/1           input_SendEventProgramScrambled [404]
                0.00    0.00       1/3           input_SendEventMeta [368]
                0.00    0.00       2/3           input_item_SetMeta [415]
                0.00    0.00       1/6           VarListSelect [355]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       3/5           input_SendEventEsDel [723]
                0.00    0.00       1/1           input_SendEventProgramSelect [1011]
                0.00    0.00       1/1           input_SendEventTeletextDel [1012]
-----------------------------------------------
                0.00    0.00       3/3           Create [180]
[291]    0.0    0.00    0.00       3         var_OptionParse [291]
                0.00    0.00       3/224         var_Create [156]
                0.00    0.00       3/731         var_Set <cycle 5> [744]
                0.00    0.00       3/3           config_GetType [753]
-----------------------------------------------
                0.00    0.00       3/6           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       3/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[292]    0.0    0.00    0.00       6         libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00      36/32908       vlc_stream_io_callback::read(void*, unsigned int) [60]
                0.00    0.00      11/16336       vlc_stream_io_callback::getFilePointer() [141]
                0.00    0.00      15/29868       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16173]
                0.00    0.00       5/137         libebml::EbmlMaster::ValidateSize() const [16216]
                0.00    0.00       5/5           libebml::EbmlMaster::SetSizeInfinite(bool) [16290]
                0.00    0.00       1/2           libmatroska::KaxCues::Create() [16405]
                0.00    0.00       1/2           libmatroska::KaxTracks::Create() [16409]
                0.00    0.00       1/4           libmatroska::KaxInfo::Create() [16303]
                0.00    0.00       1/1           libmatroska::KaxSegment::Create() [16490]
                0.00    0.00       1/1           libebml::EbmlHead::Create() [16546]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_stop [286]
[293]    0.0    0.00    0.00       1         input_resource_Terminate [293]
                0.00    0.00       1/1           input_resource_ResetAout [296]
                0.00    0.00       1/31285       input_resource_TerminateVout <cycle 4> [851]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [278]
[294]    0.0    0.00    0.00       1         vout_CloseWrapper [294]
                0.00    0.00       1/1           vout_DeleteDisplay [295]
-----------------------------------------------
                0.00    0.00       1/1           vout_CloseWrapper [294]
[295]    0.0    0.00    0.00       1         vout_DeleteDisplay [295]
                0.00    0.00       1/14          module_unneed [208]
                0.00    0.00       1/5           filter_chain_Delete [321]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_Terminate [293]
[296]    0.0    0.00    0.00       1         input_resource_ResetAout [296]
                0.00    0.00       1/1           aout_Destroy [297]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_ResetAout [296]
[297]    0.0    0.00    0.00       1         aout_Destroy [297]
                0.00    0.00       1/14          module_unneed [208]
                0.00    0.00       2/34          var_DelCallback [285]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       1/5979        aout_OutputUnlock [167]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           Run [19]
[298]    0.0    0.00    0.00       1         End [298]
                0.00    0.00       1/1           input_ControlVarStop [309]
                0.00    0.00       2/4325        es_out_Control [140]
                0.00    0.00       1/4           input_ChangeState [375]
                0.00    0.00       1/1           input_resource_RequestSout [529]
                0.00    0.00       1/2           input_resource_SetInput [499]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/1           Destroy [927]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecDelete [241]
[299]    0.0    0.00    0.00       1         aout_volume_Delete [299]
                0.00    0.00       1/14          module_unneed [208]
                0.00    0.00       1/34          var_DelCallback [285]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [302]
[300]    0.0    0.00    0.00       1         demux_sys_t::CleanUi() [300]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       7/13          var_Destroy [350]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16511]
-----------------------------------------------
                0.00    0.00       1/1           Close(vlc_object_t*) [270]
[301]    0.0    0.00    0.00       1         demux_sys_t::~demux_sys_t() [301]
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [302]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [301]
[302]    0.0    0.00    0.00       1         demux_sys_t::~demux_sys_t() [302]
                0.00    0.00       1/1           demux_sys_t::CleanUi() [300]
                0.00    0.00       1/1           libebml::EbmlStream::~EbmlStream() [16543]
                0.00    0.00       1/1           vlc_stream_io_callback::~vlc_stream_io_callback() [16532]
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16529]
                0.00    0.00       1/1           virtual_segment_c::~virtual_segment_c() [16524]
                0.00    0.00       1/2           vlc_meta_Delete [900]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                                   1             StreamDelete <cycle 3> [305]
                0.00    0.00       1/1           demux_Delete [267]
[303]    0.0    0.00    0.00       2         stream_Delete <cycle 3> [303]
                0.00    0.00       1/1           AStreamDestroy [304]
                                   1             StreamDelete <cycle 3> [305]
-----------------------------------------------
                0.00    0.00       1/1           stream_Delete <cycle 3> [303]
[304]    0.0    0.00    0.00       1         AStreamDestroy [304]
                0.00    0.00       1/1           access_Delete [306]
                0.00    0.00       1/3           stream_CommonDelete [515]
-----------------------------------------------
                                   1             stream_Delete <cycle 3> [303]
[305]    0.0    0.00    0.00       1         StreamDelete <cycle 3> [305]
                0.00    0.00       1/14          module_unneed [208]
                0.00    0.00       1/3           stream_CommonDelete [515]
                                   1             stream_Delete <cycle 3> [303]
-----------------------------------------------
                0.00    0.00       1/1           AStreamDestroy [304]
[306]    0.0    0.00    0.00       1         access_Delete [306]
                0.00    0.00       1/14          module_unneed [208]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
                0.00    0.00       1/5968        InitAudioDec [163]
                0.00    0.00    5967/5968        DecodeAudio [5]
[307]    0.0    0.00    0.00    5968         SetupOutputFormat [307]
                0.00    0.00       2/7           aout_FormatPrepare [238]
                0.00    0.00       2/2           aout_CheckChannelExtraction [810]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [93]
[308]    0.0    0.00    0.00       1         GetFfmpegCodec [308]
                0.00    0.00       1/6997        vlc_fourcc_GetCodec [27]
                0.00    0.00       1/7           vlc_fourcc_GetDescription [239]
-----------------------------------------------
                0.00    0.00       1/1           End [298]
[309]    0.0    0.00    0.00       1         input_ControlVarStop [309]
                0.00    0.00       3/3           InputDelCallbacks [313]
                0.00    0.00       1/34          var_DelCallback [285]
-----------------------------------------------
                0.00    0.00       2/2           Init [221]
[310]    0.0    0.00    0.00       2         sws_getContext [310]
                0.00    0.00       2/2           sws_init_context [312]
                0.00    0.00       2/2           sws_alloc_context [459]
                0.00    0.00       2/2           sws_setColorspaceDetails [512]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[311]    0.0    0.00    0.00       1         CloseDecoder [311]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/1           avcodec_close [414]
                0.00    0.00       2/6           vlc_global_mutex [472]
                0.00    0.00       2/71997       av_free [546]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [310]
[312]    0.0    0.00    0.00       2         sws_init_context [312]
                0.00    0.00       8/8           sws_getCachedContext [351]
                0.00    0.00      24/30130       av_malloc [99]
                0.00    0.00      16/29880       av_mallocz [124]
                0.00    0.00      12/25          av_pix_fmt_desc_get [652]
                0.00    0.00       4/6           av_get_bits_per_pixel [703]
                0.00    0.00       2/13          av_get_cpu_flags [677]
                0.00    0.00       2/2           sws_isSupportedInput [867]
                0.00    0.00       2/2           sws_isSupportedOutput [868]
                0.00    0.00       2/2           ff_getSwsFunc [833]
                0.00    0.00       1/1           sws_rgb2rgb_init [1034]
-----------------------------------------------
                0.00    0.00       3/3           input_ControlVarStop [309]
[313]    0.0    0.00    0.00       3         InputDelCallbacks [313]
                0.00    0.00      21/34          var_DelCallback [285]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::UnSelect() [315]
[314]    0.0    0.00    0.00       2         Del [314]
                0.00    0.00       2/2           CmdExecuteDel [316]
                0.00    0.00       2/156222      mdate [52]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       2/25317       TsStop [554]
-----------------------------------------------
                0.00    0.00       1/1           Close(vlc_object_t*) [270]
[315]    0.0    0.00    0.00       1         matroska_segment_c::UnSelect() [315]
                0.00    0.00       2/2           Del [314]
                0.00    0.00       1/2           event_thread_t::ResetPci() [16412]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16289]
-----------------------------------------------
                0.00    0.00       2/2           Del [314]
[316]    0.0    0.00    0.00       2         CmdExecuteDel [316]
                0.00    0.00       2/2           EsOutDel [317]
-----------------------------------------------
                0.00    0.00       2/2           CmdExecuteDel [316]
[317]    0.0    0.00    0.00       2         EsOutDel [317]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       2/12          LanguageSplit [359]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       2/33          es_format_Clean [642]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [219]
[318]    0.0    0.00    0.00       1         access_New [318]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/31285       module_need <cycle 4> [666]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       1/1           get_path [1009]
-----------------------------------------------
                0.00    0.00       1/1           VoutDisplayCreateRender [277]
[319]    0.0    0.00    0.00       1         filter_chain_AppendFilter [319]
                0.00    0.00       1/1           filter_chain_AppendFilterInternal [320]
                0.00    0.00       1/2           UpdateBufferFunctions [803]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFilter [319]
[320]    0.0    0.00    0.00       1         filter_chain_AppendFilterInternal [320]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/31285       module_need <cycle 4> [666]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       2/26          es_format_Copy [651]
                0.00    0.00       1/1           FilterAllocationInit [933]
                0.00    0.00       1/1           module_get_name [1025]
-----------------------------------------------
                0.00    0.00       1/5           vout_DeleteDisplay [295]
                0.00    0.00       2/5           ThreadStop [278]
                0.00    0.00       2/5           spu_Destroy [249]
[321]    0.0    0.00    0.00       5         filter_chain_Delete [321]
                0.00    0.00       5/11          filter_chain_Reset [275]
                0.00    0.00      10/33          es_format_Clean [642]
-----------------------------------------------
                0.00    0.00       1/1           Init [205]
[322]    0.0    0.00    0.00       1         subtitles_Detect [322]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/2358        var_GetChecked [206]
                0.00    0.00      16/16          vlc_readdir [673]
                0.00    0.00      13/13          subtitles_Filter [678]
                0.00    0.00       5/5           vlc_opendir [725]
                0.00    0.00       2/2           strcpy_strip_ext [864]
                0.00    0.00       2/2           strcpy_trim [865]
                0.00    0.00       1/4           make_path [739]
-----------------------------------------------
                0.00    0.00       1/6926        Open [245]
                0.00    0.00    6925/6926        picture_pool_Get [69]
[323]    0.0    0.00    0.00    6926         AndroidLockSurface [323]
                0.00    0.00       1/1           VoutDisplayEvent [324]
                0.00    0.00    6925/6925        jni_LockAndGetAndroidJavaSurface [575]
                0.00    0.00    6920/6920        vlc_fourcc_AreUVPlanesSwapped [580]
                0.00    0.00       2/2           jni_SetAndroidSurfaceSize [852]
                0.00    0.00       2/6919        jni_UnlockAndroidSurface [581]
-----------------------------------------------
                0.00    0.00       1/1           AndroidLockSurface [323]
[324]    0.0    0.00    0.00       1         VoutDisplayEvent [324]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[325]    0.0    0.00    0.00       1         FileOpen [325]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       1/1           vlc_open [1043]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[326]    0.0    0.00    0.00       1         Open [326]
                0.00    0.00       1/273         vlc_Log [134]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[327]    0.0    0.00    0.00       1         Open [327]
                0.00    0.00       1/273         vlc_Log [134]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersPipelineCreate [254]
[328]    0.0    0.00    0.00       1         aout_FormatsPrint [328]
                0.00    0.00       1/273         vlc_Log [134]
                0.00    0.00       2/5           aout_FormatPrintChannels [719]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [176]
[329]    0.0    0.00    0.00       1         video_format_Print [329]
                0.00    0.00       1/273         vlc_Log [134]
-----------------------------------------------
                0.00    0.00       3/120         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00      51/120         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
                0.00    0.00      66/120         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
[330]    0.0    0.00    0.00     120         EbmlParser::Up() [330]
                0.00    0.00       1/273         vlc_Log [134]
-----------------------------------------------
                0.00    0.00       2/2           es_out_Control <cycle 4> [214]
[331]    0.0    0.00    0.00       2         input_DecoderWait [331]
                0.00    0.00      20/68          vlc_cond_wait [263]
                0.00    0.00      20/20          block_FifoWake [388]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/2           vout_Request <cycle 4> [198]
                0.00    0.00       1/2           vout_IntfInit [210]
[332]    0.0    0.00    0.00       2         vout_IntfReinit [332]
                0.00    0.00      18/731         var_TriggerCallback <cycle 5> [376]
-----------------------------------------------
                0.00    0.00      29/29          EsOutControl <cycle 4> [144]
[333]    0.0    0.00    0.00      29         input_DecoderIsEmpty [333]
                0.00    0.00      10/10          vout_IsEmpty [352]
                0.00    0.00       6/6           aout_DecIsEmpty [364]
                0.00    0.00      16/460619      vlc_mutex_unlock [44]
                0.00    0.00      16/392860      vlc_mutex_lock [65]
                0.00    0.00      29/31          block_FifoCount [644]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [136]
[334]    0.0    0.00    0.00       1         EbmlParser::Reset(demux_t*) [334]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       1/16586       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16305]
                0.00    0.00       1/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16241]
-----------------------------------------------
                                   1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
[335]    0.0    0.00    0.00       1         matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [335]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [242]
                0.00    0.00       1/16586       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [94]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16289]
                                   2             es_out_Control(es_out_t*, int, ...) <cycle 4> [16288]
-----------------------------------------------
                                   1             vout_Request <cycle 4> [198]
[336]    0.0    0.00    0.00       1         spu_Create <cycle 4> [336]
                0.00    0.00       1/188         var_Inherit [147]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       3/10463       vlc_mutex_init [567]
                0.00    0.00       2/5           filter_chain_New [722]
                                   2             SpuRenderCreateAndLoadScale <cycle 4> [495]
                                   1             SpuRenderCreateAndLoadText <cycle 4> [283]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [230]
[337]    0.0    0.00    0.00       1         ReplayGainCallback [337]
                0.00    0.00       1/188         var_Inherit [147]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [176]
[338]    0.0    0.00    0.00       1         var_InheritURational [338]
                0.00    0.00       1/188         var_Inherit [147]
-----------------------------------------------
                0.00    0.00       1/1           Init [205]
[339]    0.0    0.00    0.00       1         InitTitle [339]
                0.00    0.00       1/1           input_ControlVarNavigation [349]
                0.00    0.00       1/1           input_SendEventTitle [385]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersPipelineCreate [254]
[340]    0.0    0.00    0.00       1         TryFormat [340]
                0.00    0.00       1/7           aout_FormatPrepare [238]
                0.00    0.00       1/2           CreateFilter [402]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[341]    0.0    0.00    0.00       1         OpenDecoder [341]
                0.00    0.00       1/1           GetOmxRole [342]
                0.00    0.00       1/1           OpenGeneric [522]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [341]
[342]    0.0    0.00    0.00       1         GetOmxRole [342]
                0.00    0.00       1/6997        vlc_fourcc_GetCodec [27]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [198]
[343]    0.0    0.00    0.00       1         VoutValidateFormat [343]
                0.00    0.00       1/6997        vlc_fourcc_GetCodec [27]
                0.00    0.00       1/70          vlc_ureduce [630]
                0.00    0.00       1/2           video_format_FixRgb [899]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [234]
[344]    0.0    0.00    0.00       1         vlc_fourcc_GetCodecAudio [344]
                0.00    0.00       1/6997        vlc_fourcc_GetCodec [27]
-----------------------------------------------
                0.00    0.00       1/1           Open [245]
[345]    0.0    0.00    0.00       1         vlc_fourcc_GetCodecFromString [345]
                0.00    0.00       1/6997        vlc_fourcc_GetCodec [27]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[346]    0.0    0.00    0.00       1         CreateResampler [346]
                0.00    0.00       1/12          aout_BitsPerSample [226]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputNew [243]
[347]    0.0    0.00    0.00       1         Start [347]
                0.00    0.00       1/7           aout_FormatPrepare [238]
                0.00    0.00       1/1           aout_get_native_sample_rate [973]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput [14]
[348]    0.0    0.00    0.00       1         GetVlcChromaFormat [348]
                0.00    0.00       1/7           vlc_fourcc_GetDescription [239]
-----------------------------------------------
                0.00    0.00       1/1           InitTitle [339]
[349]    0.0    0.00    0.00       1         input_ControlVarNavigation [349]
                0.00    0.00       1/224         var_Create [156]
                0.00    0.00       1/51          var_AddCallback [261]
                0.00    0.00       1/13          var_Destroy [350]
                0.00    0.00       4/1002        var_Change [222]
                0.00    0.00       1/1           secstotimestr [1031]
-----------------------------------------------
                0.00    0.00       1/13          input_ControlVarNavigation [349]
                0.00    0.00       1/13          spu_Attach <cycle 4> [265]
                0.00    0.00       1/13          aout_DecNew [215]
                0.00    0.00       1/13          aout_DecDelete [241]
                0.00    0.00       2/13          input_ControlVarTitle [407]
                0.00    0.00       7/13          demux_sys_t::CleanUi() [300]
[350]    0.0    0.00    0.00      13         var_Destroy [350]
                0.00    0.00       9/731         TriggerCallback <cycle 5> [230]
                0.00    0.00      13/460619      vlc_mutex_unlock [44]
                0.00    0.00      13/392860      vlc_mutex_lock [65]
                0.00    0.00      13/4104        tfind [591]
                0.00    0.00       8/8           tdelete [690]
                0.00    0.00       8/157         Destroy [617]
-----------------------------------------------
                0.00    0.00       8/8           sws_init_context [312]
[351]    0.0    0.00    0.00       8         sws_getCachedContext [351]
                0.00    0.00      24/30130       av_malloc [99]
                0.00    0.00      16/29880       av_mallocz [124]
                0.00    0.00      16/71997       av_free [546]
                0.00    0.00       8/71794       av_freep [547]
-----------------------------------------------
                0.00    0.00      10/10          input_DecoderIsEmpty [333]
[352]    0.0    0.00    0.00      10         vout_IsEmpty [352]
                0.00    0.00      10/3488        picture_fifo_Peek [152]
                0.00    0.00       4/31174       picture_Release [102]
                0.00    0.00      10/460619      vlc_mutex_unlock [44]
                0.00    0.00      10/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/8           Init [205]
                0.00    0.00       7/8           es_out_Control <cycle 4> [214]
[353]    0.0    0.00    0.00       8         input_SendEventCache [353]
                0.00    0.00       8/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       8/1002        var_Change [222]
-----------------------------------------------
                0.00    0.00       1/17          input_item_SetPreparsed [458]
                0.00    0.00       1/17          input_item_SetDuration [457]
                0.00    0.00       1/17          input_item_SetEpgOffline [446]
                0.00    0.00       3/17          input_item_SetMeta [415]
                0.00    0.00       3/17          input_SendEventMeta [368]
                0.00    0.00       4/17          input_item_ReplaceInfos [394]
                0.00    0.00       4/17          input_SendEventMetaInfo <cycle 5> [416]
[354]    0.0    0.00    0.00      17         vlc_event_send [354]
                0.00    0.00      34/460619      vlc_mutex_unlock [44]
                0.00    0.00      34/392860      vlc_mutex_lock [65]
                0.00    0.00       6/6           input_item_meta_changed [418]
                0.00    0.00       1/1           input_item_preparsed_changed [473]
                0.00    0.00       1/1           input_item_duration_changed [506]
-----------------------------------------------
                0.00    0.00       1/6           EsUnselect <cycle 4> [422]
                0.00    0.00       1/6           EsOutProgramSelect [290]
                0.00    0.00       4/6           EsSelect <cycle 4> [358]
[355]    0.0    0.00    0.00       6         VarListSelect [355]
                0.00    0.00       6/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       6/1002        var_Change [222]
-----------------------------------------------
                0.00    0.00       2/6           LanguageSplit [359]
                0.00    0.00       4/6           EsOutProgramSelect [290]
[356]    0.0    0.00    0.00       6         VarListDel [356]
                0.00    0.00       6/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       6/1002        var_Change [222]
-----------------------------------------------
                0.00    0.00       1/3           Close [395]
                0.00    0.00       2/3           vout_EndWrapper [365]
[357]    0.0    0.00    0.00       3         picture_pool_Delete [357]
                0.00    0.00      26/31174       picture_Release [102]
-----------------------------------------------
                                   2             EsOutSelect <cycle 4> [728]
[358]    0.0    0.00    0.00       2         EsSelect <cycle 4> [358]
                0.00    0.00       4/6           VarListSelect [355]
                0.00    0.00       2/12          LanguageSplit [359]
                0.00    0.00       2/2358        var_GetChecked [206]
                0.00    0.00       2/7699        EsIsSelected [573]
                0.00    0.00       2/3           input_SendEventEsSelect [757]
                0.00    0.00       2/2           input_SendEventTeletextSelect [848]
                                   2             EsCreateDecoder <cycle 4> [366]
-----------------------------------------------
                0.00    0.00       2/12          EsOutDel [317]
                0.00    0.00       2/12          EsSelect <cycle 4> [358]
                0.00    0.00       2/12          EsOutAdd <cycle 4> [234]
                0.00    0.00       2/12          input_EsOutNew [409]
                0.00    0.00       4/12          EsOutControl <cycle 4> [144]
[359]    0.0    0.00    0.00      12         LanguageSplit [359]
                0.00    0.00       2/6           VarListDel [356]
                0.00    0.00       2/2           input_SendEventEsAdd [396]
                0.00    0.00       4/1002        var_Change [222]
                0.00    0.00       1/1           input_DecoderChangeDelay [525]
                0.00    0.00       4/135         vlc_gettext [621]
                0.00    0.00       2/5           input_SendEventEsDel [723]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_player_set_media [378]
                0.00    0.00       1/2           libvlc_media_player_stop [286]
[360]    0.0    0.00    0.00       2         release_input_thread [360]
                0.00    0.00       4/34          var_DelCallback [285]
                0.00    0.00       1/1           input_Close [461]
                0.00    0.00       1/1           input_Stop [471]
                0.00    0.00       1/1           input_ControlPush [524]
-----------------------------------------------
                0.00    0.00       3/3           aout_OutputFlush [362]
[361]    0.0    0.00    0.00       3         Flush [361]
                0.00    0.00       1/3481        msleep [85]
                0.00    0.00       1/5974        TimeGet [90]
                0.00    0.00       1/25194       block_generic_Release [103]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/3           aout_DecIsEmpty [364]
                0.00    0.00       2/3           aout_DecFlush [372]
[362]    0.0    0.00    0.00       3         aout_OutputFlush [362]
                0.00    0.00       3/3           Flush [361]
-----------------------------------------------
                0.00    0.00       2/6           ff_aac_sbr_ctx_init [420]
                0.00    0.00       4/6           aac_decode_init [166]
[363]    0.0    0.00    0.00       6         ff_mdct_init [363]
                0.00    0.00       6/6           ff_fft_init [384]
                0.00    0.00       6/30130       av_malloc [99]
-----------------------------------------------
                0.00    0.00       6/6           input_DecoderIsEmpty [333]
[364]    0.0    0.00    0.00       6         aout_DecIsEmpty [364]
                0.00    0.00       1/3           aout_OutputFlush [362]
                0.00    0.00       6/5979        aout_OutputUnlock [167]
                0.00    0.00       6/156222      mdate [52]
                0.00    0.00       6/5983        aout_OutputLock [204]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [278]
[365]    0.0    0.00    0.00       1         vout_EndWrapper [365]
                0.00    0.00       2/3           picture_pool_Delete [357]
-----------------------------------------------
                                   2             EsSelect <cycle 4> [358]
[366]    0.0    0.00    0.00       2         EsCreateDecoder <cycle 4> [366]
                0.00    0.00       2/2           input_DecoderStartWait [367]
                                   2             input_DecoderNew <cycle 4> [847]
-----------------------------------------------
                0.00    0.00       2/2           EsCreateDecoder <cycle 4> [366]
[367]    0.0    0.00    0.00       2         input_DecoderStartWait [367]
                0.00    0.00       2/2           DecoderFlush [370]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       2/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00       1/3           Create [180]
                0.00    0.00       1/3           EsOutProgramSelect [290]
                0.00    0.00       1/3           EsOutControl <cycle 4> [144]
[368]    0.0    0.00    0.00       3         input_SendEventMeta [368]
                0.00    0.00       3/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       3/17          vlc_event_send [354]
-----------------------------------------------
                                                 <spontaneous>
[369]    0.0    0.00    0.00                 libvlc_media_player_set_equalizer [369]
                0.00    0.00       4/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       1/1           input_resource_HoldAout [528]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
                0.00    0.00       2/2           input_DecoderStartWait [367]
[370]    0.0    0.00    0.00       2         DecoderFlush [370]
                0.00    0.00       2/68          vlc_cond_wait [263]
                0.00    0.00       2/12893       input_DecoderDecode [86]
                0.00    0.00       2/2           DecoderBlockFlushNew [448]
                0.00    0.00       2/6           block_FifoEmpty [443]
                0.00    0.00       2/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00       7/27          libvlc_media_new_from_input_item [408]
                0.00    0.00      20/27          libvlc_media_player_new [188]
[371]    0.0    0.00    0.00      27         libvlc_event_manager_register_event_type [371]
                0.00    0.00      27/460619      vlc_mutex_unlock [44]
                0.00    0.00      27/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [128]
                0.00    0.00       1/2           DecoderDecodeAudio [4]
[372]    0.0    0.00    0.00       2         aout_DecFlush [372]
                0.00    0.00       2/3           aout_OutputFlush [362]
                0.00    0.00       2/5979        aout_OutputUnlock [167]
                0.00    0.00       2/5983        aout_OutputLock [204]
-----------------------------------------------
                0.00    0.00       1/5           vout_Request <cycle 4> [198]
                0.00    0.00       1/5           vout_Reset [440]
                0.00    0.00       3/5           vout_Flush [393]
[373]    0.0    0.00    0.00       5         vout_control_WaitEmpty [373]
                0.00    0.00       4/68          vlc_cond_wait [263]
                0.00    0.00       5/460619      vlc_mutex_unlock [44]
                0.00    0.00       5/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       3/26          vout_control_PushVoid [464]
                0.00    0.00       3/26          vout_control_PushTime [463]
                0.00    0.00       6/26          vout_control_PushPair [442]
                0.00    0.00       7/26          vout_control_PushInteger [431]
                0.00    0.00       7/26          vout_control_PushString [432]
[374]    0.0    0.00    0.00      26         vout_control_Push [374]
                0.00    0.00      26/460619      vlc_mutex_unlock [44]
                0.00    0.00      26/392860      vlc_mutex_lock [65]
                0.00    0.00      26/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00       1/4           End [298]
                0.00    0.00       1/4           MainLoop [20]
                0.00    0.00       2/4           Init [205]
[375]    0.0    0.00    0.00       4         input_ChangeState [375]
                0.00    0.00       3/3           input_SendEventState [379]
                0.00    0.00       3/3           input_item_SetErrorWhenReading [466]
-----------------------------------------------
                                   4             WallPaperCallback <cycle 5> [804]
                0.00    0.00       1/731         aout_FiltersNew [223]
                0.00    0.00       1/731         aout_volume_New [397]
                0.00    0.00      18/731         vout_IntfReinit [332]
[376]    0.0    0.00    0.00      24         var_TriggerCallback <cycle 5> [376]
                0.00    0.00      24/460619      vlc_mutex_unlock [44]
                0.00    0.00      24/392860      vlc_mutex_lock [65]
                0.00    0.00      24/4104        tfind [591]
                                  48             TriggerCallback <cycle 5> [230]
-----------------------------------------------
                0.00    0.00       1/24          libvlc_media_player_new [188]
                0.00    0.00       1/24          access_New [318]
                0.00    0.00       1/24          ControlPause [405]
                0.00    0.00       1/24          Create [180]
                0.00    0.00       1/24          DisplayNew [273]
                0.00    0.00       1/24          vout_Request <cycle 4> [198]
                0.00    0.00       1/24          spu_Create <cycle 4> [336]
                0.00    0.00       1/24          aout_New [233]
                0.00    0.00       1/24          aout_volume_New [397]
                0.00    0.00       1/24          filter_NewBlend [523]
                0.00    0.00       1/24          filter_chain_AppendFilterInternal [320]
                0.00    0.00       2/24          CreateDecoder <cycle 4> [494]
                0.00    0.00       2/24          demux_New [279]
                0.00    0.00       2/24          SpuRenderCreateAndLoadScale <cycle 4> [495]
                0.00    0.00       2/24          SpuRenderCreateAndLoadText <cycle 4> [283]
                0.00    0.00       2/24          CreateFilter [402]
                0.00    0.00       3/24          stream_CommonNew [470]
[377]    0.0    0.00    0.00      24         vlc_custom_create [377]
                0.00    0.00      24/460619      vlc_mutex_unlock [44]
                0.00    0.00      24/392860      vlc_mutex_lock [65]
                0.00    0.00      24/10463       vlc_mutex_init [567]
                0.00    0.00      24/10437       vlc_cond_init [568]
                0.00    0.00      24/46          vlc_object_hold [635]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[378]    0.0    0.00    0.00       1         libvlc_media_player_set_media [378]
                0.00    0.00       1/2           release_input_thread [360]
                0.00    0.00       1/5           set_state [417]
                0.00    0.00       1/881         libvlc_event_send [213]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       1/6           libvlc_media_release [714]
                0.00    0.00       1/6           libvlc_media_retain [715]
-----------------------------------------------
                0.00    0.00       3/3           input_ChangeState [375]
[379]    0.0    0.00    0.00       3         input_SendEventState [379]
                0.00    0.00       3/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       3/1002        var_Change [222]
-----------------------------------------------
                0.00    0.00       1/3           input_SendEventProgramAdd [430]
                0.00    0.00       2/3           input_SendEventEsAdd [396]
[380]    0.0    0.00    0.00       3         VarListAdd [380]
                0.00    0.00       3/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       3/1002        var_Change [222]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[381]    0.0    0.00    0.00       1         libvlc_media_new_location [381]
                0.00    0.00       1/1           libvlc_media_new_from_input_item [408]
                0.00    0.00       1/1           input_item_NewExt [424]
                0.00    0.00       1/2           input_item_Release [850]
-----------------------------------------------
                0.00    0.00       1/44          demux_sys_t::CleanUi() [300]
                0.00    0.00       1/44          libvlc_video_get_spu_count [475]
                0.00    0.00       1/44          libvlc_video_get_track_count [476]
                0.00    0.00       1/44          libvlc_audio_get_track_count [474]
                0.00    0.00       1/44          libvlc_media_player_set_equalizer [369]
                0.00    0.00       1/44          access_Delete [306]
                0.00    0.00       1/44          DeleteDecoder <cycle 4> [128]
                0.00    0.00       1/44          demux_New [279]
                0.00    0.00       1/44          demux_Delete [267]
                0.00    0.00       1/44          ControlPause [405]
                0.00    0.00       1/44          input_Close [461]
                0.00    0.00       1/44          input_resource_RequestVout <cycle 4> [231]
                0.00    0.00       1/44          vout_DeleteDisplay [295]
                0.00    0.00       1/44          spu_Destroy [249]
                0.00    0.00       1/44          aout_Destroy [297]
                0.00    0.00       1/44          aout_volume_Delete [299]
                0.00    0.00       1/44          filter_DeleteBlend [543]
                0.00    0.00       1/44          filter_chain_DeleteFilterInternal [276]
                0.00    0.00       1/44          input_event_changed <cycle 5> [202]
                0.00    0.00       2/44          aout_FiltersPipelineDestroy [269]
                0.00    0.00       3/44          stream_CommonDelete [515]
                0.00    0.00       4/44          FilterRelease [232]
                0.00    0.00       8/44          libvlc_media_player_get_length [386]
                0.00    0.00       8/44          libvlc_media_player_get_time [387]
[382]    0.0    0.00    0.00      44         vlc_object_release [382]
                0.00    0.00      22/460619      vlc_mutex_unlock [44]
                0.00    0.00      22/392860      vlc_mutex_lock [65]
                0.00    0.00      22/12761       vlc_savecancel [561]
                0.00    0.00      22/22          var_DestroyAll [661]
                0.00    0.00      22/10405       vlc_cond_destroy [570]
                0.00    0.00      22/10432       vlc_mutex_destroy [569]
                0.00    0.00      22/12920       vlc_restorecancel [560]
                0.00    0.00       1/1           VoutDestructor [970]
                0.00    0.00       1/1           aout_Destructor [972]
                0.00    0.00       1/1           Destructor [928]
-----------------------------------------------
                0.00    0.00       1/1           Init [205]
[383]    0.0    0.00    0.00       1         UpdatePtsDelay [383]
                0.00    0.00       3/4325        es_out_Control [140]
                0.00    0.00       3/2358        var_GetChecked [206]
-----------------------------------------------
                0.00    0.00       6/6           ff_mdct_init [363]
[384]    0.0    0.00    0.00       6         ff_fft_init [384]
                0.00    0.00      12/30130       av_malloc [99]
                0.00    0.00    1408/1408        split_radix_permutation [597]
                0.00    0.00      24/24          ff_init_ff_cos_tabs [655]
                0.00    0.00       6/6           ff_fft_init_arm [705]
-----------------------------------------------
                0.00    0.00       1/1           InitTitle [339]
[385]    0.0    0.00    0.00       1         input_SendEventTitle [385]
                0.00    0.00       1/1           input_ControlVarTitle [407]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       1/1002        var_Change [222]
-----------------------------------------------
                                                 <spontaneous>
[386]    0.0    0.00    0.00                 libvlc_media_player_get_length [386]
                0.00    0.00       8/2358        var_GetChecked [206]
                0.00    0.00       8/19          libvlc_get_input_thread [391]
                0.00    0.00       8/44          vlc_object_release [382]
-----------------------------------------------
                                                 <spontaneous>
[387]    0.0    0.00    0.00                 libvlc_media_player_get_time [387]
                0.00    0.00       8/2358        var_GetChecked [206]
                0.00    0.00       8/19          libvlc_get_input_thread [391]
                0.00    0.00       8/44          vlc_object_release [382]
-----------------------------------------------
                0.00    0.00      20/20          input_DecoderWait [331]
[388]    0.0    0.00    0.00      20         block_FifoWake [388]
                0.00    0.00      20/460619      vlc_mutex_unlock [44]
                0.00    0.00      20/392860      vlc_mutex_lock [65]
                0.00    0.00      20/26822       vlc_cond_broadcast [552]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
[389]    0.0    0.00    0.00       4         libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [389]
                0.00    0.00       4/190         libebml::IOCallback::readFully(void*, unsigned int) [225]
                0.00    0.00      24/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
[390]    0.0    0.00    0.00       4         libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [390]
                0.00    0.00       4/190         libebml::IOCallback::readFully(void*, unsigned int) [225]
                0.00    0.00      24/63875       libebml::EbmlElement::GetSize() const [16171]
                0.00    0.00       4/4           libebml::UTFstring::UpdateFromUTF8() [16311]
                0.00    0.00       4/4           libebml::UTFstring::SetUTF8(std::string const&) [16312]
-----------------------------------------------
                0.00    0.00       1/19          libvlc_video_get_spu_count [475]
                0.00    0.00       1/19          libvlc_video_get_track_count [476]
                0.00    0.00       1/19          libvlc_audio_get_track_count [474]
                0.00    0.00       8/19          libvlc_media_player_get_length [386]
                0.00    0.00       8/19          libvlc_media_player_get_time [387]
[391]    0.0    0.00    0.00      19         libvlc_get_input_thread [391]
                0.00    0.00      19/460619      vlc_mutex_unlock [44]
                0.00    0.00      19/392860      vlc_mutex_lock [65]
                0.00    0.00      19/46          vlc_object_hold [635]
-----------------------------------------------
                                   7             input_Control <cycle 5> [692]
[392]    0.0    0.00    0.00       7         input_vaControl <cycle 5> [392]
                0.00    0.00       4/4           input_item_ReplaceInfos [394]
                0.00    0.00       2/2           input_resource_HoldVouts [482]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                                   4             input_SendEventMetaInfo <cycle 5> [416]
-----------------------------------------------
                0.00    0.00       1/3           input_resource_RequestVout <cycle 4> [231]
                0.00    0.00       2/3           DecoderDecodeVideo [9]
[393]    0.0    0.00    0.00       3         vout_Flush [393]
                0.00    0.00       3/5           vout_control_WaitEmpty [373]
                0.00    0.00       3/3           vout_control_PushTime [463]
-----------------------------------------------
                0.00    0.00       4/4           input_vaControl <cycle 5> [392]
[394]    0.0    0.00    0.00       4         input_item_ReplaceInfos [394]
                0.00    0.00       4/17          vlc_event_send [354]
                0.00    0.00       4/460619      vlc_mutex_unlock [44]
                0.00    0.00       4/392860      vlc_mutex_lock [65]
                0.00    0.00       4/4           InputItemFindCat [733]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[395]    0.0    0.00    0.00       1         Close [395]
                0.00    0.00       1/3           picture_pool_Delete [357]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
-----------------------------------------------
                0.00    0.00       2/2           LanguageSplit [359]
[396]    0.0    0.00    0.00       2         input_SendEventEsAdd [396]
                0.00    0.00       2/3           VarListAdd [380]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [215]
[397]    0.0    0.00    0.00       1         aout_volume_New [397]
                0.00    0.00       1/51          var_AddCallback [261]
                0.00    0.00       1/731         var_TriggerCallback <cycle 5> [376]
                0.00    0.00       1/24          vlc_custom_create [377]
-----------------------------------------------
                0.00    0.00      15/15          vlc_module_load <cycle 4> [177]
[398]    0.0    0.00    0.00      15         vlc_object_set_name [398]
                0.00    0.00      15/460619      vlc_mutex_unlock [44]
                0.00    0.00      15/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       2/2           stream_FilterChainNew [400]
[399]    0.0    0.00    0.00       2         stream_FilterNew [399]
                0.00    0.00       2/31285       module_need <cycle 4> [666]
                0.00    0.00       2/3           stream_CommonNew [470]
                0.00    0.00       1/3           stream_CommonDelete [515]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [219]
[400]    0.0    0.00    0.00       1         stream_FilterChainNew [400]
                0.00    0.00       2/2           stream_FilterNew [399]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
[401]    0.0    0.00    0.00       3         libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [401]
                0.00    0.00       3/190         libebml::IOCallback::readFully(void*, unsigned int) [225]
                0.00    0.00       9/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00       1/2           TryFormat [340]
                0.00    0.00       1/2           aout_FiltersNew [223]
[402]    0.0    0.00    0.00       2         CreateFilter [402]
                0.00    0.00       2/31285       module_need <cycle 4> [666]
                0.00    0.00       2/24          vlc_custom_create [377]
-----------------------------------------------
                0.00    0.00       1/5           ThreadStop [278]
                0.00    0.00       4/5           Thread [13]
[403]    0.0    0.00    0.00       5         ThreadFlush [403]
                0.00    0.00       5/8           VoutVideoFilterStaticNewPicture [423]
                0.00    0.00       5/6           picture_fifo_Flush [444]
                0.00    0.00       2/31174       picture_Release [102]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [290]
[404]    0.0    0.00    0.00       1         input_SendEventProgramScrambled [404]
                0.00    0.00       2/731         var_SetChecked <cycle 5> [235]
                0.00    0.00       1/2358        var_GetChecked [206]
-----------------------------------------------
                0.00    0.00       2/2           Init [205]
[405]    0.0    0.00    0.00       2         ControlPause [405]
                0.00    0.00       1/4325        es_out_Control [140]
                0.00    0.00       1/31285       module_need <cycle 4> [666]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       1/44          vlc_object_release [382]
                0.00    0.00       3/1286        demux_Control [598]
                0.00    0.00       1/2           vlc_meta_Delete [900]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [128]
                0.00    0.00       1/2           vout_new_buffer [24]
[406]    0.0    0.00    0.00       2         input_SendEventVout [406]
                0.00    0.00       2/731         var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/1           input_SendEventTitle [385]
[407]    0.0    0.00    0.00       1         input_ControlVarTitle [407]
                0.00    0.00       2/13          var_Destroy [350]
                0.00    0.00       2/1002        var_Change [222]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_new_location [381]
[408]    0.0    0.00    0.00       1         libvlc_media_new_from_input_item [408]
                0.00    0.00       7/27          libvlc_event_manager_register_event_type [371]
                0.00    0.00       5/5           vlc_event_attach [445]
                0.00    0.00       1/2           libvlc_event_manager_new [500]
                0.00    0.00       1/10437       vlc_cond_init [568]
                0.00    0.00       1/10463       vlc_mutex_init [567]
                0.00    0.00       1/2           input_item_Hold [849]
-----------------------------------------------
                0.00    0.00       1/1           Create [180]
[409]    0.0    0.00    0.00       1         input_EsOutNew [409]
                0.00    0.00       7/2358        var_GetChecked [206]
                0.00    0.00       2/12          LanguageSplit [359]
                0.00    0.00       1/5           vlc_mutex_init_recursive [724]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [411]
[410]    0.0    0.00    0.00       1         che_configure [410]
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [420]
                0.00    0.00       1/29880       av_mallocz [124]
                0.00    0.00       1/1           ff_sbrdsp_init_arm [1004]
                0.00    0.00       1/1           ff_sbrdsp_init [1003]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[411]    0.0    0.00    0.00       1         decode_audio_specific_config [411]
                0.00    0.00       1/1           che_configure [410]
                0.00    0.00       1/1           avpriv_mpeg4audio_get_config [984]
                0.00    0.00       1/1           sniff_channel_order [1033]
-----------------------------------------------
                0.00    0.00       1/4           input_Join [462]
                0.00    0.00       1/4           vout_Close [248]
                0.00    0.00       2/4           input_DecoderDelete [266]
[412]    0.0    0.00    0.00       4         vlc_join [412]
                0.00    0.00       4/4           vlc_sem_wait [413]
                0.00    0.00       4/4           vlc_sem_destroy [747]
                0.00    0.00       4/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       4/4           vlc_join [412]
[413]    0.0    0.00    0.00       4         vlc_sem_wait [413]
                0.00    0.00       2/68          vlc_cond_wait [263]
                0.00    0.00       4/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           CloseDecoder [311]
[414]    0.0    0.00    0.00       1         avcodec_close [414]
                0.00    0.00       1/5973        av_frame_free [84]
                0.00    0.00       4/71794       av_freep [547]
                0.00    0.00       4/5           av_buffer_pool_uninit [720]
                0.00    0.00       1/2           avcodec_is_open [819]
                0.00    0.00       1/1           aac_decode_close [971]
                0.00    0.00       1/1           av_opt_free [977]
                0.00    0.00       1/2           av_codec_is_encoder [812]
-----------------------------------------------
                0.00    0.00       1/3           Create [180]
                0.00    0.00       2/3           EsOutProgramSelect [290]
[415]    0.0    0.00    0.00       3         input_item_SetMeta [415]
                0.00    0.00       3/17          vlc_event_send [354]
                0.00    0.00       3/460619      vlc_mutex_unlock [44]
                0.00    0.00       3/392860      vlc_mutex_lock [65]
                0.00    0.00       3/3           vlc_meta_Set [761]
                0.00    0.00       1/3           vlc_meta_New [760]
-----------------------------------------------
                                   4             input_vaControl <cycle 5> [392]
[416]    0.0    0.00    0.00       4         input_SendEventMetaInfo <cycle 5> [416]
                0.00    0.00       4/17          vlc_event_send [354]
                                   4             var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/5           libvlc_media_player_set_media [378]
                0.00    0.00       1/5           libvlc_media_player_stop [286]
                0.00    0.00       3/5           input_event_changed <cycle 5> [202]
[417]    0.0    0.00    0.00       5         set_state [417]
                0.00    0.00       4/4           libvlc_media_set_state [429]
                0.00    0.00       4/460619      vlc_mutex_unlock [44]
                0.00    0.00       4/392860      vlc_mutex_lock [65]
                0.00    0.00       4/6           libvlc_media_retain [715]
                0.00    0.00       4/6           libvlc_media_release [714]
-----------------------------------------------
                0.00    0.00       6/6           vlc_event_send [354]
[418]    0.0    0.00    0.00       6         input_item_meta_changed [418]
                0.00    0.00       6/881         libvlc_event_send [213]
-----------------------------------------------
                0.00    0.00       2/2           av_buffer_pool_get [79]
[419]    0.0    0.00    0.00       2         av_buffer_alloc [419]
                0.00    0.00       2/11924       av_buffer_create [129]
                0.00    0.00       2/30130       av_malloc [99]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [410]
[420]    0.0    0.00    0.00       1         ff_aac_sbr_ctx_init [420]
                0.00    0.00       2/6           ff_mdct_init [363]
                0.00    0.00       1/1           ff_psdsp_init_arm [1002]
                0.00    0.00       1/1           ff_psdsp_init [1001]
                0.00    0.00       1/1           ff_ps_ctx_init [1000]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [193]
[421]    0.0    0.00    0.00       2         libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [421]
                0.00    0.00       2/190         libebml::IOCallback::readFully(void*, unsigned int) [225]
                0.00    0.00       6/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                                   2             EsOutControl <cycle 4> [144]
[422]    0.0    0.00    0.00       2         EsUnselect <cycle 4> [422]
                0.00    0.00       1/6           VarListSelect [355]
                0.00    0.00       2/2358        var_GetChecked [206]
                0.00    0.00       2/7699        EsIsSelected [573]
                0.00    0.00       1/3           input_SendEventEsSelect [757]
                                   2             es_out_Control <cycle 4> [214]
-----------------------------------------------
                0.00    0.00       1/8           Thread [13]
                0.00    0.00       2/8           ThreadChangeFilters [257]
                0.00    0.00       5/8           ThreadFlush [403]
[423]    0.0    0.00    0.00       8         VoutVideoFilterStaticNewPicture [423]
                0.00    0.00       7/460619      vlc_mutex_unlock [44]
                0.00    0.00       6/392860      vlc_mutex_lock [65]
                0.00    0.00       1/31174       picture_Release [102]
                0.00    0.00       1/1           vout_control_Dead [539]
                0.00    0.00      14/14          filter_chain_VideoFlush [675]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_new_location [381]
[424]    0.0    0.00    0.00       1         input_item_NewExt [424]
                0.00    0.00       1/1           input_item_NewWithType [425]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewExt [424]
[425]    0.0    0.00    0.00       1         input_item_NewWithType [425]
                0.00    0.00       8/8           vlc_event_manager_register_event_type [428]
                0.00    0.00       1/1           input_item_SetURI [527]
                0.00    0.00       1/10463       vlc_mutex_init [567]
                0.00    0.00       1/1           vlc_event_manager_init [1038]
-----------------------------------------------
                0.00    0.00       8/8           libvlc_event_attach [427]
[426]    0.0    0.00    0.00       8         event_attach [426]
                0.00    0.00       8/460619      vlc_mutex_unlock [44]
                0.00    0.00       8/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       8/8           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[427]    0.0    0.00    0.00       8         libvlc_event_attach [427]
                0.00    0.00       8/8           event_attach [426]
-----------------------------------------------
                0.00    0.00       8/8           input_item_NewWithType [425]
[428]    0.0    0.00    0.00       8         vlc_event_manager_register_event_type [428]
                0.00    0.00       8/460619      vlc_mutex_unlock [44]
                0.00    0.00       8/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       4/4           set_state [417]
[429]    0.0    0.00    0.00       4         libvlc_media_set_state [429]
                0.00    0.00       4/881         libvlc_event_send [213]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [288]
[430]    0.0    0.00    0.00       1         input_SendEventProgramAdd [430]
                0.00    0.00       1/3           VarListAdd [380]
-----------------------------------------------
                0.00    0.00       1/7           vout_FlushSubpictureChannel [538]
                0.00    0.00       2/7           vout_ControlChangeSubMargin [492]
                0.00    0.00       4/7           vout_ControlChangeWindowState [450]
[431]    0.0    0.00    0.00       7         vout_control_PushInteger [431]
                0.00    0.00       7/26          vout_control_Push [374]
-----------------------------------------------
                0.00    0.00       1/7           vout_DisplayTitle [537]
                0.00    0.00       2/7           vout_ControlChangeFilters [490]
                0.00    0.00       2/7           vout_ControlChangeSubSources [493]
                0.00    0.00       2/7           vout_ControlChangeSubFilters [491]
[432]    0.0    0.00    0.00       7         vout_control_PushString [432]
                0.00    0.00       7/26          vout_control_Push [374]
-----------------------------------------------
                0.00    0.00       1/5           CloseScaler [516]
                0.00    0.00       2/5           Init [221]
                0.00    0.00       2/5           OpenScaler [220]
[433]    0.0    0.00    0.00       5         GetParameters [433]
                0.00    0.00       4/31174       picture_Release [102]
                0.00    0.00       6/6           GetFfmpegChroma [702]
                0.00    0.00       6/6           FixParameters [701]
                0.00    0.00       2/71997       av_free [546]
                0.00    0.00       2/2           sws_freeContext [866]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecDelete [241]
[434]    0.0    0.00    0.00       1         aout_OutputDelete [434]
                0.00    0.00       1/34          var_DelCallback [285]
                0.00    0.00       1/1           Stop [968]
-----------------------------------------------
                0.00    0.00       2/2           Create [195]
[435]    0.0    0.00    0.00       2         spu_get_attachments [435]
                0.00    0.00       1/731         input_Control <cycle 5> [692]
-----------------------------------------------
                0.00    0.00       1/1           aout_update_format [209]
[436]    0.0    0.00    0.00       1         input_SendEventAout [436]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/1           Run [19]
[437]    0.0    0.00    0.00       1         input_SendEventDead [437]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [144]
[438]    0.0    0.00    0.00       1         input_SendEventMetaEpg [438]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[439]    0.0    0.00    0.00       1         libvlc_media_player_set_video_title_display [439]
                0.00    0.00       1/731         var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/1           DeleteDecoder <cycle 4> [128]
[440]    0.0    0.00    0.00       1         vout_Reset [440]
                0.00    0.00       1/5           vout_control_WaitEmpty [373]
                0.00    0.00       1/3           vout_control_PushVoid [464]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [215]
[441]    0.0    0.00    0.00       1         aout_volume_SetFormat [441]
                0.00    0.00       1/31285       module_need <cycle 4> [666]
-----------------------------------------------
                0.00    0.00       2/6           vout_ControlChangeZoom [485]
                0.00    0.00       2/6           vout_ControlChangeSampleAspectRatio [484]
                0.00    0.00       2/6           vout_ControlChangeCropRatio [483]
[442]    0.0    0.00    0.00       6         vout_control_PushPair [442]
                0.00    0.00       6/26          vout_control_Push [374]
-----------------------------------------------
                0.00    0.00       2/6           DeleteDecoder <cycle 4> [128]
                0.00    0.00       2/6           DecoderFlush [370]
                0.00    0.00       2/6           block_FifoRelease [496]
[443]    0.0    0.00    0.00       6         block_FifoEmpty [443]
                0.00    0.00       6/460619      vlc_mutex_unlock [44]
                0.00    0.00       6/392860      vlc_mutex_lock [65]
                0.00    0.00       6/26822       vlc_cond_broadcast [552]
-----------------------------------------------
                0.00    0.00       1/6           picture_fifo_Delete [531]
                0.00    0.00       5/6           ThreadFlush [403]
[444]    0.0    0.00    0.00       6         picture_fifo_Flush [444]
                0.00    0.00       6/460619      vlc_mutex_unlock [44]
                0.00    0.00       6/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       5/5           libvlc_media_new_from_input_item [408]
[445]    0.0    0.00    0.00       5         vlc_event_attach [445]
                0.00    0.00       5/460619      vlc_mutex_unlock [44]
                0.00    0.00       5/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [144]
[446]    0.0    0.00    0.00       1         input_item_SetEpgOffline [446]
                0.00    0.00       1/17          vlc_event_send [354]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                                   2             matroska_segment_c::Select(long long) <cycle 4> [284]
[447]    0.0    0.00    0.00       2         Add <cycle 4> [447]
                0.00    0.00       2/156222      mdate [52]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       2/25317       TsStop [554]
                                   2             EsOutAdd <cycle 4> [234]
-----------------------------------------------
                0.00    0.00       2/2           DecoderFlush [370]
[448]    0.0    0.00    0.00       2         DecoderBlockFlushNew [448]
                0.00    0.00       2/25186       block_Alloc [104]
-----------------------------------------------
                0.00    0.00       4/4           TriggerCallback <cycle 5> [230]
[449]    0.0    0.00    0.00       4         AboveCallback [449]
                0.00    0.00       4/4           vout_ControlChangeWindowState [450]
-----------------------------------------------
                0.00    0.00       4/4           AboveCallback [449]
[450]    0.0    0.00    0.00       4         vout_ControlChangeWindowState [450]
                0.00    0.00       4/7           vout_control_PushInteger [431]
-----------------------------------------------
                0.00    0.00       2/4           DecoderThread [3]
                0.00    0.00       2/4           es_out_Control <cycle 4> [214]
[451]    0.0    0.00    0.00       4         input_DecoderStopWait [451]
                0.00    0.00       4/460619      vlc_mutex_unlock [44]
                0.00    0.00       4/392860      vlc_mutex_lock [65]
                0.00    0.00       4/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00       1/4           EsOutControl <cycle 4> [144]
                0.00    0.00       3/4           input_resource_RequestVout <cycle 4> [231]
[452]    0.0    0.00    0.00       4         input_item_GetMeta [452]
                0.00    0.00       4/460619      vlc_mutex_unlock [44]
                0.00    0.00       4/392860      vlc_mutex_lock [65]
                0.00    0.00       4/6           vlc_meta_Get [718]
-----------------------------------------------
                0.00    0.00       4/4           info_category_AddInfo [244]
[453]    0.0    0.00    0.00       4         input_item_UpdateTracksInfo [453]
                0.00    0.00       4/460619      vlc_mutex_unlock [44]
                0.00    0.00       4/392860      vlc_mutex_lock [65]
                0.00    0.00       4/26          es_format_Copy [651]
                0.00    0.00       2/33          es_format_Clean [642]
-----------------------------------------------
                0.00    0.00       4/4           finish_joinable_thread [456]
[454]    0.0    0.00    0.00       4         vlc_sem_post [454]
                0.00    0.00       4/460619      vlc_mutex_unlock [44]
                0.00    0.00       4/392860      vlc_mutex_lock [65]
                0.00    0.00       4/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00       4/4           Thread [13]
[455]    0.0    0.00    0.00       4         vout_SetWindowState [455]
                0.00    0.00       4/460619      vlc_mutex_unlock [44]
                0.00    0.00       4/392860      vlc_mutex_lock [65]
-----------------------------------------------
                                                 <spontaneous>
[456]    0.0    0.00    0.00                 finish_joinable_thread [456]
                0.00    0.00       4/4           vlc_sem_post [454]
-----------------------------------------------
                0.00    0.00       1/1           input_SendEventLength [250]
[457]    0.0    0.00    0.00       1         input_item_SetDuration [457]
                0.00    0.00       1/17          vlc_event_send [354]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [144]
[458]    0.0    0.00    0.00       1         input_item_SetPreparsed [458]
                0.00    0.00       1/17          vlc_event_send [354]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/1           vlc_meta_GetStatus [1040]
                0.00    0.00       1/1           vlc_meta_SetStatus [1041]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [310]
[459]    0.0    0.00    0.00       2         sws_alloc_context [459]
                0.00    0.00       2/29880       av_mallocz [124]
                0.00    0.00       2/3           av_opt_set_defaults [752]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [93]
[460]    0.0    0.00    0.00       1         avcodec_alloc_context3 [460]
                0.00    0.00       1/1           avcodec_get_context_defaults3 [511]
                0.00    0.00       1/30130       av_malloc [99]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [360]
[461]    0.0    0.00    0.00       1         input_Close [461]
                0.00    0.00       1/1           input_Join [462]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
                0.00    0.00       1/1           input_Close [461]
[462]    0.0    0.00    0.00       1         input_Join [462]
                0.00    0.00       1/4           vlc_join [412]
-----------------------------------------------
                0.00    0.00       3/3           vout_Flush [393]
[463]    0.0    0.00    0.00       3         vout_control_PushTime [463]
                0.00    0.00       3/26          vout_control_Push [374]
-----------------------------------------------
                0.00    0.00       1/3           vout_Close [248]
                0.00    0.00       1/3           vout_Request <cycle 4> [198]
                0.00    0.00       1/3           vout_Reset [440]
[464]    0.0    0.00    0.00       3         vout_control_PushVoid [464]
                0.00    0.00       3/26          vout_control_Push [374]
-----------------------------------------------
                0.00    0.00       3/3           libvlc_media_add_option_flag [468]
[465]    0.0    0.00    0.00       3         input_item_AddOption [465]
                0.00    0.00       3/460619      vlc_mutex_unlock [44]
                0.00    0.00       3/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       3/3           input_ChangeState [375]
[466]    0.0    0.00    0.00       3         input_item_SetErrorWhenReading [466]
                0.00    0.00       3/460619      vlc_mutex_unlock [44]
                0.00    0.00       3/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       3/3           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[467]    0.0    0.00    0.00       3         libvlc_media_add_option [467]
                0.00    0.00       3/3           libvlc_media_add_option_flag [468]
-----------------------------------------------
                0.00    0.00       3/3           libvlc_media_add_option [467]
[468]    0.0    0.00    0.00       3         libvlc_media_add_option_flag [468]
                0.00    0.00       3/3           input_item_AddOption [465]
-----------------------------------------------
                0.00    0.00       1/3           libvlc_media_player_new [188]
                0.00    0.00       2/3           libvlc_event_manager_new [500]
[469]    0.0    0.00    0.00       3         libvlc_retain [469]
                0.00    0.00       3/460619      vlc_mutex_unlock [44]
                0.00    0.00       3/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/3           stream_AccessNew [240]
                0.00    0.00       2/3           stream_FilterNew [399]
[470]    0.0    0.00    0.00       3         stream_CommonNew [470]
                0.00    0.00       3/24          vlc_custom_create [377]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [360]
[471]    0.0    0.00    0.00       1         input_Stop [471]
                0.00    0.00       1/1           ObjectKillChildrens [505]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       2/6           CloseDecoder [311]
                0.00    0.00       2/6           OpenDecoder [93]
                0.00    0.00       2/6           ffmpeg_OpenCodec [164]
[472]    0.0    0.00    0.00       6         vlc_global_mutex [472]
                0.00    0.00       3/460619      vlc_mutex_unlock [44]
                0.00    0.00       3/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           vlc_event_send [354]
[473]    0.0    0.00    0.00       1         input_item_preparsed_changed [473]
                0.00    0.00       1/881         libvlc_event_send [213]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/26822       vlc_cond_broadcast [552]
-----------------------------------------------
                                                 <spontaneous>
[474]    0.0    0.00    0.00                 libvlc_audio_get_track_count [474]
                0.00    0.00       1/1002        var_Change [222]
                0.00    0.00       1/19          libvlc_get_input_thread [391]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
                                                 <spontaneous>
[475]    0.0    0.00    0.00                 libvlc_video_get_spu_count [475]
                0.00    0.00       1/1002        var_Change [222]
                0.00    0.00       1/19          libvlc_get_input_thread [391]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
                                                 <spontaneous>
[476]    0.0    0.00    0.00                 libvlc_video_get_track_count [476]
                0.00    0.00       1/1002        var_Change [222]
                0.00    0.00       1/19          libvlc_get_input_thread [391]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
                                                 <spontaneous>
[477]    0.0    0.00    0.00                 vlc_cleanup_lock [477]
                0.00    0.00       4/460619      vlc_mutex_unlock [44]
-----------------------------------------------
                0.00    0.00       1/2           input_ControlVarInit [216]
                0.00    0.00       1/2           FilterRelease [232]
[478]    0.0    0.00    0.00       2         var_Get [478]
                0.00    0.00       2/2358        var_GetChecked [206]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [230]
[479]    0.0    0.00    0.00       2         AspectCallback [479]
                0.00    0.00       2/2           vout_ControlChangeSampleAspectRatio [484]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [230]
[480]    0.0    0.00    0.00       2         CropCallback [480]
                0.00    0.00       2/2           vout_ControlChangeCropRatio [483]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [230]
[481]    0.0    0.00    0.00       2         ScaleCallback [481]
                0.00    0.00       2/2           vout_ControlChangeZoom [485]
-----------------------------------------------
                0.00    0.00       2/2           input_vaControl <cycle 5> [392]
[482]    0.0    0.00    0.00       2         input_resource_HoldVouts [482]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
                0.00    0.00       1/46          vlc_object_hold [635]
-----------------------------------------------
                0.00    0.00       2/2           CropCallback [480]
[483]    0.0    0.00    0.00       2         vout_ControlChangeCropRatio [483]
                0.00    0.00       2/6           vout_control_PushPair [442]
-----------------------------------------------
                0.00    0.00       2/2           AspectCallback [479]
[484]    0.0    0.00    0.00       2         vout_ControlChangeSampleAspectRatio [484]
                0.00    0.00       2/6           vout_control_PushPair [442]
-----------------------------------------------
                0.00    0.00       2/2           ScaleCallback [481]
[485]    0.0    0.00    0.00       2         vout_ControlChangeZoom [485]
                0.00    0.00       2/6           vout_control_PushPair [442]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [230]
[486]    0.0    0.00    0.00       2         SubFilterCallback [486]
                0.00    0.00       2/2           vout_ControlChangeSubFilters [491]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [230]
[487]    0.0    0.00    0.00       2         SubMarginCallback [487]
                0.00    0.00       2/2           vout_ControlChangeSubMargin [492]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [230]
[488]    0.0    0.00    0.00       2         SubSourceCallback [488]
                0.00    0.00       2/2           vout_ControlChangeSubSources [493]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [230]
[489]    0.0    0.00    0.00       2         VideoFilterCallback [489]
                0.00    0.00       2/2           vout_ControlChangeFilters [490]
-----------------------------------------------
                0.00    0.00       2/2           VideoFilterCallback [489]
[490]    0.0    0.00    0.00       2         vout_ControlChangeFilters [490]
                0.00    0.00       2/7           vout_control_PushString [432]
-----------------------------------------------
                0.00    0.00       2/2           SubFilterCallback [486]
[491]    0.0    0.00    0.00       2         vout_ControlChangeSubFilters [491]
                0.00    0.00       2/7           vout_control_PushString [432]
-----------------------------------------------
                0.00    0.00       2/2           SubMarginCallback [487]
[492]    0.0    0.00    0.00       2         vout_ControlChangeSubMargin [492]
                0.00    0.00       2/7           vout_control_PushInteger [431]
-----------------------------------------------
                0.00    0.00       2/2           SubSourceCallback [488]
[493]    0.0    0.00    0.00       2         vout_ControlChangeSubSources [493]
                0.00    0.00       2/7           vout_control_PushString [432]
-----------------------------------------------
                                   2             decoder_New <cycle 4> [829]
[494]    0.0    0.00    0.00       2         CreateDecoder <cycle 4> [494]
                0.00    0.00       2/24          vlc_custom_create [377]
                0.00    0.00       4/26          es_format_Copy [651]
                0.00    0.00       4/10437       vlc_cond_init [568]
                0.00    0.00       2/2           block_FifoNew [821]
                0.00    0.00       2/10463       vlc_mutex_init [567]
                0.00    0.00       2/28          es_format_Init [649]
                                   2             module_need <cycle 4> [666]
-----------------------------------------------
                                   2             spu_Create <cycle 4> [336]
[495]    0.0    0.00    0.00       2         SpuRenderCreateAndLoadScale <cycle 4> [495]
                0.00    0.00       2/24          vlc_custom_create [377]
                0.00    0.00       4/28          es_format_Init [649]
                                   2             module_need <cycle 4> [666]
-----------------------------------------------
                0.00    0.00       2/2           DeleteDecoder <cycle 4> [128]
[496]    0.0    0.00    0.00       2         block_FifoRelease [496]
                0.00    0.00       2/6           block_FifoEmpty [443]
                0.00    0.00       4/10405       vlc_cond_destroy [570]
                0.00    0.00       2/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/2           EsOutProgramAdd [288]
                0.00    0.00       1/2           EsOutControl <cycle 4> [144]
[497]    0.0    0.00    0.00       2         input_clock_SetJitter [497]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/2           Create [180]
                0.00    0.00       1/2           input_resource_RequestVout <cycle 4> [231]
[498]    0.0    0.00    0.00       2         input_item_GetName [498]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/2           End [298]
                0.00    0.00       1/2           Create [180]
[499]    0.0    0.00    0.00       2         input_resource_SetInput [499]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_from_input_item [408]
                0.00    0.00       1/2           libvlc_media_player_new [188]
[500]    0.0    0.00    0.00       2         libvlc_event_manager_new [500]
                0.00    0.00       2/3           libvlc_retain [469]
                0.00    0.00       2/10463       vlc_mutex_init [567]
                0.00    0.00       2/5           vlc_mutex_init_recursive [724]
-----------------------------------------------
                0.00    0.00       2/2           Thread [13]
[501]    0.0    0.00    0.00       2         spu_ChangeFilters [501]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       2/2           Thread [13]
[502]    0.0    0.00    0.00       2         spu_ChangeMargin [502]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       2/2           Thread [13]
[503]    0.0    0.00    0.00       2         spu_ChangeSources [503]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       2/2           input_DecoderDelete [266]
[504]    0.0    0.00    0.00       2         vlc_cancel [504]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
                0.00    0.00       2/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           input_Stop [471]
[505]    0.0    0.00    0.00       1         ObjectKillChildrens [505]
                0.00    0.00       1/1           vlc_list_children [536]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/1           vlc_list_release [1039]
-----------------------------------------------
                0.00    0.00       1/1           vlc_event_send [354]
[506]    0.0    0.00    0.00       1         input_item_duration_changed [506]
                0.00    0.00       1/881         libvlc_event_send [213]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [230]
[507]    0.0    0.00    0.00       1         input_pausable_changed [507]
                0.00    0.00       1/881         libvlc_event_send [213]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [230]
[508]    0.0    0.00    0.00       1         input_scrambled_changed [508]
                0.00    0.00       1/881         libvlc_event_send [213]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [230]
[509]    0.0    0.00    0.00       1         input_seekable_changed [509]
                0.00    0.00       1/881         libvlc_event_send [213]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_default_get_buffer2 [47]
[510]    0.0    0.00    0.00       1         av_buffer_pool_init [510]
                0.00    0.00       1/29880       av_mallocz [124]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_alloc_context3 [460]
[511]    0.0    0.00    0.00       1         avcodec_get_context_defaults3 [511]
                0.00    0.00       1/29880       av_mallocz [124]
                0.00    0.00       1/3           av_opt_set_defaults [752]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [310]
[512]    0.0    0.00    0.00       2         sws_setColorspaceDetails [512]
                0.00    0.00       1/1           ff_yuv2rgb_c_init_tables [513]
                0.00    0.00       6/25          av_pix_fmt_desc_get [652]
                0.00    0.00       2/6           av_get_bits_per_pixel [703]
-----------------------------------------------
                0.00    0.00       1/1           sws_setColorspaceDetails [512]
[513]    0.0    0.00    0.00       1         ff_yuv2rgb_c_init_tables [513]
                0.00    0.00       1/30130       av_malloc [99]
                0.00    0.00       1/71997       av_free [546]
                0.00    0.00       1/25          av_pix_fmt_desc_get [652]
-----------------------------------------------
                0.00    0.00       1/1           InitAudioDec [163]
[514]    0.0    0.00    0.00       1         vlc_av_frame_Release [514]
                0.00    0.00       1/30130       av_malloc [99]
-----------------------------------------------
                0.00    0.00       1/3           AStreamDestroy [304]
                0.00    0.00       1/3           StreamDelete <cycle 3> [305]
                0.00    0.00       1/3           stream_FilterNew [399]
[515]    0.0    0.00    0.00       3         stream_CommonDelete [515]
                0.00    0.00       3/44          vlc_object_release [382]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[516]    0.0    0.00    0.00       1         CloseScaler [516]
                0.00    0.00       1/5           GetParameters [433]
-----------------------------------------------
                                                 <spontaneous>
[517]    0.0    0.00    0.00                 vlc_cleanup_lock [517]
                0.00    0.00       2/460619      vlc_mutex_unlock [44]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [230]
[518]    0.0    0.00    0.00       1         EqualizerCallback [518]
                0.00    0.00       1/1           aout_ChangeFilterString [519]
-----------------------------------------------
                0.00    0.00       1/1           EqualizerCallback [518]
[519]    0.0    0.00    0.00       1         aout_ChangeFilterString [519]
                0.00    0.00       1/2358        var_GetChecked [206]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitInterlacingSupport [262]
[520]    0.0    0.00    0.00       1         DeinterlaceIsPresent [520]
                0.00    0.00       1/2358        var_GetChecked [206]
                0.00    0.00       1/3           vlc_inhibit_Destroy [759]
-----------------------------------------------
                0.00    0.00       1/1           OpenGeneric [522]
[521]    0.0    0.00    0.00       1         InitOmxCore [521]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [341]
[522]    0.0    0.00    0.00       1         OpenGeneric [522]
                0.00    0.00       1/1           InitOmxCore [521]
-----------------------------------------------
                0.00    0.00       1/1           ThreadDisplayPicture [18]
[523]    0.0    0.00    0.00       1         filter_NewBlend [523]
                0.00    0.00       1/24          vlc_custom_create [377]
                0.00    0.00       2/28          es_format_Init [649]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [360]
[524]    0.0    0.00    0.00       1         input_ControlPush [524]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/20260       vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00       1/1           LanguageSplit [359]
[525]    0.0    0.00    0.00       1         input_DecoderChangeDelay [525]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           es_out_Control <cycle 4> [214]
[526]    0.0    0.00    0.00       1         input_clock_ChangeSystemOrigin [526]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewWithType [425]
[527]    0.0    0.00    0.00       1         input_item_SetURI [527]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/5           decode_URI [721]
                0.00    0.00       1/1           EnsureUTF8 [929]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_set_equalizer [369]
[528]    0.0    0.00    0.00       1         input_resource_HoldAout [528]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/46          vlc_object_hold [635]
-----------------------------------------------
                0.00    0.00       1/1           End [298]
[529]    0.0    0.00    0.00       1         input_resource_RequestSout [529]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_MediaList_expandMedia [541]
[530]    0.0    0.00    0.00       1         libvlc_media_player_get_media [530]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/6           libvlc_media_retain [715]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [278]
[531]    0.0    0.00    0.00       1         picture_fifo_Delete [531]
                0.00    0.00       1/6           picture_fifo_Flush [444]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           Thread [13]
[532]    0.0    0.00    0.00       1         spu_ClearChannel [532]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           Create [180]
[533]    0.0    0.00    0.00       1         stats_NewInputStats [533]
                0.00    0.00       1/1           stats_ReinitInputStats [534]
                0.00    0.00       1/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       1/1           stats_NewInputStats [533]
[534]    0.0    0.00    0.00       1         stats_ReinitInputStats [534]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputNew [243]
[535]    0.0    0.00    0.00       1         var_Type [535]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/4104        tfind [591]
-----------------------------------------------
                0.00    0.00       1/1           ObjectKillChildrens [505]
[536]    0.0    0.00    0.00       1         vlc_list_children [536]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_RequestVout <cycle 4> [231]
[537]    0.0    0.00    0.00       1         vout_DisplayTitle [537]
                0.00    0.00       1/7           vout_control_PushString [432]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_RequestVout <cycle 4> [231]
[538]    0.0    0.00    0.00       1         vout_FlushSubpictureChannel [538]
                0.00    0.00       1/7           vout_control_PushInteger [431]
-----------------------------------------------
                0.00    0.00       1/1           VoutVideoFilterStaticNewPicture [423]
[539]    0.0    0.00    0.00       1         vout_control_Dead [539]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/26822       vlc_cond_broadcast [552]
-----------------------------------------------
                0.00    0.00       1/1           vout_Close [248]
[540]    0.0    0.00    0.00       1         vout_snapshot_End [540]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       1/26822       vlc_cond_broadcast [552]
-----------------------------------------------
                                                 <spontaneous>
[541]    0.0    0.00    0.00                 Java_org_videolan_libvlc_MediaList_expandMedia [541]
                0.00    0.00       1/1           libvlc_media_player_get_media [530]
                0.00    0.00       2/451         getLong [602]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[542]    0.0    0.00    0.00       1         ReadMeta(vlc_object_t*) [542]
                0.00    0.00       1/460619      vlc_mutex_unlock [44]
                0.00    0.00       1/392860      vlc_mutex_lock [65]
                0.00    0.00       2/2           TagLib::FileRef::~FileRef() [16418]
                0.00    0.00       1/1           TagLib::FileRef::FileRef() [16539]
                0.00    0.00       1/1           TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16538]
                0.00    0.00       1/1           TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
                0.00    0.00       1/1           TagLib::FileRef::isNull() const [16568]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [278]
[543]    0.0    0.00    0.00       1         filter_DeleteBlend [543]
                0.00    0.00       1/44          vlc_object_release [382]
-----------------------------------------------
[544]    0.0    0.00    0.00      11+6       <cycle 2 as a whole> [544]
                0.00    0.00      14             stream_Peek <cycle 2> [676]
                0.00    0.00       3             Peek <cycle 2> [751]
-----------------------------------------------
[545]    0.0    0.00    0.00     133+8       <cycle 6 as a whole> [545]
                0.00    0.00     137             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16365]
                0.00    0.00       1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16498]
                0.00    0.00       1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16495]
-----------------------------------------------
                0.00    0.00       1/71997       ff_yuv2rgb_c_init_tables [513]
                0.00    0.00       2/71997       CloseDecoder [311]
                0.00    0.00       2/71997       GetParameters [433]
                0.00    0.00       2/71997       sws_freeContext [866]
                0.00    0.00       2/71997       av_buffer_pool_uninit [720]
                0.00    0.00      16/71997       sws_getCachedContext [351]
                0.00    0.00     178/71997       ff_init_vlc_sparse [96]
                0.00    0.00   71794/71997       av_freep [547]
[546]    0.0    0.00    0.00   71997         av_free [546]
-----------------------------------------------
                0.00    0.00       1/71794       ffmpeg_OpenCodec [164]
                0.00    0.00       1/71794       avcodec_open2 [165]
                0.00    0.00       1/71794       ff_aac_sbr_ctx_close [987]
                0.00    0.00       1/71794       av_opt_free [977]
                0.00    0.00       1/71794       av_opt_set_dict [979]
                0.00    0.00       3/71794       av_buffer_pool_uninit [720]
                0.00    0.00       4/71794       avcodec_close [414]
                0.00    0.00       6/71794       ff_fft_end [704]
                0.00    0.00       6/71794       ff_mdct_end [706]
                0.00    0.00       8/71794       sws_getCachedContext [351]
                0.00    0.00      56/71794       sws_freeContext [866]
                0.00    0.00      69/71794       aac_decode_close [971]
                0.00    0.00    5969/71794       DecodeAudio [5]
                0.00    0.00    5972/71794       av_frame_alloc [162]
                0.00    0.00   23867/71794       av_buffer_unref [100]
                0.00    0.00   35829/71794       av_frame_unref [50]
[547]    0.0    0.00    0.00   71794         av_freep [547]
                0.00    0.00   71794/71997       av_free [546]
-----------------------------------------------
                0.00    0.00       1/68402       Open [245]
                0.00    0.00     133/68402       vlc_cond_wait [263]
                0.00    0.00    6921/68402       vout_snapshot_IsRequested [191]
                0.00    0.00   61347/68402       vlc_cond_timedwait [48]
[548]    0.0    0.00    0.00   68402         vlc_mutex_trylock [548]
-----------------------------------------------
                0.00    0.00      44/33017       tdelete [690]
                0.00    0.00    1201/33017       tsearch [610]
                0.00    0.00   31772/33017       tfind [591]
[549]    0.0    0.00    0.00   33017         varcmp [549]
-----------------------------------------------
                0.00    0.00   32906/32906       stream_Read <cycle 1> [73]
[550]    0.0    0.00    0.00   32906         AStreamReadStream [550]
-----------------------------------------------
                0.00    0.00   13847/27695       video_format_GetTransform [106]
                0.00    0.00   13848/27695       video_format_TransformBy [577]
[551]    0.0    0.00    0.00   27695         transform_GetBasicOps [551]
-----------------------------------------------
                0.00    0.00       1/26822       input_item_preparsed_changed [473]
                0.00    0.00       1/26822       vout_control_Dead [539]
                0.00    0.00       1/26822       vout_snapshot_End [540]
                0.00    0.00       6/26822       block_FifoEmpty [443]
                0.00    0.00      20/26822       block_FifoWake [388]
                0.00    0.00     612/26822       TriggerCallback <cycle 5> [230]
                0.00    0.00   12894/26822       block_FifoGet [130]
                0.00    0.00   13287/26822       vout_control_Pop [57]
[552]    0.0    0.00    0.00   26822         vlc_cond_broadcast [552]
-----------------------------------------------
                0.00    0.00     321/26146       av_opt_free [977]
                0.00    0.00     377/26146       av_opt_set_defaults [752]
                0.00    0.00   25448/26146       av_opt_find2 [616]
[553]    0.0    0.00    0.00   26146         av_opt_next [553]
-----------------------------------------------
                0.00    0.00       2/25317       Del [314]
                0.00    0.00       2/25317       Add <cycle 4> [447]
                0.00    0.00   12428/25317       Control <cycle 4> [155]
                0.00    0.00   12885/25317       Send [55]
[554]    0.0    0.00    0.00   25317         TsStop [554]
-----------------------------------------------
                0.00    0.00   25184/25184       block_Alloc [104]
[555]    0.0    0.00    0.00   25184         block_Init [555]
-----------------------------------------------
                0.00    0.00       1/20260       DecoderDecodeVideo [9]
                0.00    0.00       1/20260       DecoderDecodeAudio [4]
                0.00    0.00       1/20260       input_ControlPush [524]
                0.00    0.00       2/20260       DecoderFlush [370]
                0.00    0.00       2/20260       input_DecoderDelete [266]
                0.00    0.00       2/20260       input_DecoderStartWait [367]
                0.00    0.00       4/20260       input_DecoderStopWait [451]
                0.00    0.00       4/20260       vlc_sem_post [454]
                0.00    0.00      25/20260       DecoderThread [3]
                0.00    0.00      26/20260       vout_control_Push [374]
                0.00    0.00     420/20260       vlc_rwlock_unlock [95]
                0.00    0.00    6885/20260       vout_control_Wake [170]
                0.00    0.00   12887/20260       block_FifoPut [157]
[556]    0.0    0.00    0.00   20260         vlc_cond_signal [556]
-----------------------------------------------
                0.00    0.00   17907/17907       DecodeAudio [5]
[557]    0.0    0.00    0.00   17907         date_Get [557]
-----------------------------------------------
                0.00    0.00   13811/13811       picture_Release [102]
[558]    0.0    0.00    0.00   13811         Destroy [558]
                0.00    0.00    6901/6901        AndroidUnlockSurface [584]
-----------------------------------------------
                0.00    0.00     848/13746       input_DecoderGetFifoSize [600]
                0.00    0.00   12898/13746       input_DecoderDecode [86]
[559]    0.0    0.00    0.00   13746         block_FifoSize [559]
-----------------------------------------------
                0.00    0.00       1/12920       Run [19]
                0.00    0.00      22/12920       vlc_object_release [382]
                0.00    0.00   12897/12920       DecoderThread [3]
[560]    0.0    0.00    0.00   12920         vlc_restorecancel [560]
-----------------------------------------------
                0.00    0.00       1/12761       Run [19]
                0.00    0.00      22/12761       vlc_object_release [382]
                0.00    0.00   12738/12761       DecoderThread [3]
[561]    0.0    0.00    0.00   12761         vlc_savecancel [561]
-----------------------------------------------
                                 427             CmdExecuteControl <cycle 4> [599]
                               12013             Control <cycle 4> [155]
[562]    0.0    0.00    0.00   12440         es_out_Control <cycle 4> [562]
                               12446             EsOutControl <cycle 4> [144]
-----------------------------------------------
                0.00    0.00       1/11942       av_samples_get_buffer_size [980]
                0.00    0.00    5970/11942       avcodec_default_get_buffer2 [47]
                0.00    0.00    5971/11942       DecodeAudio [5]
[563]    0.0    0.00    0.00   11942         av_sample_fmt_is_planar [563]
-----------------------------------------------
                0.00    0.00    5969/11940       avcodec_decode_audio4 [6]
                0.00    0.00    5971/11940       aac_decode_frame [7]
[564]    0.0    0.00    0.00   11940         av_packet_get_side_data [564]
-----------------------------------------------
                0.00    0.00   11940/11940       spectral_to_sample [70]
[565]    0.0    0.00    0.00   11940         imdct_and_windowing [565]
-----------------------------------------------
                0.00    0.00   11939/11939       av_buffer_unref [100]
[566]    0.0    0.00    0.00   11939         pool_release_buffer [566]
-----------------------------------------------
                0.00    0.00       1/10463       Open [940]
                0.00    0.00       1/10463       Open(vlc_object_t*) <cycle 4> [131]
                0.00    0.00       1/10463       demux_sys_t::InitUi() [237]
                0.00    0.00       1/10463       libvlc_media_new_from_input_item [408]
                0.00    0.00       1/10463       input_item_NewWithType [425]
                0.00    0.00       1/10463       stats_NewInputStats [533]
                0.00    0.00       1/10463       DisplayNew [273]
                0.00    0.00       1/10463       picture_fifo_New [1026]
                0.00    0.00       1/10463       vlc_event_manager_init [1038]
                0.00    0.00       1/10463       input_clock_New [1016]
                0.00    0.00       1/10463       vout_control_Init [1045]
                0.00    0.00       1/10463       vout_snapshot_Init [1048]
                0.00    0.00       2/10463       libvlc_event_manager_new [500]
                0.00    0.00       2/10463       libvlc_media_player_new [188]
                0.00    0.00       2/10463       CreateDecoder <cycle 4> [494]
                0.00    0.00       2/10463       Create [180]
                0.00    0.00       2/10463       input_resource_New [1018]
                0.00    0.00       2/10463       block_FifoNew [821]
                0.00    0.00       3/10463       vout_Request <cycle 4> [198]
                0.00    0.00       3/10463       spu_Create <cycle 4> [336]
                0.00    0.00       3/10463       aout_New [233]
                0.00    0.00       4/10463       vlc_sem_init [748]
                0.00    0.00       4/10463       vlc_clone_attr [746]
                0.00    0.00      24/10463       vlc_custom_create [377]
                0.00    0.00   10398/10463       mwait [56]
[567]    0.0    0.00    0.00   10463         vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       1/10437       demux_sys_t::InitUi() [237]
                0.00    0.00       1/10437       libvlc_media_new_from_input_item [408]
                0.00    0.00       1/10437       Create [180]
                0.00    0.00       1/10437       vout_snapshot_Init [1048]
                0.00    0.00       2/10437       vout_control_Init [1045]
                0.00    0.00       4/10437       CreateDecoder <cycle 4> [494]
                0.00    0.00       4/10437       block_FifoNew [821]
                0.00    0.00       4/10437       vlc_sem_init [748]
                0.00    0.00      24/10437       vlc_custom_create [377]
                0.00    0.00   10395/10437       mwait [56]
[568]    0.0    0.00    0.00   10437         vlc_cond_init [568]
-----------------------------------------------
                0.00    0.00       1/10432       Close [918]
                0.00    0.00       1/10432       event_thread_t::~event_thread_t() [16512]
                0.00    0.00       1/10432       demux_sys_t::~demux_sys_t() [302]
                0.00    0.00       1/10432       DeleteDecoder <cycle 4> [128]
                0.00    0.00       1/10432       vout_DeleteDisplay [295]
                0.00    0.00       1/10432       picture_fifo_Delete [531]
                0.00    0.00       1/10432       input_clock_Delete [1015]
                0.00    0.00       1/10432       EsOutDelete [930]
                0.00    0.00       1/10432       Destroy [927]
                0.00    0.00       1/10432       vout_control_Clean [1044]
                0.00    0.00       1/10432       vout_snapshot_Clean [1047]
                0.00    0.00       2/10432       Destructor [928]
                0.00    0.00       2/10432       block_FifoRelease [496]
                0.00    0.00       3/10432       VoutDestructor [970]
                0.00    0.00       3/10432       spu_Destroy [249]
                0.00    0.00       3/10432       aout_Destructor [972]
                0.00    0.00       4/10432       vlc_sem_destroy [747]
                0.00    0.00       4/10432       vlc_join [412]
                0.00    0.00      22/10432       vlc_object_release [382]
                0.00    0.00   10378/10432       mwait [56]
[569]    0.0    0.00    0.00   10432         vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/10405       event_thread_t::~event_thread_t() [16512]
                0.00    0.00       1/10405       Destructor [928]
                0.00    0.00       1/10405       vout_snapshot_Clean [1047]
                0.00    0.00       2/10405       DeleteDecoder <cycle 4> [128]
                0.00    0.00       2/10405       vout_control_Clean [1044]
                0.00    0.00       4/10405       block_FifoRelease [496]
                0.00    0.00       4/10405       vlc_sem_destroy [747]
                0.00    0.00      22/10405       vlc_object_release [382]
                0.00    0.00   10368/10405       mwait [56]
[570]    0.0    0.00    0.00   10405         vlc_cond_destroy [570]
-----------------------------------------------
                0.00    0.00    8172/8172        module_provides [572]
[571]    0.0    0.00    0.00    8172         module_get_capability [571]
-----------------------------------------------
                0.00    0.00    8172/8172        module_list_cap [665]
[572]    0.0    0.00    0.00    8172         module_provides [572]
                0.00    0.00    8172/8172        module_get_capability [571]
-----------------------------------------------
                0.00    0.00       2/7699        EsSelect <cycle 4> [358]
                0.00    0.00       2/7699        EsUnselect <cycle 4> [422]
                0.00    0.00       4/7699        EsOutSelect <cycle 4> [728]
                0.00    0.00    7691/7699        EsOutControl <cycle 4> [144]
[573]    0.0    0.00    0.00    7699         EsIsSelected [573]
-----------------------------------------------
                0.00    0.00       1/6926        vout_InitWrapper [190]
                0.00    0.00    6925/6926        VideoBufferNew [89]
[574]    0.0    0.00    0.00    6926         Pool [574]
-----------------------------------------------
                0.00    0.00    6925/6925        AndroidLockSurface [323]
[575]    0.0    0.00    0.00    6925         jni_LockAndGetAndroidJavaSurface [575]
-----------------------------------------------
                0.00    0.00    6923/6923        vout_FilterDisplay [54]
[576]    0.0    0.00    0.00    6923         filter_chain_GetLength [576]
-----------------------------------------------
                0.00    0.00    6923/6923        video_format_TransformTo [107]
[577]    0.0    0.00    0.00    6923         video_format_TransformBy [577]
                0.00    0.00   13848/27695       transform_GetBasicOps [551]
-----------------------------------------------
                0.00    0.00       1/6922        vout_new_buffer [24]
                0.00    0.00    6921/6922        spu_Render [145]
[578]    0.0    0.00    0.00    6922         vlc_fourcc_IsYUV [578]
-----------------------------------------------
                0.00    0.00    6922/6922        ThreadDisplayPicture [18]
[579]    0.0    0.00    0.00    6922         vout_UpdateDisplaySourceProperties [579]
-----------------------------------------------
                0.00    0.00    6920/6920        AndroidLockSurface [323]
[580]    0.0    0.00    0.00    6920         vlc_fourcc_AreUVPlanesSwapped [580]
-----------------------------------------------
                0.00    0.00       2/6919        AndroidLockSurface [323]
                0.00    0.00    6917/6919        AndroidUnlockSurface [584]
[581]    0.0    0.00    0.00    6919         jni_UnlockAndroidSurface [581]
-----------------------------------------------
                0.00    0.00    6916/6916        spu_Render [145]
[582]    0.0    0.00    0.00    6916         filter_chain_SubSource [582]
-----------------------------------------------
                0.00    0.00    6905/6905        DecoderDecodeVideo [9]
[583]    0.0    0.00    0.00    6905         vout_GetResetStatistic [583]
-----------------------------------------------
                0.00    0.00    6901/6901        Destroy [558]
[584]    0.0    0.00    0.00    6901         AndroidUnlockSurface [584]
                0.00    0.00    6917/6919        jni_UnlockAndroidSurface [581]
-----------------------------------------------
                0.00    0.00    6874/6874        vout_GetPicture [68]
[585]    0.0    0.00    0.00    6874         picture_Reset [585]
-----------------------------------------------
                0.00    0.00    5971/5971        aac_decode_frame_int [8]
[586]    0.0    0.00    0.00    5971         get_che [586]
-----------------------------------------------
                0.00    0.00    5969/5969        aout_volume_Amplify [112]
[587]    0.0    0.00    0.00    5969         FilterS16N [587]
-----------------------------------------------
                0.00    0.00    5969/5969        DecodeAudio [5]
[588]    0.0    0.00    0.00    5969         av_init_packet [588]
-----------------------------------------------
                0.00    0.00    5969/5969        DecodeAudio [5]
[589]    0.0    0.00    0.00    5969         date_Increment [589]
-----------------------------------------------
                0.00    0.00    5967/5967        DecodeAudio [5]
[590]    0.0    0.00    0.00    5967         block_Realloc [590]
-----------------------------------------------
                0.00    0.00       1/4104        var_Type [535]
                0.00    0.00      13/4104        var_Destroy [350]
                0.00    0.00      24/4104        var_TriggerCallback <cycle 5> [376]
                0.00    0.00      34/4104        var_DelCallback [285]
                0.00    0.00      51/4104        var_AddCallback [261]
                0.00    0.00     625/4104        var_SetChecked <cycle 5> [235]
                0.00    0.00    1001/4104        var_Change [222]
                0.00    0.00    2355/4104        var_GetChecked [206]
[591]    0.0    0.00    0.00    4104         tfind [591]
                0.00    0.00   31772/33017       varcmp [549]
-----------------------------------------------
                0.00    0.00    3478/3478        vout_new_buffer [24]
[592]    0.0    0.00    0.00    3478         harmful_delay [592]
-----------------------------------------------
                0.00    0.00       4/3329        CheckValue [596]
                0.00    0.00       4/3329        var_Create [156]
                0.00    0.00     621/3329        var_SetChecked <cycle 5> [235]
                0.00    0.00     899/3329        var_Change [222]
                0.00    0.00    1801/3329        var_GetChecked [206]
[593]    0.0    0.00    0.00    3329         DupDummy [593]
-----------------------------------------------
                0.00    0.00       2/3102        AStreamPrebufferStream [259]
                0.00    0.00     492/3102        AStreamRefillStream [175]
                0.00    0.00    2608/3102        MainLoop [20]
[594]    0.0    0.00    0.00    3102         vlc_object_alive [594]
-----------------------------------------------
                0.00    0.00       4/1642        CheckValue [596]
                0.00    0.00     132/1642        Destroy [617]
                0.00    0.00     620/1642        var_SetChecked <cycle 5> [235]
                0.00    0.00     886/1642        var_Change [222]
[595]    0.0    0.00    0.00    1642         FreeDummy [595]
-----------------------------------------------
                0.00    0.00     626/1591        var_SetChecked <cycle 5> [235]
                0.00    0.00     965/1591        var_Change [222]
[596]    0.0    0.00    0.00    1591         CheckValue [596]
                0.00    0.00     381/383         CmpString [605]
                0.00    0.00      38/44          CmpInt [637]
                0.00    0.00      13/14          CmpFloat [674]
                0.00    0.00       4/113         FreeString [625]
                0.00    0.00       4/1642        FreeDummy [595]
                0.00    0.00       4/115         DupString [624]
                0.00    0.00       4/3329        DupDummy [593]
-----------------------------------------------
                0.00    0.00    1408/1408        ff_fft_init [384]
[597]    0.0    0.00    0.00    1408         split_radix_permutation [597]
-----------------------------------------------
                0.00    0.00       2/1286        Init [205]
                0.00    0.00       3/1286        ControlPause [405]
                0.00    0.00       5/1286        InputSourceInit [219]
                0.00    0.00    1276/1286        MainLoop [20]
[598]    0.0    0.00    0.00    1286         demux_Control [598]
                0.00    0.00    1286/1286        Control(demux_t*, int, std::__va_list) [16204]
-----------------------------------------------
                                 859             Control <cycle 4> [155]
[599]    0.0    0.00    0.00     859         CmdExecuteControl <cycle 4> [599]
                                 427             es_out_Control <cycle 4> [562]
-----------------------------------------------
                0.00    0.00     848/848         EsOutControl <cycle 4> [144]
[600]    0.0    0.00    0.00     848         input_DecoderGetFifoSize [600]
                0.00    0.00     848/13746       block_FifoSize [559]
-----------------------------------------------
                0.00    0.00     493/493         AReadStream [185]
[601]    0.0    0.00    0.00     493         FileRead [601]
-----------------------------------------------
                0.00    0.00       2/451         Java_org_videolan_libvlc_MediaList_expandMedia [541]
                0.00    0.00     449/451         getMediaPlayer [603]
[602]    0.0    0.00    0.00     451         getLong [602]
-----------------------------------------------
                0.00    0.00       1/450         Java_org_videolan_libvlc_LibVLC_stop [287]
                0.00    0.00       1/450         Java_org_videolan_libvlc_LibVLC_getAudioTracksCount [2204]
                0.00    0.00       1/450         Java_org_videolan_libvlc_LibVLC_getVideoTracksCount [2216]
                0.00    0.00       1/450         Java_org_videolan_libvlc_LibVLC_getSpuTracksCount [2213]
                0.00    0.00       8/450         Java_org_videolan_libvlc_LibVLC_getTime [2215]
                0.00    0.00       8/450         Java_org_videolan_libvlc_LibVLC_getLength [2206]
                0.00    0.00     430/450         Java_org_videolan_libvlc_LibVLC_isPlaying [256]
[603]    0.0    0.00    0.00     450         getMediaPlayer [603]
                0.00    0.00     449/451         getLong [602]
-----------------------------------------------
                0.00    0.00     431/431         libvlc_event_send [213]
[604]    0.0    0.00    0.00     431         vlc_event_callback [604]
-----------------------------------------------
                0.00    0.00       2/383         var_Change [222]
                0.00    0.00     381/383         CheckValue [596]
[605]    0.0    0.00    0.00     383         CmpString [605]
-----------------------------------------------
                0.00    0.00       2/366         Destroy [765]
                0.00    0.00       2/366         destroy_size [832]
                0.00    0.00       2/366         ft_mem_qrealloc [658]
                0.00    0.00       2/366         af_autofitter_done [806]
                0.00    0.00       4/366         ft_glyphslot_done [841]
                0.00    0.00       4/366         FT_List_Finalize [662]
                0.00    0.00       4/366         FT_Done_Face [768]
                0.00    0.00       4/366         FT_Done_Library [771]
                0.00    0.00       4/366         tt_face_done [874]
                0.00    0.00       4/366         ps_hinter_done [858]
                0.00    0.00       6/366         destroy_face [831]
                0.00    0.00       8/366         destroy_charmaps [830]
                0.00    0.00       8/366         FT_Stroker_Done [790]
                0.00    0.00       8/366         TT_Done_Context [801]
                0.00    0.00       8/366         ps_mask_table_done [689]
                0.00    0.00      12/366         af_glyph_hints_done [809]
                0.00    0.00      14/366         sfnt_done_face [861]
                0.00    0.00      18/366         FT_Stream_ReleaseFrame [664]
                0.00    0.00      52/366         FT_Stream_ExitFrame [634]
                0.00    0.00      56/366         tt_face_free_name [876]
                0.00    0.00      64/366         FT_Remove_Module [640]
                0.00    0.00      80/366         FT_GlyphLoader_Reset [669]
[606]    0.0    0.00    0.00     366         ft_mem_free [606]
                0.00    0.00     172/172         ft_free [614]
-----------------------------------------------
                0.00    0.00     342/342         aout_DecPlay [15]
[607]    0.0    0.00    0.00     342         aout_FiltersAdjustResampling [607]
-----------------------------------------------
                0.00    0.00     273/273         libvlc_logf [609]
[608]    0.0    0.00    0.00     273         debug_log [608]
-----------------------------------------------
                0.00    0.00     273/273         vlc_vaLog [135]
[609]    0.0    0.00    0.00     273         libvlc_logf [609]
                0.00    0.00     273/273         debug_log [608]
-----------------------------------------------
                0.00    0.00     224/224         var_Create [156]
[610]    0.0    0.00    0.00     224         tsearch [610]
                0.00    0.00    1201/33017       varcmp [549]
-----------------------------------------------
                                 337             build_table [611]
                0.00    0.00     178/178         ff_init_vlc_sparse [96]
[611]    0.0    0.00    0.00     178+337     build_table [611]
                                 337             build_table [611]
-----------------------------------------------
                0.00    0.00       2/176         avcodec_open2 [165]
                0.00    0.00     174/176         avcodec_find_decoder [981]
[612]    0.0    0.00    0.00     176         av_codec_is_decoder [612]
-----------------------------------------------
                0.00    0.00     172/172         ft_mem_qalloc [615]
[613]    0.0    0.00    0.00     172         ft_alloc [613]
-----------------------------------------------
                0.00    0.00     172/172         ft_mem_free [606]
[614]    0.0    0.00    0.00     172         ft_free [614]
-----------------------------------------------
                0.00    0.00      56/172         FT_Stream_EnterFrame [633]
                0.00    0.00     116/172         ft_mem_alloc [622]
[615]    0.0    0.00    0.00     172         ft_mem_qalloc [615]
                0.00    0.00     172/172         ft_alloc [613]
-----------------------------------------------
                0.00    0.00       1/167         av_opt_set [978]
                0.00    0.00       2/167         av_opt_set_q [817]
                0.00    0.00      22/167         av_opt_set_double [657]
                0.00    0.00     142/167         av_opt_set_int [619]
[616]    0.0    0.00    0.00     167         av_opt_find2 [616]
                0.00    0.00   25448/26146       av_opt_next [553]
-----------------------------------------------
                0.00    0.00       8/157         var_Destroy [350]
                0.00    0.00      12/157         var_Create [156]
                0.00    0.00     137/157         tdestroy_recurse [717]
[617]    0.0    0.00    0.00     157         Destroy [617]
                0.00    0.00     132/1642        FreeDummy [595]
                0.00    0.00     100/113         FreeString [625]
-----------------------------------------------
                0.00    0.00       2/154         aout_New [233]
                0.00    0.00       2/154         vout_InitInterlacingSupport [262]
                0.00    0.00       3/154         config_GetType [753]
                0.00    0.00      15/154         config_GetFloat [212]
                0.00    0.00      45/154         config_GetPsz [174]
                0.00    0.00      87/154         config_GetInt [161]
[618]    0.0    0.00    0.00     154         config_FindConfig [618]
-----------------------------------------------
                0.00    0.00     142/142         av_opt_set_defaults [752]
[619]    0.0    0.00    0.00     142         av_opt_set_int [619]
                0.00    0.00     142/167         av_opt_find2 [616]
-----------------------------------------------
                0.00    0.00     137/137         tdestroy_recurse [717]
[620]    0.0    0.00    0.00     137         CleanupVar [620]
-----------------------------------------------
                0.00    0.00       4/135         LanguageSplit [359]
                0.00    0.00       5/135         aout_OutputNew [243]
                0.00    0.00       9/135         input_ControlVarInit [216]
                0.00    0.00      15/135         vout_InitInterlacingSupport [262]
                0.00    0.00      32/135         vout_IntfInit [210]
                0.00    0.00      32/135         aout_New [233]
                0.00    0.00      38/135         info_category_AddInfo [244]
[621]    0.0    0.00    0.00     135         vlc_gettext [621]
-----------------------------------------------
                0.00    0.00       2/116         FT_Stream_New [788]
                0.00    0.00       2/116         FT_Open_Face [781]
                0.00    0.00       2/116         FT_Stroker_New [791]
                0.00    0.00       2/116         TT_New_Context [802]
                0.00    0.00       2/116         sfnt_init_face [862]
                0.00    0.00       2/116         ft_black_new [839]
                0.00    0.00       4/116         FT_New_GlyphSlot [777]
                0.00    0.00       4/116         open_face [854]
                0.00    0.00       4/116         FT_New_Library [778]
                0.00    0.00       4/116         FT_New_Size [780]
                0.00    0.00       6/116         FT_CMap_New [699]
                0.00    0.00       6/116         gray_raster_new [711]
                0.00    0.00      16/116         FT_GlyphLoader_New [668]
                0.00    0.00      16/116         ft_mem_qrealloc [658]
                0.00    0.00      44/116         FT_Add_Module [639]
[622]    0.0    0.00    0.00     116         ft_mem_alloc [622]
                0.00    0.00     116/172         ft_mem_qalloc [615]
-----------------------------------------------
                0.00    0.00     116/116         MainLoop [20]
[623]    0.0    0.00    0.00     116         stats_ComputeInputStats [623]
-----------------------------------------------
                0.00    0.00       3/115         var_Create [156]
                0.00    0.00       4/115         CheckValue [596]
                0.00    0.00       5/115         var_SetChecked <cycle 5> [235]
                0.00    0.00      44/115         var_GetChecked [206]
                0.00    0.00      59/115         var_Change [222]
[624]    0.0    0.00    0.00     115         DupString [624]
-----------------------------------------------
                0.00    0.00       4/113         CheckValue [596]
                0.00    0.00       4/113         var_Change [222]
                0.00    0.00       5/113         var_SetChecked <cycle 5> [235]
                0.00    0.00     100/113         Destroy [617]
[625]    0.0    0.00    0.00     113         FreeString [625]
-----------------------------------------------
                0.00    0.00     112/112         tt_face_load_font_dir [882]
[626]    0.0    0.00    0.00     112         FT_Stream_GetULong [626]
-----------------------------------------------
                0.00    0.00       2/102         tt_face_load_hhea [742]
                0.00    0.00       4/102         tt_face_load_maxp [888]
                0.00    0.00       4/102         tt_face_load_os2 [890]
                0.00    0.00       6/102         sfnt_load_face [863]
                0.00    0.00      30/102         tt_face_load_font_dir [882]
                0.00    0.00      56/102         tt_face_load_name [889]
[627]    0.0    0.00    0.00     102         FT_Stream_ReadFields [627]
                0.00    0.00      48/56          FT_Stream_EnterFrame [633]
                0.00    0.00      48/52          FT_Stream_ExitFrame [634]
-----------------------------------------------
                0.00    0.00       4/102         FT_Stream_ReadAt [732]
                0.00    0.00       6/102         FT_Stream_ReadULong [700]
                0.00    0.00      36/102         FT_Stream_Seek [641]
                0.00    0.00      56/102         FT_Stream_EnterFrame [633]
[628]    0.0    0.00    0.00     102         ft_ansi_stream_io [628]
-----------------------------------------------
                0.00    0.00      75/75          EnsureUTF8 [929]
[629]    0.0    0.00    0.00      75         vlc_towc [629]
-----------------------------------------------
                0.00    0.00       1/70          vout_new_buffer [24]
                0.00    0.00       1/70          VoutValidateFormat [343]
                0.00    0.00       1/70          ThreadStart [176]
                0.00    0.00       1/70          EsOutAdd <cycle 4> [234]
                0.00    0.00       2/70          vout_SetDisplayZoom [904]
                0.00    0.00      64/70          video_format_Setup [182]
[630]    0.0    0.00    0.00      70         vlc_ureduce [630]
-----------------------------------------------
                0.00    0.00      65/65          module_load <cycle 4> [632]
[631]    0.0    0.00    0.00      65         module_Map [631]
-----------------------------------------------
                                  65             vlc_module_load <cycle 4> [177]
[632]    0.0    0.00    0.00      65         module_load <cycle 4> [632]
                0.00    0.00      65/65          module_Map [631]
                                  65             generic_start <cycle 4> [88]
-----------------------------------------------
                0.00    0.00       2/56          tt_face_load_name [889]
                0.00    0.00       2/56          tt_face_load_font_dir [882]
                0.00    0.00       4/56          FT_Stream_ExtractFrame [730]
                0.00    0.00      48/56          FT_Stream_ReadFields [627]
[633]    0.0    0.00    0.00      56         FT_Stream_EnterFrame [633]
                0.00    0.00      56/172         ft_mem_qalloc [615]
                0.00    0.00      56/102         ft_ansi_stream_io [628]
-----------------------------------------------
                0.00    0.00       2/52          tt_face_load_name [889]
                0.00    0.00       2/52          tt_face_load_font_dir [882]
                0.00    0.00      48/52          FT_Stream_ReadFields [627]
[634]    0.0    0.00    0.00      52         FT_Stream_ExitFrame [634]
                0.00    0.00      52/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       1/46          demux_GetParentInput [986]
                0.00    0.00       1/46          input_resource_HoldAout [528]
                0.00    0.00       1/46          input_resource_HoldVouts [482]
                0.00    0.00      19/46          libvlc_get_input_thread [391]
                0.00    0.00      24/46          vlc_custom_create [377]
[635]    0.0    0.00    0.00      46         vlc_object_hold [635]
-----------------------------------------------
                0.00    0.00       1/45          module_get_name [1025]
                0.00    0.00      14/45          module_unneed [208]
                0.00    0.00      30/45          vlc_module_load <cycle 4> [177]
[636]    0.0    0.00    0.00      45         module_get_object [636]
-----------------------------------------------
                0.00    0.00       6/44          var_Change [222]
                0.00    0.00      38/44          CheckValue [596]
[637]    0.0    0.00    0.00      44         CmpInt [637]
-----------------------------------------------
                0.00    0.00       2/42          tt_face_load_cvt [880]
                0.00    0.00       2/42          tt_face_load_kern [887]
                0.00    0.00       2/42          tt_face_load_hmtx [886]
                0.00    0.00       2/42          tt_face_load_gasp [883]
                0.00    0.00       2/42          tt_face_load_pclt [891]
                0.00    0.00       2/42          tt_face_load_name [889]
                0.00    0.00       2/42          tt_face_load_post [892]
                0.00    0.00       2/42          tt_face_load_maxp [888]
                0.00    0.00       2/42          tt_face_load_cmap [879]
                0.00    0.00       2/42          tt_face_load_generic_header [884]
                0.00    0.00       2/42          tt_face_load_os2 [890]
                0.00    0.00       4/42          tt_face_load_hhea [742]
                0.00    0.00       6/42          tt_face_load_eblc [881]
                0.00    0.00      10/42          tt_face_init [878]
[638]    0.0    0.00    0.00      42         tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00      36/36          FT_Add_Default_Modules [767]
[639]    0.0    0.00    0.00      36         FT_Add_Module [639]
                0.00    0.00      44/116         ft_mem_alloc [622]
                0.00    0.00      14/16          FT_GlyphLoader_New [668]
                0.00    0.00       8/12          FT_List_Add [679]
                0.00    0.00       8/16          FT_Lookup_Renderer [671]
                0.00    0.00       6/6           ft_smooth_init [708]
                0.00    0.00       6/6           gray_raster_new [711]
                0.00    0.00       2/2           ft_raster1_init [844]
                0.00    0.00       2/2           ps_hinter_init [859]
                0.00    0.00       2/2           af_autofitter_init [807]
                0.00    0.00       2/2           T42_Driver_Init [799]
                0.00    0.00       2/2           cid_driver_init [826]
                0.00    0.00       2/2           cff_driver_init [823]
                0.00    0.00       2/2           T1_Driver_Init [797]
                0.00    0.00       2/2           tt_driver_init [872]
                0.00    0.00       2/2           ft_black_new [839]
-----------------------------------------------
                0.00    0.00      36/36          FT_Done_Library [771]
[640]    0.0    0.00    0.00      36         FT_Remove_Module [640]
                0.00    0.00      64/366         ft_mem_free [606]
                0.00    0.00      18/20          FT_List_Finalize [662]
                0.00    0.00      12/16          FT_GlyphLoader_Done [667]
                0.00    0.00       8/10          FT_List_Find [686]
                0.00    0.00       8/10          FT_List_Remove [687]
                0.00    0.00       8/16          FT_Lookup_Renderer [671]
                0.00    0.00       6/6           gray_raster_done [710]
                0.00    0.00       2/2           tt_driver_done [871]
                0.00    0.00       2/2           T1_Driver_Done [796]
                0.00    0.00       2/2           cff_driver_done [822]
                0.00    0.00       2/2           cid_driver_done [825]
                0.00    0.00       2/2           T42_Driver_Done [798]
                0.00    0.00       2/2           af_autofitter_done [806]
                0.00    0.00       2/2           ps_hinter_done [858]
                0.00    0.00       2/2           ft_black_done [838]
-----------------------------------------------
                0.00    0.00       2/36          tt_face_load_hmtx [886]
                0.00    0.00       2/36          tt_face_load_name [889]
                0.00    0.00       2/36          tt_face_load_post [892]
                0.00    0.00       2/36          tt_face_load_maxp [888]
                0.00    0.00       2/36          tt_face_load_hhea [742]
                0.00    0.00       2/36          sfnt_init_face [862]
                0.00    0.00       2/36          tt_face_load_cmap [879]
                0.00    0.00       2/36          tt_face_load_generic_header [884]
                0.00    0.00       2/36          tt_face_load_os2 [890]
                0.00    0.00       4/36          tt_face_get_name [680]
                0.00    0.00       6/36          tt_face_init [878]
                0.00    0.00       8/36          tt_face_load_font_dir [882]
[641]    0.0    0.00    0.00      36         FT_Stream_Seek [641]
                0.00    0.00      36/102         ft_ansi_stream_io [628]
-----------------------------------------------
                0.00    0.00       2/33          matroska_segment_c::~matroska_segment_c() [16530]
                0.00    0.00       2/33          input_item_UpdateTracksInfo [453]
                0.00    0.00       2/33          DecoderUpdateFormatLocked [764]
                0.00    0.00       2/33          EsOutDel [317]
                0.00    0.00       2/33          EsOutSend [66]
                0.00    0.00       3/33          DeleteDecoder <cycle 4> [128]
                0.00    0.00      10/33          filter_chain_Reset [275]
                0.00    0.00      10/33          filter_chain_Delete [321]
[642]    0.0    0.00    0.00      33         es_format_Clean [642]
-----------------------------------------------
                0.00    0.00       1/31          OpenDecoder [93]
                0.00    0.00      30/31          avcodec_register_all [127]
[643]    0.0    0.00    0.00      31         av_register_codec_parser [643]
-----------------------------------------------
                0.00    0.00       2/31          DeleteDecoder <cycle 4> [128]
                0.00    0.00      29/31          input_DecoderIsEmpty [333]
[644]    0.0    0.00    0.00      31         block_FifoCount [644]
-----------------------------------------------
                0.00    0.00       1/31          vout_new_buffer [24]
                0.00    0.00      30/31          picture_Setup [207]
[645]    0.0    0.00    0.00      31         vlc_fourcc_GetChromaDescription [645]
-----------------------------------------------
                0.00    0.00      30/30          picture_Release [102]
[646]    0.0    0.00    0.00      30         PictureDestroy [646]
-----------------------------------------------
                0.00    0.00      30/30          std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::append(unsigned int, wchar_t) [23196]
[647]    0.0    0.00    0.00      30         wmemset [647]
-----------------------------------------------
                0.00    0.00      29/29          picture_NewFromResource [183]
[648]    0.0    0.00    0.00      29         posix_memalign [648]
-----------------------------------------------
                0.00    0.00       2/28          matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
                0.00    0.00       2/28          CreateDecoder <cycle 4> [494]
                0.00    0.00       2/28          filter_NewBlend [523]
                0.00    0.00       4/28          SpuRenderCreateAndLoadScale <cycle 4> [495]
                0.00    0.00       4/28          SpuRenderCreateAndLoadText <cycle 4> [283]
                0.00    0.00       4/28          es_format_InitFromVideo [734]
                0.00    0.00      10/28          filter_chain_New [722]
[649]    0.0    0.00    0.00      28         es_format_Init [649]
-----------------------------------------------
                0.00    0.00       4/28          tt_get_interface [893]
                0.00    0.00       4/28          cff_get_interface [824]
                0.00    0.00      20/28          ft_module_get_service [843]
[650]    0.0    0.00    0.00      28         ft_service_list_lookup [650]
-----------------------------------------------
                0.00    0.00       2/26          DecoderUpdateFormatLocked [764]
                0.00    0.00       2/26          input_DecoderHasFormatChanged [158]
                0.00    0.00       2/26          filter_chain_AppendFilterInternal [320]
                0.00    0.00       2/26          EsOutAdd <cycle 4> [234]
                0.00    0.00       4/26          input_item_UpdateTracksInfo [453]
                0.00    0.00       4/26          CreateDecoder <cycle 4> [494]
                0.00    0.00      10/26          filter_chain_Reset [275]
[651]    0.0    0.00    0.00      26         es_format_Copy [651]
-----------------------------------------------
                0.00    0.00       1/25          ff_yuv2rgb_c_init_tables [513]
                0.00    0.00       6/25          sws_setColorspaceDetails [512]
                0.00    0.00       6/25          ff_sws_init_output_funcs [836]
                0.00    0.00      12/25          sws_init_context [312]
[652]    0.0    0.00    0.00      25         av_pix_fmt_desc_get [652]
-----------------------------------------------
                0.00    0.00       7/25          module_find [694]
                0.00    0.00      18/25          vlc_module_load <cycle 4> [177]
[653]    0.0    0.00    0.00      25         module_list_free [653]
-----------------------------------------------
                0.00    0.00       4/25          std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::rfind(wchar_t const*, unsigned int, unsigned int) const [22602]
                0.00    0.00      21/25          TagLib::String::operator==(TagLib::String const&) const [16262]
[654]    0.0    0.00    0.00      25         wmemcmp [654]
-----------------------------------------------
                0.00    0.00      24/24          ff_fft_init [384]
[655]    0.0    0.00    0.00      24         ff_init_ff_cos_tabs [655]
-----------------------------------------------
                0.00    0.00      24/24          Thread [13]
[656]    0.0    0.00    0.00      24         vout_control_cmd_Clean [656]
-----------------------------------------------
                0.00    0.00      22/22          av_opt_set_defaults [752]
[657]    0.0    0.00    0.00      22         av_opt_set_double [657]
                0.00    0.00      22/167         av_opt_find2 [616]
-----------------------------------------------
                0.00    0.00      22/22          ft_mem_realloc [659]
[658]    0.0    0.00    0.00      22         ft_mem_qrealloc [658]
                0.00    0.00      16/116         ft_mem_alloc [622]
                0.00    0.00       4/4           ft_realloc [737]
                0.00    0.00       2/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       2/22          FT_GlyphLoader_CreateExtra [774]
                0.00    0.00       2/22          TT_New_Context [802]
                0.00    0.00       2/22          tt_face_load_name [889]
                0.00    0.00       2/22          tt_face_load_font_dir [882]
                0.00    0.00       4/22          tt_name_entry_ascii_from_utf16 [743]
                0.00    0.00       4/22          tt_face_get_name [680]
                0.00    0.00       6/22          FT_CMap_New [699]
[659]    0.0    0.00    0.00      22         ft_mem_realloc [659]
                0.00    0.00      22/22          ft_mem_qrealloc [658]
-----------------------------------------------
                0.00    0.00      22/22          var_DestroyAll [661]
[660]    0.0    0.00    0.00      22         tdestroy [660]
-----------------------------------------------
                0.00    0.00      22/22          vlc_object_release [382]
[661]    0.0    0.00    0.00      22         var_DestroyAll [661]
                0.00    0.00      22/22          tdestroy [660]
                0.00    0.00       6/6           tdestroy_recurse [717]
-----------------------------------------------
                0.00    0.00       2/20          destroy_face [831]
                0.00    0.00      18/20          FT_Remove_Module [640]
[662]    0.0    0.00    0.00      20         FT_List_Finalize [662]
                0.00    0.00       4/366         ft_mem_free [606]
                0.00    0.00       2/2           destroy_size [832]
-----------------------------------------------
                0.00    0.00      19/19          vlc_module_load <cycle 4> [177]
[663]    0.0    0.00    0.00      19         module_get_score [663]
-----------------------------------------------
                0.00    0.00       2/18          tt_face_free_eblc [875]
                0.00    0.00       8/18          tt_face_done [874]
                0.00    0.00       8/18          sfnt_done_face [861]
[664]    0.0    0.00    0.00      18         FT_Stream_ReleaseFrame [664]
                0.00    0.00      18/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00      18/18          vlc_module_load <cycle 4> [177]
[665]    0.0    0.00    0.00      18         module_list_cap [665]
                0.00    0.00    8172/8172        module_provides [572]
-----------------------------------------------
                                   2             CreateDecoder <cycle 4> [494]
                                   2             SpuRenderCreateAndLoadScale <cycle 4> [495]
                                   2             SpuRenderCreateAndLoadText <cycle 4> [283]
                0.00    0.00       1/31285       access_New [318]
                0.00    0.00       1/31285       ControlPause [405]
                0.00    0.00       1/31285       DisplayNew [273]
                0.00    0.00       1/31285       aout_New [233]
                0.00    0.00       1/31285       aout_volume_SetFormat [441]
                0.00    0.00       1/31285       filter_chain_AppendFilterInternal [320]
                0.00    0.00       2/31285       demux_New [279]
                0.00    0.00       2/31285       stream_FilterNew [399]
                0.00    0.00       2/31285       CreateFilter [402]
[666]    0.0    0.00    0.00      18         module_need <cycle 4> [666]
                                  18             vlc_module_load <cycle 4> [177]
-----------------------------------------------
                0.00    0.00       2/16          ft_glyphslot_done [841]
                0.00    0.00       2/16          af_autofitter_done [806]
                0.00    0.00      12/16          FT_Remove_Module [640]
[667]    0.0    0.00    0.00      16         FT_GlyphLoader_Done [667]
                0.00    0.00      16/16          FT_GlyphLoader_Rewind [670]
                0.00    0.00      16/16          FT_GlyphLoader_Reset [669]
-----------------------------------------------
                0.00    0.00       2/16          FT_New_GlyphSlot [777]
                0.00    0.00      14/16          FT_Add_Module [639]
[668]    0.0    0.00    0.00      16         FT_GlyphLoader_New [668]
                0.00    0.00      16/116         ft_mem_alloc [622]
-----------------------------------------------
                0.00    0.00      16/16          FT_GlyphLoader_Done [667]
[669]    0.0    0.00    0.00      16         FT_GlyphLoader_Reset [669]
                0.00    0.00      80/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00      16/16          FT_GlyphLoader_Done [667]
[670]    0.0    0.00    0.00      16         FT_GlyphLoader_Rewind [670]
-----------------------------------------------
                0.00    0.00       8/16          FT_Remove_Module [640]
                0.00    0.00       8/16          FT_Add_Module [639]
[671]    0.0    0.00    0.00      16         FT_Lookup_Renderer [671]
-----------------------------------------------
                0.00    0.00       8/16          ft_recompute_scaled_metrics [845]
                0.00    0.00       8/16          tt_size_reset [897]
[672]    0.0    0.00    0.00      16         FT_MulFix [672]
-----------------------------------------------
                0.00    0.00      16/16          subtitles_Detect [322]
[673]    0.0    0.00    0.00      16         vlc_readdir [673]
-----------------------------------------------
                0.00    0.00       1/14          var_Change [222]
                0.00    0.00      13/14          CheckValue [596]
[674]    0.0    0.00    0.00      14         CmpFloat [674]
-----------------------------------------------
                0.00    0.00      14/14          VoutVideoFilterStaticNewPicture [423]
[675]    0.0    0.00    0.00      14         filter_chain_VideoFlush [675]
-----------------------------------------------
                                   3             Peek <cycle 2> [751]
                0.00    0.00       1/11          RarProbe [966]
                0.00    0.00       1/11          OpenGzip [963]
                0.00    0.00       1/11          OpenBzip2 [946]
                0.00    0.00       1/11          OpenXZ [964]
                0.00    0.00       1/11          Open [939]
                0.00    0.00       1/11          StreamOpen [969]
                0.00    0.00       1/11          Open [941]
                0.00    0.00       1/11          Open(vlc_object_t*) <cycle 4> [131]
                0.00    0.00       1/11          dash::xml::DOMParser::isDash(stream_t*) [16533]
                0.00    0.00       2/11          demux_New [279]
[676]    0.0    0.00    0.00      14         stream_Peek <cycle 2> [676]
                0.00    0.00      11/11          AStreamPeekStream [682]
                                   3             Peek <cycle 2> [751]
-----------------------------------------------
                0.00    0.00       1/13          OpenDecoder [93]
                0.00    0.00       1/13          ff_fmt_convert_init_arm [995]
                0.00    0.00       1/13          ff_psdsp_init_arm [1002]
                0.00    0.00       1/13          ff_sbrdsp_init_arm [1004]
                0.00    0.00       1/13          ff_float_dsp_init_arm [991]
                0.00    0.00       2/13          sws_init_context [312]
                0.00    0.00       6/13          ff_fft_init_arm [705]
[677]    0.0    0.00    0.00      13         av_get_cpu_flags [677]
                0.00    0.00       1/1           ff_get_cpu_flags_arm [996]
-----------------------------------------------
                0.00    0.00      13/13          subtitles_Detect [322]
[678]    0.0    0.00    0.00      13         subtitles_Filter [678]
-----------------------------------------------
                0.00    0.00       2/12          FT_New_Size [780]
                0.00    0.00       2/12          FT_Open_Face [781]
                0.00    0.00       8/12          FT_Add_Module [639]
[679]    0.0    0.00    0.00      12         FT_List_Add [679]
-----------------------------------------------
                0.00    0.00      12/12          sfnt_load_face [863]
[680]    0.0    0.00    0.00      12         tt_face_get_name [680]
                0.00    0.00       4/4           tt_name_entry_ascii_from_utf16 [743]
                0.00    0.00       4/22          ft_mem_realloc [659]
                0.00    0.00       4/36          FT_Stream_Seek [641]
                0.00    0.00       4/4           FT_Stream_ReadAt [732]
                0.00    0.00       4/4           FT_Stream_Read [731]
-----------------------------------------------
                0.00    0.00      11/11          AStreamSeekStream [87]
[681]    0.0    0.00    0.00      11         ASeek [681]
                0.00    0.00      11/11          FileSeek [683]
-----------------------------------------------
                0.00    0.00      11/11          stream_Peek <cycle 2> [676]
[682]    0.0    0.00    0.00      11         AStreamPeekStream [682]
-----------------------------------------------
                0.00    0.00      11/11          ASeek [681]
[683]    0.0    0.00    0.00      11         FileSeek [683]
-----------------------------------------------
                0.00    0.00       4/10          FT_Request_Metrics [782]
                0.00    0.00       6/10          tt_size_reset [897]
[684]    0.0    0.00    0.00      10         FT_DivFix [684]
-----------------------------------------------
                0.00    0.00       2/10          tt_get_interface [893]
                0.00    0.00       2/10          cff_get_interface [824]
                0.00    0.00       2/10          T42_Driver_Init [799]
                0.00    0.00       4/10          FT_Get_Module_Interface [729]
[685]    0.0    0.00    0.00      10         FT_Get_Module [685]
-----------------------------------------------
                0.00    0.00       2/10          FT_Done_Face [768]
                0.00    0.00       8/10          FT_Remove_Module [640]
[686]    0.0    0.00    0.00      10         FT_List_Find [686]
-----------------------------------------------
                0.00    0.00       2/10          FT_Done_Face [768]
                0.00    0.00       8/10          FT_Remove_Module [640]
[687]    0.0    0.00    0.00      10         FT_List_Remove [687]
-----------------------------------------------
                0.00    0.00       2/8           tt_face_load_hmtx [886]
                0.00    0.00       2/8           tt_face_load_name [889]
                0.00    0.00       2/8           sfnt_init_face [862]
                0.00    0.00       2/8           tt_face_load_font_dir [882]
[688]    0.0    0.00    0.00       8         FT_Stream_Pos [688]
-----------------------------------------------
                0.00    0.00       8/8           ps_hinter_done [858]
[689]    0.0    0.00    0.00       8         ps_mask_table_done [689]
                0.00    0.00       8/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       8/8           var_Destroy [350]
[690]    0.0    0.00    0.00       8         tdelete [690]
                0.00    0.00      44/33017       varcmp [549]
-----------------------------------------------
                0.00    0.00       1/7           InitAudioDec [163]
                0.00    0.00       6/7           DecodeAudio [5]
[691]    0.0    0.00    0.00       7         date_Set [691]
-----------------------------------------------
                                   2             input_event_changed <cycle 5> [202]
                0.00    0.00       1/731         spu_get_attachments [435]
                0.00    0.00       4/731         info_category_AddInfo [244]
[692]    0.0    0.00    0.00       7         input_Control <cycle 5> [692]
                                   7             input_vaControl <cycle 5> [392]
-----------------------------------------------
                0.00    0.00       1/7           OpenDecoder [951]
                0.00    0.00       1/7           OpenDecoder [954]
                0.00    0.00       1/7           OpenDecoder [956]
                0.00    0.00       4/7           aout_New [233]
[693]    0.0    0.00    0.00       7         module_exists [693]
                0.00    0.00       7/7           module_find [694]
-----------------------------------------------
                0.00    0.00       7/7           module_exists [693]
[694]    0.0    0.00    0.00       7         module_find [694]
                0.00    0.00       7/7           module_list_get [695]
                0.00    0.00       7/25          module_list_free [653]
-----------------------------------------------
                0.00    0.00       7/7           module_find [694]
[695]    0.0    0.00    0.00       7         module_list_get [695]
-----------------------------------------------
                0.00    0.00       7/7           vlc_CPU [697]
[696]    0.0    0.00    0.00       7         pthread_once [696]
-----------------------------------------------
                0.00    0.00       1/7           Probe [965]
                0.00    0.00       1/7           OpenFilter [961]
                0.00    0.00       2/7           Open [795]
                0.00    0.00       3/7           Open [76]
[697]    0.0    0.00    0.00       7         vlc_CPU [697]
                0.00    0.00       7/7           pthread_once [696]
-----------------------------------------------
                0.00    0.00       7/7           vlc_audio_replay_gain_MergeFromMeta [1037]
[698]    0.0    0.00    0.00       7         vlc_meta_GetExtra [698]
-----------------------------------------------
                0.00    0.00       6/6           tt_face_build_cmaps [873]
[699]    0.0    0.00    0.00       6         FT_CMap_New [699]
                0.00    0.00       6/116         ft_mem_alloc [622]
                0.00    0.00       6/22          ft_mem_realloc [659]
                0.00    0.00       4/4           tt_cmap4_init [740]
                0.00    0.00       2/2           tt_cmap_init [870]
-----------------------------------------------
                0.00    0.00       2/6           sfnt_init_face [862]
                0.00    0.00       4/6           tt_face_load_font_dir [882]
[700]    0.0    0.00    0.00       6         FT_Stream_ReadULong [700]
                0.00    0.00       6/102         ft_ansi_stream_io [628]
-----------------------------------------------
                0.00    0.00       6/6           GetParameters [433]
[701]    0.0    0.00    0.00       6         FixParameters [701]
-----------------------------------------------
                0.00    0.00       6/6           GetParameters [433]
[702]    0.0    0.00    0.00       6         GetFfmpegChroma [702]
-----------------------------------------------
                0.00    0.00       2/6           sws_setColorspaceDetails [512]
                0.00    0.00       4/6           sws_init_context [312]
[703]    0.0    0.00    0.00       6         av_get_bits_per_pixel [703]
-----------------------------------------------
                0.00    0.00       1/6           ff_aac_sbr_ctx_close [987]
                0.00    0.00       5/6           aac_decode_close [971]
[704]    0.0    0.00    0.00       6         ff_fft_end [704]
                0.00    0.00       6/71794       av_freep [547]
-----------------------------------------------
                0.00    0.00       6/6           ff_fft_init [384]
[705]    0.0    0.00    0.00       6         ff_fft_init_arm [705]
                0.00    0.00       6/13          av_get_cpu_flags [677]
-----------------------------------------------
                0.00    0.00       1/6           ff_aac_sbr_ctx_close [987]
                0.00    0.00       5/6           aac_decode_close [971]
[706]    0.0    0.00    0.00       6         ff_mdct_end [706]
                0.00    0.00       6/71794       av_freep [547]
-----------------------------------------------
                0.00    0.00       6/6           destroy_charmaps [830]
[707]    0.0    0.00    0.00       6         ft_cmap_done_internal [707]
-----------------------------------------------
                0.00    0.00       6/6           FT_Add_Module [639]
[708]    0.0    0.00    0.00       6         ft_smooth_init [708]
                0.00    0.00       6/6           gray_raster_reset [712]
-----------------------------------------------
                0.00    0.00       6/6           tt_face_build_cmaps [873]
[709]    0.0    0.00    0.00       6         ft_validator_init [709]
-----------------------------------------------
                0.00    0.00       6/6           FT_Remove_Module [640]
[710]    0.0    0.00    0.00       6         gray_raster_done [710]
-----------------------------------------------
                0.00    0.00       6/6           FT_Add_Module [639]
[711]    0.0    0.00    0.00       6         gray_raster_new [711]
                0.00    0.00       6/116         ft_mem_alloc [622]
-----------------------------------------------
                0.00    0.00       6/6           ft_smooth_init [708]
[712]    0.0    0.00    0.00       6         gray_raster_reset [712]
-----------------------------------------------
                0.00    0.00       1/6           input_resource_RequestVout <cycle 4> [231]
                0.00    0.00       1/6           EsOutControl <cycle 4> [144]
                0.00    0.00       4/6           info_category_AddInfo [244]
[713]    0.0    0.00    0.00       6         input_GetItem [713]
-----------------------------------------------
                0.00    0.00       1/6           stopped_callback [12345]
                0.00    0.00       1/6           libvlc_media_player_set_media [378]
                0.00    0.00       4/6           set_state [417]
[714]    0.0    0.00    0.00       6         libvlc_media_release [714]
-----------------------------------------------
                0.00    0.00       1/6           libvlc_media_player_set_media [378]
                0.00    0.00       1/6           libvlc_media_player_get_media [530]
                0.00    0.00       4/6           set_state [417]
[715]    0.0    0.00    0.00       6         libvlc_media_retain [715]
-----------------------------------------------
                0.00    0.00       2/6           ft_module_get_service [843]
                0.00    0.00       2/6           tt_get_interface [893]
                0.00    0.00       2/6           cff_get_interface [824]
[716]    0.0    0.00    0.00       6         sfnt_get_interface [716]
-----------------------------------------------
                                 131             tdestroy_recurse [717]
                0.00    0.00       6/6           var_DestroyAll [661]
[717]    0.0    0.00    0.00       6+131     tdestroy_recurse [717]
                0.00    0.00     137/157         Destroy [617]
                0.00    0.00     137/137         CleanupVar [620]
                                 131             tdestroy_recurse [717]
-----------------------------------------------
                0.00    0.00       2/6           EsOutControl <cycle 4> [144]
                0.00    0.00       4/6           input_item_GetMeta [452]
[718]    0.0    0.00    0.00       6         vlc_meta_Get [718]
-----------------------------------------------
                0.00    0.00       1/5           info_category_AddInfo [244]
                0.00    0.00       2/5           aout_FormatPrint [281]
                0.00    0.00       2/5           aout_FormatsPrint [328]
[719]    0.0    0.00    0.00       5         aout_FormatPrintChannels [719]
-----------------------------------------------
                0.00    0.00       1/5           avcodec_default_get_buffer2 [47]
                0.00    0.00       4/5           avcodec_close [414]
[720]    0.0    0.00    0.00       5         av_buffer_pool_uninit [720]
                0.00    0.00       3/71794       av_freep [547]
                0.00    0.00       2/71997       av_free [546]
                0.00    0.00       2/2           av_buffer_default_free [811]
-----------------------------------------------
                0.00    0.00       1/5           input_item_SetURI [527]
                0.00    0.00       4/5           make_path [739]
[721]    0.0    0.00    0.00       5         decode_URI [721]
-----------------------------------------------
                0.00    0.00       1/5           VoutDisplayCreateRender [277]
                0.00    0.00       2/5           ThreadStart [176]
                0.00    0.00       2/5           spu_Create <cycle 4> [336]
[722]    0.0    0.00    0.00       5         filter_chain_New [722]
                0.00    0.00      10/28          es_format_Init [649]
-----------------------------------------------
                0.00    0.00       2/5           LanguageSplit [359]
                0.00    0.00       3/5           EsOutProgramSelect [290]
[723]    0.0    0.00    0.00       5         input_SendEventEsDel [723]
-----------------------------------------------
                0.00    0.00       1/5           vlc_event_manager_init [1038]
                0.00    0.00       1/5           input_EsOutNew [409]
                0.00    0.00       1/5           input_EsOutTimeshiftNew [282]
                0.00    0.00       2/5           libvlc_event_manager_new [500]
[724]    0.0    0.00    0.00       5         vlc_mutex_init_recursive [724]
-----------------------------------------------
                0.00    0.00       5/5           subtitles_Detect [322]
[725]    0.0    0.00    0.00       5         vlc_opendir [725]
-----------------------------------------------
                0.00    0.00       4/4           vout_display_Control [749]
[726]    0.0    0.00    0.00       4         Control [726]
-----------------------------------------------
                0.00    0.00       4/4           Create [195]
[727]    0.0    0.00    0.00       4         Dummy_Select [727]
-----------------------------------------------
                                   2             EsOutAdd <cycle 4> [234]
                                   2             EsOutControl <cycle 4> [144]
[728]    0.0    0.00    0.00       4         EsOutSelect <cycle 4> [728]
                0.00    0.00       4/7699        EsIsSelected [573]
                                   2             EsSelect <cycle 4> [358]
-----------------------------------------------
                0.00    0.00       2/4           tt_face_init [878]
                0.00    0.00       2/4           sfnt_init_face [862]
[729]    0.0    0.00    0.00       4         FT_Get_Module_Interface [729]
                0.00    0.00       4/10          FT_Get_Module [685]
-----------------------------------------------
                0.00    0.00       2/4           tt_face_init [878]
                0.00    0.00       2/4           tt_face_load_cmap [879]
[730]    0.0    0.00    0.00       4         FT_Stream_ExtractFrame [730]
                0.00    0.00       4/56          FT_Stream_EnterFrame [633]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [680]
[731]    0.0    0.00    0.00       4         FT_Stream_Read [731]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [680]
[732]    0.0    0.00    0.00       4         FT_Stream_ReadAt [732]
                0.00    0.00       4/102         ft_ansi_stream_io [628]
-----------------------------------------------
                0.00    0.00       4/4           input_item_ReplaceInfos [394]
[733]    0.0    0.00    0.00       4         InputItemFindCat [733]
-----------------------------------------------
                0.00    0.00       2/4           VoutDisplayCreateRender [277]
                0.00    0.00       2/4           ThreadChangeFilters [257]
[734]    0.0    0.00    0.00       4         es_format_InitFromVideo [734]
                0.00    0.00       4/28          es_format_Init [649]
-----------------------------------------------
                0.00    0.00       4/4           ThreadChangeFilters [257]
[735]    0.0    0.00    0.00       4         filter_chain_GetFmtOut [735]
-----------------------------------------------
                0.00    0.00       2/4           Create [195]
                0.00    0.00       2/4           open_face [854]
[736]    0.0    0.00    0.00       4         find_unicode_charmap [736]
-----------------------------------------------
                0.00    0.00       4/4           ft_mem_qrealloc [658]
[737]    0.0    0.00    0.00       4         ft_realloc [737]
-----------------------------------------------
                0.00    0.00       1/4           aac_decode_init [166]
                0.00    0.00       3/4           ff_ps_init [201]
[738]    0.0    0.00    0.00       4         make_filters_from_proto [738]
-----------------------------------------------
                0.00    0.00       1/4           get_path [1009]
                0.00    0.00       1/4           subtitles_Detect [322]
                0.00    0.00       2/4           demux_New [279]
[739]    0.0    0.00    0.00       4         make_path [739]
                0.00    0.00       4/5           decode_URI [721]
-----------------------------------------------
                0.00    0.00       4/4           FT_CMap_New [699]
[740]    0.0    0.00    0.00       4         tt_cmap4_init [740]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_build_cmaps [873]
[741]    0.0    0.00    0.00       4         tt_cmap4_validate [741]
-----------------------------------------------
                0.00    0.00       4/4           sfnt_load_face [863]
[742]    0.0    0.00    0.00       4         tt_face_load_hhea [742]
                0.00    0.00       4/42          tt_face_goto_table [638]
                0.00    0.00       2/102         FT_Stream_ReadFields [627]
                0.00    0.00       2/36          FT_Stream_Seek [641]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [680]
[743]    0.0    0.00    0.00       4         tt_name_entry_ascii_from_utf16 [743]
                0.00    0.00       4/22          ft_mem_realloc [659]
-----------------------------------------------
                                   1             var_Copy <cycle 5> [1036]
                0.00    0.00       3/731         var_OptionParse [291]
[744]    0.0    0.00    0.00       4         var_Set <cycle 5> [744]
                                   4             var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       1/4           input_Start [1014]
                0.00    0.00       1/4           vout_Request <cycle 4> [198]
                0.00    0.00       2/4           decoder_New <cycle 4> [829]
[745]    0.0    0.00    0.00       4         vlc_clone [745]
-----------------------------------------------
                0.00    0.00       1/4           input_Start [1014]
                0.00    0.00       1/4           vout_Request <cycle 4> [198]
                0.00    0.00       2/4           decoder_New <cycle 4> [829]
[746]    0.0    0.00    0.00       4         vlc_clone_attr [746]
                0.00    0.00       4/4           vlc_sem_init [748]
                0.00    0.00       4/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       4/4           vlc_join [412]
[747]    0.0    0.00    0.00       4         vlc_sem_destroy [747]
                0.00    0.00       4/10405       vlc_cond_destroy [570]
                0.00    0.00       4/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       4/4           vlc_clone_attr [746]
[748]    0.0    0.00    0.00       4         vlc_sem_init [748]
                0.00    0.00       4/10463       vlc_mutex_init [567]
                0.00    0.00       4/10437       vlc_cond_init [568]
-----------------------------------------------
                0.00    0.00       4/4           vout_ManageDisplay [78]
[749]    0.0    0.00    0.00       4         vout_display_Control [749]
                0.00    0.00       4/4           Control [726]
-----------------------------------------------
                0.00    0.00       1/3           picture_pool_Reserve [1030]
                0.00    0.00       2/3           picture_pool_NewExtended [857]
[750]    0.0    0.00    0.00       3         Create [750]
-----------------------------------------------
                                   3             stream_Peek <cycle 2> [676]
[751]    0.0    0.00    0.00       3         Peek <cycle 2> [751]
                                   3             stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/3           avcodec_get_context_defaults3 [511]
                0.00    0.00       2/3           sws_alloc_context [459]
[752]    0.0    0.00    0.00       3         av_opt_set_defaults [752]
                0.00    0.00     377/26146       av_opt_next [553]
                0.00    0.00     142/142         av_opt_set_int [619]
                0.00    0.00      22/22          av_opt_set_double [657]
                0.00    0.00       2/2           av_d2q [813]
                0.00    0.00       2/2           av_opt_set_q [817]
                0.00    0.00       1/1           av_opt_set [978]
-----------------------------------------------
                0.00    0.00       3/3           var_OptionParse [291]
[753]    0.0    0.00    0.00       3         config_GetType [753]
                0.00    0.00       3/154         config_FindConfig [618]
-----------------------------------------------
                0.00    0.00       3/3           OpenDecoder [218]
[754]    0.0    0.00    0.00       3         convert_omx_to_profile_idc [754]
-----------------------------------------------
                0.00    0.00       3/3           aac_decode_init [166]
[755]    0.0    0.00    0.00       3         ff_init_ff_sine_windows [755]
-----------------------------------------------
                0.00    0.00       3/3           aac_decode_init [166]
[756]    0.0    0.00    0.00       3         ff_sine_window_init [756]
-----------------------------------------------
                0.00    0.00       1/3           EsUnselect <cycle 4> [422]
                0.00    0.00       2/3           EsSelect <cycle 4> [358]
[757]    0.0    0.00    0.00       3         input_SendEventEsSelect [757]
-----------------------------------------------
                0.00    0.00       1/3           Init [221]
                0.00    0.00       2/3           es_format_IsSimilar [271]
[758]    0.0    0.00    0.00       3         video_format_IsSimilar [758]
-----------------------------------------------
                0.00    0.00       1/3           DeinterlaceIsPresent [520]
                0.00    0.00       2/3           DeinterlaceCallback <cycle 5> [260]
[759]    0.0    0.00    0.00       3         vlc_inhibit_Destroy [759]
-----------------------------------------------
                0.00    0.00       1/3           matroska_segment_c::InformationCreate() [16525]
                0.00    0.00       1/3           input_item_SetMeta [415]
                0.00    0.00       1/3           Init [205]
[760]    0.0    0.00    0.00       3         vlc_meta_New [760]
-----------------------------------------------
                0.00    0.00       3/3           input_item_SetMeta [415]
[761]    0.0    0.00    0.00       3         vlc_meta_Set [761]
-----------------------------------------------
                0.00    0.00       1/3           Create [180]
                0.00    0.00       1/3           vout_Request <cycle 4> [198]
                0.00    0.00       1/3           aout_New [233]
[762]    0.0    0.00    0.00       3         vlc_object_set_destructor [762]
-----------------------------------------------
                0.00    0.00       1/2           GetOutput [14]
                0.00    0.00       1/2           CloseDecoder [919]
[763]    0.0    0.00    0.00       2         ArchitectureSpecificCopyHooksDestroy [763]
-----------------------------------------------
                0.00    0.00       1/2           aout_update_format [209]
                0.00    0.00       1/2           vout_new_buffer [24]
[764]    0.0    0.00    0.00       2         DecoderUpdateFormatLocked [764]
                0.00    0.00       2/33          es_format_Clean [642]
                0.00    0.00       2/26          es_format_Copy [651]
-----------------------------------------------
                0.00    0.00       2/2           generic_stop [246]
[765]    0.0    0.00    0.00       2         Destroy [765]
                0.00    0.00       2/366         ft_mem_free [606]
                0.00    0.00       2/2           FT_Stroker_Done [790]
                0.00    0.00       2/2           FT_Done_Face [768]
                0.00    0.00       2/2           FT_Done_FreeType [769]
-----------------------------------------------
                0.00    0.00       2/2           EsOutAdd <cycle 4> [234]
[766]    0.0    0.00    0.00       2         EsOutProgramFind [766]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [775]
[767]    0.0    0.00    0.00       2         FT_Add_Default_Modules [767]
                0.00    0.00      36/36          FT_Add_Module [639]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [765]
[768]    0.0    0.00    0.00       2         FT_Done_Face [768]
                0.00    0.00       4/366         ft_mem_free [606]
                0.00    0.00       2/10          FT_List_Find [686]
                0.00    0.00       2/10          FT_List_Remove [687]
                0.00    0.00       2/2           destroy_face [831]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [765]
[769]    0.0    0.00    0.00       2         FT_Done_FreeType [769]
                0.00    0.00       2/2           FT_Done_Library [771]
                0.00    0.00       2/2           FT_Done_Memory [772]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [831]
[770]    0.0    0.00    0.00       2         FT_Done_GlyphSlot [770]
                0.00    0.00       2/2           ft_glyphslot_done [841]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_FreeType [769]
[771]    0.0    0.00    0.00       2         FT_Done_Library [771]
                0.00    0.00      36/36          FT_Remove_Module [640]
                0.00    0.00       4/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_FreeType [769]
[772]    0.0    0.00    0.00       2         FT_Done_Memory [772]
-----------------------------------------------
                0.00    0.00       2/2           FT_GlyphLoader_CreateExtra [774]
[773]    0.0    0.00    0.00       2         FT_GlyphLoader_Adjust_Points [773]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_GlyphSlot [777]
[774]    0.0    0.00    0.00       2         FT_GlyphLoader_CreateExtra [774]
                0.00    0.00       2/22          ft_mem_realloc [659]
                0.00    0.00       2/2           FT_GlyphLoader_Adjust_Points [773]
-----------------------------------------------
                0.00    0.00       2/2           Create [195]
[775]    0.0    0.00    0.00       2         FT_Init_FreeType [775]
                0.00    0.00       2/2           FT_New_Memory [779]
                0.00    0.00       2/2           FT_New_Library [778]
                0.00    0.00       2/2           FT_Add_Default_Modules [767]
-----------------------------------------------
                0.00    0.00       2/2           Create [195]
[776]    0.0    0.00    0.00       2         FT_New_Face [776]
                0.00    0.00       2/2           FT_Open_Face [781]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [781]
[777]    0.0    0.00    0.00       2         FT_New_GlyphSlot [777]
                0.00    0.00       4/116         ft_mem_alloc [622]
                0.00    0.00       2/2           FT_GlyphLoader_CreateExtra [774]
                0.00    0.00       2/2           tt_slot_init [898]
                0.00    0.00       2/16          FT_GlyphLoader_New [668]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [775]
[778]    0.0    0.00    0.00       2         FT_New_Library [778]
                0.00    0.00       4/116         ft_mem_alloc [622]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [775]
[779]    0.0    0.00    0.00       2         FT_New_Memory [779]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [781]
[780]    0.0    0.00    0.00       2         FT_New_Size [780]
                0.00    0.00       4/116         ft_mem_alloc [622]
                0.00    0.00       2/2           tt_size_init [895]
                0.00    0.00       2/12          FT_List_Add [679]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_Face [776]
[781]    0.0    0.00    0.00       2         FT_Open_Face [781]
                0.00    0.00       2/2           FT_Stream_New [788]
                0.00    0.00       2/116         ft_mem_alloc [622]
                0.00    0.00       2/2           open_face [854]
                0.00    0.00       2/12          FT_List_Add [679]
                0.00    0.00       2/2           FT_New_GlyphSlot [777]
                0.00    0.00       2/2           FT_New_Size [780]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [896]
[782]    0.0    0.00    0.00       2         FT_Request_Metrics [782]
                0.00    0.00       4/10          FT_DivFix [684]
-----------------------------------------------
                0.00    0.00       2/2           FT_Set_Pixel_Sizes [785]
[783]    0.0    0.00    0.00       2         FT_Request_Size [783]
                0.00    0.00       2/2           tt_size_request [896]
-----------------------------------------------
                0.00    0.00       2/2           Create [195]
[784]    0.0    0.00    0.00       2         FT_Select_Charmap [784]
-----------------------------------------------
                0.00    0.00       2/2           Create [195]
[785]    0.0    0.00    0.00       2         FT_Set_Pixel_Sizes [785]
                0.00    0.00       2/2           FT_Request_Size [783]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_Free [787]
[786]    0.0    0.00    0.00       2         FT_Stream_Close [786]
                0.00    0.00       2/2           ft_ansi_stream_close [837]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [831]
[787]    0.0    0.00    0.00       2         FT_Stream_Free [787]
                0.00    0.00       2/2           FT_Stream_Close [786]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [781]
[788]    0.0    0.00    0.00       2         FT_Stream_New [788]
                0.00    0.00       2/116         ft_mem_alloc [622]
                0.00    0.00       2/2           FT_Stream_Open [789]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_New [788]
[789]    0.0    0.00    0.00       2         FT_Stream_Open [789]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [765]
[790]    0.0    0.00    0.00       2         FT_Stroker_Done [790]
                0.00    0.00       8/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       2/2           Create [195]
[791]    0.0    0.00    0.00       2         FT_Stroker_New [791]
                0.00    0.00       2/116         ft_mem_alloc [622]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [230]
[792]    0.0    0.00    0.00       2         FullscreenCallback [792]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[793]    0.0    0.00    0.00       2         Get_Interface [793]
-----------------------------------------------
                0.00    0.00       2/2           EsOutAdd <cycle 4> [234]
[794]    0.0    0.00    0.00       2         LanguageGetCode [794]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [88]
[795]    0.0    0.00    0.00       2         Open [795]
                0.00    0.00       2/7           vlc_CPU [697]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [640]
[796]    0.0    0.00    0.00       2         T1_Driver_Done [796]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[797]    0.0    0.00    0.00       2         T1_Driver_Init [797]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [640]
[798]    0.0    0.00    0.00       2         T42_Driver_Done [798]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[799]    0.0    0.00    0.00       2         T42_Driver_Init [799]
                0.00    0.00       2/10          FT_Get_Module [685]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[800]    0.0    0.00    0.00       2         T42_Get_Interface [800]
-----------------------------------------------
                0.00    0.00       2/2           tt_driver_done [871]
[801]    0.0    0.00    0.00       2         TT_Done_Context [801]
                0.00    0.00       8/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       2/2           tt_driver_init [872]
[802]    0.0    0.00    0.00       2         TT_New_Context [802]
                0.00    0.00       2/116         ft_mem_alloc [622]
                0.00    0.00       2/22          ft_mem_realloc [659]
-----------------------------------------------
                0.00    0.00       1/2           spu_Render [145]
                0.00    0.00       1/2           filter_chain_AppendFilter [319]
[803]    0.0    0.00    0.00       2         UpdateBufferFunctions [803]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [230]
[804]    0.0    0.00    0.00       2         WallPaperCallback <cycle 5> [804]
                                   4             var_TriggerCallback <cycle 5> [376]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [230]
[805]    0.0    0.00    0.00       2         ZoomCallback <cycle 5> [805]
                                   2             var_SetChecked <cycle 5> [235]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [640]
[806]    0.0    0.00    0.00       2         af_autofitter_done [806]
                0.00    0.00       2/2           af_glyph_hints_done [809]
                0.00    0.00       2/366         ft_mem_free [606]
                0.00    0.00       2/16          FT_GlyphLoader_Done [667]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[807]    0.0    0.00    0.00       2         af_autofitter_init [807]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[808]    0.0    0.00    0.00       2         af_get_interface [808]
-----------------------------------------------
                0.00    0.00       2/2           af_autofitter_done [806]
[809]    0.0    0.00    0.00       2         af_glyph_hints_done [809]
                0.00    0.00      12/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       2/2           SetupOutputFormat [307]
[810]    0.0    0.00    0.00       2         aout_CheckChannelExtraction [810]
-----------------------------------------------
                0.00    0.00       2/2           av_buffer_pool_uninit [720]
[811]    0.0    0.00    0.00       2         av_buffer_default_free [811]
-----------------------------------------------
                0.00    0.00       1/2           avcodec_open2 [165]
                0.00    0.00       1/2           avcodec_close [414]
[812]    0.0    0.00    0.00       2         av_codec_is_encoder [812]
-----------------------------------------------
                0.00    0.00       2/2           av_opt_set_defaults [752]
[813]    0.0    0.00    0.00       2         av_d2q [813]
                0.00    0.00       2/2           av_reduce [818]
-----------------------------------------------
                0.00    0.00       1/2           ffmpeg_OpenCodec [164]
                0.00    0.00       1/2           av_opt_set_dict [979]
[814]    0.0    0.00    0.00       2         av_dict_free [814]
-----------------------------------------------
                0.00    0.00       1/2           ffmpeg_OpenCodec [164]
                0.00    0.00       1/2           av_opt_set_dict [979]
[815]    0.0    0.00    0.00       2         av_dict_get [815]
-----------------------------------------------
                0.00    0.00       2/2           av_reduce [818]
[816]    0.0    0.00    0.00       2         av_gcd [816]
-----------------------------------------------
                0.00    0.00       2/2           av_opt_set_defaults [752]
[817]    0.0    0.00    0.00       2         av_opt_set_q [817]
                0.00    0.00       2/167         av_opt_find2 [616]
-----------------------------------------------
                0.00    0.00       2/2           av_d2q [813]
[818]    0.0    0.00    0.00       2         av_reduce [818]
                0.00    0.00       2/2           av_gcd [816]
-----------------------------------------------
                0.00    0.00       1/2           avcodec_open2 [165]
                0.00    0.00       1/2           avcodec_close [414]
[819]    0.0    0.00    0.00       2         avcodec_is_open [819]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[820]    0.0    0.00    0.00       2         bdf_driver_requester [820]
-----------------------------------------------
                0.00    0.00       2/2           CreateDecoder <cycle 4> [494]
[821]    0.0    0.00    0.00       2         block_FifoNew [821]
                0.00    0.00       4/10437       vlc_cond_init [568]
                0.00    0.00       2/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [640]
[822]    0.0    0.00    0.00       2         cff_driver_done [822]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[823]    0.0    0.00    0.00       2         cff_driver_init [823]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[824]    0.0    0.00    0.00       2         cff_get_interface [824]
                0.00    0.00       4/28          ft_service_list_lookup [650]
                0.00    0.00       2/10          FT_Get_Module [685]
                0.00    0.00       2/6           sfnt_get_interface [716]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [640]
[825]    0.0    0.00    0.00       2         cid_driver_done [825]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[826]    0.0    0.00    0.00       2         cid_driver_init [826]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[827]    0.0    0.00    0.00       2         cid_get_interface [827]
-----------------------------------------------
                0.00    0.00       2/2           ThreadChangeFilters [257]
[828]    0.0    0.00    0.00       2         config_ChainCreate [828]
-----------------------------------------------
                                   2             input_DecoderNew <cycle 4> [847]
[829]    0.0    0.00    0.00       2         decoder_New <cycle 4> [829]
                0.00    0.00       2/4           vlc_clone_attr [746]
                0.00    0.00       2/4           vlc_clone [745]
                                   2             CreateDecoder <cycle 4> [494]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [831]
[830]    0.0    0.00    0.00       2         destroy_charmaps [830]
                0.00    0.00       8/366         ft_mem_free [606]
                0.00    0.00       6/6           ft_cmap_done_internal [707]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_Face [768]
[831]    0.0    0.00    0.00       2         destroy_face [831]
                0.00    0.00       6/366         ft_mem_free [606]
                0.00    0.00       2/2           FT_Done_GlyphSlot [770]
                0.00    0.00       2/20          FT_List_Finalize [662]
                0.00    0.00       2/2           destroy_charmaps [830]
                0.00    0.00       2/2           tt_face_done [874]
                0.00    0.00       2/2           FT_Stream_Free [787]
-----------------------------------------------
                0.00    0.00       2/2           FT_List_Finalize [662]
[832]    0.0    0.00    0.00       2         destroy_size [832]
                0.00    0.00       2/2           tt_size_done [894]
                0.00    0.00       2/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [312]
[833]    0.0    0.00    0.00       2         ff_getSwsFunc [833]
                0.00    0.00       2/2           ff_sws_init_output_funcs [836]
                0.00    0.00       2/2           ff_sws_init_input_funcs [835]
-----------------------------------------------
                0.00    0.00       2/2           aac_decode_init [166]
[834]    0.0    0.00    0.00       2         ff_kbd_window_init [834]
-----------------------------------------------
                0.00    0.00       2/2           ff_getSwsFunc [833]
[835]    0.0    0.00    0.00       2         ff_sws_init_input_funcs [835]
-----------------------------------------------
                0.00    0.00       2/2           ff_getSwsFunc [833]
[836]    0.0    0.00    0.00       2         ff_sws_init_output_funcs [836]
                0.00    0.00       6/25          av_pix_fmt_desc_get [652]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_Close [786]
[837]    0.0    0.00    0.00       2         ft_ansi_stream_close [837]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [640]
[838]    0.0    0.00    0.00       2         ft_black_done [838]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[839]    0.0    0.00    0.00       2         ft_black_new [839]
                0.00    0.00       2/116         ft_mem_alloc [622]
-----------------------------------------------
                0.00    0.00       2/2           ft_raster1_init [844]
[840]    0.0    0.00    0.00       2         ft_black_reset [840]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_GlyphSlot [770]
[841]    0.0    0.00    0.00       2         ft_glyphslot_done [841]
                0.00    0.00       4/366         ft_mem_free [606]
                0.00    0.00       2/2           ft_glyphslot_free_bitmap [842]
                0.00    0.00       2/16          FT_GlyphLoader_Done [667]
-----------------------------------------------
                0.00    0.00       2/2           ft_glyphslot_done [841]
[842]    0.0    0.00    0.00       2         ft_glyphslot_free_bitmap [842]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_init_face [862]
[843]    0.0    0.00    0.00       2         ft_module_get_service [843]
                0.00    0.00      20/28          ft_service_list_lookup [650]
                0.00    0.00       2/2           tt_get_interface [893]
                0.00    0.00       2/2           psnames_get_service [860]
                0.00    0.00       2/2           af_get_interface [808]
                0.00    0.00       2/6           sfnt_get_interface [716]
                0.00    0.00       2/2           bdf_driver_requester [820]
                0.00    0.00       2/2           pcf_driver_requester [855]
                0.00    0.00       2/2           winfnt_get_service [905]
                0.00    0.00       2/2           T42_Get_Interface [800]
                0.00    0.00       2/2           pfr_get_service [856]
                0.00    0.00       2/2           cid_get_interface [827]
                0.00    0.00       2/2           cff_get_interface [824]
                0.00    0.00       2/2           Get_Interface [793]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[844]    0.0    0.00    0.00       2         ft_raster1_init [844]
                0.00    0.00       2/2           ft_black_reset [840]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [896]
[845]    0.0    0.00    0.00       2         ft_recompute_scaled_metrics [845]
                0.00    0.00       8/16          FT_MulFix [672]
-----------------------------------------------
                0.00    0.00       2/2           GetOutput [14]
[846]    0.0    0.00    0.00       2         get_android_opaque_mutex [846]
-----------------------------------------------
                                   2             EsCreateDecoder <cycle 4> [366]
[847]    0.0    0.00    0.00       2         input_DecoderNew <cycle 4> [847]
                                   2             decoder_New <cycle 4> [829]
-----------------------------------------------
                0.00    0.00       2/2           EsSelect <cycle 4> [358]
[848]    0.0    0.00    0.00       2         input_SendEventTeletextSelect [848]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_from_input_item [408]
                0.00    0.00       1/2           Create [180]
[849]    0.0    0.00    0.00       2         input_item_Hold [849]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_location [381]
                0.00    0.00       1/2           Destructor [928]
[850]    0.0    0.00    0.00       2         input_item_Release [850]
-----------------------------------------------
                                   1             es_out_Control <cycle 4> [214]
                0.00    0.00       1/31285       input_resource_Terminate [293]
[851]    0.0    0.00    0.00       2         input_resource_TerminateVout <cycle 4> [851]
                                   2             input_resource_RequestVout <cycle 4> [231]
-----------------------------------------------
                0.00    0.00       2/2           AndroidLockSurface [323]
[852]    0.0    0.00    0.00       2         jni_SetAndroidSurfaceSize [852]
                0.00    0.00       2/2           jni_SetAndroidSurfaceSizeEnv [853]
-----------------------------------------------
                0.00    0.00       2/2           jni_SetAndroidSurfaceSize [852]
[853]    0.0    0.00    0.00       2         jni_SetAndroidSurfaceSizeEnv [853]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [781]
[854]    0.0    0.00    0.00       2         open_face [854]
                0.00    0.00       4/116         ft_mem_alloc [622]
                0.00    0.00       2/2           tt_face_init [878]
                0.00    0.00       2/4           find_unicode_charmap [736]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[855]    0.0    0.00    0.00       2         pcf_driver_requester [855]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[856]    0.0    0.00    0.00       2         pfr_get_service [856]
-----------------------------------------------
                0.00    0.00       1/2           Open [245]
                0.00    0.00       1/2           picture_pool_New [1028]
[857]    0.0    0.00    0.00       2         picture_pool_NewExtended [857]
                0.00    0.00       2/3           Create [750]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [640]
[858]    0.0    0.00    0.00       2         ps_hinter_done [858]
                0.00    0.00       8/8           ps_mask_table_done [689]
                0.00    0.00       4/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[859]    0.0    0.00    0.00       2         ps_hinter_init [859]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[860]    0.0    0.00    0.00       2         psnames_get_service [860]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_done [874]
[861]    0.0    0.00    0.00       2         sfnt_done_face [861]
                0.00    0.00      14/366         ft_mem_free [606]
                0.00    0.00       8/18          FT_Stream_ReleaseFrame [664]
                0.00    0.00       2/2           tt_face_free_ps_names [877]
                0.00    0.00       2/2           tt_face_free_eblc [875]
                0.00    0.00       2/2           tt_face_free_name [876]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [878]
[862]    0.0    0.00    0.00       2         sfnt_init_face [862]
                0.00    0.00       2/2           ft_module_get_service [843]
                0.00    0.00       2/8           FT_Stream_Pos [688]
                0.00    0.00       2/6           FT_Stream_ReadULong [700]
                0.00    0.00       2/116         ft_mem_alloc [622]
                0.00    0.00       2/36          FT_Stream_Seek [641]
                0.00    0.00       2/2           tt_face_load_font_dir [882]
                0.00    0.00       2/4           FT_Get_Module_Interface [729]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [878]
[863]    0.0    0.00    0.00       2         sfnt_load_face [863]
                0.00    0.00      12/12          tt_face_get_name [680]
                0.00    0.00       6/102         FT_Stream_ReadFields [627]
                0.00    0.00       4/4           tt_face_load_hhea [742]
                0.00    0.00       2/2           tt_face_load_generic_header [884]
                0.00    0.00       2/2           tt_face_load_head [885]
                0.00    0.00       2/2           tt_face_load_maxp [888]
                0.00    0.00       2/2           tt_face_load_cmap [879]
                0.00    0.00       2/2           tt_face_load_name [889]
                0.00    0.00       2/2           tt_face_load_post [892]
                0.00    0.00       2/2           tt_face_load_eblc [881]
                0.00    0.00       2/2           tt_face_load_pclt [891]
                0.00    0.00       2/2           tt_face_load_gasp [883]
                0.00    0.00       2/2           tt_face_load_kern [887]
                0.00    0.00       2/2           tt_face_build_cmaps [873]
                0.00    0.00       2/2           tt_face_load_hmtx [886]
                0.00    0.00       2/2           tt_face_load_os2 [890]
-----------------------------------------------
                0.00    0.00       2/2           subtitles_Detect [322]
[864]    0.0    0.00    0.00       2         strcpy_strip_ext [864]
-----------------------------------------------
                0.00    0.00       2/2           subtitles_Detect [322]
[865]    0.0    0.00    0.00       2         strcpy_trim [865]
-----------------------------------------------
                0.00    0.00       2/2           GetParameters [433]
[866]    0.0    0.00    0.00       2         sws_freeContext [866]
                0.00    0.00      56/71794       av_freep [547]
                0.00    0.00       2/71997       av_free [546]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [312]
[867]    0.0    0.00    0.00       2         sws_isSupportedInput [867]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [312]
[868]    0.0    0.00    0.00       2         sws_isSupportedOutput [868]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_build_cmaps [873]
[869]    0.0    0.00    0.00       2         tt_cmap6_validate [869]
-----------------------------------------------
                0.00    0.00       2/2           FT_CMap_New [699]
[870]    0.0    0.00    0.00       2         tt_cmap_init [870]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [640]
[871]    0.0    0.00    0.00       2         tt_driver_done [871]
                0.00    0.00       2/2           TT_Done_Context [801]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [639]
[872]    0.0    0.00    0.00       2         tt_driver_init [872]
                0.00    0.00       2/2           TT_New_Context [802]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[873]    0.0    0.00    0.00       2         tt_face_build_cmaps [873]
                0.00    0.00       6/6           ft_validator_init [709]
                0.00    0.00       6/6           FT_CMap_New [699]
                0.00    0.00       4/4           tt_cmap4_validate [741]
                0.00    0.00       2/2           tt_cmap6_validate [869]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [831]
[874]    0.0    0.00    0.00       2         tt_face_done [874]
                0.00    0.00       8/18          FT_Stream_ReleaseFrame [664]
                0.00    0.00       4/366         ft_mem_free [606]
                0.00    0.00       2/2           sfnt_done_face [861]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [861]
[875]    0.0    0.00    0.00       2         tt_face_free_eblc [875]
                0.00    0.00       2/18          FT_Stream_ReleaseFrame [664]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [861]
[876]    0.0    0.00    0.00       2         tt_face_free_name [876]
                0.00    0.00      56/366         ft_mem_free [606]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [861]
[877]    0.0    0.00    0.00       2         tt_face_free_ps_names [877]
-----------------------------------------------
                0.00    0.00       2/2           open_face [854]
[878]    0.0    0.00    0.00       2         tt_face_init [878]
                0.00    0.00      10/42          tt_face_goto_table [638]
                0.00    0.00       6/36          FT_Stream_Seek [641]
                0.00    0.00       2/4           FT_Get_Module_Interface [729]
                0.00    0.00       2/2           sfnt_init_face [862]
                0.00    0.00       2/2           sfnt_load_face [863]
                0.00    0.00       2/2           tt_face_load_cvt [880]
                0.00    0.00       2/4           FT_Stream_ExtractFrame [730]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[879]    0.0    0.00    0.00       2         tt_face_load_cmap [879]
                0.00    0.00       2/36          FT_Stream_Seek [641]
                0.00    0.00       2/42          tt_face_goto_table [638]
                0.00    0.00       2/4           FT_Stream_ExtractFrame [730]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [878]
[880]    0.0    0.00    0.00       2         tt_face_load_cvt [880]
                0.00    0.00       2/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[881]    0.0    0.00    0.00       2         tt_face_load_eblc [881]
                0.00    0.00       6/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_init_face [862]
[882]    0.0    0.00    0.00       2         tt_face_load_font_dir [882]
                0.00    0.00     112/112         FT_Stream_GetULong [626]
                0.00    0.00      30/102         FT_Stream_ReadFields [627]
                0.00    0.00       8/36          FT_Stream_Seek [641]
                0.00    0.00       4/6           FT_Stream_ReadULong [700]
                0.00    0.00       2/8           FT_Stream_Pos [688]
                0.00    0.00       2/22          ft_mem_realloc [659]
                0.00    0.00       2/56          FT_Stream_EnterFrame [633]
                0.00    0.00       2/52          FT_Stream_ExitFrame [634]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[883]    0.0    0.00    0.00       2         tt_face_load_gasp [883]
                0.00    0.00       2/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[884]    0.0    0.00    0.00       2         tt_face_load_generic_header [884]
                0.00    0.00       2/36          FT_Stream_Seek [641]
                0.00    0.00       2/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[885]    0.0    0.00    0.00       2         tt_face_load_head [885]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[886]    0.0    0.00    0.00       2         tt_face_load_hmtx [886]
                0.00    0.00       2/36          FT_Stream_Seek [641]
                0.00    0.00       2/42          tt_face_goto_table [638]
                0.00    0.00       2/8           FT_Stream_Pos [688]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[887]    0.0    0.00    0.00       2         tt_face_load_kern [887]
                0.00    0.00       2/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[888]    0.0    0.00    0.00       2         tt_face_load_maxp [888]
                0.00    0.00       4/102         FT_Stream_ReadFields [627]
                0.00    0.00       2/36          FT_Stream_Seek [641]
                0.00    0.00       2/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[889]    0.0    0.00    0.00       2         tt_face_load_name [889]
                0.00    0.00      56/102         FT_Stream_ReadFields [627]
                0.00    0.00       2/36          FT_Stream_Seek [641]
                0.00    0.00       2/42          tt_face_goto_table [638]
                0.00    0.00       2/8           FT_Stream_Pos [688]
                0.00    0.00       2/22          ft_mem_realloc [659]
                0.00    0.00       2/56          FT_Stream_EnterFrame [633]
                0.00    0.00       2/52          FT_Stream_ExitFrame [634]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[890]    0.0    0.00    0.00       2         tt_face_load_os2 [890]
                0.00    0.00       4/102         FT_Stream_ReadFields [627]
                0.00    0.00       2/36          FT_Stream_Seek [641]
                0.00    0.00       2/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[891]    0.0    0.00    0.00       2         tt_face_load_pclt [891]
                0.00    0.00       2/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [863]
[892]    0.0    0.00    0.00       2         tt_face_load_post [892]
                0.00    0.00       2/36          FT_Stream_Seek [641]
                0.00    0.00       2/42          tt_face_goto_table [638]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[893]    0.0    0.00    0.00       2         tt_get_interface [893]
                0.00    0.00       4/28          ft_service_list_lookup [650]
                0.00    0.00       2/10          FT_Get_Module [685]
                0.00    0.00       2/6           sfnt_get_interface [716]
-----------------------------------------------
                0.00    0.00       2/2           destroy_size [832]
[894]    0.0    0.00    0.00       2         tt_size_done [894]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_Size [780]
[895]    0.0    0.00    0.00       2         tt_size_init [895]
-----------------------------------------------
                0.00    0.00       2/2           FT_Request_Size [783]
[896]    0.0    0.00    0.00       2         tt_size_request [896]
                0.00    0.00       2/2           ft_recompute_scaled_metrics [845]
                0.00    0.00       2/2           FT_Request_Metrics [782]
                0.00    0.00       2/2           tt_size_reset [897]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [896]
[897]    0.0    0.00    0.00       2         tt_size_reset [897]
                0.00    0.00       8/16          FT_MulFix [672]
                0.00    0.00       6/10          FT_DivFix [684]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_GlyphSlot [777]
[898]    0.0    0.00    0.00       2         tt_slot_init [898]
-----------------------------------------------
                0.00    0.00       1/2           Open [245]
                0.00    0.00       1/2           VoutValidateFormat [343]
[899]    0.0    0.00    0.00       2         video_format_FixRgb [899]
-----------------------------------------------
                0.00    0.00       1/2           demux_sys_t::~demux_sys_t() [302]
                0.00    0.00       1/2           ControlPause [405]
[900]    0.0    0.00    0.00       2         vlc_meta_Delete [900]
-----------------------------------------------
                0.00    0.00       1/2           Control(demux_t*, int, std::__va_list) [16204]
                0.00    0.00       1/2           EsOutControl <cycle 4> [144]
[901]    0.0    0.00    0.00       2         vlc_meta_Merge [901]
-----------------------------------------------
                0.00    0.00       2/2           Thread [13]
[902]    0.0    0.00    0.00       2         vout_SetDisplayAspect [902]
-----------------------------------------------
                0.00    0.00       2/2           Thread [13]
[903]    0.0    0.00    0.00       2         vout_SetDisplayCrop [903]
-----------------------------------------------
                0.00    0.00       2/2           Thread [13]
[904]    0.0    0.00    0.00       2         vout_SetDisplayZoom [904]
                0.00    0.00       2/70          vlc_ureduce [630]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [843]
[905]    0.0    0.00    0.00       2         winfnt_get_service [905]
-----------------------------------------------
                0.00    0.00       1/2           std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::_Rep::_M_clone(std::allocator<wchar_t> const&, unsigned int) [23180]
                0.00    0.00       1/2           wchar_t* std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::_S_construct<wchar_t*>(wchar_t*, wchar_t*, std::allocator<wchar_t> const&, std::forward_iterator_tag) [23159]
[906]    0.0    0.00    0.00       2         wmemcpy [906]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[907]    0.0    0.00    0.00       1         Activate [907]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[908]    0.0    0.00    0.00       1         Activate [908]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[909]    0.0    0.00    0.00       1         Activate [909]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[910]    0.0    0.00    0.00       1         Activate [910]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[911]    0.0    0.00    0.00       1         Activate [911]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[912]    0.0    0.00    0.00       1         Activate [912]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[913]    0.0    0.00    0.00       1         Activate [913]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[914]    0.0    0.00    0.00       1         Activate [914]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput [14]
[915]    0.0    0.00    0.00       1         ArchitectureSpecificCopyHooks [915]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[916]    0.0    0.00    0.00       1         Close [916]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[917]    0.0    0.00    0.00       1         Close [917]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[918]    0.0    0.00    0.00       1         Close [918]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[919]    0.0    0.00    0.00       1         CloseDecoder [919]
                0.00    0.00       1/2           ArchitectureSpecificCopyHooksDestroy [763]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[920]    0.0    0.00    0.00       1         Create [920]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[921]    0.0    0.00    0.00       1         Create [921]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[922]    0.0    0.00    0.00       1         Create [922]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[923]    0.0    0.00    0.00       1         Create [923]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[924]    0.0    0.00    0.00       1         DecoderOpen [924]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[925]    0.0    0.00    0.00       1         DecoderOpen [925]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[926]    0.0    0.00    0.00       1         DecoderOpen [926]
-----------------------------------------------
                0.00    0.00       1/1           End [298]
[927]    0.0    0.00    0.00       1         Destroy [927]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [382]
[928]    0.0    0.00    0.00       1         Destructor [928]
                0.00    0.00       2/10432       vlc_mutex_destroy [569]
                0.00    0.00       1/1           EsOutDelete [930]
                0.00    0.00       1/1           input_resource_Release [1019]
                0.00    0.00       1/2           input_item_Release [850]
                0.00    0.00       1/10405       vlc_cond_destroy [570]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetURI [527]
[929]    0.0    0.00    0.00       1         EnsureUTF8 [929]
                0.00    0.00      75/75          vlc_towc [629]
-----------------------------------------------
                0.00    0.00       1/1           Destructor [928]
[930]    0.0    0.00    0.00       1         EsOutDelete [930]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [246]
[931]    0.0    0.00    0.00       1         FileClose [931]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_DeleteFilterInternal [276]
[932]    0.0    0.00    0.00       1         FilterAllocationClean [932]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFilterInternal [320]
[933]    0.0    0.00    0.00       1         FilterAllocationInit [933]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput [14]
[934]    0.0    0.00    0.00       1         IgnoreOmxDecoderPadding [934]
-----------------------------------------------
                0.00    0.00       1/1           Open [245]
[935]    0.0    0.00    0.00       1         LoadNativeWindowAPI [935]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [219]
[936]    0.0    0.00    0.00       1         MRLSeekPoint [936]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[937]    0.0    0.00    0.00       1         Open [937]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[938]    0.0    0.00    0.00       1         Open [938]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[939]    0.0    0.00    0.00       1         Open [939]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[940]    0.0    0.00    0.00       1         Open [940]
                0.00    0.00       1/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[941]    0.0    0.00    0.00       1         Open [941]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[942]    0.0    0.00    0.00       1         Open [942]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[943]    0.0    0.00    0.00       1         Open [943]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[944]    0.0    0.00    0.00       1         Open [944]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[945]    0.0    0.00    0.00       1         Open [945]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[946]    0.0    0.00    0.00       1         OpenBzip2 [946]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[947]    0.0    0.00    0.00       1         OpenCommon [947]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[948]    0.0    0.00    0.00       1         OpenDecoder [948]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[949]    0.0    0.00    0.00       1         OpenDecoder [949]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[950]    0.0    0.00    0.00       1         OpenDecoder [950]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[951]    0.0    0.00    0.00       1         OpenDecoder [951]
                0.00    0.00       1/7           module_exists [693]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[952]    0.0    0.00    0.00       1         OpenDecoder [952]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[953]    0.0    0.00    0.00       1         OpenDecoder [953]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[954]    0.0    0.00    0.00       1         OpenDecoder [954]
                0.00    0.00       1/7           module_exists [693]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[955]    0.0    0.00    0.00       1         OpenDecoder [955]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[956]    0.0    0.00    0.00       1         OpenDecoder [956]
                0.00    0.00       1/7           module_exists [693]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[957]    0.0    0.00    0.00       1         OpenDecoder [957]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[958]    0.0    0.00    0.00       1         OpenDecoder [958]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[959]    0.0    0.00    0.00       1         OpenDecoder [959]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[960]    0.0    0.00    0.00       1         OpenFilter [960]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[961]    0.0    0.00    0.00       1         OpenFilter [961]
                0.00    0.00       1/7           vlc_CPU [697]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[962]    0.0    0.00    0.00       1         OpenFilter [962]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[963]    0.0    0.00    0.00       1         OpenGzip [963]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[964]    0.0    0.00    0.00       1         OpenXZ [964]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[965]    0.0    0.00    0.00       1         Probe [965]
                0.00    0.00       1/7           vlc_CPU [697]
-----------------------------------------------
                0.00    0.00       1/1           RarStreamOpen [967]
[966]    0.0    0.00    0.00       1         RarProbe [966]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[967]    0.0    0.00    0.00       1         RarStreamOpen [967]
                0.00    0.00       1/1           RarProbe [966]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputDelete [434]
[968]    0.0    0.00    0.00       1         Stop [968]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[969]    0.0    0.00    0.00       1         StreamOpen [969]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [382]
[970]    0.0    0.00    0.00       1         VoutDestructor [970]
                0.00    0.00       3/10432       vlc_mutex_destroy [569]
                0.00    0.00       1/1           vout_control_Clean [1044]
                0.00    0.00       1/1           vout_snapshot_Clean [1047]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_close [414]
[971]    0.0    0.00    0.00       1         aac_decode_close [971]
                0.00    0.00      69/71794       av_freep [547]
                0.00    0.00       5/6           ff_fft_end [704]
                0.00    0.00       5/6           ff_mdct_end [706]
                0.00    0.00       1/1           ff_aac_sbr_ctx_close [987]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [382]
[972]    0.0    0.00    0.00       1         aout_Destructor [972]
                0.00    0.00       3/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           Start [347]
[973]    0.0    0.00    0.00       1         aout_get_native_sample_rate [973]
-----------------------------------------------
                0.00    0.00       1/1           ff_tak_init_crc [1005]
[974]    0.0    0.00    0.00       1         av_crc_init [974]
-----------------------------------------------
                0.00    0.00       1/1           av_samples_get_buffer_size [980]
[975]    0.0    0.00    0.00       1         av_get_bytes_per_sample [975]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [93]
[976]    0.0    0.00    0.00       1         av_log_set_level [976]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_close [414]
[977]    0.0    0.00    0.00       1         av_opt_free [977]
                0.00    0.00     321/26146       av_opt_next [553]
                0.00    0.00       1/71794       av_freep [547]
-----------------------------------------------
                0.00    0.00       1/1           av_opt_set_defaults [752]
[978]    0.0    0.00    0.00       1         av_opt_set [978]
                0.00    0.00       1/167         av_opt_find2 [616]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_open2 [165]
[979]    0.0    0.00    0.00       1         av_opt_set_dict [979]
                0.00    0.00       1/2           av_dict_get [815]
                0.00    0.00       1/71794       av_freep [547]
                0.00    0.00       1/2           av_dict_free [814]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_default_get_buffer2 [47]
[980]    0.0    0.00    0.00       1         av_samples_get_buffer_size [980]
                0.00    0.00       1/1           av_get_bytes_per_sample [975]
                0.00    0.00       1/11942       av_sample_fmt_is_planar [563]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [93]
[981]    0.0    0.00    0.00       1         avcodec_find_decoder [981]
                0.00    0.00     174/176         av_codec_is_decoder [612]
-----------------------------------------------
                0.00    0.00       1/1           DecodeAudio [5]
[982]    0.0    0.00    0.00       1         avcodec_flush_buffers [982]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[983]    0.0    0.00    0.00       1         avpriv_float_dsp_init [983]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [411]
[984]    0.0    0.00    0.00       1         avpriv_mpeg4audio_get_config [984]
-----------------------------------------------
                0.00    0.00       1/1           InitAudioDec [163]
[985]    0.0    0.00    0.00       1         date_Init [985]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::InitUi() [237]
[986]    0.0    0.00    0.00       1         demux_GetParentInput [986]
                0.00    0.00       1/46          vlc_object_hold [635]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_close [971]
[987]    0.0    0.00    0.00       1         ff_aac_sbr_ctx_close [987]
                0.00    0.00       1/71794       av_freep [547]
                0.00    0.00       1/6           ff_fft_end [704]
                0.00    0.00       1/6           ff_mdct_end [706]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[988]    0.0    0.00    0.00       1         ff_aac_tableinit [988]
-----------------------------------------------
                0.00    0.00       1/1           atrac3_init_static_data [211]
[989]    0.0    0.00    0.00       1         ff_atrac_generate_tables [989]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [126]
[990]    0.0    0.00    0.00       1         ff_dsputil_static_init [990]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[991]    0.0    0.00    0.00       1         ff_float_dsp_init_arm [991]
                0.00    0.00       1/13          av_get_cpu_flags [677]
                0.00    0.00       1/1           ff_float_dsp_init_vfp [993]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[992]    0.0    0.00    0.00       1         ff_float_dsp_init_neon [992]
-----------------------------------------------
                0.00    0.00       1/1           ff_float_dsp_init_arm [991]
[993]    0.0    0.00    0.00       1         ff_float_dsp_init_vfp [993]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[994]    0.0    0.00    0.00       1         ff_fmt_convert_init [994]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [166]
[995]    0.0    0.00    0.00       1         ff_fmt_convert_init_arm [995]
                0.00    0.00       1/13          av_get_cpu_flags [677]
-----------------------------------------------
                0.00    0.00       1/1           av_get_cpu_flags [677]
[996]    0.0    0.00    0.00       1         ff_get_cpu_flags_arm [996]
-----------------------------------------------
                0.00    0.00       1/1           jpeg2000_init_static_data [1021]
[997]    0.0    0.00    0.00       1         ff_jpeg2000_init_tier1_luts [997]
-----------------------------------------------
                0.00    0.00       1/1           qdm2_init_static_data [179]
[998]    0.0    0.00    0.00       1         ff_mpa_synth_init_float [998]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [126]
[999]    0.0    0.00    0.00       1         ff_mqc_init_context_tables [999]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [420]
[1000]   0.0    0.00    0.00       1         ff_ps_ctx_init [1000]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [420]
[1001]   0.0    0.00    0.00       1         ff_psdsp_init [1001]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [420]
[1002]   0.0    0.00    0.00       1         ff_psdsp_init_arm [1002]
                0.00    0.00       1/13          av_get_cpu_flags [677]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [410]
[1003]   0.0    0.00    0.00       1         ff_sbrdsp_init [1003]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [410]
[1004]   0.0    0.00    0.00       1         ff_sbrdsp_init_arm [1004]
                0.00    0.00       1/13          av_get_cpu_flags [677]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [126]
[1005]   0.0    0.00    0.00       1         ff_tak_init_crc [1005]
                0.00    0.00       1/1           av_crc_init [974]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_open2 [165]
[1006]   0.0    0.00    0.00       1         ff_thread_init [1006]
-----------------------------------------------
                0.00    0.00       1/1           spu_Render [145]
[1007]   0.0    0.00    0.00       1         filter_chain_AppendFromString [1007]
                0.00    0.00       1/1           filter_chain_AppendFromStringInternal [1008]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFromString [1007]
[1008]   0.0    0.00    0.00       1         filter_chain_AppendFromStringInternal [1008]
-----------------------------------------------
                0.00    0.00       1/1           access_New [318]
[1009]   0.0    0.00    0.00       1         get_path [1009]
                0.00    0.00       1/4           make_path [739]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [218]
[1010]   0.0    0.00    0.00       1         h264_get_profile_level [1010]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [290]
[1011]   0.0    0.00    0.00       1         input_SendEventProgramSelect [1011]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [290]
[1012]   0.0    0.00    0.00       1         input_SendEventTeletextDel [1012]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [219]
[1013]   0.0    0.00    0.00       1         input_SplitMRL [1013]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_play [178]
[1014]   0.0    0.00    0.00       1         input_Start [1014]
                0.00    0.00       1/4           vlc_clone_attr [746]
                0.00    0.00       1/4           vlc_clone [745]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [144]
[1015]   0.0    0.00    0.00       1         input_clock_Delete [1015]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [288]
[1016]   0.0    0.00    0.00       1         input_clock_New [1016]
                0.00    0.00       1/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       1/1           Create [180]
[1017]   0.0    0.00    0.00       1         input_resource_Hold [1017]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_new [188]
[1018]   0.0    0.00    0.00       1         input_resource_New [1018]
                0.00    0.00       2/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       1/1           Destructor [928]
[1019]   0.0    0.00    0.00       1         input_resource_Release [1019]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [218]
[1020]   0.0    0.00    0.00       1         jni_IsVideoPlayerActivityCreated [1020]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [126]
[1021]   0.0    0.00    0.00       1         jpeg2000_init_static_data [1021]
                0.00    0.00       1/1           ff_jpeg2000_init_tier1_luts [997]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[1022]   0.0    0.00    0.00       1         libvlc_media_event_manager [1022]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[1023]   0.0    0.00    0.00       1         libvlc_media_player_event_manager [1023]
-----------------------------------------------
                0.00    0.00       1/1           stopped_callback [12345]
[1024]   0.0    0.00    0.00       1         libvlc_media_subitems [1024]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFilterInternal [320]
[1025]   0.0    0.00    0.00       1         module_get_name [1025]
                0.00    0.00       1/45          module_get_object [636]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [176]
[1026]   0.0    0.00    0.00       1         picture_fifo_New [1026]
                0.00    0.00       1/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [190]
[1027]   0.0    0.00    0.00       1         picture_pool_GetSize [1027]
-----------------------------------------------
                0.00    0.00       1/1           picture_pool_NewFromFormat [192]
[1028]   0.0    0.00    0.00       1         picture_pool_New [1028]
                0.00    0.00       1/2           picture_pool_NewExtended [857]
-----------------------------------------------
                0.00    0.00       1/1           Thread [13]
[1029]   0.0    0.00    0.00       1         picture_pool_NonEmpty [1029]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [190]
[1030]   0.0    0.00    0.00       1         picture_pool_Reserve [1030]
                0.00    0.00       1/3           Create [750]
-----------------------------------------------
                0.00    0.00       1/1           input_ControlVarNavigation [349]
[1031]   0.0    0.00    0.00       1         secstotimestr [1031]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [187]
[1032]   0.0    0.00    0.00       1         setLong [1032]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [411]
[1033]   0.0    0.00    0.00       1         sniff_channel_order [1033]
-----------------------------------------------
                0.00    0.00       1/1           sws_init_context [312]
[1034]   0.0    0.00    0.00       1         sws_rgb2rgb_init [1034]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [126]
[1035]   0.0    0.00    0.00       1         tak_init_static_data [1035]
-----------------------------------------------
                                   1             TriggerCallback <cycle 5> [230]
[1036]   0.0    0.00    0.00       1         var_Copy <cycle 5> [1036]
                                   1             var_Set <cycle 5> [744]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [234]
[1037]   0.0    0.00    0.00       1         vlc_audio_replay_gain_MergeFromMeta [1037]
                0.00    0.00       7/7           vlc_meta_GetExtra [698]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewWithType [425]
[1038]   0.0    0.00    0.00       1         vlc_event_manager_init [1038]
                0.00    0.00       1/10463       vlc_mutex_init [567]
                0.00    0.00       1/5           vlc_mutex_init_recursive [724]
-----------------------------------------------
                0.00    0.00       1/1           ObjectKillChildrens [505]
[1039]   0.0    0.00    0.00       1         vlc_list_release [1039]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetPreparsed [458]
[1040]   0.0    0.00    0.00       1         vlc_meta_GetStatus [1040]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetPreparsed [458]
[1041]   0.0    0.00    0.00       1         vlc_meta_SetStatus [1041]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_new [188]
[1042]   0.0    0.00    0.00       1         vlc_object_create [1042]
-----------------------------------------------
                0.00    0.00       1/1           FileOpen [325]
[1043]   0.0    0.00    0.00       1         vlc_open [1043]
-----------------------------------------------
                0.00    0.00       1/1           VoutDestructor [970]
[1044]   0.0    0.00    0.00       1         vout_control_Clean [1044]
                0.00    0.00       2/10405       vlc_cond_destroy [570]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [198]
[1045]   0.0    0.00    0.00       1         vout_control_Init [1045]
                0.00    0.00       2/10437       vlc_cond_init [568]
                0.00    0.00       1/10463       vlc_mutex_init [567]
-----------------------------------------------
                0.00    0.00       1/1           DisplayNew [273]
[1046]   0.0    0.00    0.00       1         vout_display_GetDefaultDisplaySize [1046]
-----------------------------------------------
                0.00    0.00       1/1           VoutDestructor [970]
[1047]   0.0    0.00    0.00       1         vout_snapshot_Clean [1047]
                0.00    0.00       1/10405       vlc_cond_destroy [570]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [198]
[1048]   0.0    0.00    0.00       1         vout_snapshot_Init [1048]
                0.00    0.00       1/10463       vlc_mutex_init [567]
                0.00    0.00       1/10437       vlc_cond_init [568]
-----------------------------------------------
                0.00    0.00       1/63875       libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [16541]
                0.00    0.00       2/63875       libmatroska::KaxSegmentUID::ValidateSize() const [16451]
                0.00    0.00       2/63875       libebml::EbmlDate::ValidateSize() const [16482]
                0.00    0.00       3/63875       libebml::EbmlFloat::ValidateSize() const [16351]
                0.00    0.00       3/63875       libmatroska::KaxSeekID::ValidateSize() const [16344]
                0.00    0.00       4/63875       matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
                0.00    0.00       6/63875       libebml::EbmlBinary::ValidateSize() const [16286]
                0.00    0.00       6/63875       libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [421]
                0.00    0.00       9/63875       libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [401]
                0.00    0.00      10/63875       matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00      24/63875       libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [389]
                0.00    0.00      24/63875       libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [390]
                0.00    0.00     132/63875       matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
                0.00    0.00     210/63875       libebml::EbmlUInteger::ValidateSize() const [16207]
                0.00    0.00     946/63875       libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [228]
                0.00    0.00    7674/63875       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
                0.00    0.00    7747/63875       matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
                0.00    0.00    7979/63875       libmatroska::KaxInternalBlock::ValidateSize() const [16193]
                0.00    0.00   15157/63875       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
                0.00    0.00   23936/63875       libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [132]
[16171   0.0    0.00    0.00   63875         libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00   38651/38651       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
[16172   0.0    0.00    0.00   38651         libmatroska::DataBuffer::Size() [16172]
-----------------------------------------------
                0.00    0.00      15/29868       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00     785/29868       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
                0.00    0.00    4608/29868       libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16203]
                0.00    0.00   24460/29868       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16173   0.0    0.00    0.00   29868         libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16173]
-----------------------------------------------
                0.00    0.00   25771/25771       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
[16174   0.0    0.00    0.00   25771         libmatroska::DataBuffer::Buffer() [16174]
-----------------------------------------------
                0.00    0.00       1/15409       virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
                0.00    0.00       1/15409       virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
                0.00    0.00   15407/15409       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [16177]
[16175   0.0    0.00    0.00   15409         virtual_chapter_c::getSubChapterbyTimecode(long long) [16175]
-----------------------------------------------
                0.00    0.00       1/15404       virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
                0.00    0.00       1/15404       virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
                0.00    0.00   15402/15404       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [16177]
[16176   0.0    0.00    0.00   15404         virtual_edition_c::getChapterbyTimecode(long long) [16176]
-----------------------------------------------
                0.00    0.00   15401/15401       Demux(demux_t*) [21]
[16177   0.0    0.00    0.00   15401         virtual_segment_c::UpdateCurrentToChapter(demux_t&) [16177]
                0.00    0.00   15407/15409       virtual_chapter_c::getSubChapterbyTimecode(long long) [16175]
                0.00    0.00   15402/15404       virtual_edition_c::getChapterbyTimecode(long long) [16176]
-----------------------------------------------
                0.00    0.00    7695/15392       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [38]
                0.00    0.00    7697/15392       matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
[16178   0.0    0.00    0.00   15392         matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16178]
-----------------------------------------------
                0.00    0.00   13368/13368       libmatroska::KaxInternalBlock::ReleaseFrames() [16190]
[16179   0.0    0.00    0.00   13368         libmatroska::DataBuffer::~DataBuffer() [16179]
-----------------------------------------------
                0.00    0.00   10308/10308       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
[16180   0.0    0.00    0.00   10308         std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [16180]
-----------------------------------------------
                0.00    0.00      37/8899        libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16241]
                0.00    0.00     644/8899        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00    8218/8899        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [71]
[16181   0.0    0.00    0.00    8899         libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16181]
-----------------------------------------------
                0.00    0.00       2/8692        libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16441]
                0.00    0.00       2/8692        libmatroska::KaxDateUTC::KaxDateUTC() [16353]
                0.00    0.00       3/8692        libebml::EbmlString::EbmlString(std::string const&) [16340]
                0.00    0.00       4/8692        libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16310]
                0.00    0.00       4/8692        libebml::EbmlString::EbmlString() [16306]
                0.00    0.00      12/8692        libebml::EbmlUnicodeString::EbmlUnicodeString() [16266]
                0.00    0.00      39/8692        libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
                0.00    0.00     137/8692        libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
                0.00    0.00     361/8692        libebml::EbmlUInteger::EbmlUInteger() [16205]
                0.00    0.00    8128/8692        libebml::EbmlBinary::EbmlBinary() [16188]
[16182   0.0    0.00    0.00    8692         libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
-----------------------------------------------
                0.00    0.00       1/8688        libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16507]
                0.00    0.00       1/8688        libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16504]
                0.00    0.00       1/8688        libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16510]
                0.00    0.00       1/8688        libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16501]
                0.00    0.00       2/8688        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
                0.00    0.00       2/8688        libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16434]
                0.00    0.00       2/8688        libebml::EDocType::~EDocType() [16437]
                0.00    0.00       2/8688        libebml::EDocTypeVersion::~EDocTypeVersion() [16431]
                0.00    0.00       2/8688        libebml::EMaxSizeLength::~EMaxSizeLength() [16428]
                0.00    0.00       2/8688        libebml::EMaxIdLength::~EMaxIdLength() [16422]
                0.00    0.00       2/8688        libebml::EReadVersion::~EReadVersion() [16425]
                0.00    0.00       2/8688        libebml::EVersion::~EVersion() [16440]
                0.00    0.00       2/8688        libmatroska::KaxAudioChannels::~KaxAudioChannels() [16374]
                0.00    0.00       2/8688        libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16392]
                0.00    0.00       2/8688        libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16383]
                0.00    0.00       2/8688        libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16368]
                0.00    0.00       2/8688        libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16377]
                0.00    0.00       2/8688        libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16398]
                0.00    0.00       2/8688        libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16404]
                0.00    0.00       2/8688        libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16380]
                0.00    0.00       2/8688        libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16386]
                0.00    0.00       2/8688        libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16389]
                0.00    0.00       2/8688        libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16395]
                0.00    0.00       2/8688        libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16401]
                0.00    0.00       2/8688        libmatroska::KaxDuration::~KaxDuration() [16357]
                0.00    0.00       2/8688        libmatroska::KaxDateUTC::~KaxDateUTC() [16354]
                0.00    0.00       3/8688        libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16333]
                0.00    0.00       3/8688        libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16336]
                0.00    0.00       4/8688        libmatroska::KaxTrackType::~KaxTrackType() [16299]
                0.00    0.00       4/8688        libmatroska::KaxTrackUID::~KaxTrackUID() [16296]
                0.00    0.00       4/8688        libmatroska::KaxTrackNumber::~KaxTrackNumber() [16302]
                0.00    0.00       4/8688        libmatroska::KaxCodecID::~KaxCodecID() [16293]
                0.00    0.00       6/8688        libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16281]
                0.00    0.00       6/8688        libmatroska::KaxSeekPosition::~KaxSeekPosition() [16278]
                0.00    0.00       6/8688        libmatroska::KaxWritingApp::~KaxWritingApp() [16275]
                0.00    0.00       6/8688        libmatroska::KaxMuxingApp::~KaxMuxingApp() [16272]
                0.00    0.00      33/8688        libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16253]
                0.00    0.00      66/8688        libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16232]
                0.00    0.00      66/8688        libmatroska::KaxCueTrack::~KaxCueTrack() [16229]
                0.00    0.00      66/8688        libmatroska::KaxCueTime::~KaxCueTime() [16226]
                0.00    0.00     104/8688        libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16223]
                0.00    0.00     137/8688        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00    8122/8688        libebml::EbmlBinary::~EbmlBinary() [16187]
[16183   0.0    0.00    0.00    8688         libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00     322/8351        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00    8029/8351        EbmlParser::Get(int) [43]
[16184   0.0    0.00    0.00    8351         libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16184]
-----------------------------------------------
                                 123             libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00    8341/8341        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16185   0.0    0.00    0.00    8341+123     libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00    7979/7979        libmatroska::KaxSimpleBlock::Create() [16192]
                0.00    0.00     242/242         libebml::GetEbmlGlobal_Context() [16206]
                0.00    0.00     123/123         libmatroska::GetKaxGlobal_Context() [16219]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::Create() [16221]
                0.00    0.00      52/52          libmatroska::KaxCluster::Create() [16235]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Create() [16251]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::Create() [16230]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::Create() [16227]
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::Create() [16248]
                0.00    0.00      33/66          libmatroska::KaxCueTime::Create() [16224]
                0.00    0.00      33/33          libmatroska::KaxCuePoint::Create() [16245]
                0.00    0.00       4/4           libebml::EbmlVoid::Create() [16307]
                0.00    0.00       3/4           libmatroska::KaxInfo::Create() [16303]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::Create() [16276]
                0.00    0.00       3/6           libmatroska::KaxSeekID::Create() [16282]
                0.00    0.00       3/3           libmatroska::KaxSeek::Create() [16337]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::Create() [16402]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::Create() [16369]
                0.00    0.00       2/4           libmatroska::KaxCodecID::Create() [16291]
                0.00    0.00       2/4           libmatroska::KaxTrackType::Create() [16297]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::Create() [16294]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::Create() [16300]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::Create() [16363]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::Create() [16361]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::Create() [16352]
                0.00    0.00       2/2           libmatroska::KaxDuration::Create() [16355]
                0.00    0.00       2/6           libmatroska::KaxWritingApp::Create() [16273]
                0.00    0.00       2/6           libmatroska::KaxMuxingApp::Create() [16270]
                0.00    0.00       2/6           libmatroska::KaxTimecodeScale::Create() [16279]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::Create() [16358]
                0.00    0.00       1/2           libmatroska::KaxCues::Create() [16405]
                0.00    0.00       1/2           libmatroska::KaxTracks::Create() [16409]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::Create() [16372]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::Create() [16393]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::Create() [16493]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::Create() [16499]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::Create() [16505]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::Create() [16502]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::Create() [16390]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::Create() [16381]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::Create() [16496]
                0.00    0.00       1/3           libmatroska::KaxTrackMinCache::Create() [16331]
                0.00    0.00       1/3           libmatroska::KaxTrackFlagLacing::Create() [16334]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::Create() [16432]
                0.00    0.00       1/2           libebml::EDocTypeVersion::Create() [16429]
                0.00    0.00       1/2           libebml::EDocType::Create() [16435]
                0.00    0.00       1/2           libebml::EMaxSizeLength::Create() [16426]
                0.00    0.00       1/2           libebml::EMaxIdLength::Create() [16420]
                0.00    0.00       1/2           libebml::EReadVersion::Create() [16423]
                0.00    0.00       1/2           libebml::EVersion::Create() [16438]
                                 123             libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
-----------------------------------------------
                0.00    0.00     554/8250        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00    7696/8250        EbmlParser::Get(int) [43]
[16186   0.0    0.00    0.00    8250         libmatroska::KaxSimpleBlock::Generic() const [16186]
-----------------------------------------------
                0.00    0.00       2/8129        libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16371]
                0.00    0.00       3/8129        libmatroska::KaxSegmentUID::~KaxSegmentUID() [16330]
                0.00    0.00       4/8129        libebml::EbmlVoid::~EbmlVoid() [16309]
                0.00    0.00       6/8129        libmatroska::KaxSeekID::~KaxSeekID() [16284]
                0.00    0.00     137/8129        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00    7977/8129        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16191]
[16187   0.0    0.00    0.00    8129         libebml::EbmlBinary::~EbmlBinary() [16187]
                0.00    0.00    8122/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/8127        libmatroska::KaxSegmentUID::KaxSegmentUID() [16362]
                0.00    0.00       2/8127        libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16370]
                0.00    0.00       4/8127        libebml::EbmlVoid::EbmlVoid() [16308]
                0.00    0.00       6/8127        libmatroska::KaxSeekID::KaxSeekID() [16283]
                0.00    0.00     137/8127        libebml::EbmlCrc32::EbmlCrc32() [16215]
                0.00    0.00    7976/8127        libmatroska::KaxSimpleBlock::Create() [16192]
[16188   0.0    0.00    0.00    8127         libebml::EbmlBinary::EbmlBinary() [16188]
                0.00    0.00    8128/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
-----------------------------------------------
                0.00    0.00     277/7981        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00    7704/7981        EbmlParser::Get(int) [43]
[16189   0.0    0.00    0.00    7981         libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16189]
                0.00    0.00    7981/7981        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16191]
-----------------------------------------------
                0.00    0.00    7981/7981        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16191]
[16190   0.0    0.00    0.00    7981         libmatroska::KaxInternalBlock::ReleaseFrames() [16190]
                0.00    0.00   13368/13368       libmatroska::DataBuffer::~DataBuffer() [16179]
-----------------------------------------------
                0.00    0.00    7981/7981        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16189]
[16191   0.0    0.00    0.00    7981         libmatroska::KaxInternalBlock::~KaxInternalBlock() [16191]
                0.00    0.00    7981/7981        libmatroska::KaxInternalBlock::ReleaseFrames() [16190]
                0.00    0.00    7977/8129        libebml::EbmlBinary::~EbmlBinary() [16187]
-----------------------------------------------
                0.00    0.00    7979/7979        libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16192   0.0    0.00    0.00    7979         libmatroska::KaxSimpleBlock::Create() [16192]
                0.00    0.00    7976/8127        libebml::EbmlBinary::EbmlBinary() [16188]
-----------------------------------------------
                0.00    0.00    7979/7979        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16193   0.0    0.00    0.00    7979         libmatroska::KaxInternalBlock::ValidateSize() const [16193]
                0.00    0.00    7979/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00    7969/7969        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
[16194   0.0    0.00    0.00    7969         std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [16194]
-----------------------------------------------
                0.00    0.00      12/7950        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
                0.00    0.00    7938/7950        EbmlParser::Get(int) [43]
[16195   0.0    0.00    0.00    7950         libebml::EbmlElement::IsDummy() const [16195]
-----------------------------------------------
                0.00    0.00    7843/7843        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
[16196   0.0    0.00    0.00    7843         EbmlParser::GetLevel() const [16196]
-----------------------------------------------
                0.00    0.00       1/7809        matroska_segment_c::ParseCluster(bool) [196]
                0.00    0.00    7808/7809        EbmlParser::Get(int) [43]
[16197   0.0    0.00    0.00    7809         libmatroska::KaxCluster::Generic() const [16197]
-----------------------------------------------
                0.00    0.00    7739/7739        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
[16198   0.0    0.00    0.00    7739         EbmlParser::IsTopPresent(libebml::EbmlElement*) const [16198]
-----------------------------------------------
                0.00    0.00       1/7694        matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16526]
                0.00    0.00       1/7694        matroska_segment_c::ParseCluster(bool) [196]
                0.00    0.00    7692/7694        libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16200]
[16199   0.0    0.00    0.00    7694         libmatroska::KaxCluster::GlobalTimecode() const [16199]
-----------------------------------------------
                0.00    0.00    7689/7689        libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16201]
[16200   0.0    0.00    0.00    7689         libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16200]
                0.00    0.00    7692/7694        libmatroska::KaxCluster::GlobalTimecode() const [16199]
-----------------------------------------------
                0.00    0.00    7686/7686        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
[16201   0.0    0.00    0.00    7686         libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16201]
                0.00    0.00    7689/7689        libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16200]
-----------------------------------------------
                0.00    0.00    7685/7685        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
[16202   0.0    0.00    0.00    7685         libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [16202]
-----------------------------------------------
                0.00    0.00    4608/4608        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [77]
[16203   0.0    0.00    0.00    4608         libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16203]
                0.00    0.00    4608/29868       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16173]
-----------------------------------------------
                0.00    0.00    1286/1286        demux_Control [598]
[16204   0.0    0.00    0.00    1286         Control(demux_t*, int, std::__va_list) [16204]
                0.00    0.00       1/2           vlc_meta_Merge [901]
-----------------------------------------------
                0.00    0.00       1/361         libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16503]
                0.00    0.00       1/361         libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16506]
                0.00    0.00       2/361         libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16403]
                0.00    0.00       2/361         libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16382]
                0.00    0.00       2/361         libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16391]
                0.00    0.00       4/361         libmatroska::KaxTrackNumber::KaxTrackNumber() [16301]
                0.00    0.00       4/361         libmatroska::KaxTrackUID::KaxTrackUID() [16295]
                0.00    0.00       4/361         libmatroska::KaxTrackType::KaxTrackType() [16298]
                0.00    0.00       6/361         libmatroska::KaxSeekPosition::KaxSeekPosition() [16277]
                0.00    0.00      33/361         libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16252]
                0.00    0.00      66/361         libmatroska::KaxCueTime::KaxCueTime() [16225]
                0.00    0.00      66/361         libmatroska::KaxCueTrack::KaxCueTrack() [16228]
                0.00    0.00      66/361         libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16231]
                0.00    0.00     104/361         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16222]
[16205   0.0    0.00    0.00     361         libebml::EbmlUInteger::EbmlUInteger() [16205]
                0.00    0.00     361/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
-----------------------------------------------
                0.00    0.00     242/242         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16206   0.0    0.00    0.00     242         libebml::GetEbmlGlobal_Context() [16206]
-----------------------------------------------
                0.00    0.00     210/210         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16207   0.0    0.00    0.00     210         libebml::EbmlUInteger::ValidateSize() const [16207]
                0.00    0.00     210/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00     207/207         libebml::EbmlMaster::ProcessMandatory() [16211]
[16208   0.0    0.00    0.00     207         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16208]
                0.00    0.00     188/201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16209]
-----------------------------------------------
                0.00    0.00      13/201         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00     188/201         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16208]
[16209   0.0    0.00    0.00     201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16209]
-----------------------------------------------
                0.00    0.00       3/152         libebml::EbmlString::EbmlString(std::string const&) [16340]
                0.00    0.00      12/152         libebml::EbmlUnicodeString::EbmlUnicodeString() [16266]
                0.00    0.00     137/152         libebml::EbmlCrc32::EbmlCrc32() [16215]
[16210   0.0    0.00    0.00     152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16210]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
[16211   0.0    0.00    0.00     137         libebml::EbmlMaster::ProcessMandatory() [16211]
                0.00    0.00     207/207         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16208]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::Create() [16221]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::Create() [16230]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::Create() [16227]
                0.00    0.00      33/66          libmatroska::KaxCueTime::Create() [16224]
                0.00    0.00       4/6           libmatroska::KaxWritingApp::Create() [16273]
                0.00    0.00       4/6           libmatroska::KaxMuxingApp::Create() [16270]
                0.00    0.00       4/6           libmatroska::KaxTimecodeScale::Create() [16279]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::Create() [16276]
                0.00    0.00       3/6           libmatroska::KaxSeekID::Create() [16282]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::Create() [16366]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::Create() [16375]
                0.00    0.00       2/4           libmatroska::KaxCodecID::Create() [16291]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::Create() [16396]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::Create() [16399]
                0.00    0.00       2/3           libmatroska::KaxTrackMinCache::Create() [16331]
                0.00    0.00       2/3           libmatroska::KaxTrackFlagLacing::Create() [16334]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::Create() [16378]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::Create() [16384]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::Create() [16387]
                0.00    0.00       2/4           libmatroska::KaxTrackType::Create() [16297]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::Create() [16294]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::Create() [16300]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::Create() [16372]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::Create() [16393]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::Create() [16390]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::Create() [16381]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::Create() [16508]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::Create() [16432]
                0.00    0.00       1/2           libebml::EDocTypeVersion::Create() [16429]
                0.00    0.00       1/2           libebml::EDocType::Create() [16435]
                0.00    0.00       1/2           libebml::EMaxSizeLength::Create() [16426]
                0.00    0.00       1/2           libebml::EMaxIdLength::Create() [16420]
                0.00    0.00       1/2           libebml::EReadVersion::Create() [16423]
                0.00    0.00       1/2           libebml::EVersion::Create() [16438]
-----------------------------------------------
                0.00    0.00       1/137         libebml::EbmlHead::EbmlHead() [16547]
                0.00    0.00       1/137         libmatroska::KaxSegment::KaxSegment() [16491]
                0.00    0.00       1/137         libmatroska::KaxTrackVideo::KaxTrackVideo() [16497]
                0.00    0.00       1/137         libmatroska::KaxTrackAudio::KaxTrackAudio() [16494]
                0.00    0.00       2/137         libmatroska::KaxSeekHead::KaxSeekHead() [16359]
                0.00    0.00       2/137         libmatroska::KaxTracks::KaxTracks() [16410]
                0.00    0.00       2/137         libmatroska::KaxCues::KaxCues() [16406]
                0.00    0.00       2/137         libmatroska::KaxTrackEntry::KaxTrackEntry() [16364]
                0.00    0.00       3/137         libmatroska::KaxSeek::KaxSeek() [16338]
                0.00    0.00       4/137         libmatroska::KaxInfo::KaxInfo() [16304]
                0.00    0.00      33/137         libmatroska::KaxCuePoint::KaxCuePoint() [16246]
                0.00    0.00      33/137         libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16249]
                0.00    0.00      52/137         libmatroska::KaxCluster::KaxCluster() [16236]
[16212   0.0    0.00    0.00     137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
                0.00    0.00     137/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
                0.00    0.00     137/137         libebml::EbmlCrc32::EbmlCrc32() [16215]
                0.00    0.00     137/137         libebml::EbmlMaster::ProcessMandatory() [16211]
-----------------------------------------------
                                   1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16495]
                                   1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16498]
                                   2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16365]
                0.00    0.00       1/133         libebml::EbmlHead::~EbmlHead() [16548]
                0.00    0.00       1/133         libmatroska::KaxSegment::~KaxSegment() [16492]
                0.00    0.00       2/133         libmatroska::KaxCues::~KaxCues() [16408]
                0.00    0.00       2/133         libmatroska::KaxSeekHead::~KaxSeekHead() [16360]
                0.00    0.00       2/133         libmatroska::KaxTracks::~KaxTracks() [16411]
                0.00    0.00       3/133         libmatroska::KaxSeek::~KaxSeek() [16339]
                0.00    0.00       4/133         libmatroska::KaxInfo::~KaxInfo() [16305]
                0.00    0.00      33/133         libmatroska::KaxCuePoint::~KaxCuePoint() [16247]
                0.00    0.00      33/133         libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16250]
                0.00    0.00      52/133         libmatroska::KaxCluster::~KaxCluster() [16237]
[16213   0.0    0.00    0.00     137         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00     277/7981        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16189]
                0.00    0.00     137/8129        libebml::EbmlBinary::~EbmlBinary() [16187]
                0.00    0.00     137/8688        libebml::EbmlElement::~EbmlElement() [16183]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16223]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16232]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::~KaxCueTrack() [16229]
                0.00    0.00      33/66          libmatroska::KaxCueTime::~KaxCueTime() [16226]
                0.00    0.00       4/6           libmatroska::KaxWritingApp::~KaxWritingApp() [16275]
                0.00    0.00       4/6           libmatroska::KaxMuxingApp::~KaxMuxingApp() [16272]
                0.00    0.00       4/6           libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16281]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::~KaxSeekPosition() [16278]
                0.00    0.00       3/6           libmatroska::KaxSeekID::~KaxSeekID() [16284]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16404]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16371]
                0.00    0.00       2/4           libmatroska::KaxCodecID::~KaxCodecID() [16293]
                0.00    0.00       2/4           libmatroska::KaxTrackType::~KaxTrackType() [16299]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::~KaxTrackUID() [16296]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::~KaxTrackNumber() [16302]
                0.00    0.00       2/3           libmatroska::KaxSegmentUID::~KaxSegmentUID() [16330]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::~KaxDateUTC() [16354]
                0.00    0.00       2/2           libmatroska::KaxDuration::~KaxDuration() [16357]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::~KaxAudioChannels() [16374]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16395]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16501]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16507]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16504]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16392]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16383]
                0.00    0.00       1/3           libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16333]
                0.00    0.00       1/3           libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16336]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16434]
                0.00    0.00       1/2           libebml::EDocTypeVersion::~EDocTypeVersion() [16431]
                0.00    0.00       1/2           libebml::EDocType::~EDocType() [16437]
                0.00    0.00       1/2           libebml::EMaxSizeLength::~EMaxSizeLength() [16428]
                0.00    0.00       1/2           libebml::EMaxIdLength::~EMaxIdLength() [16422]
                0.00    0.00       1/2           libebml::EReadVersion::~EReadVersion() [16425]
                0.00    0.00       1/2           libebml::EVersion::~EVersion() [16440]
                                   2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16365]
                                   1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16495]
                                   1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16498]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlCrc32::EbmlCrc32() [16215]
[16214   0.0    0.00    0.00     137         libebml::EbmlCrc32::ResetCRC() [16214]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
[16215   0.0    0.00    0.00     137         libebml::EbmlCrc32::EbmlCrc32() [16215]
                0.00    0.00     137/8127        libebml::EbmlBinary::EbmlBinary() [16188]
                0.00    0.00     137/137         libebml::EbmlCrc32::ResetCRC() [16214]
                0.00    0.00     137/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16210]
-----------------------------------------------
                0.00    0.00       5/137         libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00     132/137         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16216   0.0    0.00    0.00     137         libebml::EbmlMaster::ValidateSize() const [16216]
-----------------------------------------------
                0.00    0.00     132/132         EbmlParser::Get(int) [43]
[16217   0.0    0.00    0.00     132         libmatroska::KaxCueTrackPositions::Generic() const [16217]
-----------------------------------------------
                0.00    0.00       1/127         matroska_segment_c::ParseCluster(bool) [196]
                0.00    0.00       1/127         matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
                0.00    0.00       1/127         demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
                0.00    0.00       3/127         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00       4/127         matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
                0.00    0.00      51/127         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
                0.00    0.00      66/127         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
[16218   0.0    0.00    0.00     127         libebml::EbmlUInteger::operator unsigned long long() const [16218]
-----------------------------------------------
                0.00    0.00     123/123         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16219   0.0    0.00    0.00     123         libmatroska::GetKaxGlobal_Context() [16219]
-----------------------------------------------
                0.00    0.00       1/121         matroska_segment_c::Preload() [136]
                0.00    0.00       3/121         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00      51/121         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
                0.00    0.00      66/121         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
[16220   0.0    0.00    0.00     121         EbmlParser::Down() [16220]
-----------------------------------------------
                0.00    0.00      52/104         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00      52/104         libebml::EbmlMaster::ProcessMandatory() [16211]
[16221   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::Create() [16221]
                0.00    0.00     104/104         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16222]
-----------------------------------------------
                0.00    0.00     104/104         libmatroska::KaxClusterTimecode::Create() [16221]
[16222   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16222]
                0.00    0.00     104/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       1/104         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00      51/104         EbmlParser::Get(int) [43]
                0.00    0.00      52/104         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16223   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16223]
                0.00    0.00     104/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16211]
[16224   0.0    0.00    0.00      66         libmatroska::KaxCueTime::Create() [16224]
                0.00    0.00      66/66          libmatroska::KaxCueTime::KaxCueTime() [16225]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueTime::Create() [16224]
[16225   0.0    0.00    0.00      66         libmatroska::KaxCueTime::KaxCueTime() [16225]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [43]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16226   0.0    0.00    0.00      66         libmatroska::KaxCueTime::~KaxCueTime() [16226]
                0.00    0.00      66/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16211]
[16227   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::Create() [16227]
                0.00    0.00      66/66          libmatroska::KaxCueTrack::KaxCueTrack() [16228]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueTrack::Create() [16227]
[16228   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::KaxCueTrack() [16228]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [43]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16229   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::~KaxCueTrack() [16229]
                0.00    0.00      66/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16211]
[16230   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::Create() [16230]
                0.00    0.00      66/66          libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16231]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueClusterPosition::Create() [16230]
[16231   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16231]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [43]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16232   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16232]
                0.00    0.00      66/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00      66/66          EbmlParser::Get(int) [43]
[16233   0.0    0.00    0.00      66         libmatroska::KaxCuePoint::Generic() const [16233]
-----------------------------------------------
                0.00    0.00       2/53          libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00      51/53          EbmlParser::Get(int) [43]
[16234   0.0    0.00    0.00      53         libmatroska::KaxClusterTimecode::Generic() const [16234]
-----------------------------------------------
                0.00    0.00      52/52          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16235   0.0    0.00    0.00      52         libmatroska::KaxCluster::Create() [16235]
                0.00    0.00      52/52          libmatroska::KaxCluster::KaxCluster() [16236]
-----------------------------------------------
                0.00    0.00      52/52          libmatroska::KaxCluster::Create() [16235]
[16236   0.0    0.00    0.00      52         libmatroska::KaxCluster::KaxCluster() [16236]
                0.00    0.00      52/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       1/51          EbmlParser::~EbmlParser() [16289]
                0.00    0.00      50/51          EbmlParser::Get(int) [43]
[16237   0.0    0.00    0.00      51         libmatroska::KaxCluster::~KaxCluster() [16237]
                0.00    0.00      52/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       8/41          matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
                0.00    0.00      33/41          matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
[16238   0.0    0.00    0.00      41         libebml::EbmlUInteger::operator unsigned short() const [16238]
-----------------------------------------------
                0.00    0.00       1/39          libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16509]
                0.00    0.00       2/39          libebml::EVersion::EVersion() [16439]
                0.00    0.00       2/39          libebml::EReadVersion::EReadVersion() [16424]
                0.00    0.00       2/39          libebml::EMaxIdLength::EMaxIdLength() [16421]
                0.00    0.00       2/39          libebml::EMaxSizeLength::EMaxSizeLength() [16427]
                0.00    0.00       2/39          libebml::EDocTypeVersion::EDocTypeVersion() [16430]
                0.00    0.00       2/39          libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16433]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16388]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16385]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16379]
                0.00    0.00       2/39          libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16397]
                0.00    0.00       2/39          libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16376]
                0.00    0.00       2/39          libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16367]
                0.00    0.00       2/39          libmatroska::KaxAudioChannels::KaxAudioChannels() [16373]
                0.00    0.00       3/39          libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16335]
                0.00    0.00       3/39          libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16332]
                0.00    0.00       6/39          libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16280]
[16239   0.0    0.00    0.00      39         libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
                0.00    0.00      39/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
-----------------------------------------------
                0.00    0.00       1/37          TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00       1/37          TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
                0.00    0.00       2/37          TagLib::FileRef::~FileRef() [16418]
                0.00    0.00      33/37          TagLib::String::~String() [16255]
[16240   0.0    0.00    0.00      37         TagLib::RefCounter::deref() [16240]
-----------------------------------------------
                0.00    0.00       1/37          EbmlParser::Reset(demux_t*) [334]
                0.00    0.00       3/37          matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
                0.00    0.00      33/37          matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
[16241   0.0    0.00    0.00      37         libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16241]
                0.00    0.00      37/37          libmatroska::KaxSegment::operator libebml::EbmlId const&() const [16242]
                0.00    0.00      37/8899        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16181]
-----------------------------------------------
                0.00    0.00      37/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16241]
[16242   0.0    0.00    0.00      37         libmatroska::KaxSegment::operator libebml::EbmlId const&() const [16242]
-----------------------------------------------
                0.00    0.00       1/35          TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16535]
                0.00    0.00       1/35          TagLib::FileRef::FileRef() [16539]
                0.00    0.00       1/35          TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16538]
                0.00    0.00       2/35          TagLib::String::String() [16415]
                0.00    0.00      30/35          TagLib::String::String(char const*, TagLib::String::Type) [16261]
[16243   0.0    0.00    0.00      35         TagLib::RefCounter::RefCounter() [16243]
-----------------------------------------------
                0.00    0.00       2/35          TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16416]
                0.00    0.00      33/35          TagLib::String::StringPrivate::~StringPrivate() [16254]
[16244   0.0    0.00    0.00      35         TagLib::RefCounter::~RefCounter() [16244]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16245   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::Create() [16245]
                0.00    0.00      33/33          libmatroska::KaxCuePoint::KaxCuePoint() [16246]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCuePoint::Create() [16245]
[16246   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::KaxCuePoint() [16246]
                0.00    0.00      33/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       1/33          EbmlParser::~EbmlParser() [16289]
                0.00    0.00      32/33          EbmlParser::Get(int) [43]
[16247   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::~KaxCuePoint() [16247]
                0.00    0.00      33/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16248   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::Create() [16248]
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16249]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::Create() [16248]
[16249   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16249]
                0.00    0.00      33/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       1/33          EbmlParser::~EbmlParser() [16289]
                0.00    0.00      32/33          EbmlParser::Get(int) [43]
[16250   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16250]
                0.00    0.00      33/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16251   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::Create() [16251]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16252]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Create() [16251]
[16252   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16252]
                0.00    0.00      33/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [43]
[16253   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16253]
                0.00    0.00      33/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/33          TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00      32/33          TagLib::String::~String() [16255]
[16254   0.0    0.00    0.00      33         TagLib::String::StringPrivate::~StringPrivate() [16254]
                0.00    0.00      33/35          TagLib::RefCounter::~RefCounter() [16244]
-----------------------------------------------
                0.00    0.00      33/33          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16255   0.0    0.00    0.00      33         TagLib::String::~String() [16255]
                0.00    0.00      33/37          TagLib::RefCounter::deref() [16240]
                0.00    0.00      32/33          TagLib::String::StringPrivate::~StringPrivate() [16254]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [43]
[16256   0.0    0.00    0.00      33         libmatroska::KaxCueTime::Generic() const [16256]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [43]
[16257   0.0    0.00    0.00      33         libmatroska::KaxCueTrack::Generic() const [16257]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [43]
[16258   0.0    0.00    0.00      33         libmatroska::KaxCueClusterPosition::Generic() const [16258]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [43]
[16259   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::Generic() const [16259]
-----------------------------------------------
                0.00    0.00      30/30          TagLib::String::String(char const*, TagLib::String::Type) [16261]
[16260   0.0    0.00    0.00      30         TagLib::String::copyFromLatin1(char const*, unsigned int) [16260]
-----------------------------------------------
                0.00    0.00      30/30          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16261   0.0    0.00    0.00      30         TagLib::String::String(char const*, TagLib::String::Type) [16261]
                0.00    0.00      30/35          TagLib::RefCounter::RefCounter() [16243]
                0.00    0.00      30/30          TagLib::String::copyFromLatin1(char const*, unsigned int) [16260]
-----------------------------------------------
                0.00    0.00      28/28          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16262   0.0    0.00    0.00      28         TagLib::String::operator==(TagLib::String const&) const [16262]
                0.00    0.00      21/25          wmemcmp [654]
-----------------------------------------------
                0.00    0.00       2/26          matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
                0.00    0.00      12/26          libmatroska::KaxWritingApp::~KaxWritingApp() [16275]
                0.00    0.00      12/26          libmatroska::KaxMuxingApp::~KaxMuxingApp() [16272]
[16263   0.0    0.00    0.00      26         libebml::UTFstring::~UTFstring() [16263]
-----------------------------------------------
                0.00    0.00      24/24          libebml::EbmlUnicodeString::EbmlUnicodeString() [16266]
[16264   0.0    0.00    0.00      24         libebml::UTFstring::UTFstring() [16264]
-----------------------------------------------
                0.00    0.00       1/18          matroska_segment_c::ParseCluster(bool) [196]
                0.00    0.00       1/18          matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [172]
                0.00    0.00       1/18          matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
                0.00    0.00       1/18          demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
                0.00    0.00       5/18          EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [242]
                0.00    0.00       9/18          libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16265   0.0    0.00    0.00      18         libebml::EbmlMaster::GetSize() const [16265]
-----------------------------------------------
                0.00    0.00       6/12          libmatroska::KaxMuxingApp::KaxMuxingApp() [16271]
                0.00    0.00       6/12          libmatroska::KaxWritingApp::KaxWritingApp() [16274]
[16266   0.0    0.00    0.00      12         libebml::EbmlUnicodeString::EbmlUnicodeString() [16266]
                0.00    0.00      24/24          libebml::UTFstring::UTFstring() [16264]
                0.00    0.00      12/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
                0.00    0.00      12/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16210]
-----------------------------------------------
                0.00    0.00      10/10          EbmlParser::Get(int) [43]
[16267   0.0    0.00    0.00      10         libmatroska::KaxSegment::Generic() const [16267]
-----------------------------------------------
                0.00    0.00      10/10          EbmlParser::Get(int) [43]
[16268   0.0    0.00    0.00      10         libmatroska::KaxSeek::Generic() const [16268]
-----------------------------------------------
                0.00    0.00       8/8           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
[16269   0.0    0.00    0.00       8         libebml::EbmlUInteger::operator unsigned int() const [16269]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16211]
[16270   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::Create() [16270]
                0.00    0.00       6/6           libmatroska::KaxMuxingApp::KaxMuxingApp() [16271]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxMuxingApp::Create() [16270]
[16271   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::KaxMuxingApp() [16271]
                0.00    0.00       6/12          libebml::EbmlUnicodeString::EbmlUnicodeString() [16266]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16272   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::~KaxMuxingApp() [16272]
                0.00    0.00      12/26          libebml::UTFstring::~UTFstring() [16263]
                0.00    0.00       6/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16211]
[16273   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::Create() [16273]
                0.00    0.00       6/6           libmatroska::KaxWritingApp::KaxWritingApp() [16274]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxWritingApp::Create() [16273]
[16274   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::KaxWritingApp() [16274]
                0.00    0.00       6/12          libebml::EbmlUnicodeString::EbmlUnicodeString() [16266]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16275   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::~KaxWritingApp() [16275]
                0.00    0.00      12/26          libebml::UTFstring::~UTFstring() [16263]
                0.00    0.00       6/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       3/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       3/6           libebml::EbmlMaster::ProcessMandatory() [16211]
[16276   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::Create() [16276]
                0.00    0.00       6/6           libmatroska::KaxSeekPosition::KaxSeekPosition() [16277]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxSeekPosition::Create() [16276]
[16277   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::KaxSeekPosition() [16277]
                0.00    0.00       6/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       3/6           EbmlParser::Get(int) [43]
                0.00    0.00       3/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16278   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::~KaxSeekPosition() [16278]
                0.00    0.00       6/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16211]
[16279   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::Create() [16279]
                0.00    0.00       6/6           libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16280]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxTimecodeScale::Create() [16279]
[16280   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16280]
                0.00    0.00       6/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16281   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16281]
                0.00    0.00       6/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       3/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       3/6           libebml::EbmlMaster::ProcessMandatory() [16211]
[16282   0.0    0.00    0.00       6         libmatroska::KaxSeekID::Create() [16282]
                0.00    0.00       6/6           libmatroska::KaxSeekID::KaxSeekID() [16283]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxSeekID::Create() [16282]
[16283   0.0    0.00    0.00       6         libmatroska::KaxSeekID::KaxSeekID() [16283]
                0.00    0.00       6/8127        libebml::EbmlBinary::EbmlBinary() [16188]
-----------------------------------------------
                0.00    0.00       3/6           EbmlParser::Get(int) [43]
                0.00    0.00       3/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16284   0.0    0.00    0.00       6         libmatroska::KaxSeekID::~KaxSeekID() [16284]
                0.00    0.00       6/8129        libebml::EbmlBinary::~EbmlBinary() [16187]
-----------------------------------------------
                0.00    0.00       3/6           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       3/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16285   0.0    0.00    0.00       6         libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16285]
-----------------------------------------------
                0.00    0.00       6/6           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16286   0.0    0.00    0.00       6         libebml::EbmlBinary::ValidateSize() const [16286]
                0.00    0.00       6/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00       1/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
                0.00    0.00       5/6           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
[16287   0.0    0.00    0.00       6         libebml::EbmlString::operator std::string const&() const [16287]
-----------------------------------------------
                                   2             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [335]
                                   3             matroska_segment_c::Select(long long) <cycle 4> [284]
[16288   0.0    0.00    0.00       5         es_out_Control(es_out_t*, int, ...) <cycle 4> [16288]
                                   5             Control <cycle 4> [155]
-----------------------------------------------
                0.00    0.00       1/5           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [153]
                0.00    0.00       1/5           matroska_segment_c::Select(long long) <cycle 4> [284]
                0.00    0.00       1/5           matroska_segment_c::UnSelect() [315]
                0.00    0.00       1/5           matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [335]
                0.00    0.00       1/5           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [139]
[16289   0.0    0.00    0.00       5         EbmlParser::~EbmlParser() [16289]
                0.00    0.00       1/2           libmatroska::KaxCues::~KaxCues() [16407]
                0.00    0.00       1/51          libmatroska::KaxCluster::~KaxCluster() [16237]
                0.00    0.00       1/33          libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16250]
                0.00    0.00       1/33          libmatroska::KaxCuePoint::~KaxCuePoint() [16247]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16305]
-----------------------------------------------
                0.00    0.00       5/5           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
[16290   0.0    0.00    0.00       5         libebml::EbmlMaster::SetSizeInfinite(bool) [16290]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16211]
[16291   0.0    0.00    0.00       4         libmatroska::KaxCodecID::Create() [16291]
                0.00    0.00       4/4           libmatroska::KaxCodecID::KaxCodecID() [16292]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxCodecID::Create() [16291]
[16292   0.0    0.00    0.00       4         libmatroska::KaxCodecID::KaxCodecID() [16292]
                0.00    0.00       4/4           libebml::EbmlString::EbmlString() [16306]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16293   0.0    0.00    0.00       4         libmatroska::KaxCodecID::~KaxCodecID() [16293]
                0.00    0.00       4/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16211]
[16294   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::Create() [16294]
                0.00    0.00       4/4           libmatroska::KaxTrackUID::KaxTrackUID() [16295]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackUID::Create() [16294]
[16295   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::KaxTrackUID() [16295]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16296   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::~KaxTrackUID() [16296]
                0.00    0.00       4/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16211]
[16297   0.0    0.00    0.00       4         libmatroska::KaxTrackType::Create() [16297]
                0.00    0.00       4/4           libmatroska::KaxTrackType::KaxTrackType() [16298]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackType::Create() [16297]
[16298   0.0    0.00    0.00       4         libmatroska::KaxTrackType::KaxTrackType() [16298]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16299   0.0    0.00    0.00       4         libmatroska::KaxTrackType::~KaxTrackType() [16299]
                0.00    0.00       4/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16211]
[16300   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::Create() [16300]
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::KaxTrackNumber() [16301]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::Create() [16300]
[16301   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::KaxTrackNumber() [16301]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16302   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::~KaxTrackNumber() [16302]
                0.00    0.00       4/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/4           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00       3/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16303   0.0    0.00    0.00       4         libmatroska::KaxInfo::Create() [16303]
                0.00    0.00       4/4           libmatroska::KaxInfo::KaxInfo() [16304]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxInfo::Create() [16303]
[16304   0.0    0.00    0.00       4         libmatroska::KaxInfo::KaxInfo() [16304]
                0.00    0.00       4/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       1/4           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       1/4           EbmlParser::~EbmlParser() [16289]
                0.00    0.00       1/4           EbmlParser::Reset(demux_t*) [334]
                0.00    0.00       1/4           EbmlParser::Get(int) [43]
[16305   0.0    0.00    0.00       4         libmatroska::KaxInfo::~KaxInfo() [16305]
                0.00    0.00       4/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxCodecID::KaxCodecID() [16292]
[16306   0.0    0.00    0.00       4         libebml::EbmlString::EbmlString() [16306]
                0.00    0.00       4/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16307   0.0    0.00    0.00       4         libebml::EbmlVoid::Create() [16307]
                0.00    0.00       4/4           libebml::EbmlVoid::EbmlVoid() [16308]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlVoid::Create() [16307]
[16308   0.0    0.00    0.00       4         libebml::EbmlVoid::EbmlVoid() [16308]
                0.00    0.00       4/8127        libebml::EbmlBinary::EbmlBinary() [16188]
-----------------------------------------------
                0.00    0.00       4/4           EbmlParser::Get(int) [43]
[16309   0.0    0.00    0.00       4         libebml::EbmlVoid::~EbmlVoid() [16309]
                0.00    0.00       4/8129        libebml::EbmlBinary::~EbmlBinary() [16187]
-----------------------------------------------
                0.00    0.00       2/4           libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16400]
                0.00    0.00       2/4           libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16394]
[16310   0.0    0.00    0.00       4         libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16310]
                0.00    0.00       4/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [390]
[16311   0.0    0.00    0.00       4         libebml::UTFstring::UpdateFromUTF8() [16311]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [390]
[16312   0.0    0.00    0.00       4         libebml::UTFstring::SetUTF8(std::string const&) [16312]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16313   0.0    0.00    0.00       4         libmatroska::KaxCodecID::Generic() const [16313]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16314   0.0    0.00    0.00       4         libmatroska::KaxDateUTC::Generic() const [16314]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16315   0.0    0.00    0.00       4         libmatroska::KaxDuration::Generic() const [16315]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16316   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::Generic() const [16316]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16317   0.0    0.00    0.00       4         libmatroska::KaxMuxingApp::Generic() const [16317]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16318   0.0    0.00    0.00       4         libmatroska::KaxTrackType::Generic() const [16318]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16319   0.0    0.00    0.00       4         libmatroska::KaxSegmentUID::Generic() const [16319]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16320   0.0    0.00    0.00       4         libmatroska::KaxTrackEntry::Generic() const [16320]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16321   0.0    0.00    0.00       4         libmatroska::KaxWritingApp::Generic() const [16321]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16322   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::Generic() const [16322]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16323   0.0    0.00    0.00       4         libmatroska::KaxCodecPrivate::Generic() const [16323]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16324   0.0    0.00    0.00       4         libmatroska::KaxTimecodeScale::Generic() const [16324]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16325   0.0    0.00    0.00       4         libmatroska::KaxTrackDefaultDuration::Generic() const [16325]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16326   0.0    0.00    0.00       4         libebml::EbmlString::ValidateSize() const [16326]
-----------------------------------------------
                0.00    0.00       4/4           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
[16327   0.0    0.00    0.00       4         libebml::EbmlUInteger::operator unsigned char() const [16327]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16328   0.0    0.00    0.00       4         libebml::EbmlUnicodeString::ValidateSize() const [16328]
-----------------------------------------------
                0.00    0.00       4/4           EbmlParser::Get(int) [43]
[16329   0.0    0.00    0.00       4         libebml::EbmlVoid::Generic() const [16329]
-----------------------------------------------
                0.00    0.00       1/3           matroska_segment_c::~matroska_segment_c() [16530]
                0.00    0.00       2/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16330   0.0    0.00    0.00       3         libmatroska::KaxSegmentUID::~KaxSegmentUID() [16330]
                0.00    0.00       3/8129        libebml::EbmlBinary::~EbmlBinary() [16187]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       2/3           libebml::EbmlMaster::ProcessMandatory() [16211]
[16331   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::Create() [16331]
                0.00    0.00       3/3           libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16332]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxTrackMinCache::Create() [16331]
[16332   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16332]
                0.00    0.00       3/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       2/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16333   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16333]
                0.00    0.00       3/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       2/3           libebml::EbmlMaster::ProcessMandatory() [16211]
[16334   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::Create() [16334]
                0.00    0.00       3/3           libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16335]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxTrackFlagLacing::Create() [16334]
[16335   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16335]
                0.00    0.00       3/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       2/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16336   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16336]
                0.00    0.00       3/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16337   0.0    0.00    0.00       3         libmatroska::KaxSeek::Create() [16337]
                0.00    0.00       3/3           libmatroska::KaxSeek::KaxSeek() [16338]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxSeek::Create() [16337]
[16338   0.0    0.00    0.00       3         libmatroska::KaxSeek::KaxSeek() [16338]
                0.00    0.00       3/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [43]
[16339   0.0    0.00    0.00       3         libmatroska::KaxSeek::~KaxSeek() [16339]
                0.00    0.00       3/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       1/3           libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16500]
                0.00    0.00       2/3           libebml::EDocType::EDocType() [16436]
[16340   0.0    0.00    0.00       3         libebml::EbmlString::EbmlString(std::string const&) [16340]
                0.00    0.00       3/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
                0.00    0.00       3/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16210]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [16541]
                0.00    0.00       1/3           libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16544]
                0.00    0.00       1/3           libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16545]
[16341   0.0    0.00    0.00       3         libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16341]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [43]
[16342   0.0    0.00    0.00       3         libmatroska::KaxSeekHead::Generic() const [16342]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [43]
[16343   0.0    0.00    0.00       3         libmatroska::KaxSeekPosition::Generic() const [16343]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16344   0.0    0.00    0.00       3         libmatroska::KaxSeekID::ValidateSize() const [16344]
                0.00    0.00       3/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [43]
[16345   0.0    0.00    0.00       3         libmatroska::KaxSeekID::Generic() const [16345]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
[16346   0.0    0.00    0.00       3         libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16346]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
[16347   0.0    0.00    0.00       3         libebml::EReadVersion::operator libebml::EbmlId const&() const [16347]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
[16348   0.0    0.00    0.00       3         libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16348]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
[16349   0.0    0.00    0.00       3         libebml::EDocType::operator libebml::EbmlId const&() const [16349]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
[16350   0.0    0.00    0.00       3         libebml::EVersion::operator libebml::EbmlId const&() const [16350]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16351   0.0    0.00    0.00       3         libebml::EbmlFloat::ValidateSize() const [16351]
                0.00    0.00       3/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16352   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::Create() [16352]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::KaxDateUTC() [16353]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDateUTC::Create() [16352]
[16353   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::KaxDateUTC() [16353]
                0.00    0.00       2/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16354   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::~KaxDateUTC() [16354]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16355   0.0    0.00    0.00       2         libmatroska::KaxDuration::Create() [16355]
                0.00    0.00       2/2           libmatroska::KaxDuration::KaxDuration() [16356]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDuration::Create() [16355]
[16356   0.0    0.00    0.00       2         libmatroska::KaxDuration::KaxDuration() [16356]
                0.00    0.00       2/2           libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16441]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16357   0.0    0.00    0.00       2         libmatroska::KaxDuration::~KaxDuration() [16357]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16358   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::Create() [16358]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::KaxSeekHead() [16359]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSeekHead::Create() [16358]
[16359   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::KaxSeekHead() [16359]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       2/2           EbmlParser::Get(int) [43]
[16360   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::~KaxSeekHead() [16360]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16361   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::Create() [16361]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::KaxSegmentUID() [16362]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::Create() [16361]
[16362   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::KaxSegmentUID() [16362]
                0.00    0.00       2/8127        libebml::EbmlBinary::EbmlBinary() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16363   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::Create() [16363]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::KaxTrackEntry() [16364]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::Create() [16363]
[16364   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::KaxTrackEntry() [16364]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                                   2             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16365   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16365]
                                   2             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16366   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::Create() [16366]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16367]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::Create() [16366]
[16367   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16367]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16368   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16368]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16369   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::Create() [16369]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16370]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::Create() [16369]
[16370   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16370]
                0.00    0.00       2/8127        libebml::EbmlBinary::EbmlBinary() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16371   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16371]
                0.00    0.00       2/8129        libebml::EbmlBinary::~EbmlBinary() [16187]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16372   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::Create() [16372]
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::KaxAudioChannels() [16373]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::Create() [16372]
[16373   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::KaxAudioChannels() [16373]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16374   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::~KaxAudioChannels() [16374]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16375   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::Create() [16375]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16376]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::Create() [16375]
[16376   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16376]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16377   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16377]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16378   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::Create() [16378]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16379]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::Create() [16378]
[16379   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16379]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16380   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16380]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16381   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::Create() [16381]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16382]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::Create() [16381]
[16382   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16382]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16383   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16383]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16384   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::Create() [16384]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16385]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::Create() [16384]
[16385   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16385]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16386   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16386]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16387   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::Create() [16387]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16388]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::Create() [16387]
[16388   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16388]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16389   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16389]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16390   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::Create() [16390]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16391]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::Create() [16390]
[16391   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16391]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16392   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16392]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16393   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::Create() [16393]
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16394]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::Create() [16393]
[16394   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16394]
                0.00    0.00       2/4           libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16310]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16395   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16395]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16396   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::Create() [16396]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16397]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::Create() [16396]
[16397   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16397]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16398   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16398]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16399   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::Create() [16399]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16400]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::Create() [16399]
[16400   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16400]
                0.00    0.00       2/4           libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16310]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16401   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16401]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16402   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::Create() [16402]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16403]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::Create() [16402]
[16403   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16403]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16404   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16404]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16405   0.0    0.00    0.00       2         libmatroska::KaxCues::Create() [16405]
                0.00    0.00       2/2           libmatroska::KaxCues::KaxCues() [16406]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCues::Create() [16405]
[16406   0.0    0.00    0.00       2         libmatroska::KaxCues::KaxCues() [16406]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       1/2           EbmlParser::~EbmlParser() [16289]
[16407   0.0    0.00    0.00       2         libmatroska::KaxCues::~KaxCues() [16407]
                0.00    0.00       2/2           libmatroska::KaxCues::~KaxCues() [16408]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCues::~KaxCues() [16407]
[16408   0.0    0.00    0.00       2         libmatroska::KaxCues::~KaxCues() [16408]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16409   0.0    0.00    0.00       2         libmatroska::KaxTracks::Create() [16409]
                0.00    0.00       2/2           libmatroska::KaxTracks::KaxTracks() [16410]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTracks::Create() [16409]
[16410   0.0    0.00    0.00       2         libmatroska::KaxTracks::KaxTracks() [16410]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [142]
                0.00    0.00       1/2           EbmlParser::Get(int) [43]
[16411   0.0    0.00    0.00       2         libmatroska::KaxTracks::~KaxTracks() [16411]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::UnSelect() [315]
                0.00    0.00       1/2           event_thread_t::~event_thread_t() [16512]
[16412   0.0    0.00    0.00       2         event_thread_t::ResetPci() [16412]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
[16413   0.0    0.00    0.00       2         matroska_segment_c::TrackInit(mkv_track_t*) [16413]
                0.00    0.00       1/1           fill_extra_data(mkv_track_t*, unsigned int) [16485]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00       1/2           TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
[16414   0.0    0.00    0.00       2         TagLib::RefCounter::ref() [16414]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::String::upper() const [16565]
                0.00    0.00       1/2           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16415   0.0    0.00    0.00       2         TagLib::String::String() [16415]
                0.00    0.00       2/35          TagLib::RefCounter::RefCounter() [16243]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::FileRef::~FileRef() [16418]
                0.00    0.00       1/2           TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
[16416   0.0    0.00    0.00       2         TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16416]
                0.00    0.00       2/35          TagLib::RefCounter::~RefCounter() [16244]
-----------------------------------------------
                0.00    0.00       2/2           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16417   0.0    0.00    0.00       2         TagLib::FileRef::~FileRef() [16417]
-----------------------------------------------
                0.00    0.00       2/2           ReadMeta(vlc_object_t*) [542]
[16418   0.0    0.00    0.00       2         TagLib::FileRef::~FileRef() [16418]
                0.00    0.00       2/37          TagLib::RefCounter::deref() [16240]
                0.00    0.00       1/2           TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16416]
-----------------------------------------------
                0.00    0.00       2/2           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16419   0.0    0.00    0.00       2         libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
                0.00    0.00       2/3           libebml::EDocType::operator libebml::EbmlId const&() const [16349]
                0.00    0.00       2/3           libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16348]
                0.00    0.00       2/3           libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16346]
                0.00    0.00       2/3           libebml::EReadVersion::operator libebml::EbmlId const&() const [16347]
                0.00    0.00       2/3           libebml::EVersion::operator libebml::EbmlId const&() const [16350]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16479]
                0.00    0.00       1/2           libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16476]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16420   0.0    0.00    0.00       2         libebml::EMaxIdLength::Create() [16420]
                0.00    0.00       2/2           libebml::EMaxIdLength::EMaxIdLength() [16421]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EMaxIdLength::Create() [16420]
[16421   0.0    0.00    0.00       2         libebml::EMaxIdLength::EMaxIdLength() [16421]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16422   0.0    0.00    0.00       2         libebml::EMaxIdLength::~EMaxIdLength() [16422]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16423   0.0    0.00    0.00       2         libebml::EReadVersion::Create() [16423]
                0.00    0.00       2/2           libebml::EReadVersion::EReadVersion() [16424]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EReadVersion::Create() [16423]
[16424   0.0    0.00    0.00       2         libebml::EReadVersion::EReadVersion() [16424]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16425   0.0    0.00    0.00       2         libebml::EReadVersion::~EReadVersion() [16425]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16426   0.0    0.00    0.00       2         libebml::EMaxSizeLength::Create() [16426]
                0.00    0.00       2/2           libebml::EMaxSizeLength::EMaxSizeLength() [16427]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EMaxSizeLength::Create() [16426]
[16427   0.0    0.00    0.00       2         libebml::EMaxSizeLength::EMaxSizeLength() [16427]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16428   0.0    0.00    0.00       2         libebml::EMaxSizeLength::~EMaxSizeLength() [16428]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16429   0.0    0.00    0.00       2         libebml::EDocTypeVersion::Create() [16429]
                0.00    0.00       2/2           libebml::EDocTypeVersion::EDocTypeVersion() [16430]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocTypeVersion::Create() [16429]
[16430   0.0    0.00    0.00       2         libebml::EDocTypeVersion::EDocTypeVersion() [16430]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16431   0.0    0.00    0.00       2         libebml::EDocTypeVersion::~EDocTypeVersion() [16431]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16432   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::Create() [16432]
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16433]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::Create() [16432]
[16433   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16433]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16434   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16434]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16435   0.0    0.00    0.00       2         libebml::EDocType::Create() [16435]
                0.00    0.00       2/2           libebml::EDocType::EDocType() [16436]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocType::Create() [16435]
[16436   0.0    0.00    0.00       2         libebml::EDocType::EDocType() [16436]
                0.00    0.00       2/3           libebml::EbmlString::EbmlString(std::string const&) [16340]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16437   0.0    0.00    0.00       2         libebml::EDocType::~EDocType() [16437]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16211]
[16438   0.0    0.00    0.00       2         libebml::EVersion::Create() [16438]
                0.00    0.00       2/2           libebml::EVersion::EVersion() [16439]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EVersion::Create() [16438]
[16439   0.0    0.00    0.00       2         libebml::EVersion::EVersion() [16439]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16440   0.0    0.00    0.00       2         libebml::EVersion::~EVersion() [16440]
                0.00    0.00       2/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDuration::KaxDuration() [16356]
[16441   0.0    0.00    0.00       2         libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16441]
                0.00    0.00       2/8692        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16182]
-----------------------------------------------
                0.00    0.00       2/2           libebml::UTFstring::operator=(wchar_t const*) [16444]
[16442   0.0    0.00    0.00       2         libebml::UTFstring::UpdateFromUCS2() [16442]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
[16443   0.0    0.00    0.00       2         libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16443]
                0.00    0.00       2/2           libebml::UTFstring::operator=(wchar_t const*) [16444]
-----------------------------------------------
                0.00    0.00       2/2           libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16443]
[16444   0.0    0.00    0.00       2         libebml::UTFstring::operator=(wchar_t const*) [16444]
                0.00    0.00       2/2           libebml::UTFstring::UpdateFromUCS2() [16442]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16445   0.0    0.00    0.00       2         libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [16445]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16446   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [16446]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16447   0.0    0.00    0.00       2         libmatroska::KaxDuration::operator libebml::EbmlId const&() const [16447]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16448   0.0    0.00    0.00       2         libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [16448]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16449   0.0    0.00    0.00       2         libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [16449]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16450   0.0    0.00    0.00       2         libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [16450]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16451   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::ValidateSize() const [16451]
                0.00    0.00       2/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16452   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const [16452]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16453   0.0    0.00    0.00       2         libmatroska::KaxTrackAudio::Generic() const [16453]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16454   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [16454]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16455   0.0    0.00    0.00       2         libmatroska::KaxTrackVideo::Generic() const [16455]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16456   0.0    0.00    0.00       2         libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [16456]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16457   0.0    0.00    0.00       2         libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [16457]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16458   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [16458]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16459   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::Generic() const [16459]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16460   0.0    0.00    0.00       2         libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [16460]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16461   0.0    0.00    0.00       2         libmatroska::KaxTrackLanguage::Generic() const [16461]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16462   0.0    0.00    0.00       2         libmatroska::KaxTrackMinCache::Generic() const [16462]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16463   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagLacing::Generic() const [16463]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16464   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::Generic() const [16464]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16465   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::Generic() const [16465]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16466   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::Generic() const [16466]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16467   0.0    0.00    0.00       2         libmatroska::KaxVideoDisplayWidth::Generic() const [16467]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16468   0.0    0.00    0.00       2         libmatroska::KaxVideoDisplayHeight::Generic() const [16468]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16469   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [16469]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
                0.00    0.00       1/2           EbmlParser::Get(int) [43]
[16470   0.0    0.00    0.00       2         libmatroska::KaxInfo::Generic() const [16470]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [172]
                0.00    0.00       1/2           EbmlParser::Get(int) [43]
[16471   0.0    0.00    0.00       2         libmatroska::KaxTracks::Generic() const [16471]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16472   0.0    0.00    0.00       2         libebml::EMaxIdLength::Generic() const [16472]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16473   0.0    0.00    0.00       2         libebml::EReadVersion::Generic() const [16473]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16474   0.0    0.00    0.00       2         libebml::EMaxSizeLength::Generic() const [16474]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16475   0.0    0.00    0.00       2         libebml::EDocTypeVersion::Generic() const [16475]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       1/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
[16476   0.0    0.00    0.00       2         libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16476]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
[16477   0.0    0.00    0.00       2         libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [16477]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16478   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::Generic() const [16478]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
                0.00    0.00       1/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16419]
[16479   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16479]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16480   0.0    0.00    0.00       2         libebml::EDocType::Generic() const [16480]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16481   0.0    0.00    0.00       2         libebml::EVersion::Generic() const [16481]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [58]
[16482   0.0    0.00    0.00       2         libebml::EbmlDate::ValidateSize() const [16482]
                0.00    0.00       2/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
[16483   0.0    0.00    0.00       2         std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) [16483]
-----------------------------------------------
                0.00    0.00       2/2           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16484   0.0    0.00    0.00       2         std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) [16484]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::TrackInit(mkv_track_t*) [16413]
[16485   0.0    0.00    0.00       1         fill_extra_data(mkv_track_t*, unsigned int) [16485]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [88]
[16486   0.0    0.00    0.00       1         Open(vlc_object_t*) [16486]
                0.00    0.00       1/1           dash::xml::DOMParser::isDash(stream_t*) [16533]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [131]
[16487   0.0    0.00    0.00       1         demux_sys_t::FreeUnused() [16487]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [131]
[16488   0.0    0.00    0.00       1         demux_sys_t::PreloadLinked() [16488]
                0.00    0.00       1/1           demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16550]
                0.00    0.00       1/1           virtual_edition_c::GetMainName() [16516]
                0.00    0.00       1/1           virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16518]
                0.00    0.00       1/1           std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) [16571]
                0.00    0.00       1/1           std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) [16575]
-----------------------------------------------
                                   1             Open(vlc_object_t*) <cycle 4> [131]
[16489   0.0    0.00    0.00       1         demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
                0.00    0.00       1/1           matroska_segment_c::InformationCreate() [16525]
                                   1             matroska_segment_c::Select(long long) <cycle 4> [284]
                                   1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
[16490   0.0    0.00    0.00       1         libmatroska::KaxSegment::Create() [16490]
                0.00    0.00       1/1           libmatroska::KaxSegment::KaxSegment() [16491]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxSegment::Create() [16490]
[16491   0.0    0.00    0.00       1         libmatroska::KaxSegment::KaxSegment() [16491]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16530]
[16492   0.0    0.00    0.00       1         libmatroska::KaxSegment::~KaxSegment() [16492]
                0.00    0.00       1/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16493   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::Create() [16493]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::KaxTrackAudio() [16494]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::Create() [16493]
[16494   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::KaxTrackAudio() [16494]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16495   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16495]
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16496   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::Create() [16496]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::KaxTrackVideo() [16497]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::Create() [16496]
[16497   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::KaxTrackVideo() [16497]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16498   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16498]
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16499   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::Create() [16499]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16500]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::Create() [16499]
[16500   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16500]
                0.00    0.00       1/3           libebml::EbmlString::EbmlString(std::string const&) [16340]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16501   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16501]
                0.00    0.00       1/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16502   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::Create() [16502]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16503]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::Create() [16502]
[16503   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16503]
                0.00    0.00       1/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16504   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16504]
                0.00    0.00       1/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16185]
[16505   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::Create() [16505]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16506]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::Create() [16505]
[16506   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16506]
                0.00    0.00       1/361         libebml::EbmlUInteger::EbmlUInteger() [16205]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
[16507   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16507]
                0.00    0.00       1/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::ProcessMandatory() [16211]
[16508   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::Create() [16508]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16509]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::Create() [16508]
[16509   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16509]
                0.00    0.00       1/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16239]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16510   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16510]
                0.00    0.00       1/8688        libebml::EbmlElement::~EbmlElement() [16183]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::CleanUi() [300]
[16511   0.0    0.00    0.00       1         event_thread_t::~event_thread_t() [16511]
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16512]
-----------------------------------------------
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16511]
[16512   0.0    0.00    0.00       1         event_thread_t::~event_thread_t() [16512]
                0.00    0.00       1/2           event_thread_t::ResetPci() [16412]
                0.00    0.00       1/10405       vlc_cond_destroy [570]
                0.00    0.00       1/10432       vlc_mutex_destroy [569]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16518]
[16513   0.0    0.00    0.00       1         virtual_chapter_c::PublishChapters(input_title_t&, int&, int) [16513]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
[16514   0.0    0.00    0.00       1         virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) [16514]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::~virtual_edition_c() [16521]
[16515   0.0    0.00    0.00       1         virtual_chapter_c::~virtual_chapter_c() [16515]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16516   0.0    0.00    0.00       1         virtual_edition_c::GetMainName() [16516]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
[16517   0.0    0.00    0.00       1         virtual_edition_c::retimeChapters() [16517]
                0.00    0.00       1/1           virtual_edition_c::retimeSubChapters(virtual_chapter_c*) [16519]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16518   0.0    0.00    0.00       1         virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16518]
                0.00    0.00       1/1           virtual_chapter_c::PublishChapters(input_title_t&, int&, int) [16513]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::retimeChapters() [16517]
[16519   0.0    0.00    0.00       1         virtual_edition_c::retimeSubChapters(virtual_chapter_c*) [16519]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
[16520   0.0    0.00    0.00       1         virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
                0.00    0.00       1/1           virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) [16514]
                0.00    0.00       1/1           virtual_edition_c::retimeChapters() [16517]
                0.00    0.00       1/1           std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) [16573]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::~virtual_segment_c() [16524]
[16521   0.0    0.00    0.00       1         virtual_edition_c::~virtual_edition_c() [16521]
                0.00    0.00       1/1           virtual_chapter_c::~virtual_chapter_c() [16515]
-----------------------------------------------
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
[16522   0.0    0.00    0.00       1         virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
                0.00    0.00       1/15409       virtual_chapter_c::getSubChapterbyTimecode(long long) [16175]
                0.00    0.00       1/15404       virtual_edition_c::getChapterbyTimecode(long long) [16176]
                                   1             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [335]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16550]
[16523   0.0    0.00    0.00       1         virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
                0.00    0.00       1/15409       virtual_chapter_c::getSubChapterbyTimecode(long long) [16175]
                0.00    0.00       1/15404       virtual_edition_c::getChapterbyTimecode(long long) [16176]
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
                0.00    0.00       1/1           std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) [16574]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [302]
[16524   0.0    0.00    0.00       1         virtual_segment_c::~virtual_segment_c() [16524]
                0.00    0.00       1/1           virtual_edition_c::~virtual_edition_c() [16521]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
[16525   0.0    0.00    0.00       1         matroska_segment_c::InformationCreate() [16525]
                0.00    0.00       1/3           vlc_meta_New [760]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [30]
[16526   0.0    0.00    0.00       1         matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16526]
                0.00    0.00       1/7694        libmatroska::KaxCluster::GlobalTimecode() const [16199]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [136]
[16527   0.0    0.00    0.00       1         matroska_segment_c::ComputeTrackPriority() [16527]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16528   0.0    0.00    0.00       1         matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) [16528]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [302]
[16529   0.0    0.00    0.00       1         matroska_segment_c::~matroska_segment_c() [16529]
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16530]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16529]
[16530   0.0    0.00    0.00       1         matroska_segment_c::~matroska_segment_c() [16530]
                0.00    0.00       2/33          es_format_Clean [642]
                0.00    0.00       1/1           libmatroska::KaxSegment::~KaxSegment() [16492]
                0.00    0.00       1/3           libmatroska::KaxSegmentUID::~KaxSegmentUID() [16330]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [131]
[16531   0.0    0.00    0.00       1         vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) [16531]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [302]
[16532   0.0    0.00    0.00       1         vlc_stream_io_callback::~vlc_stream_io_callback() [16532]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) [16486]
[16533   0.0    0.00    0.00       1         dash::xml::DOMParser::isDash(stream_t*) [16533]
                0.00    0.00       1/11          stream_Peek <cycle 2> [676]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16535]
[16534   0.0    0.00    0.00       1         TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [16534]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::String::substr(unsigned int, unsigned int) const [16566]
[16535   0.0    0.00    0.00       1         TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16535]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16243]
                0.00    0.00       1/1           TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [16534]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16536   0.0    0.00    0.00       1         TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00       1/37          TagLib::RefCounter::deref() [16240]
                0.00    0.00       1/33          TagLib::String::StringPrivate::~StringPrivate() [16254]
                0.00    0.00       1/2           TagLib::RefCounter::ref() [16414]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16538]
[16537   0.0    0.00    0.00       1         TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
                0.00    0.00      33/33          TagLib::String::~String() [16255]
                0.00    0.00      30/30          TagLib::String::String(char const*, TagLib::String::Type) [16261]
                0.00    0.00      28/28          TagLib::String::operator==(TagLib::String const&) const [16262]
                0.00    0.00       2/2           TagLib::FileRef::~FileRef() [16417]
                0.00    0.00       1/2           TagLib::String::String() [16415]
                0.00    0.00       1/1           TagLib::String::rfind(TagLib::String const&, int) const [16564]
                0.00    0.00       1/1           TagLib::String::substr(unsigned int, unsigned int) const [16566]
                0.00    0.00       1/1           TagLib::String::upper() const [16565]
                0.00    0.00       1/1           TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00       1/1           TagLib::String::isEmpty() const [16567]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [542]
[16538   0.0    0.00    0.00       1         TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16538]
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16243]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [542]
[16539   0.0    0.00    0.00       1         TagLib::FileRef::FileRef() [16539]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16243]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [542]
[16540   0.0    0.00    0.00       1         TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
                0.00    0.00       1/37          TagLib::RefCounter::deref() [16240]
                0.00    0.00       1/2           TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16416]
                0.00    0.00       1/2           TagLib::RefCounter::ref() [16414]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16541   0.0    0.00    0.00       1         libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [16541]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16341]
                0.00    0.00       1/63875       libebml::EbmlElement::GetSize() const [16171]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [131]
[16542   0.0    0.00    0.00       1         libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [16542]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [302]
[16543   0.0    0.00    0.00       1         libebml::EbmlStream::~EbmlStream() [16543]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16544   0.0    0.00    0.00       1         libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16544]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16341]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16545   0.0    0.00    0.00       1         libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16545]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16341]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [292]
[16546   0.0    0.00    0.00       1         libebml::EbmlHead::Create() [16546]
                0.00    0.00       1/1           libebml::EbmlHead::EbmlHead() [16547]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlHead::Create() [16546]
[16547   0.0    0.00    0.00       1         libebml::EbmlHead::EbmlHead() [16547]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16212]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16548   0.0    0.00    0.00       1         libebml::EbmlHead::~EbmlHead() [16548]
                0.00    0.00       1/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16213]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [168]
[16549   0.0    0.00    0.00       1         demux_sys_t::FindSegment(libebml::EbmlBinary const&) const [16549]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16550   0.0    0.00    0.00       1         demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16550]
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16551   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [16551]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16552   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [16552]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16553   0.0    0.00    0.00       1         libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [16553]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16554   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [16554]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16555   0.0    0.00    0.00       1         libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [16555]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16556   0.0    0.00    0.00       1         libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [16556]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16557   0.0    0.00    0.00       1         libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [16557]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16558   0.0    0.00    0.00       1         libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [16558]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16559   0.0    0.00    0.00       1         libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [16559]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16560   0.0    0.00    0.00       1         libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [16560]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16561   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [16561]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [151]
[16562   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [16562]
-----------------------------------------------
                0.00    0.00       1/1           EbmlParser::Get(int) [43]
[16563   0.0    0.00    0.00       1         libmatroska::KaxCues::Generic() const [16563]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16564   0.0    0.00    0.00       1         TagLib::String::rfind(TagLib::String const&, int) const [16564]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16565   0.0    0.00    0.00       1         TagLib::String::upper() const [16565]
                0.00    0.00       1/2           TagLib::String::String() [16415]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16566   0.0    0.00    0.00       1         TagLib::String::substr(unsigned int, unsigned int) const [16566]
                0.00    0.00       1/1           TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16535]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16567   0.0    0.00    0.00       1         TagLib::String::isEmpty() const [16567]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [542]
[16568   0.0    0.00    0.00       1         TagLib::FileRef::isNull() const [16568]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [189]
[16569   0.0    0.00    0.00       1         libebml::EbmlFloat::operator double() const [16569]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [197]
[16570   0.0    0.00    0.00       1         libebml::EbmlFloat::operator float() const [16570]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16571   0.0    0.00    0.00       1         std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) [16571]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [131]
[16572   0.0    0.00    0.00       1         std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) [16572]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
[16573   0.0    0.00    0.00       1         std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) [16573]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
[16574   0.0    0.00    0.00       1         std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) [16574]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16575   0.0    0.00    0.00       1         std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) [16575]
-----------------------------------------------

 This table describes the call tree of the program, and was sorted by
 the total amount of time spent in each function and its children.

 Each entry in this table consists of several lines.  The line with the
 index number at the left hand margin lists the current function.
 The lines above it list the functions that called this function,
 and the lines below it list the functions this one called.
 This line lists:
     index	A unique number given to each element of the table.
		Index numbers are sorted numerically.
		The index number is printed next to every function name so
		it is easier to look up where the function is in the table.

     % time	This is the percentage of the `total' time that was spent
		in this function and its children.  Note that due to
		different viewpoints, functions excluded by options, etc,
		these numbers will NOT add up to 100%.

     self	This is the total amount of time spent in this function.

     children	This is the total amount of time propagated into this
		function by its children.

     called	This is the number of times the function was called.
		If the function called itself recursively, the number
		only includes non-recursive calls, and is followed by
		a `+' and the number of recursive calls.

     name	The name of the current function.  The index number is
		printed after it.  If the function is a member of a
		cycle, the cycle number is printed between the
		function's name and the index number.


 For the function's parents, the fields have the following meanings:

     self	This is the amount of time that was propagated directly
		from the function into this parent.

     children	This is the amount of time that was propagated from
		the function's children into this parent.

     called	This is the number of times this parent called the
		function `/' the total number of times the function
		was called.  Recursive calls to the function are not
		included in the number after the `/'.

     name	This is the name of the parent.  The parent's index
		number is printed after it.  If the parent is a
		member of a cycle, the cycle number is printed between
		the name and the index number.

 If the parents of the function cannot be determined, the word
 `<spontaneous>' is printed in the `name' field, and all the other
 fields are blank.

 For the function's children, the fields have the following meanings:

     self	This is the amount of time that was propagated directly
		from the child into the function.

     children	This is the amount of time that was propagated from the
		child's children to the function.

     called	This is the number of times the function called
		this child `/' the total number of times the child
		was called.  Recursive calls by the child are not
		listed in the number after the `/'.

     name	This is the name of the child.  The child's index
		number is printed after it.  If the child is a
		member of a cycle, the cycle number is printed
		between the name and the index number.

 If there are any cycles (circles) in the call graph, there is an
 entry for the cycle-as-a-whole.  This entry shows who called the
 cycle (as parents) and the members of the cycle (as children.)
 The `+' recursive calls entry shows the number of function calls that
 were internal to the cycle, and the calls entry for each member shows,
 for that member, how many times it was called from other members of
 the cycle.



Index by function name

 [185] AReadStream (stream.c) [16176] virtual_edition_c::getChapterbyTimecode(long long) (virtual_segment.cpp) [1008] filter_chain_AppendFromStringInternal (filter_chain.c)
 [681] ASeek (stream.c)    [16520] virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) (virtual_segment.cpp) [321] filter_chain_Delete
  [80] AStreamControl (stream.c) [16521] virtual_edition_c::~virtual_edition_c() (virtual_segment.cpp) [276] filter_chain_DeleteFilterInternal (filter_chain.c)
 [304] AStreamDestroy (stream.c) [16177] virtual_segment_c::UpdateCurrentToChapter(demux_t&) (virtual_segment.cpp) [735] filter_chain_GetFmtOut
 [682] AStreamPeekStream (stream.c) [16522] virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) (virtual_segment.cpp) [576] filter_chain_GetLength
 [259] AStreamPrebufferStream (stream.c) [16523] virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) (virtual_segment.cpp) [722] filter_chain_New
  [92] AStreamReadNoSeekStream (stream.c) [16524] virtual_segment_c::~virtual_segment_c() (virtual_segment.cpp) [275] filter_chain_Reset
 [550] AStreamReadStream (stream.c) [172] matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) (matroska_segment_parse.cpp) [582] filter_chain_SubSource
 [175] AStreamRefillStream (stream.c) [196] matroska_segment_c::ParseCluster(bool) (matroska_segment_parse.cpp) [34] filter_chain_VideoFilter
  [87] AStreamSeekStream (stream.c) [139] matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) (matroska_segment_parse.cpp) [675] filter_chain_VideoFlush
 [449] AboveCallback (vout_intf.c) [197] matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) (matroska_segment_parse.cpp) [736] find_unicode_charmap (ftobjs.c)
 [907] Activate (yuy2_i422.c) [142] matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) (matroska_segment.cpp) [613] ft_alloc (ftsystem.c)
 [908] Activate (integer.c) [16525] matroska_segment_c::InformationCreate() (matroska_segment.cpp) [837] ft_ansi_stream_close (ftsystem.c)
 [909] Activate (grey_yuv.c) [16526] matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) (matroska_segment.cpp) [628] ft_ansi_stream_io (ftsystem.c)
 [910] Activate (i420_yuy2.c) [16178] matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) (matroska_segment.cpp) [838] ft_black_done (ftraster.c)
 [911] Activate (yuy2_i420.c) [16527] matroska_segment_c::ComputeTrackPriority() (matroska_segment.cpp) [839] ft_black_new (ftraster.c)
 [912] Activate (i422_i420.c) [335] matroska_segment_c::Seek(long long, long long, long long) (matroska_segment.cpp) [840] ft_black_reset (ftraster.c)
 [913] Activate (i422_yuy2.c) [284] matroska_segment_c::Select(long long) (matroska_segment.cpp) [707] ft_cmap_done_internal (ftobjs.c)
 [914] Activate (i420_rgb.c) [136] matroska_segment_c::Preload() (matroska_segment.cpp) [614] ft_free (ftsystem.c)
 [447] Add (es_out_timeshift.c) [30] matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) (matroska_segment.cpp) [841] ft_glyphslot_done (ftobjs.c)
 [323] AndroidLockSurface (surface.c) [153] matroska_segment_c::LoadCues(libmatroska::KaxCues*) (matroska_segment.cpp) [842] ft_glyphslot_free_bitmap
 [584] AndroidUnlockSurface (surface.c) [315] matroska_segment_c::UnSelect() (matroska_segment.cpp) [622] ft_mem_alloc
 [915] ArchitectureSpecificCopyHooks (utils.c) [189] matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) (matroska_segment_parse.cpp) [606] ft_mem_free
 [763] ArchitectureSpecificCopyHooksDestroy (utils.c) [16413] matroska_segment_c::TrackInit(mkv_track_t*) (matroska_segment_parse.cpp) [615] ft_mem_qalloc
 [479] AspectCallback (vout_intf.c) [16528] matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) (matroska_segment.cpp) [658] ft_mem_qrealloc
 [596] CheckValue (variables.c) [16529] matroska_segment_c::~matroska_segment_c() (matroska_segment.cpp) [659] ft_mem_realloc
 [620] CleanupVar (variables.c) [16530] matroska_segment_c::~matroska_segment_c() (matroska_segment.cpp) [843] ft_module_get_service
 [916] Close (yuvp.c)        [141] vlc_stream_io_callback::getFilePointer() (stream_io_callback.cpp) [844] ft_raster1_init (ftrend1.c)
 [917] Close (record.c)       [94] vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) (stream_io_callback.cpp) [737] ft_realloc (ftsystem.c)
 [918] Close (opensles_android.c) [60] vlc_stream_io_callback::read(void*, unsigned int) (stream_io_callback.cpp) [845] ft_recompute_scaled_metrics (ftobjs.c)
 [395] Close (surface.c)   [16531] vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) (stream_io_callback.cpp) [650] ft_service_list_lookup
 [919] CloseDecoder (android_mediacodec.c) [16532] vlc_stream_io_callback::~vlc_stream_io_callback() (stream_io_callback.hpp) [708] ft_smooth_init (ftsmooth.c)
 [311] CloseDecoder (avcodec.c) [16533] dash::xml::DOMParser::isDash(stream_t*) (DOMParser.cpp) [709] ft_validator_init
 [516] CloseScaler (swscale.c) [16414] TagLib::RefCounter::ref() [88] generic_start (modules.c)
 [599] CmdExecuteControl (es_out_timeshift.c) [16240] TagLib::RefCounter::deref() [246] generic_stop (modules.c)
 [316] CmdExecuteDel (es_out_timeshift.c) [16243] TagLib::RefCounter::RefCounter() [602] getLong
  [67] CmdExecuteSend (es_out_timeshift.c) [16244] TagLib::RefCounter::~RefCounter() [603] getMediaPlayer
 [674] CmpFloat (variables.c) [16254] TagLib::String::StringPrivate::~StringPrivate() [846] get_android_opaque_mutex (android_opaque.c)
 [637] CmpInt (variables.c) [16534] TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [586] get_che (aacdec.c)
 [605] CmpString (variables.c) [16260] TagLib::String::copyFromLatin1(char const*, unsigned int) [1009] get_path (access.c)
  [82] Control (record.c)  [16261] TagLib::String::String(char const*, TagLib::String::Type) [710] gray_raster_done (ftgrays.c)
 [726] Control (surface.c) [16415] TagLib::String::String() [711] gray_raster_new (ftgrays.c)
 [155] Control (es_out_timeshift.c) [16535] TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [712] gray_raster_reset (ftgrays.c)
 [405] ControlPause (input.c) [16255] TagLib::String::~String() [1010] h264_get_profile_level (utils.c)
  [35] CopyOmxPicture (utils.c) [16536] TagLib::String::operator=(TagLib::String const&) [592] harmful_delay (vlc_threads.h)
 [920] Create (libass.c)   [16416] TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [565] imdct_and_windowing (aacdec.c)
 [921] Create (float.c)    [16537] TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [244] info_category_AddInfo (info.h)
 [195] Create (freetype.c) [16538] TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [375] input_ChangeState (input.c)
 [922] Create (ugly.c)     [16539] TagLib::FileRef::FileRef() [461] input_Close
 [923] Create (dolby.c)    [16417] TagLib::FileRef::~FileRef() [199] input_ConfigVarInit (var.c)
 [180] Create (input.c)    [16418] TagLib::FileRef::~FileRef() [692] input_Control
 [750] Create (picture_pool.c) [16540] TagLib::FileRef::operator=(TagLib::FileRef const&) [524] input_ControlPush (input.c)
 [494] CreateDecoder (decoder.c) [132] libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [216] input_ControlVarInit (var.c)
 [402] CreateFilter (filters.c) [16541] libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [349] input_ControlVarNavigation (var.c)
 [346] CreateResampler (ugly.c) [16188] libebml::EbmlBinary::EbmlBinary() [309] input_ControlVarStop (var.c)
 [480] CropCallback (vout_intf.c) [16187] libebml::EbmlBinary::~EbmlBinary() [407] input_ControlVarTitle (var.c)
   [5] DecodeAudio (audio.c) [16208] libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [181] input_Create
  [12] DecodeVideo (android_mediacodec.c) [16419] libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [525] input_DecoderChangeDelay (decoder.c)
 [448] DecoderBlockFlushNew (decoder.c) [16290] libebml::EbmlMaster::SetSizeInfinite(bool) [86] input_DecoderDecode
   [4] DecoderDecodeAudio (decoder.c) [16211] libebml::EbmlMaster::ProcessMandatory() [266] input_DecoderDelete
   [9] DecoderDecodeVideo (decoder.c) [151] libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [600] input_DecoderGetFifoSize (decoder.c)
  [40] DecoderFixTs (decoder.c) [16212] libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [158] input_DecoderHasFormatChanged (decoder.c)
 [370] DecoderFlush (decoder.c) [16213] libebml::EbmlMaster::~EbmlMaster() [159] input_DecoderIsCcPresent (decoder.c)
 [924] DecoderOpen (spudec.c) [16285] libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [333] input_DecoderIsEmpty (decoder.c)
 [925] DecoderOpen (araw.c) [16184] libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [847] input_DecoderNew (decoder.c)
 [926] DecoderOpen (g711.c) [16542] libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [367] input_DecoderStartWait (decoder.c)
   [3] DecoderThread (decoder.c) [16543] libebml::EbmlStream::~EbmlStream() [451] input_DecoderStopWait (decoder.c)
 [764] DecoderUpdateFormatLocked (decoder.c) [389] libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [331] input_DecoderWait (decoder.c)
 [260] DeinterlaceCallback (interlacing.c) [16544] libebml::EbmlString::EbmlString(libebml::EbmlString const&) [409] input_EsOutNew (es_out.c)
 [520] DeinterlaceIsPresent (interlacing.c) [16340] libebml::EbmlString::EbmlString(std::string const&) [282] input_EsOutTimeshiftNew (es_out_timeshift.c)
 [314] Del (es_out_timeshift.c) [16306] libebml::EbmlString::EbmlString() [713] input_GetItem
 [128] DeleteDecoder (decoder.c) [225] libebml::IOCallback::readFully(void*, unsigned int) [462] input_Join (input.c)
 [765] Destroy (freetype.c)  [292] libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [436] input_SendEventAout (event.c)
 [558] Destroy (picture_pool.c) [16210] libebml::EbmlElement::SetDefaultSize(unsigned long long) (EbmlElement.h) [353] input_SendEventCache (event.c)
 [617] Destroy (variables.c)  [58] libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [437] input_SendEventDead (event.c)
 [927] Destroy (es_out_timeshift.c) [16185] libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [396] input_SendEventEsAdd (event.c)
 [928] Destructor (input.c)  [193] libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [723] input_SendEventEsDel (event.c)
 [160] Display (surface.c)    [71] libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [757] input_SendEventEsSelect (event.c)
 [273] DisplayNew (display.c) [16341] libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [250] input_SendEventLength (event.c)
 [217] DoWork (ugly.c)     [16182] libebml::EbmlElement::EbmlElement(unsigned long long, bool) [368] input_SendEventMeta (event.c)
 [727] Dummy_Select (platform_fonts.c) [16183] libebml::EbmlElement::~EbmlElement() [438] input_SendEventMetaEpg (event.c)
 [593] DupDummy (variables.c) [16420] libebml::EMaxIdLength::Create() [416] input_SendEventMetaInfo (event.c)
 [624] DupString (variables.c) [16421] libebml::EMaxIdLength::EMaxIdLength() [194] input_SendEventPosition (event.c)
 [298] End (input.c)       [16422] libebml::EMaxIdLength::~EMaxIdLength() [430] input_SendEventProgramAdd (event.c)
 [929] EnsureUTF8          [16423] libebml::EReadVersion::Create() [404] input_SendEventProgramScrambled (event.c)
 [518] EqualizerCallback (filters.c) [16424] libebml::EReadVersion::EReadVersion() [1011] input_SendEventProgramSelect (event.c)
 [366] EsCreateDecoder (es_out.c) [16425] libebml::EReadVersion::~EReadVersion() [379] input_SendEventState (event.c)
 [573] EsIsSelected (es_out.c) [228] libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [229] input_SendEventStatistics (event.c)
 [234] EsOutAdd (es_out.c) [16545] libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [1012] input_SendEventTeletextDel (event.c)
 [144] EsOutControl (es_out.c) [16205] libebml::EbmlUInteger::EbmlUInteger() [848] input_SendEventTeletextSelect (event.c)
 [317] EsOutDel (es_out.c) [16239] libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [385] input_SendEventTitle (event.c)
 [930] EsOutDelete (es_out.c) [16426] libebml::EMaxSizeLength::Create() [406] input_SendEventVout (event.c)
 [288] EsOutProgramAdd (es_out.c) [16427] libebml::EMaxSizeLength::EMaxSizeLength() [1013] input_SplitMRL (input.c)
 [766] EsOutProgramFind (es_out.c) [16428] libebml::EMaxSizeLength::~EMaxSizeLength() [1014] input_Start
 [290] EsOutProgramSelect (es_out.c) [16181] libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [471] input_Stop
 [728] EsOutSelect (es_out.c) [16429] libebml::EDocTypeVersion::Create() [526] input_clock_ChangeSystemOrigin (clock.c)
  [66] EsOutSend (es_out.c) [16430] libebml::EDocTypeVersion::EDocTypeVersion() [39] input_clock_ConvertTS (clock.c)
 [358] EsSelect (es_out.c) [16431] libebml::EDocTypeVersion::~EDocTypeVersion() [1015] input_clock_Delete (clock.c)
 [422] EsUnselect (es_out.c) [390] libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [251] input_clock_GetState (clock.c)
 [767] FT_Add_Default_Modules [16266] libebml::EbmlUnicodeString::EbmlUnicodeString() [203] input_clock_GetWakeup (clock.c)
 [639] FT_Add_Module       [16173] libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [1016] input_clock_New (clock.c)
 [699] FT_CMap_New         [16432] libebml::EDocTypeReadVersion::Create() [497] input_clock_SetJitter (clock.c)
 [684] FT_DivFix           [16433] libebml::EDocTypeReadVersion::EDocTypeReadVersion() [252] input_clock_Update (clock.c)
 [768] FT_Done_Face        [16434] libebml::EDocTypeReadVersion::~EDocTypeReadVersion() (EbmlSubHead.h) [202] input_event_changed (media_player.c)
 [769] FT_Done_FreeType    [16206] libebml::GetEbmlGlobal_Context() [465] input_item_AddOption
 [770] FT_Done_GlyphSlot   [16203] libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [452] input_item_GetMeta
 [771] FT_Done_Library     [16435] libebml::EDocType::Create() [498] input_item_GetName
 [772] FT_Done_Memory      [16436] libebml::EDocType::EDocType() [849] input_item_Hold
 [685] FT_Get_Module       [16437] libebml::EDocType::~EDocType() (EbmlSubHead.h) [424] input_item_NewExt
 [729] FT_Get_Module_Interface [16438] libebml::EVersion::Create() [425] input_item_NewWithType
 [773] FT_GlyphLoader_Adjust_Points (ftgloadr.c) [16439] libebml::EVersion::EVersion() [850] input_item_Release
 [774] FT_GlyphLoader_CreateExtra [16440] libebml::EVersion::~EVersion() [394] input_item_ReplaceInfos
 [667] FT_GlyphLoader_Done   [421] libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [457] input_item_SetDuration
 [668] FT_GlyphLoader_New  [16546] libebml::EbmlHead::Create() [446] input_item_SetEpgOffline (item.c)
 [669] FT_GlyphLoader_Reset [16547] libebml::EbmlHead::EbmlHead() [466] input_item_SetErrorWhenReading (item.c)
 [670] FT_GlyphLoader_Rewind [16548] libebml::EbmlHead::~EbmlHead() [415] input_item_SetMeta
 [775] FT_Init_FreeType    [16307] libebml::EbmlVoid::Create() [458] input_item_SetPreparsed (item.c)
 [679] FT_List_Add         [16308] libebml::EbmlVoid::EbmlVoid() [527] input_item_SetURI
 [662] FT_List_Finalize    [16309] libebml::EbmlVoid::~EbmlVoid() [453] input_item_UpdateTracksInfo (item.c)
 [686] FT_List_Find        [16214] libebml::EbmlCrc32::ResetCRC() [506] input_item_duration_changed (media.c)
 [687] FT_List_Remove      [16215] libebml::EbmlCrc32::EbmlCrc32() [418] input_item_meta_changed (media.c)
 [671] FT_Lookup_Renderer    [401] libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [473] input_item_preparsed_changed (media.c)
 [672] FT_MulFix           [16441] libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [507] input_pausable_changed (media_player.c)
 [776] FT_New_Face         [16310] libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [227] input_resource_GetAout
 [777] FT_New_GlyphSlot    [16442] libebml::UTFstring::UpdateFromUCS2() [1017] input_resource_Hold (resource.c)
 [778] FT_New_Library      [16311] libebml::UTFstring::UpdateFromUTF8() [528] input_resource_HoldAout
 [779] FT_New_Memory       [16312] libebml::UTFstring::SetUTF8(std::string const&) [482] input_resource_HoldVouts (resource.c)
 [780] FT_New_Size         [16443] libebml::UTFstring::UTFstring(libebml::UTFstring const&) [1018] input_resource_New
 [781] FT_Open_Face        [16264] libebml::UTFstring::UTFstring() [280] input_resource_PutAout
 [640] FT_Remove_Module    [16263] libebml::UTFstring::~UTFstring() [1019] input_resource_Release
 [782] FT_Request_Metrics  [16444] libebml::UTFstring::operator=(wchar_t const*) [529] input_resource_RequestSout (resource.c)
 [783] FT_Request_Size     [16198] EbmlParser::IsTopPresent(libebml::EbmlElement*) const (Ebml_parser.cpp) [231] input_resource_RequestVout (resource.c)
 [784] FT_Select_Charmap   [16196] EbmlParser::GetLevel() const (Ebml_parser.cpp) [296] input_resource_ResetAout
 [785] FT_Set_Pixel_Sizes  [16549] demux_sys_t::FindSegment(libebml::EbmlBinary const&) const (demux.cpp) [499] input_resource_SetInput (resource.c)
 [786] FT_Stream_Close     [16550] demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const (demux.cpp) [293] input_resource_Terminate
 [633] FT_Stream_EnterFrame [16199] libmatroska::KaxCluster::GlobalTimecode() const [851] input_resource_TerminateVout
 [634] FT_Stream_ExitFrame [16197] libmatroska::KaxCluster::Generic() const [508] input_scrambled_changed (media_player.c)
 [730] FT_Stream_ExtractFrame [16313] libmatroska::KaxCodecID::Generic() const [509] input_seekable_changed (media_player.c)
 [787] FT_Stream_Free      [16445] libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [392] input_vaControl
 [626] FT_Stream_GetULong  [16256] libmatroska::KaxCueTime::Generic() const [1020] jni_IsVideoPlayerActivityCreated
 [788] FT_Stream_New       [16314] libmatroska::KaxDateUTC::Generic() const [575] jni_LockAndGetAndroidJavaSurface
 [789] FT_Stream_Open      [16446] libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [852] jni_SetAndroidSurfaceSize
 [688] FT_Stream_Pos       [16241] libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [853] jni_SetAndroidSurfaceSizeEnv
 [731] FT_Stream_Read      [16267] libmatroska::KaxSegment::Generic() const [581] jni_UnlockAndroidSurface
 [732] FT_Stream_ReadAt    [16242] libmatroska::KaxSegment::operator libebml::EbmlId const&() const [1021] jpeg2000_init_static_data (jpeg2000dec.c)
 [627] FT_Stream_ReadFields [16233] libmatroska::KaxCuePoint::Generic() const [427] libvlc_event_attach
 [700] FT_Stream_ReadULong [16257] libmatroska::KaxCueTrack::Generic() const [500] libvlc_event_manager_new (event.c)
 [664] FT_Stream_ReleaseFrame [16315] libmatroska::KaxDuration::Generic() const [371] libvlc_event_manager_register_event_type (event.c)
 [641] FT_Stream_Seek      [16447] libmatroska::KaxDuration::operator libebml::EbmlId const&() const [213] libvlc_event_send (event.c)
 [790] FT_Stroker_Done     [16342] libmatroska::KaxSeekHead::Generic() const [391] libvlc_get_input_thread (media_player.c)
 [791] FT_Stroker_New      [16316] libmatroska::KaxTrackUID::Generic() const [609] libvlc_logf (log.c)
 [931] FileClose (file.c)  [16448] libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [467] libvlc_media_add_option
  [97] FileControl (file.c) [16317] libmatroska::KaxMuxingApp::Generic() const [468] libvlc_media_add_option_flag
 [325] FileOpen (file.c)   [16449] libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [1022] libvlc_media_event_manager
 [601] FileRead (file.c)   [16318] libmatroska::KaxTrackType::Generic() const [408] libvlc_media_new_from_input_item (media.c)
 [683] FileSeek (file.c)   [16450] libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [381] libvlc_media_new_location
 [932] FilterAllocationClean (display.c) [16451] libmatroska::KaxSegmentUID::ValidateSize() const (KaxSemantic.h) [1023] libvlc_media_player_event_manager
 [933] FilterAllocationInit (display.c) [16319] libmatroska::KaxSegmentUID::Generic() const (KaxSemantic.h) [530] libvlc_media_player_get_media
  [41] FilterChainVideoFilter (filter_chain.c) [16452] libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const (KaxSemantic.h) [253] libvlc_media_player_get_state
 [232] FilterRelease (vout_subpictures.c) [16453] libmatroska::KaxTrackAudio::Generic() const [255] libvlc_media_player_is_playing
 [587] FilterS16N (integer.c) [16551] libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [188] libvlc_media_player_new
  [26] Find (fourcc.c)     [16320] libmatroska::KaxTrackEntry::Generic() const [378] libvlc_media_player_set_media
 [701] FixParameters (swscale.c) [16454] libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [439] libvlc_media_player_set_video_title_display
  [17] Fl32toS16 (format.c) [16455] libmatroska::KaxTrackVideo::Generic() const [286] libvlc_media_player_stop
 [361] Flush (opensles_android.c) [16552] libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [714] libvlc_media_release
 [595] FreeDummy (variables.c) [16321] libmatroska::KaxWritingApp::Generic() const [715] libvlc_media_retain
 [625] FreeString (variables.c) [16456] libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [429] libvlc_media_set_state (media.c)
 [792] FullscreenCallback (vout_intf.c) [16186] libmatroska::KaxSimpleBlock::Generic() const [1024] libvlc_media_subitems
 [702] GetFfmpegChroma (chroma.c) [116] libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [469] libvlc_retain
 [308] GetFfmpegCodec (fourcc.c) [16322] libmatroska::KaxTrackNumber::Generic() const [738] make_filters_from_proto (aacps_tablegen.h)
 [289] GetFontSize (freetype.c) [16457] libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [739] make_path
 [342] GetOmxRole (utils.c) [16323] libmatroska::KaxCodecPrivate::Generic() const [52] mdate
  [14] GetOutput (android_mediacodec.c) [16458] libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [631] module_Map (bank.c)
 [433] GetParameters (swscale.c) [16343] libmatroska::KaxSeekPosition::Generic() const [693] module_exists
 [348] GetVlcChromaFormat (utils.c) [16459] libmatroska::KaxAudioChannels::Generic() const [694] module_find
  [25] GetVlcChromaSizes (utils.c) [16553] libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [571] module_get_capability
 [793] Get_Interface (t1driver.c) [16193] libmatroska::KaxInternalBlock::ValidateSize() const [1025] module_get_name
 [934] IgnoreOmxDecoderPadding (utils.c) [16324] libmatroska::KaxTimecodeScale::Generic() const [636] module_get_object
 [221] Init (swscale.c)    [16460] libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [663] module_get_score
 [205] Init (input.c)      [16461] libmatroska::KaxTrackLanguage::Generic() const [665] module_list_cap (bank.c)
 [163] InitAudioDec (audio.c) [16554] libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [653] module_list_free
 [521] InitOmxCore (omxil_core.c) [16462] libmatroska::KaxTrackMinCache::Generic() const [695] module_list_get
 [339] InitTitle (input.c) [16555] libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [632] module_load (modules.c)
 [313] InputDelCallbacks (var.c) [16234] libmatroska::KaxClusterTimecode::Generic() const [666] module_need
 [733] InputItemFindCat (item.c) [16556] libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [572] module_provides
 [219] InputSourceInit (input.c) [16463] libmatroska::KaxTrackFlagLacing::Generic() const [208] module_unneed
 [794] LanguageGetCode (es_out.c) [16557] libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [85] msleep
 [359] LanguageSplit (es_out.c) [16464] libmatroska::KaxVideoPixelWidth::Generic() const [56] mwait
 [935] LoadNativeWindowAPI (utils.c) [16558] libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [854] open_face (ftobjs.c)
  [28] Lookup (fourcc.c)   [16465] libmatroska::KaxVideoPixelHeight::Generic() const [855] pcf_driver_requester (pcfdrivr.c)
 [936] MRLSeekPoint (input.c) [16559] libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [856] pfr_get_service (pfrdrivr.c)
  [20] MainLoop (input.c)  [16466] libmatroska::KaxAudioSamplingFreq::Generic() const [110] picture_CopyProperties
 [505] ObjectKillChildrens (objects.c) [16560] libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [75] picture_Hold
 [326] Open (yuvp.c)       [16217] libmatroska::KaxCueTrackPositions::Generic() const [224] picture_New
 [937] Open (record.c)     [16467] libmatroska::KaxVideoDisplayWidth::Generic() const [186] picture_NewFromFormat
 [938] Open (dvbsub.c)     [16561] libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [183] picture_NewFromResource
  [76] Open (chroma_yuv.c) [16258] libmatroska::KaxCueClusterPosition::Generic() const [102] picture_Release
 [795] Open (yuv_rgb.c)    [16468] libmatroska::KaxVideoDisplayHeight::Generic() const [585] picture_Reset
 [939] Open (httplive.c)   [16562] libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [207] picture_Setup
 [940] Open (opensles_android.c) [16259] libmatroska::KaxCueRelativePosition::Generic() const [531] picture_fifo_Delete
 [941] Open (smooth.c)     [16325] libmatroska::KaxTrackDefaultDuration::Generic() const [444] picture_fifo_Flush
 [942] Open (aes3.c)       [16469] libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [1026] picture_fifo_New
 [943] Open (vdr.c)        [16563] libmatroska::KaxCues::Generic() const [152] picture_fifo_Peek
 [944] Open (cdg.c)        [16470] libmatroska::KaxInfo::Generic() const [169] picture_fifo_Pop
 [245] Open (surface.c)    [16268] libmatroska::KaxSeek::Generic() const [171] picture_fifo_Push
 [945] Open (opaque.c)     [16344] libmatroska::KaxSeekID::ValidateSize() const [357] picture_pool_Delete
 [327] Open (format.c)     [16345] libmatroska::KaxSeekID::Generic() const [69] picture_pool_Get
 [946] OpenBzip2 (decomp.c) [16471] libmatroska::KaxTracks::Generic() const [1027] picture_pool_GetSize
 [947] OpenCommon (lpcm.c) [16564] TagLib::String::rfind(TagLib::String const&, int) const [1028] picture_pool_New
 [948] OpenDecoder (jpeg.c) [16565] TagLib::String::upper() const [857] picture_pool_NewExtended
 [949] OpenDecoder (flac.c) [16566] TagLib::String::substr(unsigned int, unsigned int) const [192] picture_pool_NewFromFormat
 [950] OpenDecoder (png.c) [16567] TagLib::String::isEmpty() const [1029] picture_pool_NonEmpty
 [951] OpenDecoder (mpeg_audio.c) [16262] TagLib::String::operator==(TagLib::String const&) const [1030] picture_pool_Reserve
 [218] OpenDecoder (android_mediacodec.c) [16568] TagLib::FileRef::isNull() const [566] pool_release_buffer (buffer.c)
 [341] OpenDecoder (omxil.c) [16286] libebml::EbmlBinary::ValidateSize() const (EbmlBinary.h) [648] posix_memalign (posix_memalign.c)
 [952] OpenDecoder (lpcm.c) [16216] libebml::EbmlMaster::ValidateSize() const [32] profCount (prof.c)
 [953] OpenDecoder (theora.c) [16265] libebml::EbmlMaster::GetSize() const [858] ps_hinter_done (pshmod.c)
  [93] OpenDecoder (avcodec.c) [16326] libebml::EbmlString::ValidateSize() const (EbmlString.h) [859] ps_hinter_init (pshmod.c)
 [954] OpenDecoder (a52.c) [16287] libebml::EbmlString::operator std::string const&() const [689] ps_mask_table_done (pshrec.c)
 [955] OpenDecoder (opus.c) [16171] libebml::EbmlElement::GetSize() const (EbmlElement.h) [860] psnames_get_service (psmodule.c)
 [956] OpenDecoder (dts.c) [16195] libebml::EbmlElement::IsDummy() const (EbmlElement.h) [696] pthread_once
 [957] OpenDecoder (vorbis.c) [16472] libebml::EMaxIdLength::Generic() const [179] qdm2_init_static_data (qdm2.c)
 [958] OpenDecoder (aes3.c) [16346] libebml::EMaxIdLength::operator libebml::EbmlId const&() const [360] release_input_thread (media_player.c)
 [959] OpenDecoder (speex.c) [16473] libebml::EReadVersion::Generic() const [1031] secstotimestr
 [960] OpenFilter (scale.c) [16347] libebml::EReadVersion::operator libebml::EbmlId const&() const [1032] setLong
 [961] OpenFilter (simple_channel_mixer.c) [16207] libebml::EbmlUInteger::ValidateSize() const (EbmlUInteger.h) [417] set_state (media_player.c)
 [962] OpenFilter (simple.c) [16327] libebml::EbmlUInteger::operator unsigned char() const [861] sfnt_done_face (sfobjs.c)
 [522] OpenGeneric (omxil.c) [16269] libebml::EbmlUInteger::operator unsigned int() const [716] sfnt_get_interface (sfdriver.c)
 [963] OpenGzip (decomp.c) [16238] libebml::EbmlUInteger::operator unsigned short() const [862] sfnt_init_face (sfobjs.c)
 [220] OpenScaler (swscale.c) [16218] libebml::EbmlUInteger::operator unsigned long long() const [863] sfnt_load_face (sfobjs.c)
 [964] OpenXZ (decomp.c)   [16474] libebml::EMaxSizeLength::Generic() const [1033] sniff_channel_order (aacdec.c)
 [751] Peek (record.c)     [16348] libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [70] spectral_to_sample (aacdec.c)
 [646] PictureDestroy (picture.c) [16475] libebml::EDocTypeVersion::Generic() const [597] split_radix_permutation (fft_template.c)
 [148] Play (opensles_android.c) [16476] libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [265] spu_Attach (vout_subpictures.c)
 [574] Pool (surface.c)    [16328] libebml::EbmlUnicodeString::ValidateSize() const [501] spu_ChangeFilters
 [965] Probe (volume.c)    [16477] libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [502] spu_ChangeMargin (vout_subpictures.c)
 [966] RarProbe (rar.c)    [16478] libebml::EDocTypeReadVersion::Generic() const (EbmlSubHead.h) [503] spu_ChangeSources
 [967] RarStreamOpen (stream.c) [16479] libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const (EbmlSubHead.h) [532] spu_ClearChannel
 [101] Read (record.c)     [16480] libebml::EDocType::Generic() const (EbmlSubHead.h) [336] spu_Create
 [337] ReplayGainCallback (volume.c) [16349] libebml::EDocType::operator libebml::EbmlId const&() const (EbmlSubHead.h) [249] spu_Destroy
  [19] Run (input.c)       [16481] libebml::EVersion::Generic() const [145] spu_Render
 [481] ScaleCallback (vout_intf.c) [16350] libebml::EVersion::operator libebml::EbmlId const&() const [435] spu_get_attachments (vout_subpictures.c)
  [42] Semiplanar_Planar_420_Filter (chroma_yuv.c) [16482] libebml::EbmlDate::ValidateSize() const [623] stats_ComputeInputStats (stats.c)
  [55] Send (es_out_timeshift.c) [16329] libebml::EbmlVoid::Generic() const [533] stats_NewInputStats (stats.c)
 [307] SetupOutputFormat (audio.c) [16351] libebml::EbmlFloat::ValidateSize() const [534] stats_ReinitInputStats (stats.c)
 [495] SpuRenderCreateAndLoadScale (vout_subpictures.c) [16569] libebml::EbmlFloat::operator double() const [74] stats_Update (stats.c)
 [283] SpuRenderCreateAndLoadText (vout_subpictures.c) [16570] libebml::EbmlFloat::operator float() const [864] strcpy_strip_ext (subtitles.c)
 [347] Start (opensles_android.c) [16483] std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) (vector.tcc) [865] strcpy_trim (subtitles.c)
 [968] Stop (opensles_android.c) [16571] std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) (vector.tcc) [240] stream_AccessNew (stream.c)
 [305] StreamDelete (stream_filter.c) [16572] std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) (vector.tcc) [515] stream_CommonDelete (stream.c)
 [969] StreamOpen (zipstream.c) [16573] std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) (vector.tcc) [470] stream_CommonNew (stream.c)
 [486] SubFilterCallback (vout_intf.c) [16574] std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) (vector.tcc) [83] stream_Control
 [487] SubMarginCallback (vout_intf.c) [16575] std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) (vector.tcc) [303] stream_Delete
 [488] SubSourceCallback (vout_intf.c) [16484] std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) (vector.tcc) [400] stream_FilterChainNew (stream_filter.c)
 [796] T1_Driver_Done (t1objs.c) [16180] std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [399] stream_FilterNew
 [797] T1_Driver_Init (t1objs.c) [16209] std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [676] stream_Peek
 [798] T42_Driver_Done (t42objs.c) [16194] std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [73] stream_Read
 [799] T42_Driver_Init (t42objs.c) [117] __adddf3         [81] stream_vaControl
 [800] T42_Get_Interface (t42drivr.c) [118] __aeabi_idiv [322] subtitles_Detect (subtitles.c)
 [801] TT_Done_Context (ttinterp.c) [119] __aeabi_ldivmod [678] subtitles_Filter (subtitles.c)
 [802] TT_New_Context        [120] __aeabi_uidiv         [459] sws_alloc_context
  [13] Thread (video_output.c) [121] __aeabi_ul2d        [866] sws_freeContext
 [257] ThreadChangeFilters (video_output.c) [122] __cmpdf2 [351] sws_getCachedContext
  [18] ThreadDisplayPicture (video_output.c) [51] __divdi3 [310] sws_getContext
  [46] ThreadDisplayPreparePicture (video_output.c) [33] __emutls_get_address [312] sws_init_context
 [403] ThreadFlush (video_output.c) [29] __gnu_mcount_nc [867] sws_isSupportedInput
 [176] ThreadStart (video_output.c) [123] __gnu_uldivmod_helper [868] sws_isSupportedOutput
 [278] ThreadStop (video_output.c) [971] aac_decode_close (aacdec.c) [1034] sws_rgb2rgb_init
  [90] TimeGet (opensles_android.c) [7] aac_decode_frame (aacdec.c) [512] sws_setColorspaceDetails
 [230] TriggerCallback (variables.c) [8] aac_decode_frame_int (aacdec.c) [1035] tak_init_static_data (takdec.c)
 [340] TryFormat (filters.c) [166] aac_decode_init (aacdec.c) [690] tdelete (tdestroy.c)
 [554] TsStop (es_out_timeshift.c) [98] access_Control (vlc_access.h) [660] tdestroy (tdestroy.c)
 [803] UpdateBufferFunctions (filter_chain.c) [306] access_Delete (access.c) [717] tdestroy_recurse (tdestroy.c)
 [383] UpdatePtsDelay (input.c) [318] access_New (access.c) [591] tfind (tdestroy.c)
 [380] VarListAdd (event.c)  [806] af_autofitter_done (afmodule.c) [551] transform_GetBasicOps (es_format.c)
 [356] VarListDel (event.c)  [807] af_autofitter_init (afmodule.c) [610] tsearch (tdestroy.c)
 [355] VarListSelect (event.c) [808] af_get_interface (afmodule.c) [740] tt_cmap4_init (ttcmap.c)
  [89] VideoBufferNew (display.c) [809] af_glyph_hints_done (afhints.c) [741] tt_cmap4_validate (ttcmap.c)
 [489] VideoFilterCallback (vout_intf.c) [226] aout_BitsPerSample [869] tt_cmap6_validate (ttcmap.c)
 [970] VoutDestructor (video_output.c) [519] aout_ChangeFilterString (common.c) [870] tt_cmap_init (ttcmap.c)
 [277] VoutDisplayCreateRender (display.c) [36] aout_ChannelExtract [871] tt_driver_done (ttobjs.c)
 [324] VoutDisplayEvent (display.c) [810] aout_CheckChannelExtraction [872] tt_driver_init (ttobjs.c)
 [343] VoutValidateFormat (video_output.c) [241] aout_DecDelete (dec.c) [873] tt_face_build_cmaps (ttcmap.c)
 [423] VoutVideoFilterStaticNewPicture (video_output.c) [372] aout_DecFlush (dec.c) [874] tt_face_done (ttobjs.c)
 [804] WallPaperCallback (vout_intf.c) [113] aout_DecGetResetLost (dec.c) [875] tt_face_free_eblc (ttsbit.c)
 [805] ZoomCallback (vout_intf.c) [364] aout_DecIsEmpty (dec.c) [876] tt_face_free_name (ttload.c)
 [138] MemToBlock(unsigned char*, unsigned int, unsigned int) (util.cpp) [215] aout_DecNew (dec.c) [877] tt_face_free_ps_names (ttpost.c)
  [38] BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) (mkv.cpp) [15] aout_DecPlay (dec.c) [680] tt_face_get_name (sfobjs.c)
 [125] es_out_Control(es_out_t*, int, ...) (vlc_es_out.h) [297] aout_Destroy (output.c) [638] tt_face_goto_table (ttload.c)
 [16288] es_out_Control(es_out_t*, int, ...) (vlc_es_out.h) [972] aout_Destructor (output.c) [878] tt_face_init (ttobjs.c)
 [16485] fill_extra_data(mkv_track_t*, unsigned int) (matroska_segment_parse.cpp) [607] aout_FiltersAdjustResampling [879] tt_face_load_cmap (ttload.c)
 [131] Open(vlc_object_t*) (mkv.cpp) [264] aout_FiltersDelete [880] tt_face_load_cvt (ttpload.c)
 [16486] Open(vlc_object_t*) (dash.cpp) [223] aout_FiltersNew [881] tt_face_load_eblc (ttsbit.c)
 [270] Close(vlc_object_t*) (mkv.cpp) [254] aout_FiltersPipelineCreate (filters.c) [882] tt_face_load_font_dir (ttload.c)
  [21] Demux(demux_t*) (mkv.cpp) [269] aout_FiltersPipelineDestroy (filters.c) [883] tt_face_load_gasp (ttload.c)
 [16204] Control(demux_t*, int, std::__va_list) (mkv.cpp) [16] aout_FiltersPlay [884] tt_face_load_generic_header (ttload.c)
 [542] ReadMeta(vlc_object_t*) (taglib.cpp) [238] aout_FormatPrepare [885] tt_face_load_head (ttload.c)
 [330] EbmlParser::Up() (Ebml_parser.cpp) [281] aout_FormatPrint [742] tt_face_load_hhea (ttmtx.c)
  [43] EbmlParser::Get(int) (Ebml_parser.cpp) [719] aout_FormatPrintChannels [886] tt_face_load_hmtx (ttmtx.c)
 [16220] EbmlParser::Down() (Ebml_parser.cpp) [328] aout_FormatsPrint (common.c) [887] tt_face_load_kern (ttkern.c)
 [334] EbmlParser::Reset(demux_t*) (Ebml_parser.cpp) [62] aout_Interleave [888] tt_face_load_maxp (ttload.c)
 [242] EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) (Ebml_parser.cpp) [233] aout_New (output.c) [889] tt_face_load_name (ttload.c)
 [16289] EbmlParser::~EbmlParser() (Ebml_parser.cpp) [434] aout_OutputDelete (output.c) [890] tt_face_load_os2 (ttload.c)
 [16487] demux_sys_t::FreeUnused() (demux.cpp) [362] aout_OutputFlush (output.c) [891] tt_face_load_pclt (ttload.c)
 [16488] demux_sys_t::PreloadLinked() (demux.cpp) [204] aout_OutputLock (output.c) [892] tt_face_load_post (ttload.c)
 [16489] demux_sys_t::PreparePlayback(virtual_segment_c*) (demux.cpp) [243] aout_OutputNew (output.c) [893] tt_get_interface (ttdriver.c)
 [168] demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) (demux.cpp) [149] aout_OutputPlay (output.c) [743] tt_name_entry_ascii_from_utf16 (sfobjs.c)
 [237] demux_sys_t::InitUi() (demux.cpp) [91] aout_OutputTimeGet (output.c) [894] tt_size_done (ttobjs.c)
 [300] demux_sys_t::CleanUi() (demux.cpp) [167] aout_OutputUnlock (output.c) [895] tt_size_init (ttobjs.c)
 [301] demux_sys_t::~demux_sys_t() (demux.cpp) [973] aout_get_native_sample_rate [896] tt_size_request (ttdriver.c)
 [302] demux_sys_t::~demux_sys_t() (demux.cpp) [209] aout_update_format (decoder.c) [897] tt_size_reset (ttobjs.c)
 [16172] libmatroska::DataBuffer::Size() [112] aout_volume_Amplify (volume.c) [898] tt_slot_init (ttobjs.c)
 [16174] libmatroska::DataBuffer::Buffer() [299] aout_volume_Delete (volume.c) [261] var_AddCallback
 [16179] libmatroska::DataBuffer::~DataBuffer() [397] aout_volume_New (volume.c) [222] var_Change
 [16200] libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [441] aout_volume_SetFormat (volume.c) [1036] var_Copy (output.c)
 [16235] libmatroska::KaxCluster::Create() [63] apply_ltp (aacdec.c) [156] var_Create
 [16236] libmatroska::KaxCluster::KaxCluster() [211] atrac3_init_static_data (atrac3.c) [285] var_DelCallback
 [16237] libmatroska::KaxCluster::~KaxCluster() [419] av_buffer_alloc [350] var_Destroy
 [16291] libmatroska::KaxCodecID::Create() [129] av_buffer_create [661] var_DestroyAll (variables.c)
 [16292] libmatroska::KaxCodecID::KaxCodecID() [811] av_buffer_default_free [478] var_Get
 [16293] libmatroska::KaxCodecID::~KaxCodecID() [79] av_buffer_pool_get [206] var_GetChecked
 [16224] libmatroska::KaxCueTime::Create() [510] av_buffer_pool_init [147] var_Inherit
 [16225] libmatroska::KaxCueTime::KaxCueTime() [720] av_buffer_pool_uninit [338] var_InheritURational
 [16226] libmatroska::KaxCueTime::~KaxCueTime() [100] av_buffer_unref [291] var_OptionParse (variables.c)
 [16352] libmatroska::KaxDateUTC::Create() [612] av_codec_is_decoder [744] var_Set
 [16353] libmatroska::KaxDateUTC::KaxDateUTC() [812] av_codec_is_encoder [235] var_SetChecked
 [16354] libmatroska::KaxDateUTC::~KaxDateUTC() [974] av_crc_init [376] var_TriggerCallback
 [16490] libmatroska::KaxSegment::Create() [813] av_d2q  [535] var_Type
 [16491] libmatroska::KaxSegment::KaxSegment() [814] av_dict_free [549] varcmp (variables.c)
 [16492] libmatroska::KaxSegment::~KaxSegment() [815] av_dict_get [109] video_format_ApplyRotation
 [16245] libmatroska::KaxCuePoint::Create() [162] av_frame_alloc [111] video_format_CopyCrop
 [16246] libmatroska::KaxCuePoint::KaxCuePoint() [84] av_frame_free [899] video_format_FixRgb
 [16247] libmatroska::KaxCuePoint::~KaxCuePoint() [50] av_frame_unref [106] video_format_GetTransform
 [16227] libmatroska::KaxCueTrack::Create() [546] av_free [758] video_format_IsSimilar
 [16228] libmatroska::KaxCueTrack::KaxCueTrack() [547] av_freep [329] video_format_Print
 [16229] libmatroska::KaxCueTrack::~KaxCueTrack() [816] av_gcd [182] video_format_Setup
 [16355] libmatroska::KaxDuration::Create() [703] av_get_bits_per_pixel [577] video_format_TransformBy
 [16356] libmatroska::KaxDuration::KaxDuration() [975] av_get_bytes_per_sample [107] video_format_TransformTo
 [16357] libmatroska::KaxDuration::~KaxDuration() [105] av_get_channel_layout_nb_channels [697] vlc_CPU
 [16358] libmatroska::KaxSeekHead::Create() [677] av_get_cpu_flags [134] vlc_Log
 [16359] libmatroska::KaxSeekHead::KaxSeekHead() [588] av_init_packet [1037] vlc_audio_replay_gain_MergeFromMeta (meta.c)
 [16360] libmatroska::KaxSeekHead::~KaxSeekHead() [976] av_log_set_level [514] vlc_av_frame_Release (audio.c)
 [16294] libmatroska::KaxTrackUID::Create() [99] av_malloc [504] vlc_cancel
 [16295] libmatroska::KaxTrackUID::KaxTrackUID() [124] av_mallocz [745] vlc_clone
 [16296] libmatroska::KaxTrackUID::~KaxTrackUID() [616] av_opt_find2 [746] vlc_clone_attr (thread.c)
 [16270] libmatroska::KaxMuxingApp::Create() [977] av_opt_free [552] vlc_cond_broadcast
 [16271] libmatroska::KaxMuxingApp::KaxMuxingApp() [553] av_opt_next [570] vlc_cond_destroy
 [16272] libmatroska::KaxMuxingApp::~KaxMuxingApp() [978] av_opt_set [568] vlc_cond_init
 [16297] libmatroska::KaxTrackType::Create() [752] av_opt_set_defaults [556] vlc_cond_signal
 [16298] libmatroska::KaxTrackType::KaxTrackType() [979] av_opt_set_dict [48] vlc_cond_timedwait
 [16299] libmatroska::KaxTrackType::~KaxTrackType() [657] av_opt_set_double [263] vlc_cond_wait
 [16361] libmatroska::KaxSegmentUID::Create() [619] av_opt_set_int [377] vlc_custom_create (objects.c)
 [16362] libmatroska::KaxSegmentUID::KaxSegmentUID() [817] av_opt_set_q [445] vlc_event_attach
 [16330] libmatroska::KaxSegmentUID::~KaxSegmentUID() (KaxSemantic.h) [564] av_packet_get_side_data [604] vlc_event_callback (libvlcjni.c)
 [16493] libmatroska::KaxTrackAudio::Create() [652] av_pix_fmt_desc_get [1038] vlc_event_manager_init
 [16494] libmatroska::KaxTrackAudio::KaxTrackAudio() [818] av_reduce [428] vlc_event_manager_register_event_type
 [16495] libmatroska::KaxTrackAudio::~KaxTrackAudio() [643] av_register_codec_parser [354] vlc_event_send
 [16363] libmatroska::KaxTrackEntry::Create() [563] av_sample_fmt_is_planar [580] vlc_fourcc_AreUVPlanesSwapped
 [16364] libmatroska::KaxTrackEntry::KaxTrackEntry() [980] av_samples_get_buffer_size [645] vlc_fourcc_GetChromaDescription
 [16365] libmatroska::KaxTrackEntry::~KaxTrackEntry() [460] avcodec_alloc_context3 [27] vlc_fourcc_GetCodec
 [16496] libmatroska::KaxTrackVideo::Create() [414] avcodec_close [344] vlc_fourcc_GetCodecAudio
 [16497] libmatroska::KaxTrackVideo::KaxTrackVideo() [6] avcodec_decode_audio4 [345] vlc_fourcc_GetCodecFromString
 [16498] libmatroska::KaxTrackVideo::~KaxTrackVideo() [47] avcodec_default_get_buffer2 [239] vlc_fourcc_GetDescription
 [16273] libmatroska::KaxWritingApp::Create() [981] avcodec_find_decoder [578] vlc_fourcc_IsYUV
 [16274] libmatroska::KaxWritingApp::KaxWritingApp() [982] avcodec_flush_buffers [621] vlc_gettext
 [16275] libmatroska::KaxWritingApp::~KaxWritingApp() [511] avcodec_get_context_defaults3 [472] vlc_global_mutex
 [16366] libmatroska::KaxSeekPreRoll::Create() [819] avcodec_is_open [759] vlc_inhibit_Destroy (inhibit.c)
 [16367] libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [165] avcodec_open2 [412] vlc_join
 [16368] libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [126] avcodec_register [536] vlc_list_children
 [16192] libmatroska::KaxSimpleBlock::Create() [127] avcodec_register_all [1039] vlc_list_release
 [16202] libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [983] avpriv_float_dsp_init [900] vlc_meta_Delete
 [16189] libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [984] avpriv_mpeg4audio_get_config [718] vlc_meta_Get
 [16300] libmatroska::KaxTrackNumber::Create() [820] bdf_driver_requester (bdfdrivr.c) [698] vlc_meta_GetExtra
 [16301] libmatroska::KaxTrackNumber::KaxTrackNumber() [104] block_Alloc [1040] vlc_meta_GetStatus
 [16302] libmatroska::KaxTrackNumber::~KaxTrackNumber() [644] block_FifoCount [901] vlc_meta_Merge
 [16369] libmatroska::KaxCodecPrivate::Create() [443] block_FifoEmpty [760] vlc_meta_New
 [16370] libmatroska::KaxCodecPrivate::KaxCodecPrivate() [130] block_FifoGet [761] vlc_meta_Set
 [16371] libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [821] block_FifoNew [1041] vlc_meta_SetStatus
 [16276] libmatroska::KaxSeekPosition::Create() [157] block_FifoPut [177] vlc_module_load
 [16277] libmatroska::KaxSeekPosition::KaxSeekPosition() [496] block_FifoRelease [247] vlc_module_unload
 [16278] libmatroska::KaxSeekPosition::~KaxSeekPosition() [559] block_FifoSize (block.c) [569] vlc_mutex_destroy
 [16372] libmatroska::KaxAudioChannels::Create() [388] block_FifoWake [567] vlc_mutex_init
 [16373] libmatroska::KaxAudioChannels::KaxAudioChannels() [555] block_Init [724] vlc_mutex_init_recursive
 [16374] libmatroska::KaxAudioChannels::~KaxAudioChannels() [590] block_Realloc [65] vlc_mutex_lock
 [16190] libmatroska::KaxInternalBlock::ReleaseFrames() [103] block_generic_Release (block.c) [548] vlc_mutex_trylock
  [77] libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [137] build_canonical_huff (atrac3plus.c) [44] vlc_mutex_unlock
 [16201] libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [611] build_table (bitstream.c) [594] vlc_object_alive
 [16191] libmatroska::KaxInternalBlock::~KaxInternalBlock() [822] cff_driver_done (cffobjs.c) [1042] vlc_object_create
 [16279] libmatroska::KaxTimecodeScale::Create() [823] cff_driver_init (cffobjs.c) [635] vlc_object_hold
 [16280] libmatroska::KaxTimecodeScale::KaxTimecodeScale() [824] cff_get_interface (cffdrivr.c) [382] vlc_object_release
 [16281] libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [410] che_configure (aacdec.c) [762] vlc_object_set_destructor (objects.c)
 [16499] libmatroska::KaxTrackLanguage::Create() [825] cid_driver_done (cidobjs.c) [398] vlc_object_set_name (objects.c)
 [16500] libmatroska::KaxTrackLanguage::KaxTrackLanguage() [826] cid_driver_init (cidobjs.c) [1043] vlc_open
 [16501] libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [827] cid_get_interface (cidriver.c) [725] vlc_opendir
 [16331] libmatroska::KaxTrackMinCache::Create() [828] config_ChainCreate [673] vlc_readdir
 [16332] libmatroska::KaxTrackMinCache::KaxTrackMinCache() [618] config_FindConfig [560] vlc_restorecancel
 [16333] libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [212] config_GetFloat [258] vlc_rwlock_rdlock
 [16375] libmatroska::KaxCodecDecodeAll::Create() [161] config_GetInt [95] vlc_rwlock_unlock
 [16376] libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [174] config_GetPsz [561] vlc_savecancel
 [16377] libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [753] config_GetType [747] vlc_sem_destroy
 [16221] libmatroska::KaxClusterTimecode::Create() [754] convert_omx_to_profile_idc (utils.c) [748] vlc_sem_init
 [16222] libmatroska::KaxClusterTimecode::KaxClusterTimecode() [557] date_Get [454] vlc_sem_post
 [16223] libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [589] date_Increment [413] vlc_sem_wait
 [16378] libmatroska::KaxTrackFlagForced::Create() [985] date_Init [61] vlc_testcancel
 [16379] libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [691] date_Set [629] vlc_towc (unicode.c)
 [16380] libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [608] debug_log [630] vlc_ureduce
 [16334] libmatroska::KaxTrackFlagLacing::Create() [721] decode_URI [135] vlc_vaLog
 [16335] libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [411] decode_audio_specific_config (aacdec.c) [72] vout_AreDisplayPicturesInvalid
 [16336] libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [10] decode_cpe (aacdec.c) [248] vout_Close
 [16381] libmatroska::KaxVideoPixelWidth::Create() [11] decode_ics_info (aacdec.c) [294] vout_CloseWrapper (vout_wrapper.c)
 [16382] libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [829] decoder_New (decoder.c) [483] vout_ControlChangeCropRatio (video_output.c)
 [16383] libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [23] decoder_NewPicture [490] vout_ControlChangeFilters (video_output.c)
 [16384] libmatroska::KaxTrackFlagDefault::Create() [1] deinterleave_chroma_neon [484] vout_ControlChangeSampleAspectRatio (video_output.c)
 [16385] libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [598] demux_Control (demux.h) [491] vout_ControlChangeSubFilters (video_output.c)
 [16386] libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [986] demux_GetParentInput [492] vout_ControlChangeSubMargin (video_output.c)
 [16387] libmatroska::KaxTrackFlagEnabled::Create() [279] demux_New (demux.c) [493] vout_ControlChangeSubSources (video_output.c)
 [16388] libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [830] destroy_charmaps (ftobjs.c) [450] vout_ControlChangeWindowState (video_output.c)
 [16389] libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [831] destroy_face (ftobjs.c) [485] vout_ControlChangeZoom (video_output.c)
 [16390] libmatroska::KaxVideoPixelHeight::Create() [832] destroy_size (ftobjs.c) [295] vout_DeleteDisplay
 [16391] libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [642] es_format_Clean [537] vout_DisplayTitle (video_output.c)
 [16392] libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [651] es_format_Copy [365] vout_EndWrapper (vout_wrapper.c)
 [16219] libmatroska::GetKaxGlobal_Context() [649] es_format_Init [54] vout_FilterDisplay
 [16393] libmatroska::KaxAudioSamplingFreq::Create() [734] es_format_InitFromVideo [143] vout_FixLeaks (video_output.c)
 [16394] libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [271] es_format_IsSimilar [393] vout_Flush (video_output.c)
 [16395] libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [140] es_out_Control (vlc_es_out.h) [538] vout_FlushSubpictureChannel
 [16248] libmatroska::KaxCueTrackPositions::Create() [214] es_out_Control (vlc_es_out.h) [68] vout_GetPicture
 [16249] libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [562] es_out_Control (vlc_es_out.h) [583] vout_GetResetStatistic (video_output.c)
 [16250] libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [426] event_attach (event.c) [262] vout_InitInterlacingSupport (interlacing.c)
 [16502] libmatroska::KaxVideoDisplayWidth::Create() [987] ff_aac_sbr_ctx_close [190] vout_InitWrapper (vout_wrapper.c)
 [16503] libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [420] ff_aac_sbr_ctx_init [210] vout_IntfInit (vout_intf.c)
 [16504] libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [200] ff_aac_sbr_init [332] vout_IntfReinit (vout_intf.c)
 [16230] libmatroska::KaxCueClusterPosition::Create() [988] ff_aac_tableinit [108] vout_IsDisplayFiltered
 [16231] libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [133] ff_atrac3p_init_vlcs [352] vout_IsEmpty (video_output.c)
 [16232] libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [989] ff_atrac_generate_tables [78] vout_ManageDisplay
 [16396] libmatroska::KaxMaxBlockAdditionID::Create() [990] ff_dsputil_static_init [49] vout_ManageWrapper (vout_wrapper.c)
 [16397] libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [704] ff_fft_end [274] vout_NewDisplay
 [16398] libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [384] ff_fft_init [236] vout_OpenWrapper (vout_wrapper.c)
 [16399] libmatroska::KaxTrackTimecodeScale::Create() [705] ff_fft_init_arm [146] vout_PutPicture
 [16400] libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [991] ff_float_dsp_init_arm [198] vout_Request
 [16401] libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [992] ff_float_dsp_init_neon [440] vout_Reset (video_output.c)
 [16505] libmatroska::KaxVideoDisplayHeight::Create() [993] ff_float_dsp_init_vfp [902] vout_SetDisplayAspect
 [16506] libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [994] ff_fmt_convert_init [903] vout_SetDisplayCrop
 [16507] libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [995] ff_fmt_convert_init_arm [904] vout_SetDisplayZoom
 [16251] libmatroska::KaxCueRelativePosition::Create() [833] ff_getSwsFunc [150] vout_SetInterlacingState (interlacing.c)
 [16252] libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [45] ff_get_buffer [455] vout_SetWindowState
 [16253] libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [996] ff_get_cpu_flags_arm [579] vout_UpdateDisplaySourceProperties (display.c)
 [16508] libmatroska::KaxVideoFlagInterlaced::Create() [22] ff_imdct_half_neon [1044] vout_control_Clean (control.c)
 [16509] libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [655] ff_init_ff_cos_tabs [539] vout_control_Dead (control.c)
 [16510] libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [755] ff_init_ff_sine_windows [1045] vout_control_Init (control.c)
 [16402] libmatroska::KaxTrackDefaultDuration::Create() [96] ff_init_vlc_sparse [57] vout_control_Pop (control.c)
 [16403] libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [997] ff_jpeg2000_init_tier1_luts [374] vout_control_Push (control.c)
 [16404] libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [834] ff_kbd_window_init [431] vout_control_PushInteger (control.c)
 [16405] libmatroska::KaxCues::Create() [706] ff_mdct_end [442] vout_control_PushPair (control.c)
 [16406] libmatroska::KaxCues::KaxCues() [363] ff_mdct_init [432] vout_control_PushString (control.c)
 [16407] libmatroska::KaxCues::~KaxCues() [998] ff_mpa_synth_init_float [463] vout_control_PushTime (control.c)
 [16408] libmatroska::KaxCues::~KaxCues() [999] ff_mqc_init_context_tables [464] vout_control_PushVoid (control.c)
 [16303] libmatroska::KaxInfo::Create() [1000] ff_ps_ctx_init [373] vout_control_WaitEmpty (control.c)
 [16304] libmatroska::KaxInfo::KaxInfo() [201] ff_ps_init [170] vout_control_Wake (control.c)
 [16305] libmatroska::KaxInfo::~KaxInfo() [1001] ff_psdsp_init [656] vout_control_cmd_Clean (control.c)
 [16337] libmatroska::KaxSeek::Create() [1002] ff_psdsp_init_arm [749] vout_display_Control (display.c)
 [16338] libmatroska::KaxSeek::KaxSeek() [1003] ff_sbrdsp_init [1046] vout_display_GetDefaultDisplaySize
 [16339] libmatroska::KaxSeek::~KaxSeek() [1004] ff_sbrdsp_init_arm [24] vout_new_buffer (decoder.c)
 [16282] libmatroska::KaxSeekID::Create() [756] ff_sine_window_init [1047] vout_snapshot_Clean (snapshot.c)
 [16283] libmatroska::KaxSeekID::KaxSeekID() [835] ff_sws_init_input_funcs [540] vout_snapshot_End (snapshot.c)
 [16284] libmatroska::KaxSeekID::~KaxSeekID() [836] ff_sws_init_output_funcs [1048] vout_snapshot_Init (snapshot.c)
 [16409] libmatroska::KaxTracks::Create() [1005] ff_tak_init_crc [191] vout_snapshot_IsRequested (snapshot.c)
 [16410] libmatroska::KaxTracks::KaxTracks() [1006] ff_thread_init [905] winfnt_get_service (winfnt.c)
 [16411] libmatroska::KaxTracks::~KaxTracks() [31] ff_vector_fmul_window_neon [272] wmavoice_init_static_data (wmavoice.c)
 [16412] event_thread_t::ResetPci() (demux.cpp) [513] ff_yuv2rgb_c_init_tables [654] wmemcmp
 [16511] event_thread_t::~event_thread_t() (demux.cpp) [164] ffmpeg_OpenCodec (avcodec.c) [906] wmemcpy
 [16512] event_thread_t::~event_thread_t() (demux.cpp) [114] fft128_neon (fft_neon.S) [647] wmemset
 [16513] virtual_chapter_c::PublishChapters(input_title_t&, int&, int) (virtual_segment.cpp) [64] fft16_neon (fft_neon.S) [59] <cycle 1>
 [16514] virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) (virtual_segment.cpp) [115] fft8_neon (fft_neon.S) [544] <cycle 2>
 [16175] virtual_chapter_c::getSubChapterbyTimecode(long long) (virtual_segment.cpp) [37] fft_pass_neon (fft_neon.S) [268] <cycle 3>
 [16515] virtual_chapter_c::~virtual_chapter_c() (virtual_segment.cpp) [543] filter_DeleteBlend [53] <cycle 4>
 [16516] virtual_edition_c::GetMainName() (virtual_segment.cpp) [523] filter_NewBlend [184] <cycle 5>
 [16517] virtual_edition_c::retimeChapters() (virtual_segment.cpp) [319] filter_chain_AppendFilter [545] <cycle 6>
 [16518] virtual_edition_c::PublishChapters(input_title_t&, int&, int) (virtual_segment.cpp) [320] filter_chain_AppendFilterInternal (filter_chain.c)
 [16519] virtual_edition_c::retimeSubChapters(virtual_chapter_c*) (virtual_segment.cpp) [1007] filter_chain_AppendFromString
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-gprof-vlc-android.patch
Type: text/x-diff
Size: 8174 bytes
Desc: not available
URL: <http://mailman.videolan.org/pipermail/android/attachments/20140318/52c1b74f/attachment-0002.patch>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-gprof-vlc.patch
Type: text/x-diff
Size: 78442 bytes
Desc: not available
URL: <http://mailman.videolan.org/pipermail/android/attachments/20140318/52c1b74f/attachment-0003.patch>
-------------- next part --------------
Flat profile:

Each sample counts as 0.01 seconds.
  %   cumulative   self              self     total           
 time   seconds   seconds    calls  ms/call  ms/call  name    
 16.43      0.34     0.34    17899     0.02     0.02  decode_ics_info
 12.08      0.59     0.25     5964     0.04     0.04  Fl32toS16
  4.83      0.69     0.10                             fft_pass_neon
  3.38      0.76     0.07     5966     0.01     0.01  aout_Interleave
  3.38      0.83     0.07                             ff_imdct_half_neon
  2.90      0.89     0.06                             __gnu_mcount_nc
  2.90      0.95     0.06                             ff_vector_fmul_window_neon
  2.42      1.00     0.05     5966     0.01     0.01  aout_ChannelExtract
  1.93      1.04     0.04     6895     0.01     0.01  vout_new_buffer
  1.93      1.08     0.04     5966     0.01     0.19  DecoderDecodeAudio
  1.93      1.12     0.04     5965     0.01     0.06  decode_cpe
  1.93      1.16     0.04                             ff_butterflies_float_neon
  1.93      1.20     0.04                             fft16_neon
  1.45      1.23     0.03    12368     0.00     0.00  vout_ManageDisplay
  1.45      1.26     0.03    11929     0.00     0.06  DecodeAudio
  1.45      1.29     0.03     5967     0.01     0.06  aout_DecPlay
  0.97      1.31     0.02   143187     0.00     0.00  av_buffer_unref
  0.97      1.33     0.02    63918     0.00     0.00  libebml::EbmlElement::GetSize() const
  0.97      1.35     0.02    29865     0.00     0.00  av_mallocz
  0.97      1.37     0.02    20463     0.00     0.00  picture_Release
  0.97      1.39     0.02    19149     0.00     0.00  ThreadDisplayPicture
  0.97      1.41     0.02    18329     0.00     0.00  GetOutput
  0.97      1.43     0.02    13806     0.00     0.00  DecodeVideo
  0.97      1.45     0.02    12856     0.00     0.00  input_clock_ConvertTS
  0.97      1.47     0.02    11934     0.00     0.00  av_sample_fmt_is_planar
  0.97      1.49     0.02     7701     0.00     0.01  matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*)
  0.97      1.51     0.02     5967     0.00     0.00  TimeGet
  0.97      1.53     0.02     5967     0.00     0.00  aout_volume_Amplify
  0.97      1.55     0.02     5967     0.00     0.00  spectral_to_sample
  0.97      1.57     0.02     5966     0.00     0.08  aac_decode_frame_int
  0.97      1.59     0.02                             __aeabi_uidiv
  0.97      1.61     0.02                             __divdi3
  0.97      1.63     0.02                             __gnu_ldivmod_helper
  0.97      1.65     0.02                             profCount
  0.48      1.66     0.01   438508     0.00     0.00  vlc_mutex_unlock
  0.48      1.67     0.01   379055     0.00     0.00  vlc_mutex_lock
  0.48      1.68     0.01   148270     0.00     0.00  mdate
  0.48      1.69     0.01    49511     0.00     0.00  Control
  0.48      1.70     0.01    32891     0.00     0.00  vlc_stream_io_callback::read(void*, unsigned int)
  0.48      1.71     0.01    26323     0.00     0.00  vlc_cond_timedwait
  0.48      1.72     0.01    25894     0.00     0.00  vlc_cond_broadcast
  0.48      1.73     0.01    18817     0.00     0.00  DeleteDecoder
  0.48      1.74     0.01    17899     0.00     0.00  av_frame_unref
  0.48      1.75     0.01    16581     0.00     0.00  vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode)
  0.48      1.76     0.01    12904     0.00     0.00  Send
  0.48      1.77     0.01    12885     0.00     0.00  block_FifoGet
  0.48      1.78     0.01    12459     0.00     0.00  Control
  0.48      1.79     0.01    12396     0.00     0.00  vout_control_Pop
  0.48      1.80     0.01    11931     0.00     0.00  pool_release_buffer
  0.48      1.81     0.01    11928     0.00     0.00  av_buffer_pool_get
  0.48      1.82     0.01     7718     0.00     0.00  module_provides
  0.48      1.83     0.01     6913     0.00     0.02  DecoderDecodeVideo
  0.48      1.84     0.01     6894     0.00     0.00  decoder_NewPicture
  0.48      1.85     0.01     5967     0.00     0.00  DoWork
  0.48      1.86     0.01     5966     0.00     0.00  aout_update_format
  0.48      1.87     0.01     5966     0.00     0.00  av_frame_alloc
  0.48      1.88     0.01     5966     0.00     0.00  av_init_packet
  0.48      1.89     0.01     5966     0.00     0.01  avcodec_default_get_buffer2
  0.48      1.90     0.01     5965     0.00     0.00  aout_DecGetResetLost
  0.48      1.91     0.01     5965     0.00     0.01  ff_get_buffer
  0.48      1.92     0.01     1320     0.01     0.01  apply_ltp
  0.48      1.93     0.01     1282     0.01     0.10  Demux(demux_t*)
  0.48      1.94     0.01     1231     0.01     0.01  vlc_rwlock_rdlock
  0.48      1.95     0.01     1081     0.01     0.02  vlc_vaLog
  0.48      1.96     0.01      493     0.02     0.02  FileRead
  0.48      1.97     0.01      308     0.03     0.03  avcodec_register
  0.48      1.98     0.01        2     5.00   641.09  DecoderThread
  0.48      1.99     0.01        2     5.00     5.00  ff_kbd_window_init
  0.48      2.00     0.01                             operator new(unsigned int)
  0.48      2.01     0.01                             __aeabi_d2lz
  0.48      2.02     0.01                             __aeabi_l2f
  0.48      2.03     0.01                             __aeabi_ldivmod
  0.48      2.04     0.01                             __aeabi_uidivmod
  0.48      2.05     0.01                             ff_vector_fmul_scalar_neon
  0.48      2.06     0.01                             fft32_neon
  0.48      2.07     0.01                             fft8_neon
  0.00      2.07     0.00    71950     0.00     0.00  av_free
  0.00      2.07     0.00    71746     0.00     0.00  av_freep
  0.00      2.07     0.00    65782     0.00     0.00  stream_Read
  0.00      2.07     0.00    65688     0.00     0.00  vlc_testcancel
  0.00      2.07     0.00    59584     0.00     0.00  vlc_mutex_trylock
  0.00      2.07     0.00    54320     0.00     0.00  transform_GetBasicOps
  0.00      2.07     0.00    49753     0.00     0.00  FileControl
  0.00      2.07     0.00    49748     0.00     0.00  access_Control
  0.00      2.07     0.00    49511     0.00     0.00  AStreamControl
  0.00      2.07     0.00    49511     0.00     0.00  stream_vaControl
  0.00      2.07     0.00    49510     0.00     0.00  stream_Control
  0.00      2.07     0.00    38696     0.00     0.00  libmatroska::DataBuffer::Size()
  0.00      2.07     0.00    33963     0.00     0.00  stats_Update
  0.00      2.07     0.00    32988     0.00     0.00  varcmp
  0.00      2.07     0.00    32898     0.00     0.00  AStreamReadNoSeekStream
  0.00      2.07     0.00    32896     0.00     0.00  AStreamReadStream
  0.00      2.07     0.00    32891     0.00     0.00  Read
  0.00      2.07     0.00    30114     0.00     0.00  av_malloc
  0.00      2.07     0.00    29867     0.00     0.00  libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&)
  0.00      2.07     0.00    26146     0.00     0.00  av_opt_next
  0.00      2.07     0.00    25797     0.00     0.00  libmatroska::DataBuffer::Buffer()
  0.00      2.07     0.00    25357     0.00     0.00  TsStop
  0.00      2.07     0.00    25165     0.00     0.00  block_Alloc
  0.00      2.07     0.00    25164     0.00     0.00  block_Init
  0.00      2.07     0.00    25142     0.00     0.00  block_generic_Release
  0.00      2.07     0.00    24807     0.00     0.00  filter_chain_VideoFilter
  0.00      2.07     0.00    21091     0.00     0.00  vlc_cond_signal
  0.00      2.07     0.00    20425     0.00     0.00  picture_Hold
  0.00      2.07     0.00    17895     0.00     0.00  date_Get
  0.00      2.07     0.00    16582     0.00     0.00  AStreamSeekStream
  0.00      2.07     0.00    16337     0.00     0.00  vlc_stream_io_callback::getFilePointer()
  0.00      2.07     0.00    15401     0.00     0.00  virtual_chapter_c::getSubChapterbyTimecode(long long)
  0.00      2.07     0.00    15399     0.00     0.00  virtual_edition_c::getChapterbyTimecode(long long)
  0.00      2.07     0.00    15397     0.00     0.00  matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*)
  0.00      2.07     0.00    15395     0.00     0.00  virtual_segment_c::UpdateCurrentToChapter(demux_t&)
  0.00      2.07     0.00    13800     0.00     0.00  get_android_opaque_mutex
  0.00      2.07     0.00    13754     0.00     0.00  block_FifoSize
  0.00      2.07     0.00    13696     0.00     0.00  DisplayBuffer
  0.00      2.07     0.00    13580     0.00     0.00  video_format_ApplyRotation
  0.00      2.07     0.00    13580     0.00     0.00  video_format_GetTransform
  0.00      2.07     0.00    13580     0.00     0.00  video_format_TransformBy
  0.00      2.07     0.00    13580     0.00     0.00  video_format_TransformTo
  0.00      2.07     0.00    13533     0.00     0.00  FilterChainVideoFilter
  0.00      2.07     0.00    13374     0.00     0.00  libmatroska::DataBuffer::~DataBuffer()
  0.00      2.07     0.00    12909     0.00     0.00  CmdExecuteSend
  0.00      2.07     0.00    12909     0.00     0.00  EsOutSend
  0.00      2.07     0.00    12907     0.00     0.00  input_DecoderHasFormatChanged
  0.00      2.07     0.00    12906     0.00     0.00  block_FifoPut
  0.00      2.07     0.00    12901     0.00     0.00  vlc_restorecancel
  0.00      2.07     0.00    12900     0.00     0.00  MemToBlock(unsigned char*, unsigned int, unsigned int)
  0.00      2.07     0.00    12900     0.00     0.00  input_DecoderDecode
  0.00      2.07     0.00    12897     0.00     0.00  vlc_savecancel
  0.00      2.07     0.00    12895     0.00     0.00  input_DecoderIsCcPresent
  0.00      2.07     0.00    12853     0.00     0.00  DecoderFixTs
  0.00      2.07     0.00    12460     0.00     0.00  EsOutControl
  0.00      2.07     0.00    12457     0.00     0.00  es_out_Control
  0.00      2.07     0.00    12375     0.00     0.00  vout_AreDisplayPicturesInvalid
  0.00      2.07     0.00    12374     0.00     0.00  vout_ManageWrapper
  0.00      2.07     0.00    12371     0.00     0.00  vout_SetInterlacingState
  0.00      2.07     0.00    11933     0.00     0.00  av_get_channel_layout_nb_channels
  0.00      2.07     0.00    11933     0.00     0.00  imdct_and_windowing
  0.00      2.07     0.00    11931     0.00     0.00  av_packet_get_side_data
  0.00      2.07     0.00    11928     0.00     0.00  av_buffer_create
  0.00      2.07     0.00    11416     0.00     0.00  picture_fifo_Pop
  0.00      2.07     0.00    11275     0.00     0.00  ThreadDisplayPreparePicture
  0.00      2.07     0.00    10320     0.00     0.00  std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&)
  0.00      2.07     0.00     8898     0.00     0.00  libebml::CodedSizeLength(unsigned long long, unsigned int, bool)
  0.00      2.07     0.00     8696     0.00     0.00  libebml::EbmlElement::~EbmlElement()
  0.00      2.07     0.00     8691     0.00     0.00  libebml::EbmlElement::EbmlElement(unsigned long long, bool)
  0.00      2.07     0.00     8345     0.00     0.00  libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int)
  0.00      2.07     0.00     8345     0.00     0.00  libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int)
  0.00      2.07     0.00     8337     0.00     0.00  libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int)
  0.00      2.07     0.00     8255     0.00     0.00  libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const
  0.00      2.07     0.00     8249     0.00     0.00  libmatroska::KaxSimpleBlock::Generic() const
  0.00      2.07     0.00     8218     0.00     0.00  libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool)
  0.00      2.07     0.00     8142     0.00     0.00  EbmlParser::Get(int)
  0.00      2.07     0.00     8131     0.00     0.00  libebml::EbmlBinary::~EbmlBinary()
  0.00      2.07     0.00     8127     0.00     0.00  libebml::EbmlBinary::EbmlBinary()
  0.00      2.07     0.00     8125     0.00     0.00  es_out_Control(es_out_t*, int, ...)
  0.00      2.07     0.00     7983     0.00     0.00  libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00      2.07     0.00     7979     0.00     0.00  libmatroska::KaxInternalBlock::ValidateSize() const
  0.00      2.07     0.00     7978     0.00     0.00  libmatroska::KaxSimpleBlock::~KaxSimpleBlock()
  0.00      2.07     0.00     7978     0.00     0.00  libmatroska::KaxInternalBlock::ReleaseFrames()
  0.00      2.07     0.00     7978     0.00     0.00  libmatroska::KaxInternalBlock::~KaxInternalBlock()
  0.00      2.07     0.00     7977     0.00     0.00  std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&)
  0.00      2.07     0.00     7976     0.00     0.00  libmatroska::KaxSimpleBlock::Create()
  0.00      2.07     0.00     7974     0.00     0.00  libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00      2.07     0.00     7949     0.00     0.00  libebml::EbmlElement::IsDummy() const
  0.00      2.07     0.00     7852     0.00     0.00  EbmlParser::GetLevel() const
  0.00      2.07     0.00     7803     0.00     0.00  libmatroska::KaxCluster::Generic() const
  0.00      2.07     0.00     7750     0.00     0.00  EbmlParser::IsTopPresent(libebml::EbmlElement*) const
  0.00      2.07     0.00     7718     0.00     0.00  module_get_capability
  0.00      2.07     0.00     7708     0.00     0.00  EsIsSelected
  0.00      2.07     0.00     7701     0.00     0.00  BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool)
  0.00      2.07     0.00     7697     0.00     0.00  libmatroska::KaxCluster::GlobalTimecode() const
  0.00      2.07     0.00     7695     0.00     0.00  libmatroska::KaxCluster::GetBlockGlobalTimecode(short)
  0.00      2.07     0.00     7695     0.00     0.00  libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&)
  0.00      2.07     0.00     7694     0.00     0.00  libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&)
  0.00      2.07     0.00     6923     0.00     0.00  video_format_CopyCrop
  0.00      2.07     0.00     6905     0.00     0.00  UnlockCallback
  0.00      2.07     0.00     6905     0.00     0.00  UnlockSurface
  0.00      2.07     0.00     6904     0.00     0.00  Destroy
  0.00      2.07     0.00     6892     0.00     0.00  vout_GetPicture
  0.00      2.07     0.00     6891     0.00     0.00  picture_fifo_Push
  0.00      2.07     0.00     6891     0.00     0.00  vout_GetResetStatistic
  0.00      2.07     0.00     6891     0.00     0.00  vout_control_Wake
  0.00      2.07     0.00     6890     0.00     0.00  LockSurface
  0.00      2.07     0.00     6890     0.00     0.00  picture_pool_Get
  0.00      2.07     0.00     6890     0.00     0.00  vout_PutPicture
  0.00      2.07     0.00     6886     0.00     0.00  picture_Reset
  0.00      2.07     0.00     6831     0.00     0.00  vlc_mutex_init
  0.00      2.07     0.00     6820     0.00     0.00  vlc_mutex_destroy
  0.00      2.07     0.00     6808     0.00     0.00  vlc_cond_init
  0.00      2.07     0.00     6803     0.00     0.00  vlc_cond_destroy
  0.00      2.07     0.00     6790     0.00     0.00  DisplayCallback
  0.00      2.07     0.00     6790     0.00     0.00  spu_Render
  0.00      2.07     0.00     6790     0.00     0.00  vout_UpdateDisplaySourceProperties
  0.00      2.07     0.00     6790     0.00     0.00  vout_display_PlacePicture
  0.00      2.07     0.00     6789     0.00     0.00  Display
  0.00      2.07     0.00     6789     0.00     0.00  filter_chain_SubSource
  0.00      2.07     0.00     6789     0.00     0.00  vout_snapshot_IsRequested
  0.00      2.07     0.00     6768     0.00     0.00  mwait
  0.00      2.07     0.00     5977     0.00     0.00  aout_OutputUnlock
  0.00      2.07     0.00     5975     0.00     0.00  aout_OutputLock
  0.00      2.07     0.00     5968     0.00     0.00  av_frame_free
  0.00      2.07     0.00     5967     0.00     0.00  Play
  0.00      2.07     0.00     5967     0.00     0.00  SetupOutputFormat
  0.00      2.07     0.00     5967     0.00     0.00  aout_OutputPlay
  0.00      2.07     0.00     5966     0.00     0.09  avcodec_decode_audio4
  0.00      2.07     0.00     5965     0.00     0.00  FilterS16N
  0.00      2.07     0.00     5965     0.00     0.08  aac_decode_frame
  0.00      2.07     0.00     5965     0.00     0.04  aout_FiltersPlay
  0.00      2.07     0.00     5965     0.00     0.00  aout_OutputTimeGet
  0.00      2.07     0.00     5965     0.00     0.00  get_che
  0.00      2.07     0.00     5964     0.00     0.00  block_Realloc
  0.00      2.07     0.00     5964     0.00     0.00  date_Increment
  0.00      2.07     0.00     4613     0.00     0.00  libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&)
  0.00      2.07     0.00     4331     0.00     0.00  es_out_Control
  0.00      2.07     0.00     4108     0.00     0.00  tfind
  0.00      2.07     0.00     3330     0.00     0.00  DupDummy
  0.00      2.07     0.00     3101     0.00     0.00  vlc_object_alive
  0.00      2.07     0.00     2553     0.00     0.00  input_clock_GetWakeup
  0.00      2.07     0.00     2355     0.00     0.00  var_GetChecked
  0.00      2.07     0.00     1645     0.00     0.00  FreeDummy
  0.00      2.07     0.00     1594     0.00     0.00  CheckValue
  0.00      2.07     0.00     1408     0.00     0.00  split_radix_permutation
  0.00      2.07     0.00     1395     0.00     0.00  TriggerCallback
  0.00      2.07     0.00     1286     0.00     0.00  Control(demux_t*, int, std::__va_list)
  0.00      2.07     0.00     1285     0.00     0.00  demux_Control
  0.00      2.07     0.00     1229     0.00     0.00  vlc_rwlock_unlock
  0.00      2.07     0.00     1082     0.00     0.00  debug_log
  0.00      2.07     0.00     1082     0.00     0.00  libvlc_logf
  0.00      2.07     0.00     1081     0.00     0.02  vlc_Log
  0.00      2.07     0.00     1002     0.00     0.00  var_Change
  0.00      2.07     0.00      880     0.00     0.00  libvlc_event_send
  0.00      2.07     0.00      860     0.00     0.00  CmdExecuteControl
  0.00      2.07     0.00      848     0.00     0.00  input_DecoderGetFifoSize
  0.00      2.07     0.00      628     0.00     0.00  var_SetChecked
  0.00      2.07     0.00      577     0.00     0.00  input_event_changed
  0.00      2.07     0.00      493     0.00     0.02  AReadStream
  0.00      2.07     0.00      480     0.00     0.02  AStreamRefillStream
  0.00      2.07     0.00      432     0.00     0.00  input_clock_GetState
  0.00      2.07     0.00      431     0.00     0.00  vlc_event_callback
  0.00      2.07     0.00      429     0.00     0.00  getLong
  0.00      2.07     0.00      427     0.00     0.00  getMediaPlayer
  0.00      2.07     0.00      426     0.00     0.00  input_SendEventLength
  0.00      2.07     0.00      426     0.00     0.00  input_SendEventPosition
  0.00      2.07     0.00      425     0.00     0.00  input_clock_Update
  0.00      2.07     0.00      410     0.00     0.00  libvlc_media_player_get_state
  0.00      2.07     0.00      407     0.00     0.00  libvlc_media_player_is_playing
  0.00      2.07     0.00      383     0.00     0.00  CmpString
  0.00      2.07     0.00      366     0.00     0.00  ft_mem_free
  0.00      2.07     0.00      361     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger()
  0.00      2.07     0.00      348     0.00     0.00  aout_FiltersAdjustResampling
  0.00      2.07     0.00      318     0.00     0.00  libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode)
  0.00      2.07     0.00      242     0.00     0.00  libebml::GetEbmlGlobal_Context()
  0.00      2.07     0.00      224     0.00     0.00  tsearch
  0.00      2.07     0.00      224     0.00     0.00  var_Create
  0.00      2.07     0.00      210     0.00     0.00  libebml::EbmlUInteger::ValidateSize() const
  0.00      2.07     0.00      207     0.00     0.00  libebml::EbmlMaster::PushElement(libebml::EbmlElement&)
  0.00      2.07     0.00      201     0.00     0.00  std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&)
  0.00      2.07     0.00      190     0.00     0.00  libebml::IOCallback::readFully(void*, unsigned int)
  0.00      2.07     0.00      187     0.00     0.01  var_Inherit
  0.00      2.07     0.00      178     0.00     0.00  build_table
  0.00      2.07     0.00      178     0.00     0.00  ff_init_vlc_sparse
  0.00      2.07     0.00      177     0.00     0.00  libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00      2.07     0.00      176     0.00     0.00  av_codec_is_decoder
  0.00      2.07     0.00      172     0.00     0.00  ft_alloc
  0.00      2.07     0.00      172     0.00     0.00  ft_free
  0.00      2.07     0.00      172     0.00     0.00  ft_mem_qalloc
  0.00      2.07     0.00      167     0.00     0.00  av_opt_find2
  0.00      2.07     0.00      158     0.00     0.00  Destroy
  0.00      2.07     0.00      155     0.00     0.00  config_FindConfig
  0.00      2.07     0.00      152     0.00     0.00  libebml::EbmlElement::SetDefaultSize(unsigned long long)
  0.00      2.07     0.00      142     0.00     0.00  av_opt_set_int
  0.00      2.07     0.00      138     0.00     0.00  CleanupVar
  0.00      2.07     0.00      137     0.00     0.00  libebml::EbmlMaster::ProcessMandatory()
  0.00      2.07     0.00      137     0.00     0.00  libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool)
  0.00      2.07     0.00      137     0.00     0.00  libebml::EbmlMaster::~EbmlMaster()
  0.00      2.07     0.00      137     0.00     0.00  libebml::EbmlCrc32::ResetCRC()
  0.00      2.07     0.00      137     0.00     0.00  libebml::EbmlCrc32::EbmlCrc32()
  0.00      2.07     0.00      137     0.00     0.00  libebml::EbmlMaster::ValidateSize() const
  0.00      2.07     0.00      135     0.00     0.00  vlc_gettext
  0.00      2.07     0.00      132     0.00     0.00  libmatroska::KaxCueTrackPositions::Generic() const
  0.00      2.07     0.00      127     0.00     0.00  libebml::EbmlUInteger::operator unsigned long long() const
  0.00      2.07     0.00      123     0.00     0.00  libmatroska::GetKaxGlobal_Context()
  0.00      2.07     0.00      121     0.00     0.00  EbmlParser::Down()
  0.00      2.07     0.00      120     0.00     0.00  EbmlParser::Up()
  0.00      2.07     0.00      116     0.00     0.00  ft_mem_alloc
  0.00      2.07     0.00      116     0.00     0.00  input_SendEventStatistics
  0.00      2.07     0.00      116     0.00     0.00  stats_ComputeInputStats
  0.00      2.07     0.00      114     0.00     0.00  DupString
  0.00      2.07     0.00      114     0.00     0.00  FreeString
  0.00      2.07     0.00      112     0.00     0.00  FT_Stream_GetULong
  0.00      2.07     0.00      105     0.00     0.00  Lookup
  0.00      2.07     0.00      105     0.00     0.00  build_canonical_huff
  0.00      2.07     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::Create()
  0.00      2.07     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::KaxClusterTimecode()
  0.00      2.07     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::~KaxClusterTimecode()
  0.00      2.07     0.00      103     0.00     0.00  Find
  0.00      2.07     0.00      102     0.00     0.00  FT_Stream_ReadFields
  0.00      2.07     0.00      102     0.00     0.00  ft_ansi_stream_io
  0.00      2.07     0.00       97     0.00     0.00  vlc_fourcc_GetCodec
  0.00      2.07     0.00       87     0.00     0.01  config_GetInt
  0.00      2.07     0.00       82     0.00     0.00  vlc_ureduce
  0.00      2.07     0.00       79     0.00     0.00  vlc_cond_wait
  0.00      2.07     0.00       76     0.00     0.00  video_format_Setup
  0.00      2.07     0.00       75     0.00     0.00  vlc_towc
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueTime::Create()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueTime::KaxCueTime()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueTime::~KaxCueTime()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::Create()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::KaxCueTrack()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::~KaxCueTrack()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::Create()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::KaxCueClusterPosition()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition()
  0.00      2.07     0.00       66     0.00     0.00  libmatroska::KaxCuePoint::Generic() const
  0.00      2.07     0.00       63     0.00     0.33  generic_start
  0.00      2.07     0.00       63     0.00     0.00  module_Map
  0.00      2.07     0.00       63     0.00     0.00  module_load
  0.00      2.07     0.00       56     0.00     0.00  FT_Stream_EnterFrame
  0.00      2.07     0.00       53     0.00     0.00  libmatroska::KaxClusterTimecode::Generic() const
  0.00      2.07     0.00       52     0.00     0.00  FT_Stream_ExitFrame
  0.00      2.07     0.00       52     0.00     0.00  libmatroska::KaxCluster::Create()
  0.00      2.07     0.00       52     0.00     0.00  libmatroska::KaxCluster::KaxCluster()
  0.00      2.07     0.00       52     0.00     0.00  libmatroska::KaxCluster::~KaxCluster()
  0.00      2.07     0.00       50     0.00     0.00  var_AddCallback
  0.00      2.07     0.00       50     0.00     0.00  vlc_object_hold
  0.00      2.07     0.00       46     0.00     0.00  CmpInt
  0.00      2.07     0.00       46     0.00     0.00  vlc_object_release
  0.00      2.07     0.00       45     0.00     0.01  config_GetPsz
  0.00      2.07     0.00       42     0.00     0.00  tt_face_goto_table
  0.00      2.07     0.00       41     0.00     0.00  libebml::EbmlUInteger::operator unsigned short() const
  0.00      2.07     0.00       41     0.00     0.00  module_get_object
  0.00      2.07     0.00       39     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger(unsigned long long)
  0.00      2.07     0.00       37     0.00     0.00  TagLib::RefCounter::deref()
  0.00      2.07     0.00       37     0.00     0.00  libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const
  0.00      2.07     0.00       37     0.00     0.00  libmatroska::KaxSegment::operator libebml::EbmlId const&() const
  0.00      2.07     0.00       36     0.00     0.00  FT_Add_Module
  0.00      2.07     0.00       36     0.00     0.00  FT_Remove_Module
  0.00      2.07     0.00       36     0.00     0.00  FT_Stream_Seek
  0.00      2.07     0.00       36     0.00     0.00  PictureDestroy
  0.00      2.07     0.00       36     0.00     0.00  picture_NewFromResource
  0.00      2.07     0.00       36     0.00     0.00  picture_Setup
  0.00      2.07     0.00       36     0.00     0.00  vlc_fourcc_GetChromaDescription
  0.00      2.07     0.00       35     0.00     0.00  TagLib::RefCounter::RefCounter()
  0.00      2.07     0.00       35     0.00     0.00  TagLib::RefCounter::~RefCounter()
  0.00      2.07     0.00       34     0.00     0.00  var_DelCallback
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::Create()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::KaxCuePoint()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::~KaxCuePoint()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::Create()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::KaxCueTrackPositions()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::Create()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::KaxCueRelativePosition()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition()
  0.00      2.07     0.00       33     0.00     0.00  TagLib::String::StringPrivate::~StringPrivate()
  0.00      2.07     0.00       33     0.00     0.00  TagLib::String::~String()
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueTime::Generic() const
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueTrack::Generic() const
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueClusterPosition::Generic() const
  0.00      2.07     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::Generic() const
  0.00      2.07     0.00       32     0.00     0.00  es_format_Clean
  0.00      2.07     0.00       31     0.00     0.00  av_register_codec_parser
  0.00      2.07     0.00       30     0.00     0.00  TagLib::String::copyFromLatin1(char const*, unsigned int)
  0.00      2.07     0.00       30     0.00     0.00  TagLib::String::String(char const*, TagLib::String::Type)
  0.00      2.07     0.00       30     0.00     0.00  wmemset
  0.00      2.07     0.00       29     0.00     0.00  block_FifoCount
  0.00      2.07     0.00       28     0.00     0.00  TagLib::String::operator==(TagLib::String const&) const
  0.00      2.07     0.00       28     0.00     0.00  ft_service_list_lookup
  0.00      2.07     0.00       27     0.00     0.00  input_DecoderIsEmpty
  0.00      2.07     0.00       27     0.00     0.00  libvlc_event_manager_register_event_type
  0.00      2.07     0.00       26     0.00     0.00  libebml::UTFstring::~UTFstring()
  0.00      2.07     0.00       26     0.00     0.00  vout_control_Push
  0.00      2.07     0.00       25     0.00     0.00  av_pix_fmt_desc_get
  0.00      2.07     0.00       25     0.00     0.00  vout_control_cmd_Clean
  0.00      2.07     0.00       25     0.00     0.00  wmemcmp
  0.00      2.07     0.00       24     0.00     0.00  libebml::UTFstring::UTFstring()
  0.00      2.07     0.00       24     0.00     0.00  ff_init_ff_cos_tabs
  0.00      2.07     0.00       23     0.00     0.00  module_list_free
  0.00      2.07     0.00       23     0.00     0.00  var_TriggerCallback
  0.00      2.07     0.00       22     0.00     0.00  av_opt_set_double
  0.00      2.07     0.00       22     0.00     0.00  es_format_Copy
  0.00      2.07     0.00       22     0.00     0.00  es_format_Init
  0.00      2.07     0.00       22     0.00     0.00  ft_mem_qrealloc
  0.00      2.07     0.00       22     0.00     0.00  ft_mem_realloc
  0.00      2.07     0.00       22     0.00     0.00  vlc_custom_create
  0.00      2.07     0.00       21     0.00     0.00  tdestroy
  0.00      2.07     0.00       21     0.00     0.00  var_DestroyAll
  0.00      2.07     0.00       20     0.00     0.00  FT_List_Finalize
  0.00      2.07     0.00       19     0.00     0.00  block_FifoWake
  0.00      2.07     0.00       19     0.00     0.00  module_get_score
  0.00      2.07     0.00       18     0.00     0.00  FT_Stream_ReleaseFrame
  0.00      2.07     0.00       18     0.00     0.00  libebml::EbmlMaster::GetSize() const
  0.00      2.07     0.00       17     0.00     0.00  libvlc_get_input_thread
  0.00      2.07     0.00       17     0.00     0.59  module_list_cap
  0.00      2.07     0.00       17     0.00     0.00  module_need
  0.00      2.07     0.00       17     0.00     0.00  vlc_event_send
  0.00      2.07     0.00       17     0.00     0.62  vlc_module_load
  0.00      2.07     0.00       16     0.00     0.00  FT_GlyphLoader_Done
  0.00      2.07     0.00       16     0.00     0.00  FT_GlyphLoader_New
  0.00      2.07     0.00       16     0.00     0.00  FT_GlyphLoader_Reset
  0.00      2.07     0.00       16     0.00     0.00  FT_GlyphLoader_Rewind
  0.00      2.07     0.00       16     0.00     0.00  FT_Lookup_Renderer
  0.00      2.07     0.00       16     0.00     0.00  FT_MulFix
  0.00      2.07     0.00       16     0.00     0.00  vlc_readdir
  0.00      2.07     0.00       15     0.00     0.01  config_GetFloat
  0.00      2.07     0.00       14     0.00     0.00  CmpFloat
  0.00      2.07     0.00       14     0.00     0.00  filter_chain_VideoFlush
  0.00      2.07     0.00       14     0.00     0.02  module_unneed
  0.00      2.07     0.00       14     0.00     0.00  stream_Peek
  0.00      2.07     0.00       14     0.00     0.00  vlc_module_unload
  0.00      2.07     0.00       14     0.00     0.00  vlc_object_set_name
  0.00      2.07     0.00       13     0.00     0.00  av_get_cpu_flags
  0.00      2.07     0.00       13     0.00     0.00  subtitles_Filter
  0.00      2.07     0.00       13     0.00     0.00  var_Destroy
  0.00      2.07     0.00       12     0.00     0.00  FT_List_Add
  0.00      2.07     0.00       12     0.00     0.00  LanguageSplit
  0.00      2.07     0.00       12     0.00     0.00  libebml::EbmlUnicodeString::EbmlUnicodeString()
  0.00      2.07     0.00       12     0.00     0.00  aout_BitsPerSample
  0.00      2.07     0.00       12     0.00     0.00  tt_face_get_name
  0.00      2.07     0.00       11     0.00     0.00  ASeek
  0.00      2.07     0.00       11     0.00     0.00  AStreamPeekStream
  0.00      2.07     0.00       11     0.00     0.00  FileSeek
  0.00      2.07     0.00       11     0.00     0.01  generic_stop
  0.00      2.07     0.00       10     0.00     0.00  FT_DivFix
  0.00      2.07     0.00       10     0.00     0.00  FT_Get_Module
  0.00      2.07     0.00       10     0.00     0.00  FT_List_Find
  0.00      2.07     0.00       10     0.00     0.00  FT_List_Remove
  0.00      2.07     0.00       10     0.00     0.00  libmatroska::KaxSegment::Generic() const
  0.00      2.07     0.00       10     0.00     0.00  libmatroska::KaxSeek::Generic() const
  0.00      2.07     0.00        9     0.00     0.02  es_out_Control
  0.00      2.07     0.00        9     0.00     0.00  filter_chain_Reset
  0.00      2.07     0.00        8     0.00     0.00  FT_Stream_Pos
  0.00      2.07     0.00        8     0.00     0.00  VoutVideoFilterStaticNewPicture
  0.00      2.07     0.00        8     0.00     0.00  libebml::EbmlUInteger::operator unsigned int() const
  0.00      2.07     0.00        8     0.00     0.00  event_attach
  0.00      2.07     0.00        8     0.00     0.00  input_SendEventCache
  0.00      2.07     0.00        8     0.00     0.00  libvlc_event_attach
  0.00      2.07     0.00        8     0.00     0.00  ps_mask_table_done
  0.00      2.07     0.00        8     0.00     0.00  sws_getCachedContext
  0.00      2.07     0.00        8     0.00     0.00  tdelete
  0.00      2.07     0.00        8     0.00     0.00  vlc_event_manager_register_event_type
  0.00      2.07     0.00        7     0.00     0.00  aout_FormatPrepare
  0.00      2.07     0.00        7     0.00     0.00  date_Set
  0.00      2.07     0.00        7     0.00     0.00  input_Control
  0.00      2.07     0.00        7     0.00     0.00  input_vaControl
  0.00      2.07     0.00        7     0.00     0.00  module_exists
  0.00      2.07     0.00        7     0.00     0.00  module_find
  0.00      2.07     0.00        7     0.00     0.00  module_list_get
  0.00      2.07     0.00        7     0.00     0.00  tdestroy_recurse
  0.00      2.07     0.00        7     0.00     0.00  vlc_meta_GetExtra
  0.00      2.07     0.00        7     0.00     0.00  vout_control_PushInteger
  0.00      2.07     0.00        7     0.00     0.00  vout_control_PushString
  0.00      2.07     0.00        6     0.00     0.00  EsOutSelect
  0.00      2.07     0.00        6     0.00     0.00  FT_CMap_New
  0.00      2.07     0.00        6     0.00     0.00  FT_Stream_ReadULong
  0.00      2.07     0.00        6     0.00     0.00  FixParameters
  0.00      2.07     0.00        6     0.00     0.00  GetFfmpegChroma
  0.00      2.07     0.00        6     0.00     0.00  VarListDel
  0.00      2.07     0.00        6     0.00     0.00  VarListSelect
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::Create()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::KaxMuxingApp()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::~KaxMuxingApp()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::Create()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::KaxWritingApp()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::~KaxWritingApp()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::Create()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::KaxSeekPosition()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::~KaxSeekPosition()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::Create()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::KaxTimecodeScale()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::~KaxTimecodeScale()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxSeekID::Create()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxSeekID::KaxSeekID()
  0.00      2.07     0.00        6     0.00     0.00  libmatroska::KaxSeekID::~KaxSeekID()
  0.00      2.07     0.00        6     0.00     0.00  libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long)
  0.00      2.07     0.00        6     0.00     0.00  libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long)
  0.00      2.07     0.00        6     0.00     0.00  libebml::EbmlBinary::ValidateSize() const
  0.00      2.07     0.00        6     0.00     0.00  libebml::EbmlString::operator std::string const&() const
  0.00      2.07     0.00        6     0.00     0.00  av_get_bits_per_pixel
  0.00      2.07     0.00        6     0.00     0.00  block_FifoEmpty
  0.00      2.07     0.00        6     0.00     0.00  ff_fft_end
  0.00      2.07     0.00        6     0.00     0.00  ff_fft_init
  0.00      2.07     0.00        6     0.00     0.00  ff_fft_init_arm
  0.00      2.07     0.00        6     0.00     0.00  ff_mdct_end
  0.00      2.07     0.00        6     0.00     0.00  ff_mdct_init
  0.00      2.07     0.00        6     0.00     0.00  ft_cmap_done_internal
  0.00      2.07     0.00        6     0.00     0.00  ft_smooth_init
  0.00      2.07     0.00        6     0.00     0.00  ft_validator_init
  0.00      2.07     0.00        6     0.00     0.00  gray_raster_done
  0.00      2.07     0.00        6     0.00     0.00  gray_raster_new
  0.00      2.07     0.00        6     0.00     0.00  gray_raster_reset
  0.00      2.07     0.00        6     0.00     0.00  input_GetItem
  0.00      2.07     0.00        6     0.00     0.00  input_item_meta_changed
  0.00      2.07     0.00        6     0.00     0.00  libvlc_media_release
  0.00      2.07     0.00        6     0.00     0.00  libvlc_media_retain
  0.00      2.07     0.00        6     0.00     0.00  picture_fifo_Flush
  0.00      2.07     0.00        6     0.00     0.00  pthread_once
  0.00      2.07     0.00        6     0.00     0.00  sfnt_get_interface
  0.00      2.07     0.00        6     0.00     0.00  vlc_CPU
  0.00      2.07     0.00        6     0.00     0.00  vlc_fourcc_GetDescription
  0.00      2.07     0.00        6     0.00     0.00  vlc_global_mutex
  0.00      2.07     0.00        6     0.00     0.00  vlc_meta_Get
  0.00      2.07     0.00        6     0.00     0.00  vout_control_PushPair
  0.00      2.07     0.00        5     0.00     0.00  Control
  0.00      2.07     0.00        5     0.00     0.00  FilterRelease
  0.00      2.07     0.00        5     0.00     0.00  GetParameters
  0.00      2.07     0.00        5     0.00     0.00  ThreadFlush
  0.00      2.07     0.00        5     0.00     0.00  es_out_Control(es_out_t*, int, ...)
  0.00      2.07     0.00        5     0.00     0.01  EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*)
  0.00      2.07     0.00        5     0.00     0.00  EbmlParser::~EbmlParser()
  0.00      2.07     0.00        5     0.00     0.00  libebml::EbmlMaster::SetSizeInfinite(bool)
  0.00      2.07     0.00        5     0.00     0.44  libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode)
  0.00      2.07     0.00        5     0.00     0.00  aout_DecIsEmpty
  0.00      2.07     0.00        5     0.00     0.00  aout_FormatPrintChannels
  0.00      2.07     0.00        5     0.00     0.00  av_buffer_pool_uninit
  0.00      2.07     0.00        5     0.00     0.00  decode_URI
  0.00      2.07     0.00        5     0.00     0.00  input_SendEventEsDel
  0.00      2.07     0.00        5     0.00     0.00  picture_NewFromFormat
  0.00      2.07     0.00        5     0.00     0.00  picture_fifo_Peek
  0.00      2.07     0.00        5     0.00     0.00  posix_memalign
  0.00      2.07     0.00        5     0.00     0.00  set_state
  0.00      2.07     0.00        5     0.00     0.00  vlc_event_attach
  0.00      2.07     0.00        5     0.00     0.00  vlc_mutex_init_recursive
  0.00      2.07     0.00        5     0.00     0.00  vlc_opendir
  0.00      2.07     0.00        5     0.00     0.00  vout_IsEmpty
  0.00      2.07     0.00        5     0.00     0.00  vout_control_WaitEmpty
  0.00      2.07     0.00        4     0.00     0.00  AboveCallback
  0.00      2.07     0.00        4     0.00     0.00  Dummy_Select
  0.00      2.07     0.00        4     0.00     0.00  FT_Get_Module_Interface
  0.00      2.07     0.00        4     0.00     0.00  FT_Stream_ExtractFrame
  0.00      2.07     0.00        4     0.00     0.00  FT_Stream_Read
  0.00      2.07     0.00        4     0.00     0.00  FT_Stream_ReadAt
  0.00      2.07     0.00        4     0.00     0.00  InputItemFindCat
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxCodecID::Create()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxCodecID::KaxCodecID()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxCodecID::~KaxCodecID()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::Create()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::KaxTrackUID()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::~KaxTrackUID()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackType::Create()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackType::KaxTrackType()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackType::~KaxTrackType()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::Create()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::KaxTrackNumber()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::~KaxTrackNumber()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxInfo::Create()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxInfo::KaxInfo()
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxInfo::~KaxInfo()
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlString::EbmlString()
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlVoid::Create()
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlVoid::EbmlVoid()
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlVoid::~EbmlVoid()
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision)
  0.00      2.07     0.00        4     0.00     0.00  libebml::UTFstring::UpdateFromUTF8()
  0.00      2.07     0.00        4     0.00     0.00  libebml::UTFstring::SetUTF8(std::string const&)
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxCodecID::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxDateUTC::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxDuration::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxMuxingApp::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackType::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxSegmentUID::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackEntry::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxWritingApp::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxCodecPrivate::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTimecodeScale::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libmatroska::KaxTrackDefaultDuration::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlString::ValidateSize() const
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlUInteger::operator unsigned char() const
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlUnicodeString::ValidateSize() const
  0.00      2.07     0.00        4     0.00     0.00  libebml::EbmlVoid::Generic() const
  0.00      2.07     0.00        4     0.00     0.00  filter_chain_Delete
  0.00      2.07     0.00        4     0.00     0.00  filter_chain_GetFmtOut
  0.00      2.07     0.00        4     0.00     0.00  filter_chain_New
  0.00      2.07     0.00        4     0.00     0.00  find_unicode_charmap
  0.00      2.07     0.00        4     0.00     0.00  ft_realloc
  0.00      2.07     0.00        4     0.00     0.00  info_category_AddInfo
  0.00      2.07     0.00        4     0.00     0.00  input_ChangeState
  0.00      2.07     0.00        4     0.00     0.00  input_DecoderStopWait
  0.00      2.07     0.00        4     0.00     0.00  input_SendEventEsSelect
  0.00      2.07     0.00        4     0.00     0.00  input_SendEventMetaInfo
  0.00      2.07     0.00        4     0.00     0.00  input_item_GetMeta
  0.00      2.07     0.00        4     0.00     0.00  input_item_ReplaceInfos
  0.00      2.07     0.00        4     0.00     0.00  input_item_UpdateTracksInfo
  0.00      2.07     0.00        4     0.00     0.01  input_resource_RequestVout
  0.00      2.07     0.00        4     0.00     0.00  libvlc_media_set_state
  0.00      2.07     0.00        4     0.00     0.00  make_filters_from_proto
  0.00      2.07     0.00        4     0.00     0.00  make_path
  0.00      2.07     0.00        4     0.00     0.00  picture_New
  0.00      2.07     0.00        4     0.00     0.00  tt_cmap4_init
  0.00      2.07     0.00        4     0.00     0.00  tt_cmap4_validate
  0.00      2.07     0.00        4     0.00     0.00  tt_face_load_hhea
  0.00      2.07     0.00        4     0.00     0.00  tt_name_entry_ascii_from_utf16
  0.00      2.07     0.00        4     0.00     0.00  var_Set
  0.00      2.07     0.00        4     0.00     0.00  vlc_clone
  0.00      2.07     0.00        4     0.00     0.00  vlc_clone_attr
  0.00      2.07     0.00        4     0.00     0.00  vlc_join
  0.00      2.07     0.00        4     0.00     0.00  vlc_list_release
  0.00      2.07     0.00        4     0.00     0.00  vlc_sem_destroy
  0.00      2.07     0.00        4     0.00     0.00  vlc_sem_init
  0.00      2.07     0.00        4     0.00     0.00  vlc_sem_post
  0.00      2.07     0.00        4     0.00     0.00  vlc_sem_wait
  0.00      2.07     0.00        4     0.00     0.00  vout_ControlChangeWindowState
  0.00      2.07     0.00        4     0.00     0.00  vout_SetWindowState
  0.00      2.07     0.00        4     0.00     0.00  vout_display_Control
  0.00      2.07     0.00        3     0.00     0.00  Flush
  0.00      2.07     0.00        3     0.00     0.00  InputDelCallbacks
  0.00      2.07     0.00        3     0.00     0.00  Peek
  0.00      2.07     0.00        3     0.00     0.00  VarListAdd
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxSegmentUID::~KaxSegmentUID()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::Create()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::KaxTrackMinCache()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::~KaxTrackMinCache()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::Create()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxSeek::Create()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxSeek::KaxSeek()
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxSeek::~KaxSeek()
  0.00      2.07     0.00        3     0.00     1.17  matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long)
  0.00      2.07     0.00        3     0.00     0.00  libebml::EbmlString::EbmlString(std::string const&)
  0.00      2.07     0.00        3     0.00     0.00  libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&)
  0.00      2.07     0.00        3     0.00     0.00  libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxSeekHead::Generic() const
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxSeekPosition::Generic() const
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxSeekID::ValidateSize() const
  0.00      2.07     0.00        3     0.00     0.00  libmatroska::KaxSeekID::Generic() const
  0.00      2.07     0.00        3     0.00     0.00  libebml::EMaxIdLength::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        3     0.00     0.00  libebml::EReadVersion::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        3     0.00     0.00  libebml::EMaxSizeLength::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        3     0.00     0.00  libebml::EDocType::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        3     0.00     0.00  libebml::EVersion::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        3     0.00     0.00  libebml::EbmlFloat::ValidateSize() const
  0.00      2.07     0.00        3     0.00     0.00  aout_OutputFlush
  0.00      2.07     0.00        3     0.00     0.00  av_opt_set_defaults
  0.00      2.07     0.00        3     0.00     0.00  config_GetType
  0.00      2.07     0.00        3     0.00     0.00  convert_omx_to_profile_idc
  0.00      2.07     0.00        3     0.00     0.00  ff_init_ff_sine_windows
  0.00      2.07     0.00        3     0.00     0.00  ff_sine_window_init
  0.00      2.07     0.00        3     0.00     0.00  input_SendEventMeta
  0.00      2.07     0.00        3     0.00     0.00  input_SendEventState
  0.00      2.07     0.00        3     0.00     0.00  input_item_AddOption
  0.00      2.07     0.00        3     0.00     0.00  input_item_SetErrorWhenReading
  0.00      2.07     0.00        3     0.00     0.00  input_item_SetMeta
  0.00      2.07     0.00        3     0.00     0.00  libvlc_media_add_option
  0.00      2.07     0.00        3     0.00     0.00  libvlc_media_add_option_flag
  0.00      2.07     0.00        3     0.00     0.00  libvlc_retain
  0.00      2.07     0.00        3     0.00     0.00  stream_CommonDelete
  0.00      2.07     0.00        3     0.00     0.00  stream_CommonNew
  0.00      2.07     0.00        3     0.00     0.00  var_OptionParse
  0.00      2.07     0.00        3     0.00     0.00  video_format_IsSimilar
  0.00      2.07     0.00        3     0.00     0.00  vlc_inhibit_Destroy
  0.00      2.07     0.00        3     0.00     0.00  vlc_list_children
  0.00      2.07     0.00        3     0.00     0.00  vlc_meta_New
  0.00      2.07     0.00        3     0.00     0.00  vlc_meta_Set
  0.00      2.07     0.00        3     0.00     0.00  vlc_object_set_destructor
  0.00      2.07     0.00        3     0.00     0.00  vout_Flush
  0.00      2.07     0.00        3     0.00     0.00  vout_control_PushTime
  0.00      2.07     0.00        3     0.00     0.00  vout_control_PushVoid
  0.00      2.07     0.00        2     0.00     0.00  Add
  0.00      2.07     0.00        2     0.00     0.00  ArchitectureSpecificCopyHooksDestroy
  0.00      2.07     0.00        2     0.00     0.00  AspectCallback
  0.00      2.07     0.00        2     0.00     0.01  CmdExecuteDel
  0.00      2.07     0.00        2     0.00     0.00  ControlPause
  0.00      2.07     0.00        2     0.00     0.14  Create
  0.00      2.07     0.00        2     0.00     0.00  Create
  0.00      2.07     0.00        2     0.00     0.00  CreateDecoder
  0.00      2.07     0.00        2     0.00     0.00  CreateFilter
  0.00      2.07     0.00        2     0.00     0.00  CropCallback
  0.00      2.07     0.00        2     0.00     0.00  DecoderBlockFlushNew
  0.00      2.07     0.00        2     0.00     0.00  DecoderFlush
  0.00      2.07     0.00        2     0.00     0.00  DecoderUpdateFormatLocked
  0.00      2.07     0.00        2     0.00     0.02  DeinterlaceCallback
  0.00      2.07     0.00        2     0.00     0.01  Del
  0.00      2.07     0.00        2     0.00     0.00  Destroy
  0.00      2.07     0.00        2     0.00     0.00  EsCreateDecoder
  0.00      2.07     0.00        2     0.00     0.01  EsOutAdd
  0.00      2.07     0.00        2     0.00     0.01  EsOutDel
  0.00      2.07     0.00        2     0.00     0.00  EsOutProgramFind
  0.00      2.07     0.00        2     0.00     0.00  EsSelect
  0.00      2.07     0.00        2     0.00     0.00  EsUnselect
  0.00      2.07     0.00        2     0.00     0.00  FT_Add_Default_Modules
  0.00      2.07     0.00        2     0.00     0.00  FT_Done_Face
  0.00      2.07     0.00        2     0.00     0.00  FT_Done_FreeType
  0.00      2.07     0.00        2     0.00     0.00  FT_Done_GlyphSlot
  0.00      2.07     0.00        2     0.00     0.00  FT_Done_Library
  0.00      2.07     0.00        2     0.00     0.00  FT_Done_Memory
  0.00      2.07     0.00        2     0.00     0.00  FT_GlyphLoader_Adjust_Points
  0.00      2.07     0.00        2     0.00     0.00  FT_GlyphLoader_CreateExtra
  0.00      2.07     0.00        2     0.00     0.00  FT_Init_FreeType
  0.00      2.07     0.00        2     0.00     0.00  FT_New_Face
  0.00      2.07     0.00        2     0.00     0.00  FT_New_GlyphSlot
  0.00      2.07     0.00        2     0.00     0.00  FT_New_Library
  0.00      2.07     0.00        2     0.00     0.00  FT_New_Memory
  0.00      2.07     0.00        2     0.00     0.00  FT_New_Size
  0.00      2.07     0.00        2     0.00     0.00  FT_Open_Face
  0.00      2.07     0.00        2     0.00     0.00  FT_Request_Metrics
  0.00      2.07     0.00        2     0.00     0.00  FT_Request_Size
  0.00      2.07     0.00        2     0.00     0.00  FT_Select_Charmap
  0.00      2.07     0.00        2     0.00     0.00  FT_Set_Pixel_Sizes
  0.00      2.07     0.00        2     0.00     0.00  FT_Stream_Close
  0.00      2.07     0.00        2     0.00     0.00  FT_Stream_Free
  0.00      2.07     0.00        2     0.00     0.00  FT_Stream_New
  0.00      2.07     0.00        2     0.00     0.00  FT_Stream_Open
  0.00      2.07     0.00        2     0.00     0.00  FT_Stroker_Done
  0.00      2.07     0.00        2     0.00     0.00  FT_Stroker_New
  0.00      2.07     0.00        2     0.00     0.00  FullscreenCallback
  0.00      2.07     0.00        2     0.00     0.01  GetFontSize
  0.00      2.07     0.00        2     0.00     0.00  Get_Interface
  0.00      2.07     0.00        2     0.00     0.00  LanguageGetCode
  0.00      2.07     0.00        2     0.00     0.00  Open
  0.00      2.07     0.00        2     0.00     0.00  Open
  0.00      2.07     0.00        2     0.00     0.09  OpenDecoder
  0.00      2.07     0.00        2     0.00     0.02  OpenScaler
  0.00      2.07     0.00        2     0.00     0.00  ScaleCallback
  0.00      2.07     0.00        2     0.00     0.00  SpuRenderCreateAndLoadScale
  0.00      2.07     0.00        2     0.00     0.01  SpuRenderCreateAndLoadText
  0.00      2.07     0.00        2     0.00     0.00  SubFilterCallback
  0.00      2.07     0.00        2     0.00     0.00  SubMarginCallback
  0.00      2.07     0.00        2     0.00     0.00  SubSourceCallback
  0.00      2.07     0.00        2     0.00     0.00  T1_Driver_Done
  0.00      2.07     0.00        2     0.00     0.00  T1_Driver_Init
  0.00      2.07     0.00        2     0.00     0.00  T42_Driver_Done
  0.00      2.07     0.00        2     0.00     0.00  T42_Driver_Init
  0.00      2.07     0.00        2     0.00     0.00  T42_Get_Interface
  0.00      2.07     0.00        2     0.00     0.00  TT_Done_Context
  0.00      2.07     0.00        2     0.00     0.00  TT_New_Context
  0.00      2.07     0.00        2     0.00     0.00  ThreadChangeFilters
  0.00      2.07     0.00        2     0.00     0.00  VideoFilterCallback
  0.00      2.07     0.00        2     0.00     0.00  WallPaperCallback
  0.00      2.07     0.00        2     0.00     0.00  ZoomCallback
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::KaxDateUTC()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::~KaxDateUTC()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxDuration::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxDuration::KaxDuration()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxDuration::~KaxDuration()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::KaxSeekHead()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::~KaxSeekHead()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::KaxSegmentUID()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::KaxTrackEntry()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::~KaxTrackEntry()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::KaxSeekPreRoll()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::KaxCodecPrivate()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::~KaxCodecPrivate()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::KaxAudioChannels()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::~KaxAudioChannels()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::KaxTrackFlagForced()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCues::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCues::KaxCues()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCues::~KaxCues()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCues::~KaxCues()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTracks::Create()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTracks::KaxTracks()
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTracks::~KaxTracks()
  0.00      2.07     0.00        2     0.00     0.00  event_thread_t::ResetPci()
  0.00      2.07     0.00        2     0.00     0.22  matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*)
  0.00      2.07     0.00        2     0.00     0.00  matroska_segment_c::TrackInit(mkv_track_t*)
  0.00      2.07     0.00        2     0.00     0.00  TagLib::RefCounter::ref()
  0.00      2.07     0.00        2     0.00     0.00  TagLib::String::String()
  0.00      2.07     0.00        2     0.00     0.00  TagLib::FileRef::FileRefPrivate::~FileRefPrivate()
  0.00      2.07     0.00        2     0.00     0.00  TagLib::FileRef::~FileRef()
  0.00      2.07     0.00        2     0.00     0.00  TagLib::FileRef::~FileRef()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool)
  0.00      2.07     0.00        2     0.00     0.00  libebml::EMaxIdLength::Create()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EMaxIdLength::EMaxIdLength()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EMaxIdLength::~EMaxIdLength()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EReadVersion::Create()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EReadVersion::EReadVersion()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EReadVersion::~EReadVersion()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EMaxSizeLength::Create()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EMaxSizeLength::EMaxSizeLength()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EMaxSizeLength::~EMaxSizeLength()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeVersion::Create()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeVersion::EDocTypeVersion()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeVersion::~EDocTypeVersion()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::Create()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::EDocTypeReadVersion()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::~EDocTypeReadVersion()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocType::Create()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocType::EDocType()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocType::~EDocType()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EVersion::Create()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EVersion::EVersion()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EVersion::~EVersion()
  0.00      2.07     0.00        2     0.00     0.00  libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00      2.07     0.00        2     0.00     0.00  libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision)
  0.00      2.07     0.00        2     0.00     0.00  libebml::UTFstring::UpdateFromUCS2()
  0.00      2.07     0.00        2     0.00     0.00  libebml::UTFstring::UTFstring(libebml::UTFstring const&)
  0.00      2.07     0.00        2     0.00     0.00  libebml::UTFstring::operator=(wchar_t const*)
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCodecID::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxDuration::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackType::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::ValidateSize() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackAudio::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackVideo::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackLanguage::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackMinCache::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagLacing::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoDisplayWidth::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxVideoDisplayHeight::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxInfo::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libmatroska::KaxTracks::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EMaxIdLength::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EReadVersion::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EMaxSizeLength::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeVersion::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeVersion::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EDocType::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EVersion::Generic() const
  0.00      2.07     0.00        2     0.00     0.00  libebml::EbmlDate::ValidateSize() const
  0.00      2.07     0.00        2     0.00     0.00  std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&)
  0.00      2.07     0.00        2     0.00     0.00  std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&)
  0.00      2.07     0.00        2     0.00     0.00  af_autofitter_done
  0.00      2.07     0.00        2     0.00     0.00  af_autofitter_init
  0.00      2.07     0.00        2     0.00     0.00  af_get_interface
  0.00      2.07     0.00        2     0.00     0.00  af_glyph_hints_done
  0.00      2.07     0.00        2     0.00     0.00  aout_CheckChannelExtraction
  0.00      2.07     0.00        2     0.00     0.00  aout_DecFlush
  0.00      2.07     0.00        2     0.00     0.00  aout_FiltersPipelineDestroy
  0.00      2.07     0.00        2     0.00     0.02  aout_FormatPrint
  0.00      2.07     0.00        2     0.00     0.00  av_buffer_alloc
  0.00      2.07     0.00        2     0.00     0.00  av_buffer_default_free
  0.00      2.07     0.00        2     0.00     0.00  av_codec_is_encoder
  0.00      2.07     0.00        2     0.00     0.00  av_d2q
  0.00      2.07     0.00        2     0.00     0.00  av_dict_free
  0.00      2.07     0.00        2     0.00     0.00  av_dict_get
  0.00      2.07     0.00        2     0.00     0.00  av_gcd
  0.00      2.07     0.00        2     0.00     0.00  av_opt_set_q
  0.00      2.07     0.00        2     0.00     0.00  av_reduce
  0.00      2.07     0.00        2     0.00     0.00  avcodec_is_open
  0.00      2.07     0.00        2     0.00     0.00  bdf_driver_requester
  0.00      2.07     0.00        2     0.00     0.00  block_FifoNew
  0.00      2.07     0.00        2     0.00     0.00  block_FifoRelease
  0.00      2.07     0.00        2     0.00     0.00  cff_driver_done
  0.00      2.07     0.00        2     0.00     0.00  cff_driver_init
  0.00      2.07     0.00        2     0.00     0.00  cff_get_interface
  0.00      2.07     0.00        2     0.00     0.00  cid_driver_done
  0.00      2.07     0.00        2     0.00     0.00  cid_driver_init
  0.00      2.07     0.00        2     0.00     0.00  cid_get_interface
  0.00      2.07     0.00        2     0.00     0.00  config_ChainCreate
  0.00      2.07     0.00        2     0.00     0.00  decoder_New
  0.00      2.07     0.00        2     0.00     0.02  demux_New
  0.00      2.07     0.00        2     0.00     0.00  destroy_charmaps
  0.00      2.07     0.00        2     0.00     0.00  destroy_face
  0.00      2.07     0.00        2     0.00     0.00  destroy_size
  0.00      2.07     0.00        2     0.00     0.00  es_format_InitFromVideo
  0.00      2.07     0.00        2     0.00     0.00  es_format_IsSimilar
  0.00      2.07     0.00        2     0.00     0.00  ff_getSwsFunc
  0.00      2.07     0.00        2     0.00     0.00  ff_sws_init_input_funcs
  0.00      2.07     0.00        2     0.00     0.00  ff_sws_init_output_funcs
  0.00      2.07     0.00        2     0.00     0.00  ft_ansi_stream_close
  0.00      2.07     0.00        2     0.00     0.00  ft_black_done
  0.00      2.07     0.00        2     0.00     0.00  ft_black_new
  0.00      2.07     0.00        2     0.00     0.00  ft_black_reset
  0.00      2.07     0.00        2     0.00     0.00  ft_glyphslot_done
  0.00      2.07     0.00        2     0.00     0.00  ft_glyphslot_free_bitmap
  0.00      2.07     0.00        2     0.00     0.00  ft_module_get_service
  0.00      2.07     0.00        2     0.00     0.00  ft_raster1_init
  0.00      2.07     0.00        2     0.00     0.00  ft_recompute_scaled_metrics
  0.00      2.07     0.00        2     0.00     0.00  input_DecoderDelete
  0.00      2.07     0.00        2     0.00     0.00  input_DecoderNew
  0.00      2.07     0.00        2     0.00     0.00  input_DecoderStartWait
  0.00      2.07     0.00        2     0.00     0.00  input_DecoderWait
  0.00      2.07     0.00        2     0.00     0.00  input_SendEventAout
  0.00      2.07     0.00        2     0.00     0.00  input_SendEventEsAdd
  0.00      2.07     0.00        2     0.00     0.00  input_SendEventTeletextSelect
  0.00      2.07     0.00        2     0.00     0.00  input_SendEventVout
  0.00      2.07     0.00        2     0.00     0.00  input_clock_SetJitter
  0.00      2.07     0.00        2     0.00     0.00  input_item_GetName
  0.00      2.07     0.00        2     0.00     0.00  input_item_Hold
  0.00      2.07     0.00        2     0.00     0.00  input_item_Release
  0.00      2.07     0.00        2     0.00     0.04  input_resource_GetAout
  0.00      2.07     0.00        2     0.00     0.00  input_resource_HoldVouts
  0.00      2.07     0.00        2     0.00     0.02  input_resource_PutAout
  0.00      2.07     0.00        2     0.00     0.00  input_resource_SetInput
  0.00      2.07     0.00        2     0.00     0.00  input_resource_TerminateVout
  0.00      2.07     0.00        2     0.00     0.00  libvlc_event_manager_new
  0.00      2.07     0.00        2     0.00     0.00  open_face
  0.00      2.07     0.00        2     0.00     0.00  pcf_driver_requester
  0.00      2.07     0.00        2     0.00     0.00  pfr_get_service
  0.00      2.07     0.00        2     0.00     0.02  picture_pool_Delete
  0.00      2.07     0.00        2     0.00     0.00  picture_pool_GetSize
  0.00      2.07     0.00        2     0.00     0.00  ps_hinter_done
  0.00      2.07     0.00        2     0.00     0.00  ps_hinter_init
  0.00      2.07     0.00        2     0.00     0.00  psnames_get_service
  0.00      2.07     0.00        2     0.00     0.00  release_input_thread
  0.00      2.07     0.00        2     0.00     0.00  sfnt_done_face
  0.00      2.07     0.00        2     0.00     0.00  sfnt_init_face
  0.00      2.07     0.00        2     0.00     0.00  sfnt_load_face
  0.00      2.07     0.00        2     0.00     0.00  spu_Attach
  0.00      2.07     0.00        2     0.00     0.00  spu_ChangeFilters
  0.00      2.07     0.00        2     0.00     0.00  spu_ChangeMargin
  0.00      2.07     0.00        2     0.00     0.00  spu_ChangeSources
  0.00      2.07     0.00        2     0.00     0.00  spu_get_attachments
  0.00      2.07     0.00        2     0.00     0.00  strcpy_strip_ext
  0.00      2.07     0.00        2     0.00     0.00  strcpy_trim
  0.00      2.07     0.00        2     0.00     0.00  stream_Delete
  0.00      2.07     0.00        2     0.00     0.00  stream_FilterNew
  0.00      2.07     0.00        2     0.00     0.00  sws_alloc_context
  0.00      2.07     0.00        2     0.00     0.00  sws_freeContext
  0.00      2.07     0.00        2     0.00     0.01  sws_getContext
  0.00      2.07     0.00        2     0.00     0.01  sws_init_context
  0.00      2.07     0.00        2     0.00     0.00  sws_isSupportedInput
  0.00      2.07     0.00        2     0.00     0.00  sws_isSupportedOutput
  0.00      2.07     0.00        2     0.00     0.00  sws_setColorspaceDetails
  0.00      2.07     0.00        2     0.00     0.00  tt_cmap6_validate
  0.00      2.07     0.00        2     0.00     0.00  tt_cmap_init
  0.00      2.07     0.00        2     0.00     0.00  tt_driver_done
  0.00      2.07     0.00        2     0.00     0.00  tt_driver_init
  0.00      2.07     0.00        2     0.00     0.00  tt_face_build_cmaps
  0.00      2.07     0.00        2     0.00     0.00  tt_face_done
  0.00      2.07     0.00        2     0.00     0.00  tt_face_free_eblc
  0.00      2.07     0.00        2     0.00     0.00  tt_face_free_name
  0.00      2.07     0.00        2     0.00     0.00  tt_face_free_ps_names
  0.00      2.07     0.00        2     0.00     0.00  tt_face_init
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_cmap
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_cvt
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_eblc
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_font_dir
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_gasp
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_generic_header
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_head
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_hmtx
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_kern
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_maxp
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_name
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_os2
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_pclt
  0.00      2.07     0.00        2     0.00     0.00  tt_face_load_post
  0.00      2.07     0.00        2     0.00     0.00  tt_get_interface
  0.00      2.07     0.00        2     0.00     0.00  tt_size_done
  0.00      2.07     0.00        2     0.00     0.00  tt_size_init
  0.00      2.07     0.00        2     0.00     0.00  tt_size_request
  0.00      2.07     0.00        2     0.00     0.00  tt_size_reset
  0.00      2.07     0.00        2     0.00     0.00  tt_slot_init
  0.00      2.07     0.00        2     0.00     0.00  var_Get
  0.00      2.07     0.00        2     0.00     0.00  vlc_cancel
  0.00      2.07     0.00        2     0.00     0.00  vlc_meta_Delete
  0.00      2.07     0.00        2     0.00     0.00  vlc_meta_Merge
  0.00      2.07     0.00        2     0.00     0.00  vout_ControlChangeCropRatio
  0.00      2.07     0.00        2     0.00     0.00  vout_ControlChangeFilters
  0.00      2.07     0.00        2     0.00     0.00  vout_ControlChangeSampleAspectRatio
  0.00      2.07     0.00        2     0.00     0.00  vout_ControlChangeSubFilters
  0.00      2.07     0.00        2     0.00     0.00  vout_ControlChangeSubMargin
  0.00      2.07     0.00        2     0.00     0.00  vout_ControlChangeSubSources
  0.00      2.07     0.00        2     0.00     0.00  vout_ControlChangeZoom
  0.00      2.07     0.00        2     0.00     0.01  vout_IntfReinit
  0.00      2.07     0.00        2     0.00     0.11  vout_Request
  0.00      2.07     0.00        2     0.00     0.00  vout_SetDisplayAspect
  0.00      2.07     0.00        2     0.00     0.00  vout_SetDisplayCrop
  0.00      2.07     0.00        2     0.00     0.00  vout_SetDisplayZoom
  0.00      2.07     0.00        2     0.00     0.00  winfnt_get_service
  0.00      2.07     0.00        2     0.00     0.00  wmemcpy
  0.00      2.07     0.00        1     0.00     0.00  AStreamDestroy
  0.00      2.07     0.00        1     0.00     0.07  AStreamPrebufferStream
  0.00      2.07     0.00        1     0.00     0.00  Activate
  0.00      2.07     0.00        1     0.00     0.00  Activate
  0.00      2.07     0.00        1     0.00     0.00  Activate
  0.00      2.07     0.00        1     0.00     0.00  Activate
  0.00      2.07     0.00        1     0.00     0.00  Activate
  0.00      2.07     0.00        1     0.00     0.00  Activate
  0.00      2.07     0.00        1     0.00     0.00  Activate
  0.00      2.07     0.00        1     0.00     0.00  Activate
  0.00      2.07     0.00        1     0.00     0.00  ArchitectureSpecificCopyHooks
  0.00      2.07     0.00        1     0.00     0.00  Close
  0.00      2.07     0.00        1     0.00     0.00  Close
  0.00      2.07     0.00        1     0.00     0.00  Close
  0.00      2.07     0.00        1     0.00     0.02  Close
  0.00      2.07     0.00        1     0.00     0.00  CloseDecoder
  0.00      2.07     0.00        1     0.00     0.02  CloseDecoder
  0.00      2.07     0.00        1     0.00     0.00  CloseScaler
  0.00      2.07     0.00        1     0.00     0.00  Create
  0.00      2.07     0.00        1     0.00     0.00  Create
  0.00      2.07     0.00        1     0.00     0.00  Create
  0.00      2.07     0.00        1     0.00     0.00  Create
  0.00      2.07     0.00        1     0.00     0.34  Create
  0.00      2.07     0.00        1     0.00     0.00  CreateResampler
  0.00      2.07     0.00        1     0.00     0.00  DecoderOpen
  0.00      2.07     0.00        1     0.00     0.00  DecoderOpen
  0.00      2.07     0.00        1     0.00     0.00  DecoderOpen
  0.00      2.07     0.00        1     0.00     0.00  DeinterlaceIsPresent
  0.00      2.07     0.00        1     0.00     0.00  Destroy
  0.00      2.07     0.00        1     0.00     0.00  Destructor
  0.00      2.07     0.00        1     0.00     0.00  DisplayNew
  0.00      2.07     0.00        1     0.00     0.03  End
  0.00      2.07     0.00        1     0.00     0.00  EnsureUTF8
  0.00      2.07     0.00        1     0.00     0.00  EqualizerCallback
  0.00      2.07     0.00        1     0.00     0.00  EsOutDelete
  0.00      2.07     0.00        1     0.00     0.03  EsOutProgramAdd
  0.00      2.07     0.00        1     0.00     0.02  EsOutProgramSelect
  0.00      2.07     0.00        1     0.00     0.00  FileClose
  0.00      2.07     0.00        1     0.00     0.02  FileOpen
  0.00      2.07     0.00        1     0.00     0.00  GetFfmpegCodec
  0.00      2.07     0.00        1     0.00     0.00  GetOmxRole
  0.00      2.07     0.00        1     0.00     0.00  IgnoreOmxDecoderPadding
  0.00      2.07     0.00        1     0.00     0.02  Init
  0.00      2.07     0.00        1     0.00     0.31  Init
  0.00      2.07     0.00        1     0.00    10.03  InitAudioDec
  0.00      2.07     0.00        1     0.00     0.00  InitOmxCore
  0.00      2.07     0.00        1     0.00     0.01  InitTitle
  0.00      2.07     0.00        1     0.00     0.01  InputSourceClean
  0.00      2.07     0.00        1     0.00     0.20  InputSourceInit
  0.00      2.07     0.00        1     0.00     0.00  LoadNativeWindowAPI
  0.00      2.07     0.00        1     0.00     0.00  MRLSeekPoint
  0.00      2.07     0.00        1     0.00   136.04  MainLoop
  0.00      2.07     0.00        1     0.00     0.00  ObjectKillChildrens
  0.00      2.07     0.00        1     0.00     0.02  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.00  Open
  0.00      2.07     0.00        1     0.00     0.02  Open
  0.00      2.07     0.00        1     0.00     0.00  OpenBzip2
  0.00      2.07     0.00        1     0.00     0.00  OpenCommon
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00    20.07  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenDecoder
  0.00      2.07     0.00        1     0.00     0.00  OpenFilter
  0.00      2.07     0.00        1     0.00     0.00  OpenFilter
  0.00      2.07     0.00        1     0.00     0.00  OpenFilter
  0.00      2.07     0.00        1     0.00     0.00  OpenGeneric
  0.00      2.07     0.00        1     0.00     0.00  OpenGzip
  0.00      2.07     0.00        1     0.00     0.00  OpenXZ
  0.00      2.07     0.00        1     0.00     0.00  Pool
  0.00      2.07     0.00        1     0.00     0.00  Probe
  0.00      2.07     0.00        1     0.00     0.00  RarProbe
  0.00      2.07     0.00        1     0.00     0.00  RarStreamOpen
  0.00      2.07     0.00        1     0.00     0.01  ReplayGainCallback
  0.00      2.07     0.00        1     0.00   136.38  Run
  0.00      2.07     0.00        1     0.00     0.00  Start
  0.00      2.07     0.00        1     0.00     0.00  Stop
  0.00      2.07     0.00        1     0.00     0.00  StreamDelete
  0.00      2.07     0.00        1     0.00     0.00  StreamOpen
  0.00      2.07     0.00        1     0.00   119.92  Thread
  0.00      2.07     0.00        1     0.00     0.10  ThreadStart
  0.00      2.07     0.00        1     0.00     0.02  ThreadStop
  0.00      2.07     0.00        1     0.00     0.00  TryFormat
  0.00      2.07     0.00        1     0.00     0.00  UpdateBufferFunctions
  0.00      2.07     0.00        1     0.00     0.01  UpdatePtsDelay
  0.00      2.07     0.00        1     0.00     0.00  VoutDestructor
  0.00      2.07     0.00        1     0.00     0.00  VoutDisplayCreateRender
  0.00      2.07     0.00        1     0.00     0.02  VoutDisplayEvent
  0.00      2.07     0.00        1     0.00     0.00  VoutValidateFormat
  0.00      2.07     0.00        1     0.00     0.00  fill_extra_data(mkv_track_t*, unsigned int)
  0.00      2.07     0.00        1     0.00     5.25  Open(vlc_object_t*)
  0.00      2.07     0.00        1     0.00     0.00  Open(vlc_object_t*)
  0.00      2.07     0.00        1     0.00     0.04  Close(vlc_object_t*)
  0.00      2.07     0.00        1     0.00     0.00  ReadMeta(vlc_object_t*)
  0.00      2.07     0.00        1     0.00     0.01  EbmlParser::Reset(demux_t*)
  0.00      2.07     0.00        1     0.00     0.00  demux_sys_t::FreeUnused()
  0.00      2.07     0.00        1     0.00     0.00  demux_sys_t::PreloadLinked()
  0.00      2.07     0.00        1     0.00     0.00  demux_sys_t::PreparePlayback(virtual_segment_c*)
  0.00      2.07     0.00        1     0.00     0.90  demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool)
  0.00      2.07     0.00        1     0.00     0.04  demux_sys_t::InitUi()
  0.00      2.07     0.00        1     0.00     0.02  demux_sys_t::CleanUi()
  0.00      2.07     0.00        1     0.00     0.02  demux_sys_t::~demux_sys_t()
  0.00      2.07     0.00        1     0.00     0.02  demux_sys_t::~demux_sys_t()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxSegment::Create()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxSegment::KaxSegment()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxSegment::~KaxSegment()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::Create()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::KaxTrackAudio()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::~KaxTrackAudio()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::Create()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::KaxTrackVideo()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::~KaxTrackVideo()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::Create()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::KaxTrackLanguage()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::~KaxTrackLanguage()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::Create()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::Create()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::Create()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced()
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced()
  0.00      2.07     0.00        1     0.00     0.00  event_thread_t::~event_thread_t()
  0.00      2.07     0.00        1     0.00     0.00  event_thread_t::~event_thread_t()
  0.00      2.07     0.00        1     0.00     0.00  virtual_chapter_c::PublishChapters(input_title_t&, int&, int)
  0.00      2.07     0.00        1     0.00     0.00  virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool)
  0.00      2.07     0.00        1     0.00     0.00  virtual_chapter_c::~virtual_chapter_c()
  0.00      2.07     0.00        1     0.00     0.00  virtual_edition_c::GetMainName()
  0.00      2.07     0.00        1     0.00     0.00  virtual_edition_c::retimeChapters()
  0.00      2.07     0.00        1     0.00     0.00  virtual_edition_c::PublishChapters(input_title_t&, int&, int)
  0.00      2.07     0.00        1     0.00     0.00  virtual_edition_c::retimeSubChapters(virtual_chapter_c*)
  0.00      2.07     0.00        1     0.00     0.00  virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*)
  0.00      2.07     0.00        1     0.00     0.00  virtual_edition_c::~virtual_edition_c()
  0.00      2.07     0.00        1     0.00     0.00  virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long)
  0.00      2.07     0.00        1     0.00     0.00  virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*)
  0.00      2.07     0.00        1     0.00     0.00  virtual_segment_c::~virtual_segment_c()
  0.00      2.07     0.00        1     0.00     0.87  matroska_segment_c::ParseTracks(libmatroska::KaxTracks*)
  0.00      2.07     0.00        1     0.00     0.44  matroska_segment_c::ParseCluster(bool)
  0.00      2.07     0.00        1     0.00     3.72  matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*)
  0.00      2.07     0.00        1     0.00     0.00  matroska_segment_c::InformationCreate()
  0.00      2.07     0.00        1     0.00     0.00  matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*)
  0.00      2.07     0.00        1     0.00     0.00  matroska_segment_c::ComputeTrackPriority()
  0.00      2.07     0.00        1     0.00     0.01  matroska_segment_c::Seek(long long, long long, long long)
  0.00      2.07     0.00        1     0.00     0.03  matroska_segment_c::Select(long long)
  0.00      2.07     0.00        1     0.00     4.30  matroska_segment_c::Preload()
  0.00      2.07     0.00        1     0.00     2.03  matroska_segment_c::LoadCues(libmatroska::KaxCues*)
  0.00      2.07     0.00        1     0.00     0.02  matroska_segment_c::UnSelect()
  0.00      2.07     0.00        1     0.00     0.54  matroska_segment_c::ParseInfo(libmatroska::KaxInfo*)
  0.00      2.07     0.00        1     0.00     0.00  matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&)
  0.00      2.07     0.00        1     0.00     0.00  matroska_segment_c::~matroska_segment_c()
  0.00      2.07     0.00        1     0.00     0.00  matroska_segment_c::~matroska_segment_c()
  0.00      2.07     0.00        1     0.00     0.00  vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool)
  0.00      2.07     0.00        1     0.00     0.00  vlc_stream_io_callback::~vlc_stream_io_callback()
  0.00      2.07     0.00        1     0.00     0.00  dash::xml::DOMParser::isDash(stream_t*)
  0.00      2.07     0.00        1     0.00     0.00  TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type)
  0.00      2.07     0.00        1     0.00     0.00  TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type)
  0.00      2.07     0.00        1     0.00     0.00  TagLib::String::operator=(TagLib::String const&)
  0.00      2.07     0.00        1     0.00     0.00  TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle)
  0.00      2.07     0.00        1     0.00     0.00  TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle)
  0.00      2.07     0.00        1     0.00     0.00  TagLib::FileRef::FileRef()
  0.00      2.07     0.00        1     0.00     0.00  TagLib::FileRef::operator=(TagLib::FileRef const&)
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&)
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlStream::EbmlStream(libebml::IOCallback&)
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlStream::~EbmlStream()
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlString::EbmlString(libebml::EbmlString const&)
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&)
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlHead::Create()
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlHead::EbmlHead()
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlHead::~EbmlHead()
  0.00      2.07     0.00        1     0.00     0.00  demux_sys_t::FindSegment(libebml::EbmlBinary const&) const
  0.00      2.07     0.00        1     0.00     0.00  demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const
  0.00      2.07     0.00        1     0.00     0.00  libmatroska::KaxCues::Generic() const
  0.00      2.07     0.00        1     0.00     0.00  TagLib::String::rfind(TagLib::String const&, int) const
  0.00      2.07     0.00        1     0.00     0.00  TagLib::String::upper() const
  0.00      2.07     0.00        1     0.00     0.00  TagLib::String::substr(unsigned int, unsigned int) const
  0.00      2.07     0.00        1     0.00     0.00  TagLib::String::isEmpty() const
  0.00      2.07     0.00        1     0.00     0.00  TagLib::FileRef::isNull() const
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlFloat::operator double() const
  0.00      2.07     0.00        1     0.00     0.00  libebml::EbmlFloat::operator float() const
  0.00      2.07     0.00        1     0.00     0.00  std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&)
  0.00      2.07     0.00        1     0.00     0.00  std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&)
  0.00      2.07     0.00        1     0.00     0.00  std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&)
  0.00      2.07     0.00        1     0.00     0.00  std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&)
  0.00      2.07     0.00        1     0.00     0.00  std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&)
  0.00      2.07     0.00        1     0.00     0.00  aac_decode_close
  0.00      2.07     0.00        1     0.00    10.00  aac_decode_init
  0.00      2.07     0.00        1     0.00     0.00  access_Delete
  0.00      2.07     0.00        1     0.00     0.02  access_New
  0.00      2.07     0.00        1     0.00     0.00  aout_ChangeFilterString
  0.00      2.07     0.00        1     0.00     0.00  aout_DecDelete
  0.00      2.07     0.00        1     0.00     0.11  aout_DecNew
  0.00      2.07     0.00        1     0.00     0.00  aout_Destroy
  0.00      2.07     0.00        1     0.00     0.00  aout_Destructor
  0.00      2.07     0.00        1     0.00     0.00  aout_FiltersDelete
  0.00      2.07     0.00        1     0.00     0.08  aout_FiltersNew
  0.00      2.07     0.00        1     0.00     0.04  aout_FiltersPipelineCreate
  0.00      2.07     0.00        1     0.00     0.02  aout_FormatsPrint
  0.00      2.07     0.00        1     0.00     0.04  aout_New
  0.00      2.07     0.00        1     0.00     0.00  aout_OutputDelete
  0.00      2.07     0.00        1     0.00     0.02  aout_OutputNew
  0.00      2.07     0.00        1     0.00     0.00  aout_get_native_sample_rate
  0.00      2.07     0.00        1     0.00     0.00  aout_volume_Delete
  0.00      2.07     0.00        1     0.00     0.00  aout_volume_New
  0.00      2.07     0.00        1     0.00     0.00  aout_volume_SetFormat
  0.00      2.07     0.00        1     0.00     0.00  atrac3_init_static_data
  0.00      2.07     0.00        1     0.00     0.00  av_buffer_pool_init
  0.00      2.07     0.00        1     0.00     0.00  av_crc_init
  0.00      2.07     0.00        1     0.00     0.00  av_get_bytes_per_sample
  0.00      2.07     0.00        1     0.00     0.00  av_log_set_level
  0.00      2.07     0.00        1     0.00     0.00  av_opt_free
  0.00      2.07     0.00        1     0.00     0.00  av_opt_set
  0.00      2.07     0.00        1     0.00     0.00  av_opt_set_dict
  0.00      2.07     0.00        1     0.00     0.00  av_samples_get_buffer_size
  0.00      2.07     0.00        1     0.00     0.00  avcodec_alloc_context3
  0.00      2.07     0.00        1     0.00     0.00  avcodec_close
  0.00      2.07     0.00        1     0.00     0.00  avcodec_find_decoder
  0.00      2.07     0.00        1     0.00     0.00  avcodec_flush_buffers
  0.00      2.07     0.00        1     0.00     0.00  avcodec_get_context_defaults3
  0.00      2.07     0.00        1     0.00    10.00  avcodec_open2
  0.00      2.07     0.00        1     0.00    10.00  avcodec_register_all
  0.00      2.07     0.00        1     0.00     0.00  avpriv_float_dsp_init
  0.00      2.07     0.00        1     0.00     0.00  avpriv_mpeg4audio_get_config
  0.00      2.07     0.00        1     0.00     0.00  che_configure
  0.00      2.07     0.00        1     0.00     0.00  date_Init
  0.00      2.07     0.00        1     0.00     0.00  decode_audio_specific_config
  0.00      2.07     0.00        1     0.00     0.01  demux_Delete
  0.00      2.07     0.00        1     0.00     0.00  demux_GetParentInput
  0.00      2.07     0.00        1     0.00     0.00  ff_aac_sbr_ctx_close
  0.00      2.07     0.00        1     0.00     0.00  ff_aac_sbr_ctx_init
  0.00      2.07     0.00        1     0.00     0.00  ff_aac_sbr_init
  0.00      2.07     0.00        1     0.00     0.00  ff_aac_tableinit
  0.00      2.07     0.00        1     0.00     0.00  ff_atrac3p_init_vlcs
  0.00      2.07     0.00        1     0.00     0.00  ff_atrac_generate_tables
  0.00      2.07     0.00        1     0.00     0.00  ff_dsputil_static_init
  0.00      2.07     0.00        1     0.00     0.00  ff_float_dsp_init_arm
  0.00      2.07     0.00        1     0.00     0.00  ff_float_dsp_init_neon
  0.00      2.07     0.00        1     0.00     0.00  ff_float_dsp_init_vfp
  0.00      2.07     0.00        1     0.00     0.00  ff_fmt_convert_init
  0.00      2.07     0.00        1     0.00     0.00  ff_fmt_convert_init_arm
  0.00      2.07     0.00        1     0.00     0.00  ff_get_cpu_flags_arm
  0.00      2.07     0.00        1     0.00     0.00  ff_jpeg2000_init_tier1_luts
  0.00      2.07     0.00        1     0.00     0.00  ff_mpa_synth_init_float
  0.00      2.07     0.00        1     0.00     0.00  ff_mqc_init_context_tables
  0.00      2.07     0.00        1     0.00     0.00  ff_ps_ctx_init
  0.00      2.07     0.00        1     0.00     0.00  ff_ps_init
  0.00      2.07     0.00        1     0.00     0.00  ff_psdsp_init
  0.00      2.07     0.00        1     0.00     0.00  ff_psdsp_init_arm
  0.00      2.07     0.00        1     0.00     0.00  ff_sbrdsp_init
  0.00      2.07     0.00        1     0.00     0.00  ff_sbrdsp_init_arm
  0.00      2.07     0.00        1     0.00     0.00  ff_tak_init_crc
  0.00      2.07     0.00        1     0.00     0.00  ff_thread_init
  0.00      2.07     0.00        1     0.00     0.00  ff_yuv2rgb_c_init_tables
  0.00      2.07     0.00        1     0.00    10.03  ffmpeg_OpenCodec
  0.00      2.07     0.00        1     0.00     0.00  filter_chain_AppendFromString
  0.00      2.07     0.00        1     0.00     0.00  filter_chain_AppendFromStringInternal
  0.00      2.07     0.00        1     0.00     0.00  get_path
  0.00      2.07     0.00        1     0.00     0.00  h264_get_profile_level
  0.00      2.07     0.00        1     0.00     0.00  input_Close
  0.00      2.07     0.00        1     0.00     0.20  input_ConfigVarInit
  0.00      2.07     0.00        1     0.00     0.00  input_ControlPush
  0.00      2.07     0.00        1     0.00     0.10  input_ControlVarInit
  0.00      2.07     0.00        1     0.00     0.01  input_ControlVarNavigation
  0.00      2.07     0.00        1     0.00     0.01  input_ControlVarStop
  0.00      2.07     0.00        1     0.00     0.00  input_ControlVarTitle
  0.00      2.07     0.00        1     0.00     0.34  input_Create
  0.00      2.07     0.00        1     0.00     0.00  input_DecoderChangeDelay
  0.00      2.07     0.00        1     0.00     0.00  input_EsOutNew
  0.00      2.07     0.00        1     0.00     0.03  input_EsOutTimeshiftNew
  0.00      2.07     0.00        1     0.00     0.00  input_Join
  0.00      2.07     0.00        1     0.00     0.00  input_SendEventAbort
  0.00      2.07     0.00        1     0.00     0.00  input_SendEventDead
  0.00      2.07     0.00        1     0.00     0.00  input_SendEventMetaEpg
  0.00      2.07     0.00        1     0.00     0.00  input_SendEventProgramAdd
  0.00      2.07     0.00        1     0.00     0.00  input_SendEventProgramScrambled
  0.00      2.07     0.00        1     0.00     0.00  input_SendEventProgramSelect
  0.00      2.07     0.00        1     0.00     0.00  input_SendEventTeletextDel
  0.00      2.07     0.00        1     0.00     0.00  input_SendEventTitle
  0.00      2.07     0.00        1     0.00     0.00  input_SplitMRL
  0.00      2.07     0.00        1     0.00     0.00  input_Start
  0.00      2.07     0.00        1     0.00     0.00  input_Stop
  0.00      2.07     0.00        1     0.00     0.00  input_clock_ChangeSystemOrigin
  0.00      2.07     0.00        1     0.00     0.00  input_clock_Delete
  0.00      2.07     0.00        1     0.00     0.00  input_clock_New
  0.00      2.07     0.00        1     0.00     0.00  input_item_NewExt
  0.00      2.07     0.00        1     0.00     0.00  input_item_NewWithType
  0.00      2.07     0.00        1     0.00     0.00  input_item_SetDuration
  0.00      2.07     0.00        1     0.00     0.00  input_item_SetEpgOffline
  0.00      2.07     0.00        1     0.00     0.00  input_item_SetPreparsed
  0.00      2.07     0.00        1     0.00     0.00  input_item_SetURI
  0.00      2.07     0.00        1     0.00     0.00  input_item_duration_changed
  0.00      2.07     0.00        1     0.00     0.00  input_item_preparsed_changed
  0.00      2.07     0.00        1     0.00     0.00  input_pausable_changed
  0.00      2.07     0.00        1     0.00     0.00  input_resource_Hold
  0.00      2.07     0.00        1     0.00     0.00  input_resource_HoldAout
  0.00      2.07     0.00        1     0.00     0.00  input_resource_New
  0.00      2.07     0.00        1     0.00     0.00  input_resource_Release
  0.00      2.07     0.00        1     0.00     0.00  input_resource_RequestSout
  0.00      2.07     0.00        1     0.00     0.00  input_resource_ResetAout
  0.00      2.07     0.00        1     0.00     0.01  input_resource_Terminate
  0.00      2.07     0.00        1     0.00     0.00  input_scrambled_changed
  0.00      2.07     0.00        1     0.00     0.00  input_seekable_changed
  0.00      2.07     0.00        1     0.00     0.00  jni_IsVideoPlayerActivityCreated
  0.00      2.07     0.00        1     0.00     0.00  jni_LockAndGetAndroidJavaSurface
  0.00      2.07     0.00        1     0.00     0.00  jni_SetAndroidSurfaceSizeEnv
  0.00      2.07     0.00        1     0.00     0.00  jni_UnlockAndroidSurface
  0.00      2.07     0.00        1     0.00     0.00  jpeg2000_init_static_data
  0.00      2.07     0.00        1     0.00     0.00  libvlc_media_event_manager
  0.00      2.07     0.00        1     0.00     0.00  libvlc_media_new_from_input_item
  0.00      2.07     0.00        1     0.00     0.00  libvlc_media_new_location
  0.00      2.07     0.00        1     0.00     0.00  libvlc_media_player_event_manager
  0.00      2.07     0.00        1     0.00     0.00  libvlc_media_player_get_media
  0.00      2.07     0.00        1     0.00     0.31  libvlc_media_player_new
  0.00      2.07     0.00        1     0.00     0.00  libvlc_media_player_set_media
  0.00      2.07     0.00        1     0.00     0.00  libvlc_media_player_set_video_title_display
  0.00      2.07     0.00        1     0.00     0.01  libvlc_media_player_stop
  0.00      2.07     0.00        1     0.00     0.00  libvlc_media_subitems
  0.00      2.07     0.00        1     0.00     0.00  msleep
  0.00      2.07     0.00        1     0.00     0.00  picture_fifo_Delete
  0.00      2.07     0.00        1     0.00     0.00  picture_fifo_New
  0.00      2.07     0.00        1     0.00     0.00  picture_pool_NewExtended
  0.00      2.07     0.00        1     0.00     0.00  picture_pool_NonEmpty
  0.00      2.07     0.00        1     0.00     0.00  picture_pool_Reserve
  0.00      2.07     0.00        1     0.00     0.00  qdm2_init_static_data
  0.00      2.07     0.00        1     0.00     0.00  secstotimestr
  0.00      2.07     0.00        1     0.00     0.00  setLong
  0.00      2.07     0.00        1     0.00     0.00  sniff_channel_order
  0.00      2.07     0.00        1     0.00     0.00  spu_ClearChannel
  0.00      2.07     0.00        1     0.00     0.01  spu_Create
  0.00      2.07     0.00        1     0.00     0.00  spu_Destroy
  0.00      2.07     0.00        1     0.00     0.00  stats_NewInputStats
  0.00      2.07     0.00        1     0.00     0.00  stats_ReinitInputStats
  0.00      2.07     0.00        1     0.00     0.09  stream_AccessNew
  0.00      2.07     0.00        1     0.00     0.01  stream_FilterChainNew
  0.00      2.07     0.00        1     0.00     0.02  subtitles_Detect
  0.00      2.07     0.00        1     0.00     0.00  sws_rgb2rgb_init
  0.00      2.07     0.00        1     0.00     0.00  tak_init_static_data
  0.00      2.07     0.00        1     0.00     0.00  var_Copy
  0.00      2.07     0.00        1     0.00     0.01  var_InheritURational
  0.00      2.07     0.00        1     0.00     0.00  var_Type
  0.00      2.07     0.00        1     0.00     0.00  video_format_FixRgb
  0.00      2.07     0.00        1     0.00     0.02  video_format_Print
  0.00      2.07     0.00        1     0.00     0.00  vlc_audio_replay_gain_MergeFromMeta
  0.00      2.07     0.00        1     0.00     0.00  vlc_av_frame_Release
  0.00      2.07     0.00        1     0.00     0.00  vlc_event_manager_init
  0.00      2.07     0.00        1     0.00     0.00  vlc_fourcc_GetCodecAudio
  0.00      2.07     0.00        1     0.00     0.00  vlc_fourcc_IsYUV
  0.00      2.07     0.00        1     0.00     0.00  vlc_meta_GetStatus
  0.00      2.07     0.00        1     0.00     0.00  vlc_meta_SetStatus
  0.00      2.07     0.00        1     0.00     0.00  vlc_object_create
  0.00      2.07     0.00        1     0.00     0.00  vlc_open
  0.00      2.07     0.00        1     0.00     0.00  vout_Close
  0.00      2.07     0.00        1     0.00     0.00  vout_CloseWrapper
  0.00      2.07     0.00        1     0.00     0.00  vout_DeleteDisplay
  0.00      2.07     0.00        1     0.00     0.00  vout_DisplayTitle
  0.00      2.07     0.00        1     0.00     0.02  vout_EndWrapper
  0.00      2.07     0.00        1     0.00     0.00  vout_FlushSubpictureChannel
  0.00      2.07     0.00        1     0.00     0.03  vout_InitInterlacingSupport
  0.00      2.07     0.00        1     0.00     0.00  vout_InitWrapper
  0.00      2.07     0.00        1     0.00     0.14  vout_IntfInit
  0.00      2.07     0.00        1     0.00     0.00  vout_IsDisplayFiltered
  0.00      2.07     0.00        1     0.00     0.00  vout_NewDisplay
  0.00      2.07     0.00        1     0.00     0.03  vout_OpenWrapper
  0.00      2.07     0.00        1     0.00     0.00  vout_Reset
  0.00      2.07     0.00        1     0.00     0.00  vout_control_Clean
  0.00      2.07     0.00        1     0.00     0.00  vout_control_Dead
  0.00      2.07     0.00        1     0.00     0.00  vout_control_Init
  0.00      2.07     0.00        1     0.00     0.00  vout_display_GetDefaultDisplaySize
  0.00      2.07     0.00        1     0.00     0.00  vout_snapshot_Clean
  0.00      2.07     0.00        1     0.00     0.00  vout_snapshot_End
  0.00      2.07     0.00        1     0.00     0.00  vout_snapshot_Init
  0.00      2.07     0.00        1     0.00     0.00  wmavoice_init_static_data

 %         the percentage of the total running time of the
time       program used by this function.

cumulative a running sum of the number of seconds accounted
 seconds   for by this function and those listed above it.

 self      the number of seconds accounted for by this
seconds    function alone.  This is the major sort for this
           listing.

calls      the number of times this function was invoked, if
           this function is profiled, else blank.
 
 self      the average number of milliseconds spent in this
ms/call    function per call, if this function is profiled,
	   else blank.

 total     the average number of milliseconds spent in this
ms/call    function and its descendents per call, if this 
	   function is profiled, else blank.

name       the name of the function.  This is the minor sort
           for this listing. The index shows the location of
	   the function in the gprof listing. If the index is
	   in parenthesis it shows where it would appear in
	   the gprof listing if it were to be printed.


		     Call graph (explanation follows)


granularity: each sample hit covers 2 byte(s) for 0.48% of 2.07 seconds

index % time    self  children    called     name
                                                 <spontaneous>
[1]     74.3    0.00    1.54                 joinable_thread [1]
                0.01    1.27       2/2           DecoderThread [2]
                0.00    0.14       1/1           Run [13]
                0.00    0.12       1/1           Thread [17]
-----------------------------------------------
                0.01    1.27       2/2           joinable_thread [1]
[2]     61.9    0.01    1.27       2         DecoderThread [2]
                0.04    1.11    5966/5966        DecoderDecodeAudio [3]
                0.01    0.10    6913/6913        DecoderDecodeVideo [18]
                0.01    0.01   12885/12885       block_FifoGet [68]
                0.00    0.00   12881/379055      vlc_mutex_lock [89]
                0.00    0.00   12875/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/4           input_DecoderStopWait [413]
                0.00    0.00   12879/12901       vlc_restorecancel [522]
                0.00    0.00   12875/12897       vlc_savecancel [523]
                0.00    0.00      26/21091       vlc_cond_signal [512]
                0.00    0.00       2/25142       block_generic_Release [510]
-----------------------------------------------
                0.04    1.11    5966/5966        DecoderThread [2]
[3]     55.3    0.04    1.11    5966         DecoderDecodeAudio [3]
                0.03    0.69   11929/11929       DecodeAudio [4]
                0.03    0.30    5967/5967        aout_DecPlay [10]
                0.02    0.01   11927/49617       DeleteDecoder <cycle 4> [72]
                0.01    0.00    5965/5965        aout_DecGetResetLost [94]
                0.00    0.01    5963/12853       DecoderFixTs [46]
                0.00    0.00   17893/379055      vlc_mutex_lock [89]
                0.00    0.00   17888/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/2           aout_DecFlush [306]
                0.00    0.00   17889/33963       stats_Update [501]
                0.00    0.00       1/21091       vlc_cond_signal [512]
-----------------------------------------------
                0.03    0.69   11929/11929       DecoderDecodeAudio [3]
[4]     34.8    0.03    0.69   11929         DecodeAudio [4]
                0.00    0.51    5966/5966        avcodec_decode_audio4 [5]
                0.07    0.00    5966/5966        aout_Interleave [21]
                0.05    0.00    5966/5966        aout_ChannelExtract [28]
                0.01    0.00    5965/5966        av_frame_alloc [70]
                0.00    0.01    5967/5968        av_frame_free [71]
                0.01    0.00    5966/5966        aout_update_format [80]
                0.01    0.00    5967/11934       av_sample_fmt_is_planar [55]
                0.01    0.00    5966/5966        av_init_packet [93]
                0.00    0.00   17895/17895       date_Get [514]
                0.00    0.00   11934/25142       block_generic_Release [510]
                0.00    0.00   11933/25165       block_Alloc [508]
                0.00    0.00    5966/5967        SetupOutputFormat [544]
                0.00    0.00    5965/71746       av_freep [497]
                0.00    0.00    5964/5964        block_Realloc [547]
                0.00    0.00    5964/5964        date_Increment [548]
                0.00    0.00       6/7           date_Set [657]
                0.00    0.00       1/1           avcodec_flush_buffers [956]
-----------------------------------------------
                0.00    0.51    5966/5966        DecodeAudio [4]
[5]     24.8    0.00    0.51    5966         avcodec_decode_audio4 [5]
                0.00    0.50    5965/5965        aac_decode_frame [7]
                0.00    0.01    5966/17899       av_frame_unref [31]
                0.00    0.00    5966/11931       av_packet_get_side_data [527]
-----------------------------------------------
                0.02    0.48    5966/5966        aac_decode_frame [7]
[6]     24.1    0.02    0.48    5966         aac_decode_frame_int [6]
                0.04    0.34    5965/5965        decode_cpe [8]
                0.01    0.05    5965/5965        ff_get_buffer [27]
                0.02    0.01    5967/5967        spectral_to_sample [41]
                0.00    0.01    5965/17899       av_frame_unref [31]
                0.00    0.00    5965/5965        get_che [546]
-----------------------------------------------
                0.00    0.50    5965/5965        avcodec_decode_audio4 [5]
[7]     24.1    0.00    0.50    5965         aac_decode_frame [7]
                0.02    0.48    5966/5966        aac_decode_frame_int [6]
                0.00    0.00    5965/11931       av_packet_get_side_data [527]
-----------------------------------------------
                0.04    0.34    5965/5965        aac_decode_frame_int [6]
[8]     18.6    0.04    0.34    5965         decode_cpe [8]
                0.34    0.01   17899/17899       decode_ics_info [9]
-----------------------------------------------
                0.34    0.01   17899/17899       decode_cpe [8]
[9]     16.7    0.34    0.01   17899         decode_ics_info [9]
                0.01    0.00     660/1320        apply_ltp [95]
-----------------------------------------------
                0.03    0.30    5967/5967        DecoderDecodeAudio [3]
[10]    16.0    0.03    0.30    5967         aout_DecPlay [10]
                0.00    0.26    5965/5965        aout_FiltersPlay [11]
                0.00    0.02    5965/5965        aout_OutputTimeGet [50]
                0.02    0.00    5967/5967        aout_volume_Amplify [56]
                0.00    0.00   11930/148270      mdate [90]
                0.00    0.00    5967/5977        aout_OutputUnlock [151]
                0.00    0.00    5967/5967        aout_OutputPlay [166]
                0.00    0.00      14/1081        vlc_Log [62]
                0.00    0.00    5966/5975        aout_OutputLock [176]
                0.00    0.00     348/348         aout_FiltersAdjustResampling [565]
-----------------------------------------------
                0.00    0.26    5965/5965        aout_DecPlay [10]
[11]    12.6    0.00    0.26    5965         aout_FiltersPlay [11]
                0.25    0.00    5964/5964        Fl32toS16 [12]
                0.01    0.00    5967/5967        DoWork [92]
-----------------------------------------------
                0.25    0.00    5964/5964        aout_FiltersPlay [11]
[12]    12.1    0.25    0.00    5964         Fl32toS16 [12]
-----------------------------------------------
                0.00    0.14       1/1           joinable_thread [1]
[13]     6.6    0.00    0.14       1         Run [13]
                0.00    0.14       1/1           MainLoop [14]
                0.00    0.00       1/1           Init [163]
                0.00    0.00       1/1           End [215]
                0.00    0.00       1/1           input_SendEventAbort [365]
                0.00    0.00       1/1           input_SendEventDead [366]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/12897       vlc_savecancel [523]
                0.00    0.00       1/12901       vlc_restorecancel [522]
-----------------------------------------------
                0.00    0.14       1/1           Run [13]
[14]     6.6    0.00    0.14       1         MainLoop [14]
                0.01    0.11    1282/1282        Demux(demux_t*) [16]
                0.00    0.01    4323/4331        es_out_Control [74]
                0.00    0.00    1305/26323       vlc_cond_timedwait [75]
                0.00    0.00      22/1081        vlc_Log [62]
                0.00    0.00    1340/148270      mdate [90]
                0.00    0.00     116/116         input_SendEventStatistics [191]
                0.00    0.00    1728/379055      vlc_mutex_lock [89]
                0.00    0.00    1726/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/224         var_Create [137]
                0.00    0.00       1/4           input_ChangeState [323]
                0.00    0.00       2/2355        var_GetChecked [184]
                0.00    0.00    2607/3101        vlc_object_alive [551]
                0.00    0.00    1275/1285        demux_Control [555]
                0.00    0.00     116/116         stats_ComputeInputStats [580]
-----------------------------------------------
[15]     6.4    0.09    0.04   49617+39824   <cycle 4 as a whole> [15]
                0.04    0.00    6895             vout_new_buffer <cycle 4> [30]
                0.00    0.02      63             generic_start <cycle 4> [48]
                0.02    0.00   18329             GetOutput <cycle 4> [53]
                0.01    0.00   18817             DeleteDecoder <cycle 4> [72]
                0.01    0.00   12459             Control <cycle 4> [77]
                0.00    0.01      17             vlc_module_load <cycle 4> [78]
                0.01    0.00    6894             decoder_NewPicture <cycle 4> [106]
                0.00    0.01       1             Open(vlc_object_t*) <cycle 4> [117]
                0.00    0.00   12460             EsOutControl <cycle 4> [131]
                0.00    0.00      14             module_unneed <cycle 4> [169]
                0.00    0.00       2             vout_Request <cycle 4> [170]
                0.00    0.00       9             es_out_Control <cycle 4> [177]
                0.00    0.00      11             generic_stop <cycle 4> [193]
                0.00    0.00       4             input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       2             EsOutAdd <cycle 4> [216]
                0.00    0.00       1             matroska_segment_c::Select(long long) <cycle 4> [217]
                0.00    0.00       2             SpuRenderCreateAndLoadText <cycle 4> [254]
                0.00    0.00       1             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [272]
                0.00    0.00       1             spu_Create <cycle 4> [276]
                0.00    0.00       2             spu_Attach <cycle 4> [282]
                0.00    0.00       2             EsSelect <cycle 4> [294]
                0.00    0.00       1             aout_FiltersDelete <cycle 4> [328]
                0.00    0.00       1             aout_DecDelete <cycle 4> [341]
                0.00    0.00       2             EsCreateDecoder <cycle 4> [342]
                0.00    0.00       2             EsUnselect <cycle 4> [353]
                0.00    0.00       1             aout_volume_Delete <cycle 4> [370]
                0.00    0.00       1             vout_Close <cycle 4> [381]
                0.00    0.00       2             input_DecoderDelete <cycle 4> [401]
                0.00    0.00       2             Add <cycle 4> [410]
                0.00    0.00       5             FilterRelease <cycle 4> [421]
                0.00    0.00       2             SpuRenderCreateAndLoadScale <cycle 4> [442]
                0.00    0.00       2             CreateDecoder <cycle 4> [441]
                0.00    0.00       2             aout_FiltersPipelineDestroy <cycle 4> [492]
                0.00    0.00       1             spu_Destroy <cycle 4> [493]
                0.00    0.00   12457             es_out_Control <cycle 4> [524]
                0.00    0.00     860             CmdExecuteControl <cycle 4> [558]
                0.00    0.00      63             module_load <cycle 4> [594]
                0.00    0.00      17             module_need <cycle 4> [628]
                0.00    0.00      14             vlc_module_unload <cycle 4> [639]
                0.00    0.00       6             EsOutSelect <cycle 4> [664]
                0.00    0.00       5             es_out_Control(es_out_t*, int, ...) <cycle 4> [16292]
                0.00    0.00       2             input_resource_TerminateVout <cycle 4> [822]
                0.00    0.00       2             input_DecoderNew <cycle 4> [818]
                0.00    0.00       2             decoder_New <cycle 4> [800]
                0.00    0.00       1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
                0.00    0.00       1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
                0.00    0.00       1             CloseDecoder <cycle 4> [888]
-----------------------------------------------
                0.01    0.11    1282/1282        MainLoop [14]
[16]     6.0    0.01    0.11    1282         Demux(demux_t*) [16]
                0.02    0.06    7701/7701        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.04    7701/7701        BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
                0.00    0.00     424/8125        es_out_Control(es_out_t*, int, ...) [44]
                0.00    0.00    1283/379055      vlc_mutex_lock [89]
                0.00    0.00    1283/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00   15395/15395       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [16183]
-----------------------------------------------
                0.00    0.12       1/1           joinable_thread [1]
[17]     5.8    0.00    0.12       1         Thread [17]
                0.02    0.04   19149/19149       ThreadDisplayPicture [24]
                0.00    0.03   12374/12374       vout_ManageWrapper [36]
                0.01    0.01   12396/12396       vout_control_Pop [47]
                0.00    0.00   12371/12371       vout_SetInterlacingState [136]
                0.00    0.00   12385/379055      vlc_mutex_lock [89]
                0.00    0.00   12372/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/1           ThreadStart [187]
                0.00    0.00       1/1           ThreadStop [237]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       4/5           ThreadFlush [299]
                0.00    0.00       2/2           ThreadChangeFilters [361]
                0.00    0.00       1/8           VoutVideoFilterStaticNewPicture [310]
                0.00    0.00       4/4           vout_SetWindowState [416]
                0.00    0.00       2/148270      mdate [90]
                0.00    0.00       2/2           spu_ChangeMargin [439]
                0.00    0.00       2/2           spu_ChangeFilters [438]
                0.00    0.00       2/2           spu_ChangeSources [440]
                0.00    0.00       1/1           spu_ClearChannel [477]
                0.00    0.00      25/25          vout_control_cmd_Clean [614]
                0.00    0.00       2/2           vout_SetDisplayCrop [872]
                0.00    0.00       2/2           vout_SetDisplayAspect [871]
                0.00    0.00       2/2           vout_SetDisplayZoom [873]
                0.00    0.00       1/1           picture_pool_NonEmpty [1009]
-----------------------------------------------
                0.01    0.10    6913/6913        DecoderThread [2]
[18]     5.4    0.01    0.10    6913         DecoderDecodeVideo [18]
                0.02    0.05   13806/13806       DecodeVideo [23]
                0.01    0.01    6888/49617       DeleteDecoder <cycle 4> [72]
                0.00    0.01    6890/12853       DecoderFixTs [46]
                0.00    0.00    6890/6890        vout_PutPicture [132]
                0.00    0.00   18646/379055      vlc_mutex_lock [89]
                0.00    0.00   18647/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       2/3           vout_Flush [393]
                0.00    0.00   14595/33963       stats_Update [501]
                0.00    0.00    6891/6891        vout_GetResetStatistic [532]
                0.00    0.00       1/21091       vlc_cond_signal [512]
-----------------------------------------------
                                                 <spontaneous>
[19]     4.8    0.10    0.00                 fft_pass_neon [19]
-----------------------------------------------
                0.02    0.06    7701/7701        Demux(demux_t*) [16]
[20]     3.6    0.02    0.06    7701         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.03    7854/8142        EbmlParser::Get(int) [35]
                0.00    0.02    7697/7974        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
                0.00    0.00    7749/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00      51/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [153]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00      51/120         EbmlParser::Up() [248]
                0.00    0.00    7852/7852        EbmlParser::GetLevel() const [16202]
                0.00    0.00    7750/7750        EbmlParser::IsTopPresent(libebml::EbmlElement*) const [16204]
                0.00    0.00    7695/15397       matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16182]
                0.00    0.00    7695/7695        libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16207]
                0.00    0.00    7694/7694        libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [16208]
                0.00    0.00      51/127         libebml::EbmlUInteger::operator unsigned long long() const [16223]
                0.00    0.00      51/121         EbmlParser::Down() [16225]
                0.00    0.00       1/1           matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16526]
-----------------------------------------------
                0.07    0.00    5966/5966        DecodeAudio [4]
[21]     3.4    0.07    0.00    5966         aout_Interleave [21]
-----------------------------------------------
                                                 <spontaneous>
[22]     3.4    0.07    0.00                 ff_imdct_half_neon [22]
-----------------------------------------------
                0.02    0.05   13806/13806       DecoderDecodeVideo [18]
[23]     3.3    0.02    0.05   13806         DecodeVideo [23]
                0.03    0.02   18328/49617       GetOutput <cycle 4> [53]
                0.00    0.00    6915/25142       block_generic_Release [510]
-----------------------------------------------
                0.02    0.04   19149/19149       Thread [17]
[24]     3.1    0.02    0.04   19149         ThreadDisplayPicture [24]
                0.00    0.02   11275/11275       ThreadDisplayPreparePicture [42]
                0.00    0.01    6789/6789        Display [115]
                0.01    0.00    6766/20463       picture_Release [51]
                0.00    0.00   46302/148270      mdate [90]
                0.00    0.00    6767/6768        mwait [121]
                0.00    0.00    6790/6790        spu_Render [133]
                0.00    0.00    6789/379055      vlc_mutex_lock [89]
                0.00    0.00    6790/438508      vlc_mutex_unlock [88]
                0.00    0.00    6789/6789        vout_snapshot_IsRequested [178]
                0.00    0.00    6790/6790        vout_display_PlacePicture [542]
                0.00    0.00    6790/13580       video_format_ApplyRotation [517]
                0.00    0.00    6790/6790        vout_UpdateDisplaySourceProperties [541]
                0.00    0.00    6789/20425       picture_Hold [513]
                0.00    0.00    6789/24807       filter_chain_VideoFilter [511]
-----------------------------------------------
                                                 <spontaneous>
[25]     2.9    0.06    0.00                 ff_vector_fmul_window_neon [25]
-----------------------------------------------
                                                 <spontaneous>
[26]     2.9    0.06    0.00                 __gnu_mcount_nc [26]
-----------------------------------------------
                0.01    0.05    5965/5965        aac_decode_frame_int [6]
[27]     2.7    0.01    0.05    5965         ff_get_buffer [27]
                0.01    0.04    5966/5966        avcodec_default_get_buffer2 [29]
                0.00    0.00    5966/11933       av_get_channel_layout_nb_channels [525]
-----------------------------------------------
                0.05    0.00    5966/5966        DecodeAudio [4]
[28]     2.4    0.05    0.00    5966         aout_ChannelExtract [28]
-----------------------------------------------
                0.01    0.04    5966/5966        ff_get_buffer [27]
[29]     2.2    0.01    0.04    5966         avcodec_default_get_buffer2 [29]
                0.01    0.02   11928/11928       av_buffer_pool_get [40]
                0.01    0.00    5966/11934       av_sample_fmt_is_planar [55]
                0.00    0.00       1/1           av_samples_get_buffer_size [332]
                0.00    0.00       1/1           av_buffer_pool_init [371]
                0.00    0.00    5966/11933       av_get_channel_layout_nb_channels [525]
                0.00    0.00       1/5           av_buffer_pool_uninit [690]
-----------------------------------------------
                                6895             decoder_NewPicture <cycle 4> [106]
[30]     2.0    0.04    0.00    6895         vout_new_buffer <cycle 4> [30]
                0.00    0.00    6892/6892        vout_GetPicture [160]
                0.00    0.00    6897/379055      vlc_mutex_lock [89]
                0.00    0.00    6895/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/2           input_SendEventVout [337]
                0.00    0.00       1/1           vlc_fourcc_IsYUV [1023]
                0.00    0.00       1/82          vlc_ureduce [590]
                0.00    0.00       1/2           DecoderUpdateFormatLocked [735]
                                   1             input_resource_RequestVout <cycle 4> [207]
-----------------------------------------------
                0.00    0.01    5965/17899       aac_decode_frame_int [6]
                0.00    0.01    5966/17899       avcodec_decode_audio4 [5]
                0.00    0.01    5968/17899       av_frame_free [71]
[31]     1.9    0.01    0.03   17899         av_frame_unref [31]
                0.02    0.01  143187/143187      av_buffer_unref [38]
                0.00    0.00   35798/71746       av_freep [497]
-----------------------------------------------
                                                 <spontaneous>
[32]     1.9    0.04    0.00                 ff_butterflies_float_neon [32]
-----------------------------------------------
                                                 <spontaneous>
[33]     1.9    0.04    0.00                 fft16_neon [33]
-----------------------------------------------
                0.00    0.04    7701/7701        Demux(demux_t*) [16]
[34]     1.8    0.00    0.04    7701         BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
                0.00    0.02    7701/8125        es_out_Control(es_out_t*, int, ...) [44]
                0.01    0.00   12904/12904       Send [69]
                0.00    0.00    7692/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00   38696/38696       libmatroska::DataBuffer::Size() [16177]
                0.00    0.00   25797/25797       libmatroska::DataBuffer::Buffer() [16179]
                0.00    0.00   12900/12900       MemToBlock(unsigned char*, unsigned int, unsigned int) [16185]
                0.00    0.00    7702/15397       matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16182]
-----------------------------------------------
                0.00    0.00       3/8142        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
                0.00    0.00       6/8142        matroska_segment_c::Preload() [118]
                0.00    0.00      14/8142        matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00     265/8142        matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
                0.00    0.03    7854/8142        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
[35]     1.7    0.00    0.04    8142         EbmlParser::Get(int) [35]
                0.00    0.03    8023/8345        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
                0.00    0.01    7895/8218        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [76]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00    8023/8345        libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16190]
                0.00    0.00    7937/7949        libebml::EbmlElement::IsDummy() const [16201]
                0.00    0.00    7802/7803        libmatroska::KaxCluster::Generic() const [16203]
                0.00    0.00    7701/7978        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16196]
                0.00    0.00    7695/8249        libmatroska::KaxSimpleBlock::Generic() const [16193]
                0.00    0.00     132/132         libmatroska::KaxCueTrackPositions::Generic() const [16222]
                0.00    0.00      66/66          libmatroska::KaxCuePoint::Generic() const [16238]
                0.00    0.00      51/53          libmatroska::KaxClusterTimecode::Generic() const [16239]
                0.00    0.00      51/52          libmatroska::KaxCluster::~KaxCluster() [16242]
                0.00    0.00      51/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16228]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Generic() const [16264]
                0.00    0.00      33/33          libmatroska::KaxCueClusterPosition::Generic() const [16263]
                0.00    0.00      33/33          libmatroska::KaxCueTrack::Generic() const [16262]
                0.00    0.00      33/33          libmatroska::KaxCueTime::Generic() const [16261]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16258]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16237]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::~KaxCueTrack() [16234]
                0.00    0.00      33/66          libmatroska::KaxCueTime::~KaxCueTime() [16231]
                0.00    0.00      32/33          libmatroska::KaxCuePoint::~KaxCuePoint() [16252]
                0.00    0.00      32/33          libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16255]
                0.00    0.00      10/10          libmatroska::KaxSegment::Generic() const [16272]
                0.00    0.00      10/10          libmatroska::KaxSeek::Generic() const [16273]
                0.00    0.00       4/4           libebml::EbmlVoid::Generic() const [16333]
                0.00    0.00       4/4           libebml::EbmlVoid::~EbmlVoid() [16313]
                0.00    0.00       3/3           libmatroska::KaxSeekHead::Generic() const [16346]
                0.00    0.00       3/3           libmatroska::KaxSeekPosition::Generic() const [16347]
                0.00    0.00       3/3           libmatroska::KaxSeekID::Generic() const [16348]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::~KaxSeekPosition() [16283]
                0.00    0.00       3/3           libmatroska::KaxSeek::~KaxSeek() [16343]
                0.00    0.00       3/6           libmatroska::KaxSeekID::~KaxSeekID() [16289]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::~KaxSeekHead() [16362]
                0.00    0.00       1/2           libmatroska::KaxTracks::Generic() const [16472]
                0.00    0.00       1/2           libmatroska::KaxInfo::Generic() const [16471]
                0.00    0.00       1/1           libmatroska::KaxCues::Generic() const [16562]
                0.00    0.00       1/2           libmatroska::KaxTracks::~KaxTracks() [16413]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16309]
-----------------------------------------------
                0.00    0.03   12374/12374       Thread [17]
[36]     1.6    0.00    0.03   12374         vout_ManageWrapper [36]
                0.03    0.00   12368/12368       vout_ManageDisplay [37]
                0.00    0.00   12375/12375       vout_AreDisplayPicturesInvalid [145]
-----------------------------------------------
                0.03    0.00   12368/12368       vout_ManageWrapper [36]
[37]     1.6    0.03    0.00   12368         vout_ManageDisplay [37]
                0.00    0.00   12370/148270      mdate [90]
                0.00    0.00   24743/379055      vlc_mutex_lock [89]
                0.00    0.00   24737/438508      vlc_mutex_unlock [88]
                0.00    0.00       3/1081        vlc_Log [62]
                0.00    0.00       4/4           vout_display_Control [256]
-----------------------------------------------
                0.02    0.01  143187/143187      av_frame_unref [31]
[38]     1.4    0.02    0.01  143187         av_buffer_unref [38]
                0.01    0.00   11931/11931       pool_release_buffer [91]
                0.00    0.00   23859/71746       av_freep [497]
-----------------------------------------------
                0.00    0.00     322/8345        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.03    8023/8345        EbmlParser::Get(int) [35]
[39]     1.3    0.00    0.03    8345         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
                0.01    0.01    8345/16581       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
                0.01    0.00   24682/32891       vlc_stream_io_callback::read(void*, unsigned int) [73]
                0.00    0.00    8345/16337       vlc_stream_io_callback::getFilePointer() [116]
                0.00    0.00    7979/7979        libmatroska::KaxInternalBlock::ValidateSize() const [124]
                0.00    0.00     210/210         libebml::EbmlUInteger::ValidateSize() const [196]
                0.00    0.00       6/6           libebml::EbmlBinary::ValidateSize() const [330]
                0.00    0.00       3/3           libmatroska::KaxSeekID::ValidateSize() const [354]
                0.00    0.00       3/3           libebml::EbmlFloat::ValidateSize() const [355]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::ValidateSize() const [379]
                0.00    0.00       2/2           libebml::EbmlDate::ValidateSize() const [380]
                0.00    0.00   24453/29867       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16178]
                0.00    0.00    8337/8337        libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00     132/137         libebml::EbmlMaster::ValidateSize() const [16221]
                0.00    0.00      12/7949        libebml::EbmlElement::IsDummy() const [16201]
                0.00    0.00       4/4           libebml::EbmlString::ValidateSize() const [16330]
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ValidateSize() const [16332]
-----------------------------------------------
                0.01    0.02   11928/11928       avcodec_default_get_buffer2 [29]
[40]     1.3    0.01    0.02   11928         av_buffer_pool_get [40]
                0.00    0.02   11926/11928       av_buffer_create [67]
                0.00    0.00       2/2           av_buffer_alloc [318]
                0.00    0.00       2/29865       av_mallocz [54]
-----------------------------------------------
                0.02    0.01    5967/5967        aac_decode_frame_int [6]
[41]     1.2    0.02    0.01    5967         spectral_to_sample [41]
                0.01    0.00     660/1320        apply_ltp [95]
                0.00    0.00   11933/11933       imdct_and_windowing [526]
-----------------------------------------------
                0.00    0.02   11275/11275       ThreadDisplayPicture [24]
[42]     1.1    0.00    0.02   11275         ThreadDisplayPreparePicture [42]
                0.00    0.01     835/1081        vlc_Log [62]
                0.01    0.00    6885/20463       picture_Release [51]
                0.00    0.00   11416/11416       picture_fifo_Pop [146]
                0.00    0.00    6880/148270      mdate [90]
                0.00    0.00   11276/379055      vlc_mutex_lock [89]
                0.00    0.00   11269/438508      vlc_mutex_unlock [88]
                0.00    0.00   18018/24807       filter_chain_VideoFilter [511]
                0.00    0.00    6745/20425       picture_Hold [513]
-----------------------------------------------
                0.00    0.00       1/16581       matroska_segment_c::Select(long long) <cycle 4> [217]
                0.00    0.00       1/16581       matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [272]
                0.00    0.00       1/16581       EbmlParser::Reset(demux_t*) [271]
                0.00    0.00       6/16581       matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       9/16581       libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.01    8218/16581       libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [76]
                0.01    0.01    8345/16581       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[43]     1.1    0.01    0.01   16581         vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
                0.00    0.01   33165/49510       stream_Control [64]
-----------------------------------------------
                0.00    0.00     424/8125        Demux(demux_t*) [16]
                0.00    0.02    7701/8125        BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
[44]     1.0    0.00    0.02    8125         es_out_Control(es_out_t*, int, ...) [44]
                0.01    0.01    8125/49617       Control <cycle 4> [77]
-----------------------------------------------
                0.02    0.00   12856/12856       DecoderFixTs [46]
[45]     1.0    0.02    0.00   12856         input_clock_ConvertTS [45]
                0.00    0.00   12855/148270      mdate [90]
                0.00    0.00   12857/379055      vlc_mutex_lock [89]
                0.00    0.00   12858/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.01    5963/12853       DecoderDecodeAudio [3]
                0.00    0.01    6890/12853       DecoderDecodeVideo [18]
[46]     1.0    0.00    0.02   12853         DecoderFixTs [46]
                0.02    0.00   12856/12856       input_clock_ConvertTS [45]
-----------------------------------------------
                0.01    0.01   12396/12396       Thread [17]
[47]     1.0    0.01    0.01   12396         vout_control_Pop [47]
                0.00    0.00   12273/26323       vlc_cond_timedwait [75]
                0.00    0.00   12376/25894       vlc_cond_broadcast [104]
                0.00    0.00   12382/148270      mdate [90]
                0.00    0.00   12397/379055      vlc_mutex_lock [89]
                0.00    0.00   12414/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                  63             module_load <cycle 4> [594]
[48]     1.0    0.00    0.02      63         generic_start <cycle 4> [48]
                0.00    0.02       1/1           OpenDecoder [52]
                0.00    0.00       2/2           Create [167]
                0.00    0.00       2/2           OpenDecoder [173]
                0.00    0.00       2/2           OpenScaler [199]
                0.00    0.00       1/1           Open [250]
                0.00    0.00       1/1           Open [251]
                0.00    0.00       1/1           FileOpen [249]
                0.00    0.00       1/1           Open [300]
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [490]
                0.00    0.00       1/1           OpenDecoder [482]
                0.00    0.00       2/2           Open [767]
                0.00    0.00       2/2           Open [766]
                0.00    0.00       1/1           OpenFilter [929]
                0.00    0.00       1/1           Activate [881]
                0.00    0.00       1/1           Activate [878]
                0.00    0.00       1/1           Activate [879]
                0.00    0.00       1/1           Activate [880]
                0.00    0.00       1/1           Activate [876]
                0.00    0.00       1/1           Activate [882]
                0.00    0.00       1/1           Activate [883]
                0.00    0.00       1/1           CreateResampler [893]
                0.00    0.00       1/1           Create [891]
                0.00    0.00       1/1           Create [892]
                0.00    0.00       1/1           OpenFilter [931]
                0.00    0.00       1/1           OpenFilter [930]
                0.00    0.00       1/1           Activate [877]
                0.00    0.00       1/1           Create [890]
                0.00    0.00       1/1           Probe [935]
                0.00    0.00       1/1           DecoderOpen [894]
                0.00    0.00       1/1           Open [908]
                0.00    0.00       1/1           OpenDecoder [923]
                0.00    0.00       1/1           OpenDecoder [924]
                0.00    0.00       1/1           OpenDecoder [925]
                0.00    0.00       1/1           DecoderOpen [895]
                0.00    0.00       1/1           OpenDecoder [918]
                0.00    0.00       1/1           OpenDecoder [926]
                0.00    0.00       1/1           OpenCommon [916]
                0.00    0.00       1/1           OpenDecoder [921]
                0.00    0.00       1/1           Create [889]
                0.00    0.00       1/1           OpenDecoder [920]
                0.00    0.00       1/1           DecoderOpen [896]
                0.00    0.00       1/1           OpenDecoder [928]
                0.00    0.00       1/1           Open [912]
                0.00    0.00       1/1           OpenDecoder [927]
                0.00    0.00       1/1           OpenDecoder [922]
                0.00    0.00       1/1           OpenDecoder [917]
                0.00    0.00       1/1           OpenDecoder [919]
                0.00    0.00       1/1           Open [914]
                0.00    0.00       1/1           Open [907]
                0.00    0.00       1/1           RarStreamOpen [937]
                0.00    0.00       1/1           StreamOpen [940]
                0.00    0.00       1/1           Open(vlc_object_t*) [16486]
                0.00    0.00       1/1           OpenXZ [933]
                0.00    0.00       1/1           Open [909]
                0.00    0.00       1/1           OpenBzip2 [915]
                0.00    0.00       1/1           OpenGzip [932]
                0.00    0.00       1/1           Open [911]
                0.00    0.00       1/1           Open [913]
                0.00    0.00       1/1           Open [910]
                                   1             Open(vlc_object_t*) <cycle 4> [117]
-----------------------------------------------
                0.00    0.00       1/5967        Flush [295]
                0.02    0.00    5966/5967        aout_OutputTimeGet [50]
[49]     1.0    0.02    0.00    5967         TimeGet [49]
                0.00    0.00    5968/379055      vlc_mutex_lock [89]
                0.00    0.00    5968/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.02    5965/5965        aout_DecPlay [10]
[50]     1.0    0.00    0.02    5965         aout_OutputTimeGet [50]
                0.02    0.00    5966/5967        TimeGet [49]
-----------------------------------------------
                0.00    0.00       1/20463       Close [252]
                0.00    0.00       2/20463       VoutVideoFilterStaticNewPicture [310]
                0.00    0.00       2/20463       ThreadFlush [299]
                0.00    0.00       4/20463       GetParameters [298]
                0.00    0.00      31/20463       picture_pool_Delete [214]
                0.01    0.00    6766/20463       ThreadDisplayPicture [24]
                0.01    0.00    6772/20463       Display [115]
                0.01    0.00    6885/20463       ThreadDisplayPreparePicture [42]
[51]     1.0    0.02    0.00   20463         picture_Release [51]
                0.00    0.00    6904/6904        Destroy [175]
                0.00    0.00      36/36          PictureDestroy [604]
-----------------------------------------------
                0.00    0.02       1/1           generic_start <cycle 4> [48]
[52]     1.0    0.00    0.02       1         OpenDecoder [52]
                0.00    0.01       1/1           InitAudioDec [83]
                0.00    0.01       1/1           avcodec_register_all [110]
                0.00    0.00       3/187         var_Inherit [130]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/224         var_Create [137]
                0.00    0.00       1/1           avcodec_alloc_context3 [372]
                0.00    0.00       1/2355        var_GetChecked [184]
                0.00    0.00       2/6           vlc_global_mutex [431]
                0.00    0.00       1/1           GetFfmpegCodec [902]
                0.00    0.00       1/1           av_log_set_level [951]
                0.00    0.00       1/13          av_get_cpu_flags [640]
                0.00    0.00       1/31          av_register_codec_parser [609]
                0.00    0.00       1/1           avcodec_find_decoder [955]
-----------------------------------------------
                                   1             CloseDecoder <cycle 4> [888]
                0.03    0.02   18328/49617       DecodeVideo [23]
[53]     1.0    0.02    0.00   18329         GetOutput <cycle 4> [53]
                0.00    0.00       3/1081        vlc_Log [62]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/13800       get_android_opaque_mutex [515]
                0.00    0.00       1/2           ArchitectureSpecificCopyHooksDestroy [732]
                0.00    0.00       1/1           jni_SetAndroidSurfaceSizeEnv [1001]
                0.00    0.00       1/1           ArchitectureSpecificCopyHooks [884]
                0.00    0.00       1/1           IgnoreOmxDecoderPadding [904]
                                6894             decoder_NewPicture <cycle 4> [106]
-----------------------------------------------
                0.00    0.00       1/29865       avcodec_get_context_defaults3 [373]
                0.00    0.00       1/29865       che_configure [374]
                0.00    0.00       1/29865       av_buffer_pool_init [371]
                0.00    0.00       2/29865       avcodec_open2 [86]
                0.00    0.00       2/29865       sws_alloc_context [338]
                0.00    0.00       2/29865       av_buffer_pool_get [40]
                0.00    0.00      16/29865       sws_getCachedContext [261]
                0.00    0.00      16/29865       sws_init_context [226]
                0.00    0.00    5965/29865       av_frame_alloc [70]
                0.02    0.00   23859/29865       av_buffer_create [67]
[54]     1.0    0.02    0.00   29865         av_mallocz [54]
                0.00    0.00   29865/30114       av_malloc [505]
-----------------------------------------------
                0.00    0.00       1/11934       av_samples_get_buffer_size [332]
                0.01    0.00    5966/11934       avcodec_default_get_buffer2 [29]
                0.01    0.00    5967/11934       DecodeAudio [4]
[55]     1.0    0.02    0.00   11934         av_sample_fmt_is_planar [55]
-----------------------------------------------
                0.02    0.00    5967/5967        aout_DecPlay [10]
[56]     1.0    0.02    0.00    5967         aout_volume_Amplify [56]
                0.00    0.00    5965/5965        FilterS16N [545]
-----------------------------------------------
                                                 <spontaneous>
[57]     1.0    0.02    0.00                 profCount [57]
-----------------------------------------------
                0.00    0.00       1/63918       libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [402]
                0.00    0.00       2/63918       libmatroska::KaxSegmentUID::ValidateSize() const [379]
                0.00    0.00       2/63918       libebml::EbmlDate::ValidateSize() const [380]
                0.00    0.00       3/63918       libebml::EbmlFloat::ValidateSize() const [355]
                0.00    0.00       3/63918       libmatroska::KaxSeekID::ValidateSize() const [354]
                0.00    0.00       4/63918       matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
                0.00    0.00       6/63918       libebml::EbmlBinary::ValidateSize() const [330]
                0.00    0.00       6/63918       libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [320]
                0.00    0.00       9/63918       libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [297]
                0.00    0.00      10/63918       matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00      24/63918       libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [265]
                0.00    0.00      24/63918       libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [266]
                0.00    0.00     132/63918       matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
                0.00    0.00     210/63918       libebml::EbmlUInteger::ValidateSize() const [196]
                0.00    0.00     946/63918       libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [153]
                0.00    0.00    7692/63918       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
                0.00    0.00    7749/63918       matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.00    7979/63918       libmatroska::KaxInternalBlock::ValidateSize() const [124]
                0.00    0.00   15165/63918       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
                0.01    0.00   23951/63918       libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [79]
[58]     1.0    0.02    0.00   63918         libebml::EbmlElement::GetSize() const [58]
-----------------------------------------------
                                                 <spontaneous>
[59]     1.0    0.02    0.00                 __aeabi_uidiv [59]
-----------------------------------------------
                                                 <spontaneous>
[60]     1.0    0.02    0.00                 __divdi3 [60]
-----------------------------------------------
                                                 <spontaneous>
[61]     1.0    0.02    0.00                 __gnu_ldivmod_helper [61]
-----------------------------------------------
                0.00    0.00       1/1081        Open [250]
                0.00    0.00       1/1081        CloseDecoder [236]
                0.00    0.00       1/1081        OpenDecoder [52]
                0.00    0.00       1/1081        ffmpeg_OpenCodec [84]
                0.00    0.00       1/1081        FileOpen [249]
                0.00    0.00       1/1081        matroska_segment_c::Select(long long) <cycle 4> [217]
                0.00    0.00       1/1081        demux_sys_t::InitUi() [200]
                0.00    0.00       1/1081        demux_sys_t::CleanUi() [228]
                0.00    0.00       1/1081        EbmlParser::Get(int) [35]
                0.00    0.00       1/1081        OpenScaler [199]
                0.00    0.00       1/1081        Open [251]
                0.00    0.00       1/1081        vout_Request <cycle 4> [170]
                0.00    0.00       1/1081        EsOutDel [241]
                0.00    0.00       1/1081        EsOutProgramSelect [220]
                0.00    0.00       1/1081        vout_InitInterlacingSupport [211]
                0.00    0.00       1/1081        Demux(demux_t*) [16]
                0.00    0.00       1/1081        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.00       1/1081        EbmlParser::Up() [248]
                0.00    0.00       1/1081        access_New [232]
                0.00    0.00       1/1081        DecoderDecodeAudio [3]
                0.00    0.00       1/1081        Create [155]
                0.00    0.00       1/1081        Init [163]
                0.00    0.00       1/1081        stream_AccessNew [188]
                0.00    0.00       1/1081        subtitles_Detect [243]
                0.00    0.00       1/1081        VoutDisplayEvent [245]
                0.00    0.00       1/1081        vout_OpenWrapper [213]
                0.00    0.00       1/1081        aout_FormatsPrint [246]
                0.00    0.00       1/1081        aout_FiltersPipelineCreate [205]
                0.00    0.00       1/1081        video_format_Print [247]
                0.00    0.00       1/1081        input_EsOutTimeshiftNew [219]
                0.00    0.00       1/1081        vout_SetInterlacingState [136]
                0.00    0.00       2/1081        DeinterlaceCallback <cycle 5> [202]
                0.00    0.00       2/1081        DeleteDecoder <cycle 4> [72]
                0.00    0.00       2/1081        input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       2/1081        DecoderDecodeVideo [18]
                0.00    0.00       2/1081        demux_New [203]
                0.00    0.00       2/1081        InputSourceInit [172]
                0.00    0.00       2/1081        input_resource_GetAout [192]
                0.00    0.00       2/1081        input_resource_PutAout [208]
                0.00    0.00       2/1081        aout_FormatPrint [209]
                0.00    0.00       3/1081        GetOutput <cycle 4> [53]
                0.00    0.00       3/1081        matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       3/1081        AStreamPrebufferStream [194]
                0.00    0.00       3/1081        vout_ManageDisplay [37]
                0.00    0.00       6/1081        matroska_segment_c::Preload() [118]
                0.00    0.00       6/1081        matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
                0.00    0.00       6/1081        Create [167]
                0.00    0.00       7/1081        matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00       8/1081        es_out_Control <cycle 4> [177]
                0.00    0.00      10/1081        OpenDecoder [173]
                0.00    0.00      14/1081        module_unneed <cycle 4> [169]
                0.00    0.00      14/1081        aout_DecPlay [10]
                0.00    0.00      22/1081        MainLoop [14]
                0.00    0.00      25/1081        matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
                0.00    0.00      33/1081        vlc_module_load <cycle 4> [78]
                0.00    0.00      34/1081        matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
                0.00    0.01     835/1081        ThreadDisplayPreparePicture [42]
[62]     0.9    0.00    0.02    1081         vlc_Log [62]
                0.01    0.01    1081/1081        vlc_vaLog [63]
-----------------------------------------------
                0.01    0.01    1081/1081        vlc_Log [62]
[63]     0.9    0.01    0.01    1081         vlc_vaLog [63]
                0.01    0.00    1083/1231        vlc_rwlock_rdlock [81]
                0.00    0.00    1081/1229        vlc_rwlock_unlock [197]
                0.00    0.00    1082/1082        libvlc_logf [557]
-----------------------------------------------
                0.00    0.00       1/49510       matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00       4/49510       InputSourceInit [172]
                0.00    0.01   16340/49510       vlc_stream_io_callback::getFilePointer() [116]
                0.00    0.01   33165/49510       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
[64]     0.9    0.00    0.02   49510         stream_Control [64]
                0.01    0.01   49511/49511       Control [65]
-----------------------------------------------
                0.01    0.01   49511/49511       stream_Control [64]
[65]     0.9    0.01    0.01   49511         Control [65]
                0.00    0.01   49511/49511       stream_vaControl [113]
-----------------------------------------------
                0.00    0.00     277/7974        libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
                0.00    0.02    7697/7974        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
[66]     0.9    0.00    0.02    7974         libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
                0.00    0.01    7976/7983        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [79]
                0.00    0.00   15165/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00    7975/16337       vlc_stream_io_callback::getFilePointer() [116]
                0.00    0.00   10320/10320       std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [16186]
                0.00    0.00    7978/8255        libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [16192]
                0.00    0.00    7977/7977        std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [16199]
                0.00    0.00    4613/4613        libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16209]
                0.00    0.00     786/29867       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16178]
-----------------------------------------------
                0.00    0.00       2/11928       av_buffer_alloc [318]
                0.00    0.02   11926/11928       av_buffer_pool_get [40]
[67]     0.8    0.00    0.02   11928         av_buffer_create [67]
                0.02    0.00   23859/29865       av_mallocz [54]
-----------------------------------------------
                0.01    0.01   12885/12885       DecoderThread [2]
[68]     0.8    0.01    0.01   12885         block_FifoGet [68]
                0.00    0.00   12882/25894       vlc_cond_broadcast [104]
                0.00    0.00   12885/379055      vlc_mutex_lock [89]
                0.00    0.00   12884/438508      vlc_mutex_unlock [88]
                0.00    0.00      46/79          vlc_cond_wait [301]
                0.00    0.00   12886/65688       vlc_testcancel [498]
-----------------------------------------------
                0.01    0.00   12904/12904       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
[69]     0.7    0.01    0.00   12904         Send [69]
                0.00    0.00   12909/12909       CmdExecuteSend [122]
                0.00    0.00   12899/148270      mdate [90]
                0.00    0.00   12906/379055      vlc_mutex_lock [89]
                0.00    0.00   12891/438508      vlc_mutex_unlock [88]
                0.00    0.00   12898/25357       TsStop [507]
-----------------------------------------------
                0.00    0.00       1/5966        avcodec_open2 [86]
                0.01    0.00    5965/5966        DecodeAudio [4]
[70]     0.7    0.01    0.00    5966         av_frame_alloc [70]
                0.00    0.00    5965/29865       av_mallocz [54]
                0.00    0.00    5967/71746       av_freep [497]
-----------------------------------------------
                0.00    0.00       1/5968        avcodec_close [324]
                0.00    0.01    5967/5968        DecodeAudio [4]
[71]     0.6    0.00    0.01    5968         av_frame_free [71]
                0.00    0.01    5968/17899       av_frame_unref [31]
-----------------------------------------------
                                   2             es_out_Control <cycle 4> [177]
                0.01    0.01    6888/49617       DecoderDecodeVideo [18]
                0.02    0.01   11927/49617       DecoderDecodeAudio [3]
[72]     0.6    0.01    0.00   18817         DeleteDecoder <cycle 4> [72]
                0.00    0.00    5976/26323       vlc_cond_timedwait [75]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       1/2           input_resource_PutAout [208]
                0.00    0.00       1/2           aout_DecFlush [306]
                0.00    0.00       2/6           block_FifoEmpty [321]
                0.00    0.00       2/2           block_FifoRelease [358]
                0.00    0.00       1/2           input_SendEventAout [336]
                0.00    0.00       1/2           input_SendEventVout [337]
                0.00    0.00       1/1           vout_Reset [432]
                0.00    0.00       2/79          vlc_cond_wait [301]
                0.00    0.00       2/46          vlc_object_release [349]
                0.00    0.00       6/32          es_format_Clean [608]
                0.00    0.00       4/6803        vlc_cond_destroy [539]
                0.00    0.00       2/29          block_FifoCount [611]
                0.00    0.00       2/6820        vlc_mutex_destroy [537]
                                   1             aout_DecDelete <cycle 4> [341]
                                   1             input_resource_RequestVout <cycle 4> [207]
-----------------------------------------------
                0.00    0.00      36/32891       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00     190/32891       libebml::IOCallback::readFully(void*, unsigned int) [195]
                0.00    0.00    7983/32891       libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [79]
                0.01    0.00   24682/32891       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[73]     0.6    0.01    0.00   32891         vlc_stream_io_callback::read(void*, unsigned int) [73]
                0.00    0.00   32890/32890       stream_Read <cycle 1> [126]
-----------------------------------------------
                0.00    0.00       1/4331        ControlPause [286]
                0.00    0.00       2/4331        End [215]
                0.00    0.00       2/4331        Init [163]
                0.00    0.00       3/4331        UpdatePtsDelay [268]
                0.00    0.01    4323/4331        MainLoop [14]
[74]     0.6    0.00    0.01    4331         es_out_Control [74]
                0.01    0.00    4329/49617       Control <cycle 4> [77]
                0.00    0.00       3/49617       EsOutControl <cycle 4> [131]
-----------------------------------------------
                0.00    0.00    1305/26323       MainLoop [14]
                0.00    0.00    5976/26323       DeleteDecoder <cycle 4> [72]
                0.00    0.00    6769/26323       mwait [121]
                0.00    0.00   12273/26323       vout_control_Pop [47]
[75]     0.5    0.01    0.00   26323         vlc_cond_timedwait [75]
                0.00    0.00   52636/438508      vlc_mutex_unlock [88]
                0.00    0.00   52650/65688       vlc_testcancel [498]
                0.00    0.00   52642/59584       vlc_mutex_trylock [499]
-----------------------------------------------
                0.00    0.00       1/8218        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
                0.00    0.00     322/8218        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.01    7895/8218        EbmlParser::Get(int) [35]
[76]     0.5    0.00    0.01    8218         libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [76]
                0.00    0.01    8218/16581       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
                0.00    0.00    8217/8898        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16187]
-----------------------------------------------
                                   5             es_out_Control(es_out_t*, int, ...) <cycle 4> [16292]
                0.01    0.00    4329/49617       es_out_Control [74]
                0.01    0.01    8125/49617       es_out_Control(es_out_t*, int, ...) [44]
[77]     0.5    0.01    0.00   12459         Control <cycle 4> [77]
                0.00    0.00   12459/379055      vlc_mutex_lock [89]
                0.00    0.00   12441/438508      vlc_mutex_unlock [88]
                0.00    0.00     860/148270      mdate [90]
                0.00    0.00   12455/25357       TsStop [507]
                               12030             es_out_Control <cycle 4> [524]
                                 860             CmdExecuteControl <cycle 4> [558]
-----------------------------------------------
                                  17             module_need <cycle 4> [628]
[78]     0.5    0.00    0.01      17         vlc_module_load <cycle 4> [78]
                0.00    0.01      17/17          module_list_cap [108]
                0.00    0.00      33/1081        vlc_Log [62]
                0.00    0.00       7/187         var_Inherit [130]
                0.00    0.00      14/14          vlc_object_set_name [363]
                0.00    0.00      27/41          module_get_object [600]
                0.00    0.00      19/19          module_get_score [626]
                0.00    0.00      16/23          module_list_free [617]
                                  63             module_load <cycle 4> [594]
-----------------------------------------------
                0.00    0.00       3/7983        matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00       4/7983        libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
                0.00    0.01    7976/7983        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
[79]     0.5    0.00    0.01    7983         libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [79]
                0.01    0.00   23951/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00    7983/32891       vlc_stream_io_callback::read(void*, unsigned int) [73]
-----------------------------------------------
                0.01    0.00    5966/5966        DecodeAudio [4]
[80]     0.5    0.01    0.00    5966         aout_update_format [80]
                0.00    0.00       1/1           aout_DecNew [185]
                0.00    0.00       1/2           input_resource_GetAout [192]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       1/2           input_SendEventAout [336]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/2           DecoderUpdateFormatLocked [735]
                0.00    0.00       1/7           aout_FormatPrepare [656]
-----------------------------------------------
                0.00    0.00      15/1231        config_GetFloat [183]
                0.00    0.00      45/1231        config_GetPsz [152]
                0.00    0.00      88/1231        config_GetInt [138]
                0.01    0.00    1083/1231        vlc_vaLog [63]
[81]     0.5    0.01    0.00    1231         vlc_rwlock_rdlock [81]
                0.00    0.00    1231/379055      vlc_mutex_lock [89]
                0.00    0.00    1231/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00     115/480         AStreamReadNoSeekStream [127]
                0.00    0.01     365/480         AStreamSeekStream [114]
[82]     0.5    0.00    0.01     480         AStreamRefillStream [82]
                0.00    0.01     492/493         AReadStream [85]
                0.00    0.00     628/148270      mdate [90]
                0.00    0.00     492/3101        vlc_object_alive [551]
-----------------------------------------------
                0.00    0.01       1/1           OpenDecoder [52]
[83]     0.5    0.00    0.01       1         InitAudioDec [83]
                0.00    0.01       1/1           ffmpeg_OpenCodec [84]
                0.00    0.00       1/1           vlc_av_frame_Release [1020]
                0.00    0.00       1/5967        SetupOutputFormat [544]
                0.00    0.00       1/7           date_Set [657]
                0.00    0.00       1/1           date_Init [959]
-----------------------------------------------
                0.00    0.01       1/1           InitAudioDec [83]
[84]     0.5    0.00    0.01       1         ffmpeg_OpenCodec [84]
                0.00    0.01       1/1           avcodec_open2 [86]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       2/6           vlc_global_mutex [431]
                0.00    0.00       1/2           av_dict_get [786]
                0.00    0.00       1/71746       av_freep [497]
                0.00    0.00       1/2           av_dict_free [785]
-----------------------------------------------
                0.00    0.00       1/493         AStreamPrebufferStream [194]
                0.00    0.01     492/493         AStreamRefillStream [82]
[85]     0.5    0.00    0.01     493         AReadStream [85]
                0.01    0.00     493/493         FileRead [111]
                0.00    0.00     493/379055      vlc_mutex_lock [89]
                0.00    0.00     493/438508      vlc_mutex_unlock [88]
                0.00    0.00    1479/33963       stats_Update [501]
-----------------------------------------------
                0.00    0.01       1/1           ffmpeg_OpenCodec [84]
[86]     0.5    0.00    0.01       1         avcodec_open2 [86]
                0.00    0.01       1/1           aac_decode_init [87]
                0.00    0.00       1/5966        av_frame_alloc [70]
                0.00    0.00       2/29865       av_mallocz [54]
                0.00    0.00       2/176         av_codec_is_decoder [569]
                0.00    0.00       1/2           avcodec_is_open [790]
                0.00    0.00       1/1           av_opt_set_dict [954]
                0.00    0.00       1/71746       av_freep [497]
                0.00    0.00       1/1           ff_thread_init [984]
                0.00    0.00       1/2           av_codec_is_encoder [783]
                0.00    0.00       1/11933       av_get_channel_layout_nb_channels [525]
-----------------------------------------------
                0.00    0.01       1/1           avcodec_open2 [86]
[87]     0.5    0.00    0.01       1         aac_decode_init [87]
                0.01    0.00       2/2           ff_kbd_window_init [109]
                0.00    0.00       1/1           decode_audio_specific_config [375]
                0.00    0.00      12/178         ff_init_vlc_sparse [568]
                0.00    0.00       4/6           ff_mdct_init [674]
                0.00    0.00       3/3           ff_sine_window_init [726]
                0.00    0.00       3/3           ff_init_ff_sine_windows [725]
                0.00    0.00       1/4           make_filters_from_proto [709]
                0.00    0.00       1/1           ff_ps_init [978]
                0.00    0.00       1/1           ff_aac_sbr_init [963]
                0.00    0.00       1/1           ff_fmt_convert_init_arm [972]
                0.00    0.00       1/1           ff_fmt_convert_init [971]
                0.00    0.00       1/1           ff_float_dsp_init_neon [969]
                0.00    0.00       1/1           ff_float_dsp_init_arm [968]
                0.00    0.00       1/1           avpriv_float_dsp_init [957]
                0.00    0.00       1/1           ff_aac_tableinit [964]
-----------------------------------------------
                0.00    0.00       1/438508      input_vaControl <cycle 5> [350]
                0.00    0.00       1/438508      InitOmxCore [487]
                0.00    0.00       1/438508      ReadMeta(vlc_object_t*) [490]
                0.00    0.00       1/438508      input_item_preparsed_changed [384]
                0.00    0.00       1/438508      input_item_SetPreparsed [412]
                0.00    0.00       1/438508      input_item_SetDuration [411]
                0.00    0.00       1/438508      input_DecoderChangeDelay [488]
                0.00    0.00       1/438508      vout_Close <cycle 4> [381]
                0.00    0.00       1/438508      FilterRelease <cycle 4> [421]
                0.00    0.00       1/438508      input_clock_ChangeSystemOrigin [489]
                0.00    0.00       1/438508      vout_snapshot_End [391]
                0.00    0.00       1/438508      libvlc_media_player_get_media [476]
                0.00    0.00       1/438508      libvlc_media_player_stop [262]
                0.00    0.00       1/438508      input_item_SetURI [473]
                0.00    0.00       1/438508      aout_update_format [80]
                0.00    0.00       1/438508      InitTitle [274]
                0.00    0.00       1/438508      End [215]
                0.00    0.00       1/438508      input_ControlPush [472]
                0.00    0.00       1/438508      input_Stop [392]
                0.00    0.00       1/438508      InputSourceInit [172]
                0.00    0.00       1/438508      Init [163]
                0.00    0.00       1/438508      Run [13]
                0.00    0.00       1/438508      input_resource_HoldAout [474]
                0.00    0.00       1/438508      input_resource_ResetAout [290]
                0.00    0.00       1/438508      input_resource_RequestSout [475]
                0.00    0.00       1/438508      input_resource_Terminate [273]
                0.00    0.00       1/438508      stats_ReinitInputStats [479]
                0.00    0.00       1/438508      VoutDisplayEvent [245]
                0.00    0.00       1/438508      spu_ClearChannel [477]
                0.00    0.00       1/438508      var_Type [480]
                0.00    0.00       1/438508      vout_control_Dead [390]
                0.00    0.00       2/438508      input_resource_HoldVouts [452]
                0.00    0.00       2/438508      GetOutput <cycle 4> [53]
                0.00    0.00       2/438508      Flush [295]
                0.00    0.00       2/438508      input_item_SetEpgOffline [407]
                0.00    0.00       2/438508      input_DecoderDelete <cycle 4> [401]
                0.00    0.00       2/438508      input_DecoderStartWait [343]
                0.00    0.00       2/438508      input_DecoderWait [264]
                0.00    0.00       2/438508      spu_Attach <cycle 4> [282]
                0.00    0.00       2/438508      vlc_cancel [453]
                0.00    0.00       2/438508      input_clock_SetJitter [451]
                0.00    0.00       2/438508      EsOutDel [241]
                0.00    0.00       2/438508      Del [238]
                0.00    0.00       2/438508      Add <cycle 4> [410]
                0.00    0.00       2/438508      libvlc_media_player_set_media [329]
                0.00    0.00       2/438508      libvlc_media_player_play [154]
                0.00    0.00       2/438508      input_item_GetName [436]
                0.00    0.00       2/438508      Create [155]
                0.00    0.00       2/438508      input_resource_PutAout [208]
                0.00    0.00       2/438508      input_resource_SetInput [437]
                0.00    0.00       2/438508      ThreadChangeFilters [361]
                0.00    0.00       2/438508      spu_ChangeSources [440]
                0.00    0.00       2/438508      spu_ChangeFilters [438]
                0.00    0.00       2/438508      spu_ChangeMargin [439]
                0.00    0.00       2/438508      vlc_cleanup_lock [491]
                0.00    0.00       2/438508      ObjectKillChildrens [398]
                0.00    0.00       3/438508      input_item_SetMeta [376]
                0.00    0.00       3/438508      vlc_global_mutex [431]
                0.00    0.00       3/438508      EsOutAdd <cycle 4> [216]
                0.00    0.00       3/438508      libvlc_retain [428]
                0.00    0.00       3/438508      input_item_SetErrorWhenReading [425]
                0.00    0.00       3/438508      input_item_AddOption [424]
                0.00    0.00       3/438508      input_resource_GetAout [192]
                0.00    0.00       3/438508      vlc_list_children [422]
                0.00    0.00       4/438508      input_item_ReplaceInfos [356]
                0.00    0.00       4/438508      set_state [382]
                0.00    0.00       4/438508      input_item_GetMeta [419]
                0.00    0.00       4/438508      input_item_UpdateTracksInfo [414]
                0.00    0.00       4/438508      input_DecoderStopWait [413]
                0.00    0.00       4/438508      vout_SetWindowState [416]
                0.00    0.00       4/438508      vlc_cleanup_lock [466]
                0.00    0.00       4/438508      vlc_sem_post [415]
                0.00    0.00       5/438508      vout_IsEmpty [386]
                0.00    0.00       5/438508      picture_fifo_Peek [408]
                0.00    0.00       5/438508      vout_control_WaitEmpty [387]
                0.00    0.00       5/438508      vlc_event_attach [409]
                0.00    0.00       6/438508      block_FifoEmpty [321]
                0.00    0.00       6/438508      input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       6/438508      picture_fifo_Flush [403]
                0.00    0.00       7/438508      VoutVideoFilterStaticNewPicture [310]
                0.00    0.00       8/438508      event_attach [394]
                0.00    0.00       8/438508      vlc_event_manager_register_event_type [396]
                0.00    0.00      10/438508      input_DecoderIsEmpty [304]
                0.00    0.00      13/438508      var_Destroy [275]
                0.00    0.00      14/438508      vlc_object_set_name [363]
                0.00    0.00      17/438508      libvlc_get_input_thread [359]
                0.00    0.00      19/438508      block_FifoWake [267]
                0.00    0.00      21/438508      vlc_object_release [349]
                0.00    0.00      22/438508      vlc_custom_create [347]
                0.00    0.00      24/438508      var_TriggerCallback <cycle 5> [344]
                0.00    0.00      26/438508      vout_control_Push [340]
                0.00    0.00      27/438508      libvlc_event_manager_register_event_type [339]
                0.00    0.00      34/438508      vlc_event_send [305]
                0.00    0.00      34/438508      var_DelCallback [223]
                0.00    0.00      50/438508      var_AddCallback [206]
                0.00    0.00     152/438508      vlc_cond_wait [301]
                0.00    0.00     224/438508      var_Create [137]
                0.00    0.00     408/438508      libvlc_media_player_get_state [233]
                0.00    0.00     425/438508      input_clock_Update [231]
                0.00    0.00     432/438508      input_clock_GetState [227]
                0.00    0.00     493/438508      AReadStream [85]
                0.00    0.00     609/438508      TriggerCallback <cycle 5> [168]
                0.00    0.00     628/438508      var_SetChecked <cycle 5> [212]
                0.00    0.00    1001/438508      var_Change [198]
                0.00    0.00    1229/438508      vlc_rwlock_unlock [197]
                0.00    0.00    1231/438508      vlc_rwlock_rdlock [81]
                0.00    0.00    1283/438508      Demux(demux_t*) [16]
                0.00    0.00    1726/438508      MainLoop [14]
                0.00    0.00    1759/438508      libvlc_event_send [189]
                0.00    0.00    2356/438508      var_GetChecked [184]
                0.00    0.00    2552/438508      input_clock_GetWakeup [182]
                0.00    0.00    5966/438508      Play [165]
                0.00    0.00    5968/438508      TimeGet [49]
                0.00    0.00    6767/438508      vlc_cleanup_lock [179]
                0.00    0.00    6790/438508      ThreadDisplayPicture [24]
                0.00    0.00    6790/438508      vout_snapshot_IsRequested [178]
                0.00    0.00    6886/438508      vout_GetPicture [160]
                0.00    0.00    6890/438508      vout_PutPicture [132]
                0.00    0.00    6891/438508      DisplayBuffer [157]
                0.00    0.00    6891/438508      picture_fifo_Push [159]
                0.00    0.00    6892/438508      vout_control_Wake [158]
                0.00    0.00    6895/438508      vout_new_buffer <cycle 4> [30]
                0.00    0.00   11269/438508      ThreadDisplayPreparePicture [42]
                0.00    0.00   11413/438508      picture_fifo_Pop [146]
                0.00    0.00   11951/438508      aout_OutputUnlock [151]
                0.00    0.00   12370/438508      vout_AreDisplayPicturesInvalid [145]
                0.00    0.00   12372/438508      Thread [17]
                0.00    0.00   12414/438508      vout_control_Pop [47]
                0.00    0.00   12441/438508      Control <cycle 4> [77]
                0.00    0.00   12451/438508      EsOutControl <cycle 4> [131]
                0.00    0.00   12858/438508      input_clock_ConvertTS [45]
                0.00    0.00   12875/438508      DecoderThread [2]
                0.00    0.00   12884/438508      block_FifoGet [68]
                0.00    0.00   12891/438508      Send [69]
                0.00    0.00   12892/438508      EsOutSend [123]
                0.00    0.00   12894/438508      input_DecoderIsCcPresent [144]
                0.00    0.00   12898/438508      input_DecoderHasFormatChanged [143]
                0.00    0.00   12908/438508      block_FifoPut [141]
                0.00    0.00   13809/438508      PlayedCallback [140]
                0.00    0.00   17888/438508      DecoderDecodeAudio [3]
                0.00    0.00   18647/438508      DecoderDecodeVideo [18]
                0.00    0.00   20367/438508      spu_Render [133]
                0.00    0.00   24737/438508      vout_ManageDisplay [37]
                0.00    0.00   52636/438508      vlc_cond_timedwait [75]
[88]     0.5    0.01    0.00  438508         vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/379055      input_vaControl <cycle 5> [350]
                0.00    0.00       1/379055      InitOmxCore [487]
                0.00    0.00       1/379055      ReadMeta(vlc_object_t*) [490]
                0.00    0.00       1/379055      input_item_preparsed_changed [384]
                0.00    0.00       1/379055      input_item_SetPreparsed [412]
                0.00    0.00       1/379055      input_item_SetDuration [411]
                0.00    0.00       1/379055      input_DecoderChangeDelay [488]
                0.00    0.00       1/379055      vout_Close <cycle 4> [381]
                0.00    0.00       1/379055      FilterRelease <cycle 4> [421]
                0.00    0.00       1/379055      input_clock_ChangeSystemOrigin [489]
                0.00    0.00       1/379055      vout_snapshot_End [391]
                0.00    0.00       1/379055      libvlc_media_player_get_media [476]
                0.00    0.00       1/379055      libvlc_media_player_stop [262]
                0.00    0.00       1/379055      input_item_SetURI [473]
                0.00    0.00       1/379055      aout_update_format [80]
                0.00    0.00       1/379055      InitTitle [274]
                0.00    0.00       1/379055      End [215]
                0.00    0.00       1/379055      input_ControlPush [472]
                0.00    0.00       1/379055      input_Stop [392]
                0.00    0.00       1/379055      InputSourceInit [172]
                0.00    0.00       1/379055      Init [163]
                0.00    0.00       1/379055      Run [13]
                0.00    0.00       1/379055      input_resource_HoldAout [474]
                0.00    0.00       1/379055      input_resource_ResetAout [290]
                0.00    0.00       1/379055      input_resource_RequestSout [475]
                0.00    0.00       1/379055      input_resource_Terminate [273]
                0.00    0.00       1/379055      stats_ReinitInputStats [479]
                0.00    0.00       1/379055      VoutDisplayEvent [245]
                0.00    0.00       1/379055      spu_ClearChannel [477]
                0.00    0.00       1/379055      aout_Destroy [291]
                0.00    0.00       1/379055      var_Type [480]
                0.00    0.00       1/379055      vout_control_Dead [390]
                0.00    0.00       2/379055      input_resource_HoldVouts [452]
                0.00    0.00       2/379055      GetOutput <cycle 4> [53]
                0.00    0.00       2/379055      Flush [295]
                0.00    0.00       2/379055      input_item_SetEpgOffline [407]
                0.00    0.00       2/379055      input_DecoderDelete <cycle 4> [401]
                0.00    0.00       2/379055      input_DecoderStartWait [343]
                0.00    0.00       2/379055      input_DecoderWait [264]
                0.00    0.00       2/379055      spu_Attach <cycle 4> [282]
                0.00    0.00       2/379055      vlc_cancel [453]
                0.00    0.00       2/379055      input_clock_SetJitter [451]
                0.00    0.00       2/379055      EsOutDel [241]
                0.00    0.00       2/379055      Del [238]
                0.00    0.00       2/379055      Add <cycle 4> [410]
                0.00    0.00       2/379055      libvlc_media_player_set_media [329]
                0.00    0.00       2/379055      libvlc_media_player_play [154]
                0.00    0.00       2/379055      input_item_GetName [436]
                0.00    0.00       2/379055      Create [155]
                0.00    0.00       2/379055      input_resource_PutAout [208]
                0.00    0.00       2/379055      input_resource_SetInput [437]
                0.00    0.00       2/379055      ThreadChangeFilters [361]
                0.00    0.00       2/379055      spu_ChangeSources [440]
                0.00    0.00       2/379055      spu_ChangeFilters [438]
                0.00    0.00       2/379055      spu_ChangeMargin [439]
                0.00    0.00       2/379055      ObjectKillChildrens [398]
                0.00    0.00       3/379055      input_item_SetMeta [376]
                0.00    0.00       3/379055      vlc_global_mutex [431]
                0.00    0.00       3/379055      EsOutAdd <cycle 4> [216]
                0.00    0.00       3/379055      libvlc_retain [428]
                0.00    0.00       3/379055      input_item_SetErrorWhenReading [425]
                0.00    0.00       3/379055      input_item_AddOption [424]
                0.00    0.00       3/379055      input_resource_GetAout [192]
                0.00    0.00       4/379055      input_item_ReplaceInfos [356]
                0.00    0.00       4/379055      set_state [382]
                0.00    0.00       4/379055      input_item_GetMeta [419]
                0.00    0.00       4/379055      input_item_UpdateTracksInfo [414]
                0.00    0.00       4/379055      input_DecoderStopWait [413]
                0.00    0.00       4/379055      vout_SetWindowState [416]
                0.00    0.00       4/379055      vlc_sem_post [415]
                0.00    0.00       4/379055      vlc_sem_wait [406]
                0.00    0.00       4/379055      vlc_list_children [422]
                0.00    0.00       5/379055      vout_control_WaitEmpty [387]
                0.00    0.00       5/379055      vout_IsEmpty [386]
                0.00    0.00       5/379055      picture_fifo_Peek [408]
                0.00    0.00       5/379055      vlc_event_attach [409]
                0.00    0.00       6/379055      input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       6/379055      block_FifoEmpty [321]
                0.00    0.00       6/379055      picture_fifo_Flush [403]
                0.00    0.00       7/379055      VoutVideoFilterStaticNewPicture [310]
                0.00    0.00       8/379055      event_attach [394]
                0.00    0.00       8/379055      vlc_event_manager_register_event_type [396]
                0.00    0.00      10/379055      input_DecoderIsEmpty [304]
                0.00    0.00      13/379055      var_Destroy [275]
                0.00    0.00      14/379055      vlc_object_set_name [363]
                0.00    0.00      17/379055      libvlc_get_input_thread [359]
                0.00    0.00      19/379055      block_FifoWake [267]
                0.00    0.00      21/379055      vlc_object_release [349]
                0.00    0.00      22/379055      vlc_custom_create [347]
                0.00    0.00      23/379055      var_TriggerCallback <cycle 5> [344]
                0.00    0.00      26/379055      vout_control_Push [340]
                0.00    0.00      27/379055      libvlc_event_manager_register_event_type [339]
                0.00    0.00      34/379055      vlc_event_send [305]
                0.00    0.00      34/379055      var_DelCallback [223]
                0.00    0.00      50/379055      var_AddCallback [206]
                0.00    0.00     224/379055      var_Create [137]
                0.00    0.00     411/379055      libvlc_media_player_get_state [233]
                0.00    0.00     425/379055      input_clock_Update [231]
                0.00    0.00     432/379055      input_clock_GetState [227]
                0.00    0.00     493/379055      AReadStream [85]
                0.00    0.00     608/379055      TriggerCallback <cycle 5> [168]
                0.00    0.00     628/379055      var_SetChecked <cycle 5> [212]
                0.00    0.00    1002/379055      var_Change [198]
                0.00    0.00    1229/379055      vlc_rwlock_unlock [197]
                0.00    0.00    1231/379055      vlc_rwlock_rdlock [81]
                0.00    0.00    1283/379055      Demux(demux_t*) [16]
                0.00    0.00    1728/379055      MainLoop [14]
                0.00    0.00    1760/379055      libvlc_event_send [189]
                0.00    0.00    2355/379055      var_GetChecked [184]
                0.00    0.00    2553/379055      input_clock_GetWakeup [182]
                0.00    0.00    5967/379055      Play [165]
                0.00    0.00    5968/379055      TimeGet [49]
                0.00    0.00    5975/379055      aout_OutputLock [176]
                0.00    0.00    5977/379055      aout_OutputUnlock [151]
                0.00    0.00    6768/379055      mwait [121]
                0.00    0.00    6789/379055      ThreadDisplayPicture [24]
                0.00    0.00    6891/379055      vout_PutPicture [132]
                0.00    0.00    6891/379055      picture_fifo_Push [159]
                0.00    0.00    6891/379055      vout_control_Wake [158]
                0.00    0.00    6892/379055      vout_GetPicture [160]
                0.00    0.00    6897/379055      vout_new_buffer <cycle 4> [30]
                0.00    0.00    6905/379055      DisplayBuffer [157]
                0.00    0.00   11276/379055      ThreadDisplayPreparePicture [42]
                0.00    0.00   11415/379055      picture_fifo_Pop [146]
                0.00    0.00   12375/379055      vout_AreDisplayPicturesInvalid [145]
                0.00    0.00   12385/379055      Thread [17]
                0.00    0.00   12397/379055      vout_control_Pop [47]
                0.00    0.00   12459/379055      Control <cycle 4> [77]
                0.00    0.00   12461/379055      EsOutControl <cycle 4> [131]
                0.00    0.00   12857/379055      input_clock_ConvertTS [45]
                0.00    0.00   12881/379055      DecoderThread [2]
                0.00    0.00   12885/379055      block_FifoGet [68]
                0.00    0.00   12897/379055      input_DecoderIsCcPresent [144]
                0.00    0.00   12906/379055      Send [69]
                0.00    0.00   12907/379055      input_DecoderHasFormatChanged [143]
                0.00    0.00   12907/379055      block_FifoPut [141]
                0.00    0.00   12907/379055      EsOutSend [123]
                0.00    0.00   13810/379055      PlayedCallback [140]
                0.00    0.00   17893/379055      DecoderDecodeAudio [3]
                0.00    0.00   18646/379055      DecoderDecodeVideo [18]
                0.00    0.00   20367/379055      spu_Render [133]
                0.00    0.00   24743/379055      vout_ManageDisplay [37]
[89]     0.5    0.01    0.00  379055         vlc_mutex_lock [89]
-----------------------------------------------
                0.00    0.00       1/148270      msleep [385]
                0.00    0.00       1/148270      DisplayNew [308]
                0.00    0.00       2/148270      Del [238]
                0.00    0.00       2/148270      Add <cycle 4> [410]
                0.00    0.00       2/148270      Thread [17]
                0.00    0.00       3/148270      es_out_Control <cycle 4> [177]
                0.00    0.00       4/148270      AStreamPrebufferStream [194]
                0.00    0.00       5/148270      aout_DecIsEmpty [327]
                0.00    0.00     628/148270      AStreamRefillStream [82]
                0.00    0.00     850/148270      EsOutControl <cycle 4> [131]
                0.00    0.00     860/148270      Control <cycle 4> [77]
                0.00    0.00    1340/148270      MainLoop [14]
                0.00    0.00    6880/148270      ThreadDisplayPreparePicture [42]
                0.00    0.00   11930/148270      aout_DecPlay [10]
                0.00    0.00   12370/148270      vout_ManageDisplay [37]
                0.00    0.00   12371/148270      vout_SetInterlacingState [136]
                0.00    0.00   12382/148270      vout_control_Pop [47]
                0.00    0.00   12855/148270      input_clock_ConvertTS [45]
                0.00    0.00   12899/148270      Send [69]
                0.00    0.00   16583/148270      AStreamSeekStream [114]
                0.00    0.00   46302/148270      ThreadDisplayPicture [24]
[90]     0.5    0.01    0.00  148270         mdate [90]
-----------------------------------------------
                0.01    0.00   11931/11931       av_buffer_unref [38]
[91]     0.5    0.01    0.00   11931         pool_release_buffer [91]
-----------------------------------------------
                0.01    0.00    5967/5967        aout_FiltersPlay [11]
[92]     0.5    0.01    0.00    5967         DoWork [92]
                0.00    0.00     325/25142       block_generic_Release [510]
                0.00    0.00     325/25165       block_Alloc [508]
-----------------------------------------------
                0.01    0.00    5966/5966        DecodeAudio [4]
[93]     0.5    0.01    0.00    5966         av_init_packet [93]
-----------------------------------------------
                0.01    0.00    5965/5965        DecoderDecodeAudio [3]
[94]     0.5    0.01    0.00    5965         aout_DecGetResetLost [94]
-----------------------------------------------
                0.01    0.00     660/1320        spectral_to_sample [41]
                0.01    0.00     660/1320        decode_ics_info [9]
[95]     0.5    0.01    0.00    1320         apply_ltp [95]
-----------------------------------------------
                                                 <spontaneous>
[96]     0.5    0.01    0.00                 ff_vector_fmul_scalar_neon [96]
-----------------------------------------------
                                                 <spontaneous>
[97]     0.5    0.01    0.00                 fft32_neon [97]
-----------------------------------------------
                                                 <spontaneous>
[98]     0.5    0.01    0.00                 fft8_neon [98]
-----------------------------------------------
                                                 <spontaneous>
[99]     0.5    0.01    0.00                 operator new(unsigned int) [99]
-----------------------------------------------
                                                 <spontaneous>
[100]    0.5    0.01    0.00                 __aeabi_d2lz [100]
-----------------------------------------------
                                                 <spontaneous>
[101]    0.5    0.01    0.00                 __aeabi_l2f [101]
-----------------------------------------------
                                                 <spontaneous>
[102]    0.5    0.01    0.00                 __aeabi_ldivmod [102]
-----------------------------------------------
                                                 <spontaneous>
[103]    0.5    0.01    0.00                 __aeabi_uidivmod [103]
-----------------------------------------------
                0.00    0.00       1/25894       input_item_preparsed_changed [384]
                0.00    0.00       1/25894       vout_snapshot_End [391]
                0.00    0.00       1/25894       vout_control_Dead [390]
                0.00    0.00       6/25894       block_FifoEmpty [321]
                0.00    0.00      19/25894       block_FifoWake [267]
                0.00    0.00     608/25894       TriggerCallback <cycle 5> [168]
                0.00    0.00   12376/25894       vout_control_Pop [47]
                0.00    0.00   12882/25894       block_FifoGet [68]
[104]    0.5    0.01    0.00   25894         vlc_cond_broadcast [104]
-----------------------------------------------
                0.01    0.00    7718/7718        module_list_cap [108]
[105]    0.5    0.01    0.00    7718         module_provides [105]
                0.00    0.00    7718/7718        module_get_capability [528]
-----------------------------------------------
                                6894             GetOutput <cycle 4> [53]
[106]    0.5    0.01    0.00    6894         decoder_NewPicture <cycle 4> [106]
                                6895             vout_new_buffer <cycle 4> [30]
-----------------------------------------------
                0.01    0.00     308/308         avcodec_register_all [110]
[107]    0.5    0.01    0.00     308         avcodec_register [107]
                0.00    0.00       1/1           ff_dsputil_static_init [967]
                0.00    0.00       1/1           wmavoice_init_static_data [1035]
                0.00    0.00       1/1           ff_tak_init_crc [983]
                0.00    0.00       1/1           tak_init_static_data [1016]
                0.00    0.00       1/1           qdm2_init_static_data [1011]
                0.00    0.00       1/1           ff_atrac3p_init_vlcs [965]
                0.00    0.00       1/1           atrac3_init_static_data [948]
                0.00    0.00       1/1           ff_mqc_init_context_tables [976]
                0.00    0.00       1/1           jpeg2000_init_static_data [1003]
-----------------------------------------------
                0.00    0.01      17/17          vlc_module_load <cycle 4> [78]
[108]    0.5    0.00    0.01      17         module_list_cap [108]
                0.01    0.00    7718/7718        module_provides [105]
-----------------------------------------------
                0.01    0.00       2/2           aac_decode_init [87]
[109]    0.5    0.01    0.00       2         ff_kbd_window_init [109]
-----------------------------------------------
                0.00    0.01       1/1           OpenDecoder [52]
[110]    0.5    0.00    0.01       1         avcodec_register_all [110]
                0.01    0.00     308/308         avcodec_register [107]
                0.00    0.00      30/31          av_register_codec_parser [609]
-----------------------------------------------
                0.01    0.00     493/493         AReadStream [85]
[111]    0.5    0.01    0.00     493         FileRead [111]
-----------------------------------------------
                0.00    0.01   49511/49511       stream_vaControl [113]
[112]    0.4    0.00    0.01   49511         AStreamControl [112]
                0.00    0.01   16582/16582       AStreamSeekStream [114]
                0.00    0.00   16584/49748       access_Control [280]
                0.00    0.00       5/49753       FileControl [278]
-----------------------------------------------
                0.00    0.01   49511/49511       Control [65]
[113]    0.4    0.00    0.01   49511         stream_vaControl [113]
                0.00    0.01   49511/49511       AStreamControl [112]
-----------------------------------------------
                0.00    0.01   16582/16582       AStreamControl [112]
[114]    0.4    0.00    0.01   16582         AStreamSeekStream [114]
                0.00    0.01     365/480         AStreamRefillStream [82]
                0.00    0.00   16583/148270      mdate [90]
                0.00    0.00   33163/49748       access_Control [280]
                0.00    0.00      11/11          ASeek [645]
-----------------------------------------------
                0.00    0.01    6789/6789        ThreadDisplayPicture [24]
[115]    0.3    0.00    0.01    6789         Display [115]
                0.01    0.00    6772/20463       picture_Release [51]
                0.00    0.00    6790/13696       DisplayBuffer [157]
                0.00    0.00    6790/6790        DisplayCallback [540]
-----------------------------------------------
                0.00    0.00       3/16337       matroska_segment_c::Preload() [118]
                0.00    0.00       3/16337       matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00      11/16337       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00    7975/16337       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
                0.00    0.00    8345/16337       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[116]    0.3    0.00    0.01   16337         vlc_stream_io_callback::getFilePointer() [116]
                0.00    0.01   16340/49510       stream_Control [64]
-----------------------------------------------
                                   1             generic_start <cycle 4> [48]
[117]    0.3    0.00    0.01       1         Open(vlc_object_t*) <cycle 4> [117]
                0.00    0.00       1/1           matroska_segment_c::Preload() [118]
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
                0.00    0.00       1/1           demux_sys_t::InitUi() [200]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
                0.00    0.00       1/6831        vlc_mutex_init [536]
                0.00    0.00       1/1           vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) [16531]
                0.00    0.00       1/1           libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [16541]
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
                0.00    0.00       1/1           demux_sys_t::FreeUnused() [16487]
                0.00    0.00       1/1           std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) [16571]
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [117]
[118]    0.2    0.00    0.00       1         matroska_segment_c::Preload() [118]
                0.00    0.00       1/1           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00       1/1           matroska_segment_c::ParseCluster(bool) [150]
                0.00    0.00       6/1081        vlc_Log [62]
                0.00    0.00       6/8142        EbmlParser::Get(int) [35]
                0.00    0.00       1/1           EbmlParser::Reset(demux_t*) [271]
                0.00    0.00       3/16337       vlc_stream_io_callback::getFilePointer() [116]
                0.00    0.00       1/121         EbmlParser::Down() [16225]
                0.00    0.00       1/1           matroska_segment_c::ComputeTrackPriority() [16527]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [118]
[119]    0.2    0.00    0.00       1         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00       3/3           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       7/1081        vlc_Log [62]
                0.00    0.00      14/8142        EbmlParser::Get(int) [35]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [210]
                0.00    0.00       3/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [153]
                0.00    0.00       3/7983        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [79]
                0.00    0.00      10/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00       3/120         EbmlParser::Up() [248]
                0.00    0.00       1/49510       stream_Control [64]
                0.00    0.00       3/121         EbmlParser::Down() [16225]
                0.00    0.00       3/127         libebml::EbmlUInteger::operator unsigned long long() const [16223]
                0.00    0.00       3/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16246]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16293]
-----------------------------------------------
                0.00    0.00       3/3           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
[120]    0.2    0.00    0.00       3         matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       1/1           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
                0.00    0.00       1/1           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [135]
                0.00    0.00       1/1           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
                0.00    0.00       3/1081        vlc_Log [62]
                0.00    0.00       3/6           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00       6/16581       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
                0.00    0.00       3/16337       vlc_stream_io_callback::getFilePointer() [116]
                0.00    0.00       3/6           libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16290]
                0.00    0.00       1/2           libmatroska::KaxCues::~KaxCues() [16409]
                0.00    0.00       1/2           libmatroska::KaxTracks::~KaxTracks() [16413]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16309]
-----------------------------------------------
                0.00    0.00       1/6768        msleep [385]
                0.00    0.00    6767/6768        ThreadDisplayPicture [24]
[121]    0.1    0.00    0.00    6768         mwait [121]
                0.00    0.00    6769/26323       vlc_cond_timedwait [75]
                0.00    0.00    6768/379055      vlc_mutex_lock [89]
                0.00    0.00    6768/6831        vlc_mutex_init [536]
                0.00    0.00    6768/6808        vlc_cond_init [538]
                0.00    0.00    6766/6820        vlc_mutex_destroy [537]
                0.00    0.00    6765/6803        vlc_cond_destroy [539]
-----------------------------------------------
                0.00    0.00   12909/12909       Send [69]
[122]    0.1    0.00    0.00   12909         CmdExecuteSend [122]
                0.00    0.00   12909/12909       EsOutSend [123]
-----------------------------------------------
                0.00    0.00   12909/12909       CmdExecuteSend [122]
[123]    0.1    0.00    0.00   12909         EsOutSend [123]
                0.00    0.00   12896/12900       input_DecoderDecode [142]
                0.00    0.00   12907/12907       input_DecoderHasFormatChanged [143]
                0.00    0.00   12895/12895       input_DecoderIsCcPresent [144]
                0.00    0.00   12907/379055      vlc_mutex_lock [89]
                0.00    0.00   12892/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/4           info_category_AddInfo [293]
                0.00    0.00       2/32          es_format_Clean [608]
-----------------------------------------------
                0.00    0.00    7979/7979        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[124]    0.1    0.00    0.00    7979         libmatroska::KaxInternalBlock::ValidateSize() const [124]
                0.00    0.00    7979/63918       libebml::EbmlElement::GetSize() const [58]
-----------------------------------------------
[125]    0.1    0.00    0.00   32890+65783   <cycle 1 as a whole> [125]
                0.00    0.00   65782             stream_Read <cycle 1> [126]
                0.00    0.00   32891             Read <cycle 1> [504]
-----------------------------------------------
                               32892             Read <cycle 1> [504]
                0.00    0.00   32890/32890       vlc_stream_io_callback::read(void*, unsigned int) [73]
[126]    0.1    0.00    0.00   65782         stream_Read <cycle 1> [126]
                0.00    0.00   32898/32898       AStreamReadNoSeekStream [127]
                0.00    0.00   32896/32896       AStreamReadStream [503]
                               32891             Read <cycle 1> [504]
-----------------------------------------------
                0.00    0.00   32898/32898       stream_Read <cycle 1> [126]
[127]    0.1    0.00    0.00   32898         AStreamReadNoSeekStream [127]
                0.00    0.00     115/480         AStreamRefillStream [82]
-----------------------------------------------
                                   4             libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       1/5           matroska_segment_c::ParseCluster(bool) [150]
                0.00    0.00       1/5           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [135]
                0.00    0.00       1/5           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
                0.00    0.00       2/5           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[128]    0.1    0.00    0.00       5+4       libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00     322/8345        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
                0.00    0.00     318/318         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
                0.00    0.00     322/8218        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [76]
                0.00    0.00       9/16581       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
                0.00    0.00     644/8898        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16187]
                0.00    0.00     554/8249        libmatroska::KaxSimpleBlock::Generic() const [16193]
                0.00    0.00     322/8345        libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16190]
                0.00    0.00     277/8255        libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [16192]
                0.00    0.00      13/201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16214]
                0.00    0.00       9/18          libebml::EbmlMaster::GetSize() const [16270]
                0.00    0.00       4/4           libmatroska::KaxTrackDefaultDuration::Generic() const [16329]
                0.00    0.00       4/4           libmatroska::KaxCodecPrivate::Generic() const [16327]
                0.00    0.00       4/4           libmatroska::KaxCodecID::Generic() const [16317]
                0.00    0.00       4/4           libmatroska::KaxTrackType::Generic() const [16322]
                0.00    0.00       4/4           libmatroska::KaxTrackUID::Generic() const [16320]
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::Generic() const [16326]
                0.00    0.00       4/4           libmatroska::KaxTrackEntry::Generic() const [16324]
                0.00    0.00       4/4           libmatroska::KaxSegmentUID::Generic() const [16323]
                0.00    0.00       4/4           libmatroska::KaxDateUTC::Generic() const [16318]
                0.00    0.00       4/4           libmatroska::KaxDuration::Generic() const [16319]
                0.00    0.00       4/4           libmatroska::KaxWritingApp::Generic() const [16325]
                0.00    0.00       4/4           libmatroska::KaxMuxingApp::Generic() const [16321]
                0.00    0.00       4/4           libmatroska::KaxTimecodeScale::Generic() const [16328]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16370]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16379]
                0.00    0.00       2/4           libmatroska::KaxCodecID::~KaxCodecID() [16297]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16400]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16403]
                0.00    0.00       2/3           libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16337]
                0.00    0.00       2/3           libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16340]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16382]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16388]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16391]
                0.00    0.00       2/4           libmatroska::KaxTrackType::~KaxTrackType() [16303]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::~KaxTrackUID() [16300]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::~KaxTrackNumber() [16306]
                0.00    0.00       2/6           libmatroska::KaxWritingApp::~KaxWritingApp() [16280]
                0.00    0.00       2/6           libmatroska::KaxMuxingApp::~KaxMuxingApp() [16277]
                0.00    0.00       2/6           libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16286]
                0.00    0.00       2/53          libmatroska::KaxClusterTimecode::Generic() const [16239]
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::Generic() const [16460]
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::Generic() const [16467]
                0.00    0.00       2/2           libmatroska::KaxTrackAudio::Generic() const [16454]
                0.00    0.00       2/2           libmatroska::KaxTrackLanguage::Generic() const [16462]
                0.00    0.00       2/2           libmatroska::KaxVideoDisplayHeight::Generic() const [16469]
                0.00    0.00       2/2           libmatroska::KaxVideoDisplayWidth::Generic() const [16468]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::Generic() const [16466]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::Generic() const [16465]
                0.00    0.00       2/2           libmatroska::KaxTrackVideo::Generic() const [16456]
                0.00    0.00       2/2           libmatroska::KaxTrackMinCache::Generic() const [16463]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagLacing::Generic() const [16464]
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::Generic() const [16479]
                0.00    0.00       2/2           libebml::EDocTypeVersion::Generic() const [16476]
                0.00    0.00       2/2           libebml::EDocType::Generic() const [16481]
                0.00    0.00       2/2           libebml::EMaxSizeLength::Generic() const [16475]
                0.00    0.00       2/2           libebml::EMaxIdLength::Generic() const [16473]
                0.00    0.00       2/2           libebml::EReadVersion::Generic() const [16474]
                0.00    0.00       2/2           libebml::EVersion::Generic() const [16482]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [16455]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [16470]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [16459]
                0.00    0.00       2/2           libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [16447]
                0.00    0.00       2/2           libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [16452]
                0.00    0.00       2/2           libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [16450]
                0.00    0.00       2/2           libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [16458]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const [16453]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [16448]
                0.00    0.00       2/2           libmatroska::KaxDuration::operator libebml::EbmlId const&() const [16449]
                0.00    0.00       2/2           libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [16457]
                0.00    0.00       2/2           libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [16451]
                0.00    0.00       2/2           libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [16461]
                0.00    0.00       1/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16228]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::~KaxAudioChannels() [16376]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16397]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16394]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16385]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16510]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16436]
                0.00    0.00       1/2           libebml::EDocTypeVersion::~EDocTypeVersion() [16433]
                0.00    0.00       1/2           libebml::EDocType::~EDocType() [16439]
                0.00    0.00       1/2           libebml::EMaxSizeLength::~EMaxSizeLength() [16430]
                0.00    0.00       1/2           libebml::EMaxIdLength::~EMaxIdLength() [16424]
                0.00    0.00       1/2           libebml::EReadVersion::~EReadVersion() [16427]
                0.00    0.00       1/2           libebml::EVersion::~EVersion() [16442]
                0.00    0.00       1/1           libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [16555]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [16550]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [16553]
                0.00    0.00       1/1           libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [16552]
                0.00    0.00       1/1           libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [16559]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [16551]
                0.00    0.00       1/1           libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [16554]
                0.00    0.00       1/1           libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [16556]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [16561]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [16560]
                0.00    0.00       1/1           libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [16558]
                0.00    0.00       1/1           libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [16557]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16480]
                0.00    0.00       1/2           libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16477]
                0.00    0.00       1/3           libebml::EDocType::operator libebml::EbmlId const&() const [16352]
                0.00    0.00       1/3           libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16351]
                0.00    0.00       1/3           libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16349]
                0.00    0.00       1/3           libebml::EReadVersion::operator libebml::EbmlId const&() const [16350]
                0.00    0.00       1/3           libebml::EVersion::operator libebml::EbmlId const&() const [16353]
                                   4             libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
[129]    0.1    0.00    0.00       1         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
                0.00    0.00     265/8142        EbmlParser::Get(int) [35]
                0.00    0.00      34/1081        vlc_Log [62]
                0.00    0.00      99/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [153]
                0.00    0.00     132/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00      66/120         EbmlParser::Up() [248]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [210]
                0.00    0.00      66/121         EbmlParser::Down() [16225]
                0.00    0.00      66/127         libebml::EbmlUInteger::operator unsigned long long() const [16223]
                0.00    0.00      33/41          libebml::EbmlUInteger::operator unsigned short() const [16243]
                0.00    0.00      33/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16246]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16293]
-----------------------------------------------
                0.00    0.00       1/187         ReplayGainCallback [279]
                0.00    0.00       1/187         OpenDecoder [173]
                0.00    0.00       1/187         ffmpeg_OpenCodec [84]
                0.00    0.00       1/187         FileControl [278]
                0.00    0.00       1/187         EbmlParser::Reset(demux_t*) [271]
                0.00    0.00       1/187         spu_Create <cycle 4> [276]
                0.00    0.00       1/187         aout_update_format [80]
                0.00    0.00       1/187         Create [155]
                0.00    0.00       1/187         Init [163]
                0.00    0.00       1/187         Thread [17]
                0.00    0.00       1/187         vout_OpenWrapper [213]
                0.00    0.00       1/187         var_InheritURational [277]
                0.00    0.00       2/187         GetFontSize [259]
                0.00    0.00       2/187         ThreadStart [187]
                0.00    0.00       3/187         OpenDecoder [52]
                0.00    0.00       3/187         aout_FiltersNew [190]
                0.00    0.00       4/187         vout_Request <cycle 4> [170]
                0.00    0.00       5/187         EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [210]
                0.00    0.00       7/187         vlc_module_load <cycle 4> [78]
                0.00    0.00      24/187         Create [167]
                0.00    0.00     125/187         var_Create [137]
[130]    0.1    0.00    0.00     187         var_Inherit [130]
                0.00    0.00      87/87          config_GetInt [138]
                0.00    0.00      45/45          config_GetPsz [152]
                0.00    0.00      15/15          config_GetFloat [183]
                0.00    0.00     551/2355        var_GetChecked [184]
-----------------------------------------------
                               12457             es_out_Control <cycle 4> [524]
                0.00    0.00       3/49617       es_out_Control [74]
[131]    0.1    0.00    0.00   12460         EsOutControl <cycle 4> [131]
                0.00    0.00     425/426         input_SendEventPosition [161]
                0.00    0.00   12461/379055      vlc_mutex_lock [89]
                0.00    0.00   12451/438508      vlc_mutex_unlock [88]
                0.00    0.00    2553/2553        input_clock_GetWakeup [182]
                0.00    0.00     850/148270      mdate [90]
                0.00    0.00     425/426         input_SendEventLength [224]
                0.00    0.00     425/425         input_clock_Update [231]
                0.00    0.00     425/432         input_clock_GetState [227]
                0.00    0.00      27/27          input_DecoderIsEmpty [304]
                0.00    0.00       4/12          LanguageSplit [303]
                0.00    0.00       1/3           input_SendEventMeta [322]
                0.00    0.00       1/1           input_SendEventMetaEpg [369]
                0.00    0.00       1/1           input_item_SetEpgOffline [407]
                0.00    0.00       1/1           input_item_SetPreparsed [412]
                0.00    0.00       2/12900       input_DecoderDecode [142]
                0.00    0.00       1/4           input_item_GetMeta [419]
                0.00    0.00       1/2           input_clock_SetJitter [451]
                0.00    0.00    7700/7708        EsIsSelected [529]
                0.00    0.00     848/848         input_DecoderGetFifoSize [559]
                0.00    0.00       2/25165       block_Alloc [508]
                0.00    0.00       2/6           vlc_meta_Get [688]
                0.00    0.00       1/6           input_GetItem [681]
                0.00    0.00       1/2           vlc_meta_Merge [870]
                0.00    0.00       1/1           input_clock_Delete [994]
                                   7             es_out_Control <cycle 4> [177]
                                   4             EsOutSelect <cycle 4> [664]
                                   2             EsUnselect <cycle 4> [353]
-----------------------------------------------
                0.00    0.00    6890/6890        DecoderDecodeVideo [18]
[132]    0.0    0.00    0.00    6890         vout_PutPicture [132]
                0.00    0.00    6891/6891        vout_control_Wake [158]
                0.00    0.00    6891/6891        picture_fifo_Push [159]
                0.00    0.00    6891/379055      vlc_mutex_lock [89]
                0.00    0.00    6890/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00    6790/6790        ThreadDisplayPicture [24]
[133]    0.0    0.00    0.00    6790         spu_Render [133]
                0.00    0.00   20367/379055      vlc_mutex_lock [89]
                0.00    0.00   20367/438508      vlc_mutex_unlock [88]
                0.00    0.00    6789/6789        filter_chain_SubSource [543]
                0.00    0.00       1/9           filter_chain_Reset [652]
                0.00    0.00       1/1           UpdateBufferFunctions [941]
                0.00    0.00       1/1           filter_chain_AppendFromString [986]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [117]
[134]    0.0    0.00    0.00       1         demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
                0.00    0.00       2/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       3/8142        EbmlParser::Get(int) [35]
                0.00    0.00       3/6           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [210]
                0.00    0.00       1/8218        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [76]
                0.00    0.00       1/1           libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [402]
                0.00    0.00       3/6           libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16290]
                0.00    0.00       2/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
                0.00    0.00       2/2           std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) [16484]
                0.00    0.00       1/1           libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16543]
                0.00    0.00       1/6           libebml::EbmlString::operator std::string const&() const [16291]
                0.00    0.00       1/1           libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16544]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16223]
                0.00    0.00       1/1           libebml::EbmlHead::~EbmlHead() [16547]
                0.00    0.00       1/1           matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) [16528]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16270]
                0.00    0.00       1/1           demux_sys_t::FindSegment(libebml::EbmlBinary const&) const [16548]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
[135]    0.0    0.00    0.00       1         matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [135]
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16270]
                0.00    0.00       1/2           libmatroska::KaxTracks::Generic() const [16472]
-----------------------------------------------
                0.00    0.00   12371/12371       Thread [17]
[136]    0.0    0.00    0.00   12371         vout_SetInterlacingState [136]
                0.00    0.00   12371/148270      mdate [90]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       1/224         OpenDecoder [52]
                0.00    0.00       1/224         OpenScaler [199]
                0.00    0.00       1/224         spu_Attach <cycle 4> [282]
                0.00    0.00       1/224         InputSourceInit [172]
                0.00    0.00       1/224         MainLoop [14]
                0.00    0.00       1/224         input_ControlVarNavigation [288]
                0.00    0.00       1/224         vout_OpenWrapper [213]
                0.00    0.00       1/224         aout_OutputNew [225]
                0.00    0.00       2/224         DeinterlaceCallback <cycle 5> [202]
                0.00    0.00       2/224         input_EsOutTimeshiftNew [219]
                0.00    0.00       3/224         vout_InitInterlacingSupport [211]
                0.00    0.00       3/224         var_OptionParse [258]
                0.00    0.00       4/224         SpuRenderCreateAndLoadText <cycle 4> [254]
                0.00    0.00       4/224         Init [163]
                0.00    0.00       7/224         demux_sys_t::InitUi() [200]
                0.00    0.00       8/224         ThreadStart [187]
                0.00    0.00      10/224         aout_New [201]
                0.00    0.00      23/224         input_ControlVarInit [186]
                0.00    0.00      32/224         vout_IntfInit [181]
                0.00    0.00      52/224         input_ConfigVarInit [171]
                0.00    0.00      66/224         libvlc_media_player_new [164]
[137]    0.0    0.00    0.00     224         var_Create [137]
                0.00    0.00     125/187         var_Inherit [130]
                0.00    0.00     224/379055      vlc_mutex_lock [89]
                0.00    0.00     224/438508      vlc_mutex_unlock [88]
                0.00    0.00     224/224         tsearch [566]
                0.00    0.00      12/158         Destroy [574]
                0.00    0.00       4/3330        DupDummy [550]
                0.00    0.00       3/114         DupString [581]
-----------------------------------------------
                0.00    0.00      87/87          var_Inherit [130]
[138]    0.0    0.00    0.00      87         config_GetInt [138]
                0.00    0.00      88/1231        vlc_rwlock_rdlock [81]
                0.00    0.00      88/1229        vlc_rwlock_unlock [197]
                0.00    0.00      88/155         config_FindConfig [575]
-----------------------------------------------
                0.00    0.00     318/318         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[139]    0.0    0.00    0.00     318         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
                0.00    0.00     277/7974        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
                0.00    0.00      24/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [153]
                0.00    0.00       4/4           libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [265]
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [266]
                0.00    0.00       4/7983        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [79]
                0.00    0.00       3/3           libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [297]
                0.00    0.00       2/2           libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [320]
-----------------------------------------------
                                                 <spontaneous>
[140]    0.0    0.00    0.00                 PlayedCallback [140]
                0.00    0.00   13810/379055      vlc_mutex_lock [89]
                0.00    0.00   13809/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00   12906/12906       input_DecoderDecode [142]
[141]    0.0    0.00    0.00   12906         block_FifoPut [141]
                0.00    0.00   12907/379055      vlc_mutex_lock [89]
                0.00    0.00   12908/438508      vlc_mutex_unlock [88]
                0.00    0.00   12904/21091       vlc_cond_signal [512]
-----------------------------------------------
                0.00    0.00       2/12900       DecoderFlush [348]
                0.00    0.00       2/12900       EsOutControl <cycle 4> [131]
                0.00    0.00   12896/12900       EsOutSend [123]
[142]    0.0    0.00    0.00   12900         input_DecoderDecode [142]
                0.00    0.00   12906/12906       block_FifoPut [141]
                0.00    0.00   12906/13754       block_FifoSize [516]
-----------------------------------------------
                0.00    0.00   12907/12907       EsOutSend [123]
[143]    0.0    0.00    0.00   12907         input_DecoderHasFormatChanged [143]
                0.00    0.00   12907/379055      vlc_mutex_lock [89]
                0.00    0.00   12898/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/22          es_format_Copy [619]
-----------------------------------------------
                0.00    0.00   12895/12895       EsOutSend [123]
[144]    0.0    0.00    0.00   12895         input_DecoderIsCcPresent [144]
                0.00    0.00   12897/379055      vlc_mutex_lock [89]
                0.00    0.00   12894/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00   12375/12375       vout_ManageWrapper [36]
[145]    0.0    0.00    0.00   12375         vout_AreDisplayPicturesInvalid [145]
                0.00    0.00   12375/379055      vlc_mutex_lock [89]
                0.00    0.00   12370/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00   11416/11416       ThreadDisplayPreparePicture [42]
[146]    0.0    0.00    0.00   11416         picture_fifo_Pop [146]
                0.00    0.00   11415/379055      vlc_mutex_lock [89]
                0.00    0.00   11413/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
[147]    0.0    0.00    0.00       1         matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       6/1081        vlc_Log [62]
                0.00    0.00       2/2           libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [16478]
                0.00    0.00       2/2           libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16445]
                0.00    0.00       2/26          libebml::UTFstring::~UTFstring() [16268]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16270]
                0.00    0.00       1/2           libmatroska::KaxInfo::Generic() const [16471]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16223]
                0.00    0.00       1/1           libebml::EbmlFloat::operator double() const [16568]
-----------------------------------------------
[148]    0.0    0.00    0.00     732+1920    <cycle 5 as a whole> [148]
                0.00    0.00    1395             TriggerCallback <cycle 5> [168]
                0.00    0.00     577             input_event_changed <cycle 5> [180]
                0.00    0.00       2             DeinterlaceCallback <cycle 5> [202]
                0.00    0.00     628             var_SetChecked <cycle 5> [212]
                0.00    0.00      23             var_TriggerCallback <cycle 5> [344]
                0.00    0.00       7             input_vaControl <cycle 5> [350]
                0.00    0.00       4             input_SendEventMetaInfo <cycle 5> [364]
                0.00    0.00       7             input_Control <cycle 5> [658]
                0.00    0.00       4             var_Set <cycle 5> [716]
                0.00    0.00       2             ZoomCallback <cycle 5> [776]
                0.00    0.00       2             WallPaperCallback <cycle 5> [775]
                0.00    0.00       1             var_Copy <cycle 5> [1017]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [135]
[149]    0.0    0.00    0.00       2         matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
                0.00    0.00      25/1081        vlc_Log [62]
                0.00    0.00       4/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00       8/8           libebml::EbmlUInteger::operator unsigned int() const [16274]
                0.00    0.00       8/41          libebml::EbmlUInteger::operator unsigned short() const [16243]
                0.00    0.00       5/6           libebml::EbmlString::operator std::string const&() const [16291]
                0.00    0.00       4/4           libebml::EbmlUInteger::operator unsigned char() const [16331]
                0.00    0.00       4/127         libebml::EbmlUInteger::operator unsigned long long() const [16223]
                0.00    0.00       2/22          es_format_Init [620]
                0.00    0.00       2/2           matroska_segment_c::TrackInit(mkv_track_t*) [16415]
                0.00    0.00       2/2           std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) [16483]
                0.00    0.00       1/1           libebml::EbmlFloat::operator float() const [16569]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [118]
[150]    0.0    0.00    0.00       1         matroska_segment_c::ParseCluster(bool) [150]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16270]
                0.00    0.00       1/7803        libmatroska::KaxCluster::Generic() const [16203]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16223]
                0.00    0.00       1/7697        libmatroska::KaxCluster::GlobalTimecode() const [16205]
-----------------------------------------------
                0.00    0.00       1/5977        aout_DecDelete <cycle 4> [341]
                0.00    0.00       1/5977        aout_DecNew [185]
                0.00    0.00       1/5977        aout_Destroy [291]
                0.00    0.00       2/5977        aout_DecFlush [306]
                0.00    0.00       5/5977        aout_DecIsEmpty [327]
                0.00    0.00    5967/5977        aout_DecPlay [10]
[151]    0.0    0.00    0.00    5977         aout_OutputUnlock [151]
                0.00    0.00   11951/438508      vlc_mutex_unlock [88]
                0.00    0.00    5977/379055      vlc_mutex_lock [89]
-----------------------------------------------
                0.00    0.00      45/45          var_Inherit [130]
[152]    0.0    0.00    0.00      45         config_GetPsz [152]
                0.00    0.00      45/1231        vlc_rwlock_rdlock [81]
                0.00    0.00      45/1229        vlc_rwlock_unlock [197]
                0.00    0.00      45/155         config_FindConfig [575]
-----------------------------------------------
                0.00    0.00       3/177         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00      24/177         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
                0.00    0.00      51/177         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.00      99/177         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
[153]    0.0    0.00    0.00     177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [153]
                0.00    0.00     946/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00     177/190         libebml::IOCallback::readFully(void*, unsigned int) [195]
-----------------------------------------------
                                                 <spontaneous>
[154]    0.0    0.00    0.00                 libvlc_media_player_play [154]
                0.00    0.00       1/1           input_Create [156]
                0.00    0.00       4/50          var_AddCallback [206]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/1           input_Start [993]
-----------------------------------------------
                0.00    0.00       1/1           input_Create [156]
[155]    0.0    0.00    0.00       1         Create [155]
                0.00    0.00       1/1           input_ConfigVarInit [171]
                0.00    0.00       1/1           input_ControlVarInit [186]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       3/3           var_OptionParse [258]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       1/1           input_EsOutNew [357]
                0.00    0.00       1/3           input_SendEventMeta [322]
                0.00    0.00       1/3           input_item_SetMeta [376]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       1/2355        var_GetChecked [184]
                0.00    0.00       1/22          vlc_custom_create [347]
                0.00    0.00       1/2           input_item_GetName [436]
                0.00    0.00       1/2           input_resource_SetInput [437]
                0.00    0.00       1/1           stats_NewInputStats [478]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/6831        vlc_mutex_init [536]
                0.00    0.00       1/2           input_item_Hold [820]
                0.00    0.00       1/1           input_resource_Hold [996]
                0.00    0.00       1/6808        vlc_cond_init [538]
                0.00    0.00       1/3           vlc_object_set_destructor [731]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_play [154]
[156]    0.0    0.00    0.00       1         input_Create [156]
                0.00    0.00       1/1           Create [155]
-----------------------------------------------
                0.00    0.00    6790/13696       Display [115]
                0.00    0.00    6906/13696       UnlockSurface [174]
[157]    0.0    0.00    0.00   13696         DisplayBuffer [157]
                0.00    0.00    6905/379055      vlc_mutex_lock [89]
                0.00    0.00    6891/438508      vlc_mutex_unlock [88]
                0.00    0.00   13796/13800       get_android_opaque_mutex [515]
-----------------------------------------------
                0.00    0.00    6891/6891        vout_PutPicture [132]
[158]    0.0    0.00    0.00    6891         vout_control_Wake [158]
                0.00    0.00    6891/379055      vlc_mutex_lock [89]
                0.00    0.00    6892/438508      vlc_mutex_unlock [88]
                0.00    0.00    6892/21091       vlc_cond_signal [512]
-----------------------------------------------
                0.00    0.00    6891/6891        vout_PutPicture [132]
[159]    0.0    0.00    0.00    6891         picture_fifo_Push [159]
                0.00    0.00    6891/379055      vlc_mutex_lock [89]
                0.00    0.00    6891/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00    6892/6892        vout_new_buffer <cycle 4> [30]
[160]    0.0    0.00    0.00    6892         vout_GetPicture [160]
                0.00    0.00    6892/379055      vlc_mutex_lock [89]
                0.00    0.00    6886/438508      vlc_mutex_unlock [88]
                0.00    0.00    6890/6890        picture_pool_Get [534]
                0.00    0.00    6887/6923        video_format_CopyCrop [530]
                0.00    0.00    6886/6886        picture_Reset [535]
-----------------------------------------------
                0.00    0.00       1/426         Init [163]
                0.00    0.00     425/426         EsOutControl <cycle 4> [131]
[161]    0.0    0.00    0.00     426         input_SendEventPosition [161]
                0.00    0.00     425/732         var_SetChecked <cycle 5> [212]
                0.00    0.00     852/1002        var_Change [198]
-----------------------------------------------
                                                 <spontaneous>
[162]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_playMRL [162]
                0.00    0.00       1/1           libvlc_media_player_new [164]
                0.00    0.00       1/1           libvlc_media_player_set_media [329]
                0.00    0.00       1/1           libvlc_media_new_location [346]
                0.00    0.00       1/1           libvlc_media_player_set_video_title_display [367]
                0.00    0.00       8/8           libvlc_event_attach [395]
                0.00    0.00       3/3           libvlc_media_add_option [426]
                0.00    0.00       1/1           libvlc_media_player_event_manager [1005]
                0.00    0.00       1/1           setLong [1013]
                0.00    0.00       1/1           libvlc_media_event_manager [1004]
-----------------------------------------------
                0.00    0.00       1/1           Run [13]
[163]    0.0    0.00    0.00       1         Init [163]
                0.00    0.00       1/1           InputSourceInit [172]
                0.00    0.00       1/1           input_EsOutTimeshiftNew [219]
                0.00    0.00       1/1           subtitles_Detect [243]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       4/224         var_Create [137]
                0.00    0.00       1/1           UpdatePtsDelay [268]
                0.00    0.00       1/1           InitTitle [274]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       2/2           ControlPause [286]
                0.00    0.00       2/4331        es_out_Control [74]
                0.00    0.00       2/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       2/4           input_ChangeState [323]
                0.00    0.00      17/2355        var_GetChecked [184]
                0.00    0.00       1/426         input_SendEventPosition [161]
                0.00    0.00       1/8           input_SendEventCache [281]
                0.00    0.00       1/426         input_SendEventLength [224]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/1285        demux_Control [555]
                0.00    0.00       1/3           vlc_meta_New [729]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[164]    0.0    0.00    0.00       1         libvlc_media_player_new [164]
                0.00    0.00      66/224         var_Create [137]
                0.00    0.00       1/2           input_resource_GetAout [192]
                0.00    0.00       1/2           input_resource_PutAout [208]
                0.00    0.00       4/732         var_SetChecked <cycle 5> [212]
                0.00    0.00      20/27          libvlc_event_manager_register_event_type [339]
                0.00    0.00       1/50          var_AddCallback [206]
                0.00    0.00       1/22          vlc_custom_create [347]
                0.00    0.00       1/2           libvlc_event_manager_new [443]
                0.00    0.00       1/3           libvlc_retain [428]
                0.00    0.00       2/6831        vlc_mutex_init [536]
                0.00    0.00       1/1           vlc_object_create [1026]
                0.00    0.00       1/1           input_resource_New [997]
-----------------------------------------------
                0.00    0.00    5967/5967        aout_OutputPlay [166]
[165]    0.0    0.00    0.00    5967         Play [165]
                0.00    0.00    5967/379055      vlc_mutex_lock [89]
                0.00    0.00    5966/438508      vlc_mutex_unlock [88]
                0.00    0.00    5965/25142       block_generic_Release [510]
-----------------------------------------------
                0.00    0.00    5967/5967        aout_DecPlay [10]
[166]    0.0    0.00    0.00    5967         aout_OutputPlay [166]
                0.00    0.00    5967/5967        Play [165]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [48]
[167]    0.0    0.00    0.00       2         Create [167]
                0.00    0.00      24/187         var_Inherit [130]
                0.00    0.00       6/1081        vlc_Log [62]
                0.00    0.00       2/2           GetFontSize [259]
                0.00    0.00       2/2           spu_get_attachments [368]
                0.00    0.00       4/4           Dummy_Select [697]
                0.00    0.00       2/2           FT_Init_FreeType [746]
                0.00    0.00       2/2           FT_New_Face [747]
                0.00    0.00       2/4           find_unicode_charmap [706]
                0.00    0.00       2/2           FT_Select_Charmap [755]
                0.00    0.00       2/2           FT_Set_Pixel_Sizes [756]
                0.00    0.00       2/2           FT_Stroker_New [762]
-----------------------------------------------
                                  48             var_TriggerCallback <cycle 5> [344]
                                1258             var_SetChecked <cycle 5> [212]
                0.00    0.00       9/732         var_Destroy [275]
                0.00    0.00      30/732         var_DelCallback [223]
                0.00    0.00      50/732         var_AddCallback [206]
[168]    0.0    0.00    0.00    1395         TriggerCallback <cycle 5> [168]
                0.00    0.00     608/25894       vlc_cond_broadcast [104]
                0.00    0.00     608/379055      vlc_mutex_lock [89]
                0.00    0.00     609/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/1           ReplayGainCallback [279]
                0.00    0.00       4/4           AboveCallback [418]
                0.00    0.00       2/2           SubMarginCallback [448]
                0.00    0.00       2/2           SubFilterCallback [447]
                0.00    0.00       2/2           SubSourceCallback [449]
                0.00    0.00       2/2           VideoFilterCallback [450]
                0.00    0.00       2/2           AspectCallback [444]
                0.00    0.00       2/2           CropCallback [445]
                0.00    0.00       2/2           ScaleCallback [446]
                0.00    0.00       1/1           input_scrambled_changed [463]
                0.00    0.00       1/1           input_seekable_changed [464]
                0.00    0.00       1/1           input_pausable_changed [462]
                0.00    0.00       1/1           EqualizerCallback [470]
                0.00    0.00       1/79          vlc_cond_wait [301]
                0.00    0.00       2/2           FullscreenCallback [763]
                                 577             input_event_changed <cycle 5> [180]
                                   2             WallPaperCallback <cycle 5> [775]
                                   2             ZoomCallback <cycle 5> [776]
                                   2             DeinterlaceCallback <cycle 5> [202]
                                   1             var_Copy <cycle 5> [1017]
-----------------------------------------------
                                   1             aout_volume_Delete <cycle 4> [370]
                                   2             input_DecoderDelete <cycle 4> [401]
                                   2             aout_FiltersPipelineDestroy <cycle 4> [492]
                                   4             FilterRelease <cycle 4> [421]
                0.00    0.00       1/49617       access_Delete [315]
                0.00    0.00       1/49617       demux_Delete [270]
                0.00    0.00       1/49617       StreamDelete <cycle 3> [314]
                0.00    0.00       1/49617       vout_DeleteDisplay [317]
                0.00    0.00       1/49617       aout_Destroy [291]
[169]    0.0    0.00    0.00      14         module_unneed <cycle 4> [169]
                0.00    0.00      14/1081        vlc_Log [62]
                0.00    0.00      14/41          module_get_object [600]
                                  14             vlc_module_unload <cycle 4> [639]
-----------------------------------------------
                                   2             input_resource_RequestVout <cycle 4> [207]
[170]    0.0    0.00    0.00       2         vout_Request <cycle 4> [170]
                0.00    0.00       1/1           vout_IntfInit [181]
                0.00    0.00       1/1           vout_InitInterlacingSupport [211]
                0.00    0.00       4/187         var_Inherit [130]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/2           vout_IntfReinit [260]
                0.00    0.00       1/5           vout_control_WaitEmpty [387]
                0.00    0.00       1/22          vlc_custom_create [347]
                0.00    0.00       1/3           vout_control_PushVoid [430]
                0.00    0.00       3/6831        vlc_mutex_init [536]
                0.00    0.00       1/1           VoutValidateFormat [944]
                0.00    0.00       1/1           vout_control_Init [1031]
                0.00    0.00       1/1           vout_snapshot_Init [1034]
                0.00    0.00       1/3           vlc_object_set_destructor [731]
                0.00    0.00       1/4           vlc_clone_attr [718]
                0.00    0.00       1/4           vlc_clone [717]
                                   2             spu_Attach <cycle 4> [282]
                                   1             spu_Create <cycle 4> [276]
-----------------------------------------------
                0.00    0.00       1/1           Create [155]
[171]    0.0    0.00    0.00       1         input_ConfigVarInit [171]
                0.00    0.00      52/224         var_Create [137]
                0.00    0.00      11/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       1/1           Init [163]
[172]    0.0    0.00    0.00       1         InputSourceInit [172]
                0.00    0.00       1/1           stream_AccessNew [188]
                0.00    0.00       2/2           demux_New [203]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       1/1           access_New [232]
                0.00    0.00       1/1           stream_FilterChainNew [284]
                0.00    0.00       1/224         var_Create [137]
                0.00    0.00       5/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       4/49510       stream_Control [64]
                0.00    0.00       5/2355        var_GetChecked [184]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       5/1285        demux_Control [555]
                0.00    0.00       1/1           input_SplitMRL [992]
                0.00    0.00       1/1           MRLSeekPoint [906]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [48]
[173]    0.0    0.00    0.00       2         OpenDecoder [173]
                0.00    0.00      10/1081        vlc_Log [62]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       3/3           convert_omx_to_profile_idc [724]
                0.00    0.00       1/1           jni_IsVideoPlayerActivityCreated [999]
                0.00    0.00       1/1           h264_get_profile_level [989]
                0.00    0.00       1/1           jni_LockAndGetAndroidJavaSurface [1000]
                0.00    0.00       1/1           jni_UnlockAndroidSurface [1002]
-----------------------------------------------
                0.00    0.00    6905/6905        Destroy [175]
[174]    0.0    0.00    0.00    6905         UnlockSurface [174]
                0.00    0.00    6906/13696       DisplayBuffer [157]
                0.00    0.00    6905/6905        UnlockCallback [531]
-----------------------------------------------
                0.00    0.00    6904/6904        picture_Release [51]
[175]    0.0    0.00    0.00    6904         Destroy [175]
                0.00    0.00    6905/6905        UnlockSurface [174]
-----------------------------------------------
                0.00    0.00       1/5975        aout_DecDelete <cycle 4> [341]
                0.00    0.00       1/5975        aout_DecNew [185]
                0.00    0.00       2/5975        aout_DecFlush [306]
                0.00    0.00       5/5975        aout_DecIsEmpty [327]
                0.00    0.00    5966/5975        aout_DecPlay [10]
[176]    0.0    0.00    0.00    5975         aout_OutputLock [176]
                0.00    0.00    5975/379055      vlc_mutex_lock [89]
-----------------------------------------------
                                   2             EsUnselect <cycle 4> [353]
                                   7             EsOutControl <cycle 4> [131]
[177]    0.0    0.00    0.00       9         es_out_Control <cycle 4> [177]
                0.00    0.00       8/1081        vlc_Log [62]
                0.00    0.00       2/2           input_DecoderWait [264]
                0.00    0.00       7/8           input_SendEventCache [281]
                0.00    0.00       7/432         input_clock_GetState [227]
                0.00    0.00       3/148270      mdate [90]
                0.00    0.00       2/4           input_DecoderStopWait [413]
                0.00    0.00       1/1           input_clock_ChangeSystemOrigin [489]
                                   2             DeleteDecoder <cycle 4> [72]
                                   2             input_DecoderDelete <cycle 4> [401]
                                   1             input_resource_TerminateVout <cycle 4> [822]
-----------------------------------------------
                0.00    0.00    6789/6789        ThreadDisplayPicture [24]
[178]    0.0    0.00    0.00    6789         vout_snapshot_IsRequested [178]
                0.00    0.00    6790/438508      vlc_mutex_unlock [88]
                0.00    0.00    6790/59584       vlc_mutex_trylock [499]
-----------------------------------------------
                                                 <spontaneous>
[179]    0.0    0.00    0.00                 vlc_cleanup_lock [179]
                0.00    0.00    6767/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                 577             TriggerCallback <cycle 5> [168]
[180]    0.0    0.00    0.00     577         input_event_changed <cycle 5> [180]
                0.00    0.00     863/880         libvlc_event_send [189]
                0.00    0.00    1287/2355        var_GetChecked [184]
                0.00    0.00       3/5           set_state [382]
                0.00    0.00       1/46          vlc_object_release [349]
                                   2             input_Control <cycle 5> [658]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [170]
[181]    0.0    0.00    0.00       1         vout_IntfInit [181]
                0.00    0.00      32/224         var_Create [137]
                0.00    0.00      17/50          var_AddCallback [206]
                0.00    0.00       1/2           vout_IntfReinit [260]
                0.00    0.00      36/1002        var_Change [198]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       3/2355        var_GetChecked [184]
                0.00    0.00      32/135         vlc_gettext [578]
-----------------------------------------------
                0.00    0.00    2553/2553        EsOutControl <cycle 4> [131]
[182]    0.0    0.00    0.00    2553         input_clock_GetWakeup [182]
                0.00    0.00    2553/379055      vlc_mutex_lock [89]
                0.00    0.00    2552/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00      15/15          var_Inherit [130]
[183]    0.0    0.00    0.00      15         config_GetFloat [183]
                0.00    0.00      15/1231        vlc_rwlock_rdlock [81]
                0.00    0.00      15/1229        vlc_rwlock_unlock [197]
                0.00    0.00      15/155         config_FindConfig [575]
-----------------------------------------------
                0.00    0.00       1/2355        aout_ChangeFilterString [471]
                0.00    0.00       1/2355        OpenDecoder [52]
                0.00    0.00       1/2355        OpenScaler [199]
                0.00    0.00       1/2355        input_SendEventProgramScrambled [335]
                0.00    0.00       1/2355        DeinterlaceIsPresent [469]
                0.00    0.00       1/2355        Create [155]
                0.00    0.00       1/2355        subtitles_Detect [243]
                0.00    0.00       1/2355        input_ControlVarInit [186]
                0.00    0.00       1/2355        vout_OpenWrapper [213]
                0.00    0.00       1/2355        aout_New [201]
                0.00    0.00       1/2355        aout_OutputNew [225]
                0.00    0.00       2/2355        EsSelect <cycle 4> [294]
                0.00    0.00       2/2355        EsUnselect <cycle 4> [353]
                0.00    0.00       2/2355        vout_InitInterlacingSupport [211]
                0.00    0.00       2/2355        MainLoop [14]
                0.00    0.00       2/2355        var_Get [435]
                0.00    0.00       2/2355        input_EsOutTimeshiftNew [219]
                0.00    0.00       3/2355        vout_IntfInit [181]
                0.00    0.00       3/2355        UpdatePtsDelay [268]
                0.00    0.00       5/2355        InputSourceInit [172]
                0.00    0.00       7/2355        ThreadStart [187]
                0.00    0.00       7/2355        input_EsOutNew [357]
                0.00    0.00       8/2355        libvlc_media_player_get_length [351]
                0.00    0.00       8/2355        libvlc_media_player_get_time [352]
                0.00    0.00      10/2355        DeinterlaceCallback <cycle 5> [202]
                0.00    0.00      17/2355        Init [163]
                0.00    0.00     426/2355        input_SendEventLength [224]
                0.00    0.00     551/2355        var_Inherit [130]
                0.00    0.00    1287/2355        input_event_changed <cycle 5> [180]
[184]    0.0    0.00    0.00    2355         var_GetChecked [184]
                0.00    0.00    2355/379055      vlc_mutex_lock [89]
                0.00    0.00    2356/438508      vlc_mutex_unlock [88]
                0.00    0.00    2357/4108        tfind [549]
                0.00    0.00    1799/3330        DupDummy [550]
                0.00    0.00      43/114         DupString [581]
-----------------------------------------------
                0.00    0.00       1/1           aout_update_format [80]
[185]    0.0    0.00    0.00       1         aout_DecNew [185]
                0.00    0.00       1/1           aout_FiltersNew [190]
                0.00    0.00       1/1           aout_OutputNew [225]
                0.00    0.00       1/1           aout_volume_SetFormat [319]
                0.00    0.00       1/1           aout_volume_New [333]
                0.00    0.00       1/13          var_Destroy [275]
                0.00    0.00       1/5977        aout_OutputUnlock [151]
                0.00    0.00       1/5975        aout_OutputLock [176]
-----------------------------------------------
                0.00    0.00       1/1           Create [155]
[186]    0.0    0.00    0.00       1         input_ControlVarInit [186]
                0.00    0.00      23/224         var_Create [137]
                0.00    0.00      17/50          var_AddCallback [206]
                0.00    0.00      16/1002        var_Change [198]
                0.00    0.00       1/2           var_Get [435]
                0.00    0.00       1/2355        var_GetChecked [184]
                0.00    0.00       9/135         vlc_gettext [578]
-----------------------------------------------
                0.00    0.00       1/1           Thread [17]
[187]    0.0    0.00    0.00       1         ThreadStart [187]
                0.00    0.00       1/1           vout_OpenWrapper [213]
                0.00    0.00       8/224         var_Create [137]
                0.00    0.00       1/1           video_format_Print [247]
                0.00    0.00       2/187         var_Inherit [130]
                0.00    0.00       1/1           var_InheritURational [277]
                0.00    0.00       7/2355        var_GetChecked [184]
                0.00    0.00       2/4           filter_chain_New [705]
                0.00    0.00       1/1           picture_fifo_New [1007]
                0.00    0.00       1/1           vout_InitWrapper [1028]
                0.00    0.00       1/82          vlc_ureduce [590]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [172]
[188]    0.0    0.00    0.00       1         stream_AccessNew [188]
                0.00    0.00       1/1           AStreamPrebufferStream [194]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/3           stream_CommonNew [429]
                0.00    0.00       1/49748       access_Control [280]
-----------------------------------------------
                0.00    0.00       1/880         input_scrambled_changed [463]
                0.00    0.00       1/880         input_pausable_changed [462]
                0.00    0.00       1/880         input_seekable_changed [464]
                0.00    0.00       1/880         input_item_duration_changed [461]
                0.00    0.00       1/880         input_item_preparsed_changed [384]
                0.00    0.00       1/880         libvlc_media_player_set_media [329]
                0.00    0.00       1/880         libvlc_media_player_stop [262]
                0.00    0.00       4/880         libvlc_media_set_state [397]
                0.00    0.00       6/880         input_item_meta_changed [383]
                0.00    0.00     863/880         input_event_changed <cycle 5> [180]
[189]    0.0    0.00    0.00     880         libvlc_event_send [189]
                0.00    0.00    1760/379055      vlc_mutex_lock [89]
                0.00    0.00    1759/438508      vlc_mutex_unlock [88]
                0.00    0.00     431/431         vlc_event_callback [560]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [185]
[190]    0.0    0.00    0.00       1         aout_FiltersNew [190]
                0.00    0.00       1/1           aout_FiltersPipelineCreate [205]
                0.00    0.00       3/187         var_Inherit [130]
                0.00    0.00       1/2           aout_FormatPrint [209]
                0.00    0.00       1/2           CreateFilter [285]
                0.00    0.00       3/50          var_AddCallback [206]
                0.00    0.00       1/12          aout_BitsPerSample [643]
-----------------------------------------------
                0.00    0.00     116/116         MainLoop [14]
[191]    0.0    0.00    0.00     116         input_SendEventStatistics [191]
                0.00    0.00     116/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_player_new [164]
                0.00    0.00       1/2           aout_update_format [80]
[192]    0.0    0.00    0.00       2         input_resource_GetAout [192]
                0.00    0.00       1/1           aout_New [201]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       3/379055      vlc_mutex_lock [89]
                0.00    0.00       3/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                  11             vlc_module_unload <cycle 4> [639]
[193]    0.0    0.00    0.00      11         generic_stop <cycle 4> [193]
                0.00    0.00       1/1           Close(vlc_object_t*) [204]
                0.00    0.00       1/1           CloseDecoder [236]
                0.00    0.00       1/1           Close [252]
                0.00    0.00       1/1           CloseScaler [360]
                0.00    0.00       2/2           Destroy [736]
                0.00    0.00       1/1           Close [885]
                0.00    0.00       1/1           Close [887]
                0.00    0.00       1/1           FileClose [901]
                0.00    0.00       1/1           Close [886]
                                   1             CloseDecoder <cycle 4> [888]
-----------------------------------------------
                0.00    0.00       1/1           stream_AccessNew [188]
[194]    0.0    0.00    0.00       1         AStreamPrebufferStream [194]
                0.00    0.00       3/1081        vlc_Log [62]
                0.00    0.00       1/493         AReadStream [85]
                0.00    0.00       4/148270      mdate [90]
                0.00    0.00       2/3101        vlc_object_alive [551]
-----------------------------------------------
                0.00    0.00       2/190         libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [320]
                0.00    0.00       3/190         libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [297]
                0.00    0.00       4/190         libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [265]
                0.00    0.00       4/190         libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [266]
                0.00    0.00     177/190         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [153]
[195]    0.0    0.00    0.00     190         libebml::IOCallback::readFully(void*, unsigned int) [195]
                0.00    0.00     190/32891       vlc_stream_io_callback::read(void*, unsigned int) [73]
-----------------------------------------------
                0.00    0.00     210/210         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[196]    0.0    0.00    0.00     210         libebml::EbmlUInteger::ValidateSize() const [196]
                0.00    0.00     210/63918       libebml::EbmlElement::GetSize() const [58]
-----------------------------------------------
                0.00    0.00      15/1229        config_GetFloat [183]
                0.00    0.00      45/1229        config_GetPsz [152]
                0.00    0.00      88/1229        config_GetInt [138]
                0.00    0.00    1081/1229        vlc_vaLog [63]
[197]    0.0    0.00    0.00    1229         vlc_rwlock_unlock [197]
                0.00    0.00    1229/379055      vlc_mutex_lock [89]
                0.00    0.00    1229/438508      vlc_mutex_unlock [88]
                0.00    0.00    1226/21091       vlc_cond_signal [512]
-----------------------------------------------
                0.00    0.00       1/1002        input_SendEventLength [224]
                0.00    0.00       1/1002        libvlc_video_get_track_count [433]
                0.00    0.00       1/1002        input_SendEventTitle [331]
                0.00    0.00       2/1002        input_ControlVarTitle [345]
                0.00    0.00       3/1002        VarListAdd [326]
                0.00    0.00       3/1002        input_SendEventState [325]
                0.00    0.00       4/1002        LanguageSplit [303]
                0.00    0.00       4/1002        input_ControlVarNavigation [288]
                0.00    0.00       6/1002        VarListDel [292]
                0.00    0.00       7/1002        VarListSelect [289]
                0.00    0.00       7/1002        aout_OutputNew [225]
                0.00    0.00       8/1002        input_SendEventCache [281]
                0.00    0.00      16/1002        input_ControlVarInit [186]
                0.00    0.00      19/1002        vout_InitInterlacingSupport [211]
                0.00    0.00      32/1002        aout_New [201]
                0.00    0.00      36/1002        vout_IntfInit [181]
                0.00    0.00     852/1002        input_SendEventPosition [161]
[198]    0.0    0.00    0.00    1002         var_Change [198]
                0.00    0.00    1002/379055      vlc_mutex_lock [89]
                0.00    0.00    1001/438508      vlc_mutex_unlock [88]
                0.00    0.00    1001/4108        tfind [549]
                0.00    0.00     965/1594        CheckValue [553]
                0.00    0.00     899/3330        DupDummy [550]
                0.00    0.00     886/1645        FreeDummy [552]
                0.00    0.00      59/114         DupString [581]
                0.00    0.00       6/46          CmpInt [598]
                0.00    0.00       4/114         FreeString [582]
                0.00    0.00       2/383         CmpString [563]
                0.00    0.00       1/14          CmpFloat [636]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [48]
[199]    0.0    0.00    0.00       2         OpenScaler [199]
                0.00    0.00       1/1           Init [221]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/224         var_Create [137]
                0.00    0.00       2/5           GetParameters [298]
                0.00    0.00       1/2355        var_GetChecked [184]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [117]
[200]    0.0    0.00    0.00       1         demux_sys_t::InitUi() [200]
                0.00    0.00       7/224         var_Create [137]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/1           demux_GetParentInput [960]
                0.00    0.00       1/6831        vlc_mutex_init [536]
                0.00    0.00       1/6808        vlc_cond_init [538]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_GetAout [192]
[201]    0.0    0.00    0.00       1         aout_New [201]
                0.00    0.00      10/224         var_Create [137]
                0.00    0.00       1/49617       module_need <cycle 4> [628]
                0.00    0.00      32/1002        var_Change [198]
                0.00    0.00       2/50          var_AddCallback [206]
                0.00    0.00       1/2355        var_GetChecked [184]
                0.00    0.00       1/22          vlc_custom_create [347]
                0.00    0.00      32/135         vlc_gettext [578]
                0.00    0.00       4/7           module_exists [659]
                0.00    0.00       3/6831        vlc_mutex_init [536]
                0.00    0.00       2/155         config_FindConfig [575]
                0.00    0.00       1/3           vlc_object_set_destructor [731]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [168]
[202]    0.0    0.00    0.00       2         DeinterlaceCallback <cycle 5> [202]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       2/224         var_Create [137]
                0.00    0.00      10/2355        var_GetChecked [184]
                0.00    0.00       2/3           vlc_inhibit_Destroy [728]
                                   2             var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       2/2           InputSourceInit [172]
[203]    0.0    0.00    0.00       2         demux_New [203]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       2/49617       module_need <cycle 4> [628]
                0.00    0.00       2/22          vlc_custom_create [347]
                0.00    0.00       1/46          vlc_object_release [349]
                0.00    0.00       2/4           make_path [710]
                0.00    0.00       2/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop <cycle 4> [193]
[204]    0.0    0.00    0.00       1         Close(vlc_object_t*) [204]
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [229]
                0.00    0.00       1/1           matroska_segment_c::UnSelect() [239]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersNew [190]
[205]    0.0    0.00    0.00       1         aout_FiltersPipelineCreate [205]
                0.00    0.00       1/1           aout_FormatsPrint [246]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/1           TryFormat [311]
                0.00    0.00       1/12          aout_BitsPerSample [643]
-----------------------------------------------
                0.00    0.00       1/50          spu_Attach <cycle 4> [282]
                0.00    0.00       1/50          libvlc_media_player_new [164]
                0.00    0.00       1/50          input_ControlVarNavigation [288]
                0.00    0.00       1/50          aout_volume_New [333]
                0.00    0.00       2/50          aout_New [201]
                0.00    0.00       3/50          vout_InitInterlacingSupport [211]
                0.00    0.00       3/50          aout_FiltersNew [190]
                0.00    0.00       4/50          libvlc_media_player_play [154]
                0.00    0.00      17/50          vout_IntfInit [181]
                0.00    0.00      17/50          input_ControlVarInit [186]
[206]    0.0    0.00    0.00      50         var_AddCallback [206]
                0.00    0.00      50/732         TriggerCallback <cycle 5> [168]
                0.00    0.00      50/379055      vlc_mutex_lock [89]
                0.00    0.00      50/438508      vlc_mutex_unlock [88]
                0.00    0.00      50/4108        tfind [549]
-----------------------------------------------
                                   1             DeleteDecoder <cycle 4> [72]
                                   1             vout_new_buffer <cycle 4> [30]
                                   2             input_resource_TerminateVout <cycle 4> [822]
[207]    0.0    0.00    0.00       4         input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       6/379055      vlc_mutex_lock [89]
                0.00    0.00       3/4           input_item_GetMeta [419]
                0.00    0.00       1/3           vout_Flush [393]
                0.00    0.00       6/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/1           vout_DisplayTitle [485]
                0.00    0.00       1/2           input_item_GetName [436]
                0.00    0.00       1/1           vout_FlushSubpictureChannel [486]
                0.00    0.00       1/46          vlc_object_release [349]
                0.00    0.00       1/6           input_GetItem [681]
                                   2             vout_Request <cycle 4> [170]
                                   1             vout_Close <cycle 4> [381]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [72]
                0.00    0.00       1/2           libvlc_media_player_new [164]
[208]    0.0    0.00    0.00       2         input_resource_PutAout [208]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/2           aout_FiltersNew [190]
                0.00    0.00       1/2           aout_OutputNew [225]
[209]    0.0    0.00    0.00       2         aout_FormatPrint [209]
                0.00    0.00       2/1081        vlc_Log [62]
                0.00    0.00       2/5           aout_FormatPrintChannels [689]
-----------------------------------------------
                0.00    0.00       1/5           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
                0.00    0.00       1/5           matroska_segment_c::Select(long long) <cycle 4> [217]
                0.00    0.00       1/5           matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [272]
                0.00    0.00       1/5           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00       1/5           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[210]    0.0    0.00    0.00       5         EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [210]
                0.00    0.00       5/187         var_Inherit [130]
                0.00    0.00       5/18          libebml::EbmlMaster::GetSize() const [16270]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [170]
[211]    0.0    0.00    0.00       1         vout_InitInterlacingSupport [211]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       3/224         var_Create [137]
                0.00    0.00       3/50          var_AddCallback [206]
                0.00    0.00      19/1002        var_Change [198]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       2/2355        var_GetChecked [184]
                0.00    0.00       1/1           DeinterlaceIsPresent [469]
                0.00    0.00      15/135         vlc_gettext [578]
                0.00    0.00       2/155         config_FindConfig [575]
-----------------------------------------------
                                   2             ZoomCallback <cycle 5> [776]
                                   2             DeinterlaceCallback <cycle 5> [202]
                                   4             input_SendEventMetaInfo <cycle 5> [364]
                                   4             var_Set <cycle 5> [716]
                0.00    0.00       1/732         input_SendEventLength [224]
                0.00    0.00       1/732         input_SendEventMetaEpg [369]
                0.00    0.00       1/732         vout_IntfInit [181]
                0.00    0.00       1/732         EsOutProgramSelect [220]
                0.00    0.00       1/732         vout_InitInterlacingSupport [211]
                0.00    0.00       1/732         libvlc_media_player_set_video_title_display [367]
                0.00    0.00       1/732         input_SendEventDead [366]
                0.00    0.00       1/732         input_SendEventAbort [365]
                0.00    0.00       1/732         input_SendEventTitle [331]
                0.00    0.00       1/732         aout_Destroy [291]
                0.00    0.00       1/732         vout_SetInterlacingState [136]
                0.00    0.00       2/732         input_SendEventProgramScrambled [335]
                0.00    0.00       2/732         input_SendEventVout [337]
                0.00    0.00       2/732         input_SendEventAout [336]
                0.00    0.00       2/732         Init [163]
                0.00    0.00       2/732         info_category_AddInfo [293]
                0.00    0.00       3/732         VarListAdd [326]
                0.00    0.00       3/732         input_SendEventMeta [322]
                0.00    0.00       3/732         input_SendEventState [325]
                0.00    0.00       4/732         libvlc_media_player_new [164]
                0.00    0.00       4/732         libvlc_media_player_set_equalizer [307]
                0.00    0.00       5/732         InputSourceInit [172]
                0.00    0.00       6/732         VarListDel [292]
                0.00    0.00       7/732         VarListSelect [289]
                0.00    0.00       8/732         input_SendEventCache [281]
                0.00    0.00      11/732         input_ConfigVarInit [171]
                0.00    0.00     116/732         input_SendEventStatistics [191]
                0.00    0.00     425/732         input_SendEventPosition [161]
[212]    0.0    0.00    0.00     628         var_SetChecked <cycle 5> [212]
                0.00    0.00     628/379055      vlc_mutex_lock [89]
                0.00    0.00     628/438508      vlc_mutex_unlock [88]
                0.00    0.00     629/4108        tfind [549]
                0.00    0.00     629/1594        CheckValue [553]
                0.00    0.00     624/3330        DupDummy [550]
                0.00    0.00     623/1645        FreeDummy [552]
                0.00    0.00       5/114         DupString [581]
                0.00    0.00       5/114         FreeString [582]
                                1258             TriggerCallback <cycle 5> [168]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [187]
[213]    0.0    0.00    0.00       1         vout_OpenWrapper [213]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       1/224         var_Create [137]
                0.00    0.00       1/1           vout_NewDisplay [309]
                0.00    0.00       1/2355        var_GetChecked [184]
-----------------------------------------------
                0.00    0.00       1/2           Close [252]
                0.00    0.00       1/2           vout_EndWrapper [253]
[214]    0.0    0.00    0.00       2         picture_pool_Delete [214]
                0.00    0.00      31/20463       picture_Release [51]
-----------------------------------------------
                0.00    0.00       1/1           Run [13]
[215]    0.0    0.00    0.00       1         End [215]
                0.00    0.00       1/1           input_ControlVarStop [255]
                0.00    0.00       1/1           InputSourceClean [269]
                0.00    0.00       2/4331        es_out_Control [74]
                0.00    0.00       1/4           input_ChangeState [323]
                0.00    0.00       1/1           input_resource_RequestSout [475]
                0.00    0.00       1/2           input_resource_SetInput [437]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/1           Destroy [897]
-----------------------------------------------
                                   2             Add <cycle 4> [410]
[216]    0.0    0.00    0.00       2         EsOutAdd <cycle 4> [216]
                0.00    0.00       1/1           EsOutProgramAdd [218]
                0.00    0.00       2/4           info_category_AddInfo [293]
                0.00    0.00       2/12          LanguageSplit [303]
                0.00    0.00       3/379055      vlc_mutex_lock [89]
                0.00    0.00       3/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/2           EsOutProgramFind [737]
                0.00    0.00       2/22          es_format_Copy [619]
                0.00    0.00       2/2           LanguageGetCode [765]
                0.00    0.00       1/97          vlc_fourcc_GetCodec [589]
                0.00    0.00       1/1           vlc_fourcc_GetCodecAudio [1022]
                0.00    0.00       1/82          vlc_ureduce [590]
                0.00    0.00       1/1           vlc_audio_replay_gain_MergeFromMeta [1019]
                                   2             EsOutSelect <cycle 4> [664]
-----------------------------------------------
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
[217]    0.0    0.00    0.00       1         matroska_segment_c::Select(long long) <cycle 4> [217]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [210]
                0.00    0.00       1/16581       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16293]
                                   3             es_out_Control(es_out_t*, int, ...) <cycle 4> [16292]
                                   2             Add <cycle 4> [410]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [216]
[218]    0.0    0.00    0.00       1         EsOutProgramAdd [218]
                0.00    0.00       1/1           EsOutProgramSelect [220]
                0.00    0.00       1/1           input_SendEventProgramAdd [362]
                0.00    0.00       1/2           input_clock_SetJitter [451]
                0.00    0.00       1/1           input_clock_New [995]
-----------------------------------------------
                0.00    0.00       1/1           Init [163]
[219]    0.0    0.00    0.00       1         input_EsOutTimeshiftNew [219]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       2/224         var_Create [137]
                0.00    0.00       2/2355        var_GetChecked [184]
                0.00    0.00       1/5           vlc_mutex_init_recursive [695]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [218]
[220]    0.0    0.00    0.00       1         EsOutProgramSelect [220]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       4/6           VarListDel [292]
                0.00    0.00       1/1           input_SendEventProgramScrambled [335]
                0.00    0.00       1/6           VarListSelect [289]
                0.00    0.00       1/3           input_SendEventMeta [322]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       2/3           input_item_SetMeta [376]
                0.00    0.00       3/5           input_SendEventEsDel [692]
                0.00    0.00       1/1           input_SendEventProgramSelect [990]
                0.00    0.00       1/1           input_SendEventTeletextDel [991]
-----------------------------------------------
                0.00    0.00       1/1           OpenScaler [199]
[221]    0.0    0.00    0.00       1         Init [221]
                0.00    0.00       2/2           sws_getContext [222]
                0.00    0.00       2/5           GetParameters [298]
                0.00    0.00       4/4           picture_New [711]
                0.00    0.00       1/3           video_format_IsSimilar [727]
-----------------------------------------------
                0.00    0.00       2/2           Init [221]
[222]    0.0    0.00    0.00       2         sws_getContext [222]
                0.00    0.00       2/2           sws_init_context [226]
                0.00    0.00       2/2           sws_alloc_context [338]
                0.00    0.00       2/2           sws_setColorspaceDetails [838]
-----------------------------------------------
                0.00    0.00       1/34          spu_Attach <cycle 4> [282]
                0.00    0.00       1/34          aout_OutputDelete [377]
                0.00    0.00       1/34          aout_volume_Delete <cycle 4> [370]
                0.00    0.00       1/34          input_ControlVarStop [255]
                0.00    0.00       2/34          aout_Destroy [291]
                0.00    0.00       3/34          aout_FiltersDelete <cycle 4> [328]
                0.00    0.00       4/34          release_input_thread [302]
                0.00    0.00      21/34          InputDelCallbacks [257]
[223]    0.0    0.00    0.00      34         var_DelCallback [223]
                0.00    0.00      30/732         TriggerCallback <cycle 5> [168]
                0.00    0.00      34/379055      vlc_mutex_lock [89]
                0.00    0.00      34/438508      vlc_mutex_unlock [88]
                0.00    0.00      34/4108        tfind [549]
-----------------------------------------------
                0.00    0.00       1/426         Init [163]
                0.00    0.00     425/426         EsOutControl <cycle 4> [131]
[224]    0.0    0.00    0.00     426         input_SendEventLength [224]
                0.00    0.00     426/2355        var_GetChecked [184]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       1/1           input_item_SetDuration [411]
                0.00    0.00       1/1002        var_Change [198]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [185]
[225]    0.0    0.00    0.00       1         aout_OutputNew [225]
                0.00    0.00       1/2           aout_FormatPrint [209]
                0.00    0.00       1/224         var_Create [137]
                0.00    0.00       7/1002        var_Change [198]
                0.00    0.00       1/2355        var_GetChecked [184]
                0.00    0.00       1/1           var_Type [480]
                0.00    0.00       5/135         vlc_gettext [578]
                0.00    0.00       2/7           aout_FormatPrepare [656]
                0.00    0.00       1/12          aout_BitsPerSample [643]
                0.00    0.00       1/1           Start [938]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [222]
[226]    0.0    0.00    0.00       2         sws_init_context [226]
                0.00    0.00      16/29865       av_mallocz [54]
                0.00    0.00       8/8           sws_getCachedContext [261]
                0.00    0.00      24/30114       av_malloc [505]
                0.00    0.00      12/25          av_pix_fmt_desc_get [613]
                0.00    0.00       4/6           av_get_bits_per_pixel [669]
                0.00    0.00       2/13          av_get_cpu_flags [640]
                0.00    0.00       2/2           sws_isSupportedInput [836]
                0.00    0.00       2/2           sws_isSupportedOutput [837]
                0.00    0.00       2/2           ff_getSwsFunc [806]
                0.00    0.00       1/1           sws_rgb2rgb_init [1015]
-----------------------------------------------
                0.00    0.00       7/432         es_out_Control <cycle 4> [177]
                0.00    0.00     425/432         EsOutControl <cycle 4> [131]
[227]    0.0    0.00    0.00     432         input_clock_GetState [227]
                0.00    0.00     432/379055      vlc_mutex_lock [89]
                0.00    0.00     432/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [230]
[228]    0.0    0.00    0.00       1         demux_sys_t::CleanUi() [228]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       7/13          var_Destroy [275]
                0.00    0.00       1/46          vlc_object_release [349]
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16511]
-----------------------------------------------
                0.00    0.00       1/1           Close(vlc_object_t*) [204]
[229]    0.0    0.00    0.00       1         demux_sys_t::~demux_sys_t() [229]
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [230]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [229]
[230]    0.0    0.00    0.00       1         demux_sys_t::~demux_sys_t() [230]
                0.00    0.00       1/1           demux_sys_t::CleanUi() [228]
                0.00    0.00       1/1           libebml::EbmlStream::~EbmlStream() [16542]
                0.00    0.00       1/1           vlc_stream_io_callback::~vlc_stream_io_callback() [16532]
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16529]
                0.00    0.00       1/1           virtual_segment_c::~virtual_segment_c() [16524]
                0.00    0.00       1/2           vlc_meta_Delete [869]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00     425/425         EsOutControl <cycle 4> [131]
[231]    0.0    0.00    0.00     425         input_clock_Update [231]
                0.00    0.00     425/379055      vlc_mutex_lock [89]
                0.00    0.00     425/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [172]
[232]    0.0    0.00    0.00       1         access_New [232]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/49617       module_need <cycle 4> [628]
                0.00    0.00       1/22          vlc_custom_create [347]
                0.00    0.00       1/1           get_path [988]
-----------------------------------------------
                0.00    0.00       1/410         libvlc_media_player_stop [262]
                0.00    0.00     409/410         libvlc_media_player_is_playing [234]
[233]    0.0    0.00    0.00     410         libvlc_media_player_get_state [233]
                0.00    0.00     411/379055      vlc_mutex_lock [89]
                0.00    0.00     408/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00     407/407         Java_org_videolan_libvlc_LibVLC_isPlaying [235]
[234]    0.0    0.00    0.00     407         libvlc_media_player_is_playing [234]
                0.00    0.00     409/410         libvlc_media_player_get_state [233]
-----------------------------------------------
                                                 <spontaneous>
[235]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_isPlaying [235]
                0.00    0.00     407/407         libvlc_media_player_is_playing [234]
                0.00    0.00     409/427         getMediaPlayer [562]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop <cycle 4> [193]
[236]    0.0    0.00    0.00       1         CloseDecoder [236]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/1           avcodec_close [324]
                0.00    0.00       2/6           vlc_global_mutex [431]
                0.00    0.00       2/71950       av_free [496]
-----------------------------------------------
                0.00    0.00       1/1           Thread [17]
[237]    0.0    0.00    0.00       1         ThreadStop [237]
                0.00    0.00       1/1           vout_EndWrapper [253]
                0.00    0.00       1/1           vout_CloseWrapper [316]
                0.00    0.00       1/5           ThreadFlush [299]
                0.00    0.00       1/1           picture_fifo_Delete [484]
                0.00    0.00       2/4           filter_chain_Delete [703]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::UnSelect() [239]
[238]    0.0    0.00    0.00       2         Del [238]
                0.00    0.00       2/2           CmdExecuteDel [240]
                0.00    0.00       2/148270      mdate [90]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/25357       TsStop [507]
-----------------------------------------------
                0.00    0.00       1/1           Close(vlc_object_t*) [204]
[239]    0.0    0.00    0.00       1         matroska_segment_c::UnSelect() [239]
                0.00    0.00       2/2           Del [238]
                0.00    0.00       1/2           event_thread_t::ResetPci() [16414]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16293]
-----------------------------------------------
                0.00    0.00       2/2           Del [238]
[240]    0.0    0.00    0.00       2         CmdExecuteDel [240]
                0.00    0.00       2/2           EsOutDel [241]
-----------------------------------------------
                0.00    0.00       2/2           CmdExecuteDel [240]
[241]    0.0    0.00    0.00       2         EsOutDel [241]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       2/12          LanguageSplit [303]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/32          es_format_Clean [608]
-----------------------------------------------
                0.00    0.00       3/6           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       3/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[242]    0.0    0.00    0.00       6         libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00      36/32891       vlc_stream_io_callback::read(void*, unsigned int) [73]
                0.00    0.00      11/16337       vlc_stream_io_callback::getFilePointer() [116]
                0.00    0.00      15/29867       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16178]
                0.00    0.00       5/137         libebml::EbmlMaster::ValidateSize() const [16221]
                0.00    0.00       5/5           libebml::EbmlMaster::SetSizeInfinite(bool) [16294]
                0.00    0.00       1/2           libmatroska::KaxCues::Create() [16407]
                0.00    0.00       1/2           libmatroska::KaxTracks::Create() [16411]
                0.00    0.00       1/4           libmatroska::KaxInfo::Create() [16307]
                0.00    0.00       1/1           libmatroska::KaxSegment::Create() [16490]
                0.00    0.00       1/1           libebml::EbmlHead::Create() [16545]
-----------------------------------------------
                0.00    0.00       1/1           Init [163]
[243]    0.0    0.00    0.00       1         subtitles_Detect [243]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/2355        var_GetChecked [184]
                0.00    0.00      16/16          vlc_readdir [635]
                0.00    0.00      13/13          subtitles_Filter [641]
                0.00    0.00       5/5           vlc_opendir [696]
                0.00    0.00       2/2           strcpy_strip_ext [833]
                0.00    0.00       2/2           strcpy_trim [834]
                0.00    0.00       1/4           make_path [710]
-----------------------------------------------
                0.00    0.00       1/5           Open [300]
                0.00    0.00       4/5           vout_display_Control [256]
[244]    0.0    0.00    0.00       5         Control [244]
                0.00    0.00       1/1           VoutDisplayEvent [245]
-----------------------------------------------
                0.00    0.00       1/1           Control [244]
[245]    0.0    0.00    0.00       1         VoutDisplayEvent [245]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersPipelineCreate [205]
[246]    0.0    0.00    0.00       1         aout_FormatsPrint [246]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       2/5           aout_FormatPrintChannels [689]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [187]
[247]    0.0    0.00    0.00       1         video_format_Print [247]
                0.00    0.00       1/1081        vlc_Log [62]
-----------------------------------------------
                0.00    0.00       3/120         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00      51/120         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.00      66/120         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
[248]    0.0    0.00    0.00     120         EbmlParser::Up() [248]
                0.00    0.00       1/1081        vlc_Log [62]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[249]    0.0    0.00    0.00       1         FileOpen [249]
                0.00    0.00       1/1081        vlc_Log [62]
                0.00    0.00       1/1           vlc_open [1027]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[250]    0.0    0.00    0.00       1         Open [250]
                0.00    0.00       1/1081        vlc_Log [62]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[251]    0.0    0.00    0.00       1         Open [251]
                0.00    0.00       1/1081        vlc_Log [62]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop <cycle 4> [193]
[252]    0.0    0.00    0.00       1         Close [252]
                0.00    0.00       1/2           picture_pool_Delete [214]
                0.00    0.00       1/20463       picture_Release [51]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [237]
[253]    0.0    0.00    0.00       1         vout_EndWrapper [253]
                0.00    0.00       1/2           picture_pool_Delete [214]
-----------------------------------------------
                                   1             spu_Create <cycle 4> [276]
                                   1             spu_Attach <cycle 4> [282]
[254]    0.0    0.00    0.00       2         SpuRenderCreateAndLoadText <cycle 4> [254]
                0.00    0.00       4/224         var_Create [137]
                0.00    0.00       2/22          vlc_custom_create [347]
                0.00    0.00       4/22          es_format_Init [620]
                                   2             module_need <cycle 4> [628]
-----------------------------------------------
                0.00    0.00       1/1           End [215]
[255]    0.0    0.00    0.00       1         input_ControlVarStop [255]
                0.00    0.00       3/3           InputDelCallbacks [257]
                0.00    0.00       1/34          var_DelCallback [223]
-----------------------------------------------
                0.00    0.00       4/4           vout_ManageDisplay [37]
[256]    0.0    0.00    0.00       4         vout_display_Control [256]
                0.00    0.00       4/5           Control [244]
-----------------------------------------------
                0.00    0.00       3/3           input_ControlVarStop [255]
[257]    0.0    0.00    0.00       3         InputDelCallbacks [257]
                0.00    0.00      21/34          var_DelCallback [223]
-----------------------------------------------
                0.00    0.00       3/3           Create [155]
[258]    0.0    0.00    0.00       3         var_OptionParse [258]
                0.00    0.00       3/224         var_Create [137]
                0.00    0.00       3/732         var_Set <cycle 5> [716]
                0.00    0.00       3/3           config_GetType [723]
-----------------------------------------------
                0.00    0.00       2/2           Create [167]
[259]    0.0    0.00    0.00       2         GetFontSize [259]
                0.00    0.00       2/187         var_Inherit [130]
-----------------------------------------------
                0.00    0.00       1/2           vout_Request <cycle 4> [170]
                0.00    0.00       1/2           vout_IntfInit [181]
[260]    0.0    0.00    0.00       2         vout_IntfReinit [260]
                0.00    0.00      18/732         var_TriggerCallback <cycle 5> [344]
-----------------------------------------------
                0.00    0.00       8/8           sws_init_context [226]
[261]    0.0    0.00    0.00       8         sws_getCachedContext [261]
                0.00    0.00      16/29865       av_mallocz [54]
                0.00    0.00      24/30114       av_malloc [505]
                0.00    0.00      16/71950       av_free [496]
                0.00    0.00       8/71746       av_freep [497]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_stop [263]
[262]    0.0    0.00    0.00       1         libvlc_media_player_stop [262]
                0.00    0.00       1/1           input_resource_Terminate [273]
                0.00    0.00       1/2           release_input_thread [302]
                0.00    0.00       1/5           set_state [382]
                0.00    0.00       1/880         libvlc_event_send [189]
                0.00    0.00       1/410         libvlc_media_player_get_state [233]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                                 <spontaneous>
[263]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_stop [263]
                0.00    0.00       1/1           libvlc_media_player_stop [262]
                0.00    0.00       1/427         getMediaPlayer [562]
-----------------------------------------------
                0.00    0.00       2/2           es_out_Control <cycle 4> [177]
[264]    0.0    0.00    0.00       2         input_DecoderWait [264]
                0.00    0.00      19/19          block_FifoWake [267]
                0.00    0.00      19/79          vlc_cond_wait [301]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
[265]    0.0    0.00    0.00       4         libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [265]
                0.00    0.00      24/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00       4/190         libebml::IOCallback::readFully(void*, unsigned int) [195]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
[266]    0.0    0.00    0.00       4         libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [266]
                0.00    0.00      24/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00       4/190         libebml::IOCallback::readFully(void*, unsigned int) [195]
                0.00    0.00       4/4           libebml::UTFstring::UpdateFromUTF8() [16315]
                0.00    0.00       4/4           libebml::UTFstring::SetUTF8(std::string const&) [16316]
-----------------------------------------------
                0.00    0.00      19/19          input_DecoderWait [264]
[267]    0.0    0.00    0.00      19         block_FifoWake [267]
                0.00    0.00      19/25894       vlc_cond_broadcast [104]
                0.00    0.00      19/379055      vlc_mutex_lock [89]
                0.00    0.00      19/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           Init [163]
[268]    0.0    0.00    0.00       1         UpdatePtsDelay [268]
                0.00    0.00       3/4331        es_out_Control [74]
                0.00    0.00       3/2355        var_GetChecked [184]
-----------------------------------------------
                0.00    0.00       1/1           End [215]
[269]    0.0    0.00    0.00       1         InputSourceClean [269]
                0.00    0.00       1/1           demux_Delete [270]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceClean [269]
[270]    0.0    0.00    0.00       1         demux_Delete [270]
                0.00    0.00       1/1           stream_Delete <cycle 3> [312]
                0.00    0.00       1/49617       module_unneed <cycle 4> [169]
                0.00    0.00       1/46          vlc_object_release [349]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [118]
[271]    0.0    0.00    0.00       1         EbmlParser::Reset(demux_t*) [271]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       1/16581       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16309]
                0.00    0.00       1/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16246]
-----------------------------------------------
                                   1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
[272]    0.0    0.00    0.00       1         matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [272]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [210]
                0.00    0.00       1/16581       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [43]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16293]
                                   2             es_out_Control(es_out_t*, int, ...) <cycle 4> [16292]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_stop [262]
[273]    0.0    0.00    0.00       1         input_resource_Terminate [273]
                0.00    0.00       1/1           input_resource_ResetAout [290]
                0.00    0.00       1/49617       input_resource_TerminateVout <cycle 4> [822]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           Init [163]
[274]    0.0    0.00    0.00       1         InitTitle [274]
                0.00    0.00       1/1           input_ControlVarNavigation [288]
                0.00    0.00       1/1           input_SendEventTitle [331]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/13          spu_Attach <cycle 4> [282]
                0.00    0.00       1/13          aout_DecDelete <cycle 4> [341]
                0.00    0.00       1/13          input_ControlVarNavigation [288]
                0.00    0.00       1/13          aout_DecNew [185]
                0.00    0.00       2/13          input_ControlVarTitle [345]
                0.00    0.00       7/13          demux_sys_t::CleanUi() [228]
[275]    0.0    0.00    0.00      13         var_Destroy [275]
                0.00    0.00       9/732         TriggerCallback <cycle 5> [168]
                0.00    0.00      13/379055      vlc_mutex_lock [89]
                0.00    0.00      13/438508      vlc_mutex_unlock [88]
                0.00    0.00      13/4108        tfind [549]
                0.00    0.00       8/8           tdelete [655]
                0.00    0.00       8/158         Destroy [574]
-----------------------------------------------
                                   1             vout_Request <cycle 4> [170]
[276]    0.0    0.00    0.00       1         spu_Create <cycle 4> [276]
                0.00    0.00       1/187         var_Inherit [130]
                0.00    0.00       1/22          vlc_custom_create [347]
                0.00    0.00       3/6831        vlc_mutex_init [536]
                0.00    0.00       2/4           filter_chain_New [705]
                                   2             SpuRenderCreateAndLoadScale <cycle 4> [442]
                                   1             SpuRenderCreateAndLoadText <cycle 4> [254]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [187]
[277]    0.0    0.00    0.00       1         var_InheritURational [277]
                0.00    0.00       1/187         var_Inherit [130]
-----------------------------------------------
                0.00    0.00       5/49753       AStreamControl [112]
                0.00    0.00   49748/49753       access_Control [280]
[278]    0.0    0.00    0.00   49753         FileControl [278]
                0.00    0.00       1/187         var_Inherit [130]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [168]
[279]    0.0    0.00    0.00       1         ReplayGainCallback [279]
                0.00    0.00       1/187         var_Inherit [130]
-----------------------------------------------
                0.00    0.00       1/49748       stream_AccessNew [188]
                0.00    0.00   16584/49748       AStreamControl [112]
                0.00    0.00   33163/49748       AStreamSeekStream [114]
[280]    0.0    0.00    0.00   49748         access_Control [280]
                0.00    0.00   49748/49753       FileControl [278]
-----------------------------------------------
                0.00    0.00       1/8           Init [163]
                0.00    0.00       7/8           es_out_Control <cycle 4> [177]
[281]    0.0    0.00    0.00       8         input_SendEventCache [281]
                0.00    0.00       8/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       8/1002        var_Change [198]
-----------------------------------------------
                                   2             vout_Request <cycle 4> [170]
[282]    0.0    0.00    0.00       2         spu_Attach <cycle 4> [282]
                0.00    0.00       1/224         var_Create [137]
                0.00    0.00       1/50          var_AddCallback [206]
                0.00    0.00       1/34          var_DelCallback [223]
                0.00    0.00       1/13          var_Destroy [275]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                                   2             FilterRelease <cycle 4> [421]
                                   1             SpuRenderCreateAndLoadText <cycle 4> [254]
-----------------------------------------------
                0.00    0.00       2/2           stream_FilterChainNew [284]
[283]    0.0    0.00    0.00       2         stream_FilterNew [283]
                0.00    0.00       2/49617       module_need <cycle 4> [628]
                0.00    0.00       2/3           stream_CommonNew [429]
                0.00    0.00       1/3           stream_CommonDelete [468]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [172]
[284]    0.0    0.00    0.00       1         stream_FilterChainNew [284]
                0.00    0.00       2/2           stream_FilterNew [283]
-----------------------------------------------
                0.00    0.00       1/2           TryFormat [311]
                0.00    0.00       1/2           aout_FiltersNew [190]
[285]    0.0    0.00    0.00       2         CreateFilter [285]
                0.00    0.00       2/49617       module_need <cycle 4> [628]
                0.00    0.00       2/22          vlc_custom_create [347]
-----------------------------------------------
                0.00    0.00       2/2           Init [163]
[286]    0.0    0.00    0.00       2         ControlPause [286]
                0.00    0.00       1/4331        es_out_Control [74]
                0.00    0.00       1/49617       module_need <cycle 4> [628]
                0.00    0.00       1/22          vlc_custom_create [347]
                0.00    0.00       1/46          vlc_object_release [349]
                0.00    0.00       3/1285        demux_Control [555]
                0.00    0.00       1/2           vlc_meta_Delete [869]
-----------------------------------------------
[287]    0.0    0.00    0.00       1+2       <cycle 3 as a whole> [287]
                0.00    0.00       2             stream_Delete <cycle 3> [312]
                0.00    0.00       1             StreamDelete <cycle 3> [314]
-----------------------------------------------
                0.00    0.00       1/1           InitTitle [274]
[288]    0.0    0.00    0.00       1         input_ControlVarNavigation [288]
                0.00    0.00       1/224         var_Create [137]
                0.00    0.00       1/50          var_AddCallback [206]
                0.00    0.00       1/13          var_Destroy [275]
                0.00    0.00       4/1002        var_Change [198]
                0.00    0.00       1/1           secstotimestr [1012]
-----------------------------------------------
                0.00    0.00       1/6           EsUnselect <cycle 4> [353]
                0.00    0.00       1/6           EsOutProgramSelect [220]
                0.00    0.00       4/6           EsSelect <cycle 4> [294]
[289]    0.0    0.00    0.00       6         VarListSelect [289]
                0.00    0.00       7/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       7/1002        var_Change [198]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_Terminate [273]
[290]    0.0    0.00    0.00       1         input_resource_ResetAout [290]
                0.00    0.00       1/1           aout_Destroy [291]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_ResetAout [290]
[291]    0.0    0.00    0.00       1         aout_Destroy [291]
                0.00    0.00       1/49617       module_unneed <cycle 4> [169]
                0.00    0.00       2/34          var_DelCallback [223]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       1/5977        aout_OutputUnlock [151]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/46          vlc_object_release [349]
-----------------------------------------------
                0.00    0.00       2/6           LanguageSplit [303]
                0.00    0.00       4/6           EsOutProgramSelect [220]
[292]    0.0    0.00    0.00       6         VarListDel [292]
                0.00    0.00       6/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       6/1002        var_Change [198]
-----------------------------------------------
                                  23             info_category_AddInfo [293]
                0.00    0.00       2/4           EsOutAdd <cycle 4> [216]
                0.00    0.00       2/4           EsOutSend [123]
[293]    0.0    0.00    0.00       4+23      info_category_AddInfo [293]
                0.00    0.00       4/732         input_Control <cycle 5> [658]
                0.00    0.00       2/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       4/4           input_item_UpdateTracksInfo [414]
                0.00    0.00      38/135         vlc_gettext [578]
                0.00    0.00       5/6           vlc_fourcc_GetDescription [687]
                0.00    0.00       4/6           input_GetItem [681]
                0.00    0.00       1/12          aout_BitsPerSample [643]
                0.00    0.00       1/5           aout_FormatPrintChannels [689]
                                  23             info_category_AddInfo [293]
-----------------------------------------------
                                   2             EsOutSelect <cycle 4> [664]
[294]    0.0    0.00    0.00       2         EsSelect <cycle 4> [294]
                0.00    0.00       4/6           VarListSelect [289]
                0.00    0.00       2/12          LanguageSplit [303]
                0.00    0.00       2/2355        var_GetChecked [184]
                0.00    0.00       2/7708        EsIsSelected [529]
                0.00    0.00       2/4           input_SendEventEsSelect [708]
                0.00    0.00       2/2           input_SendEventTeletextSelect [819]
                                   2             EsCreateDecoder <cycle 4> [342]
-----------------------------------------------
                0.00    0.00       3/3           aout_OutputFlush [296]
[295]    0.0    0.00    0.00       3         Flush [295]
                0.00    0.00       1/5967        TimeGet [49]
                0.00    0.00       1/1           msleep [385]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/25142       block_generic_Release [510]
-----------------------------------------------
                0.00    0.00       1/3           aout_DecIsEmpty [327]
                0.00    0.00       2/3           aout_DecFlush [306]
[296]    0.0    0.00    0.00       3         aout_OutputFlush [296]
                0.00    0.00       3/3           Flush [295]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
[297]    0.0    0.00    0.00       3         libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [297]
                0.00    0.00       9/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00       3/190         libebml::IOCallback::readFully(void*, unsigned int) [195]
-----------------------------------------------
                0.00    0.00       1/5           CloseScaler [360]
                0.00    0.00       2/5           Init [221]
                0.00    0.00       2/5           OpenScaler [199]
[298]    0.0    0.00    0.00       5         GetParameters [298]
                0.00    0.00       4/20463       picture_Release [51]
                0.00    0.00       6/6           GetFfmpegChroma [668]
                0.00    0.00       6/6           FixParameters [667]
                0.00    0.00       2/71950       av_free [496]
                0.00    0.00       2/2           sws_freeContext [835]
-----------------------------------------------
                0.00    0.00       1/5           ThreadStop [237]
                0.00    0.00       4/5           Thread [17]
[299]    0.0    0.00    0.00       5         ThreadFlush [299]
                0.00    0.00       2/20463       picture_Release [51]
                0.00    0.00       5/8           VoutVideoFilterStaticNewPicture [310]
                0.00    0.00       5/6           picture_fifo_Flush [403]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[300]    0.0    0.00    0.00       1         Open [300]
                0.00    0.00       1/5           Control [244]
                0.00    0.00      31/36          picture_NewFromResource [605]
                0.00    0.00       1/1           LoadNativeWindowAPI [905]
                0.00    0.00       1/5           picture_NewFromFormat [693]
                0.00    0.00       1/1           picture_pool_NewExtended [1008]
-----------------------------------------------
                0.00    0.00       1/79          TriggerCallback <cycle 5> [168]
                0.00    0.00       2/79          DeleteDecoder <cycle 4> [72]
                0.00    0.00       2/79          DecoderFlush [348]
                0.00    0.00       4/79          vlc_sem_wait [406]
                0.00    0.00       5/79          vout_control_WaitEmpty [387]
                0.00    0.00      19/79          input_DecoderWait [264]
                0.00    0.00      46/79          block_FifoGet [68]
[301]    0.0    0.00    0.00      79         vlc_cond_wait [301]
                0.00    0.00     152/438508      vlc_mutex_unlock [88]
                0.00    0.00     152/65688       vlc_testcancel [498]
                0.00    0.00     152/59584       vlc_mutex_trylock [499]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_player_set_media [329]
                0.00    0.00       1/2           libvlc_media_player_stop [262]
[302]    0.0    0.00    0.00       2         release_input_thread [302]
                0.00    0.00       4/34          var_DelCallback [223]
                0.00    0.00       1/1           input_Stop [392]
                0.00    0.00       1/1           input_Close [465]
                0.00    0.00       1/1           input_ControlPush [472]
-----------------------------------------------
                0.00    0.00       2/12          EsSelect <cycle 4> [294]
                0.00    0.00       2/12          EsOutDel [241]
                0.00    0.00       2/12          EsOutAdd <cycle 4> [216]
                0.00    0.00       2/12          input_EsOutNew [357]
                0.00    0.00       4/12          EsOutControl <cycle 4> [131]
[303]    0.0    0.00    0.00      12         LanguageSplit [303]
                0.00    0.00       2/6           VarListDel [292]
                0.00    0.00       2/2           input_SendEventEsAdd [334]
                0.00    0.00       4/1002        var_Change [198]
                0.00    0.00       1/1           input_DecoderChangeDelay [488]
                0.00    0.00       4/135         vlc_gettext [578]
                0.00    0.00       2/5           input_SendEventEsDel [692]
-----------------------------------------------
                0.00    0.00      27/27          EsOutControl <cycle 4> [131]
[304]    0.0    0.00    0.00      27         input_DecoderIsEmpty [304]
                0.00    0.00       5/5           aout_DecIsEmpty [327]
                0.00    0.00       5/5           vout_IsEmpty [386]
                0.00    0.00      10/379055      vlc_mutex_lock [89]
                0.00    0.00      10/438508      vlc_mutex_unlock [88]
                0.00    0.00      27/29          block_FifoCount [611]
-----------------------------------------------
                0.00    0.00       1/17          input_item_SetPreparsed [412]
                0.00    0.00       1/17          input_item_SetDuration [411]
                0.00    0.00       1/17          input_item_SetEpgOffline [407]
                0.00    0.00       3/17          input_item_SetMeta [376]
                0.00    0.00       3/17          input_SendEventMeta [322]
                0.00    0.00       4/17          input_item_ReplaceInfos [356]
                0.00    0.00       4/17          input_SendEventMetaInfo <cycle 5> [364]
[305]    0.0    0.00    0.00      17         vlc_event_send [305]
                0.00    0.00      34/379055      vlc_mutex_lock [89]
                0.00    0.00      34/438508      vlc_mutex_unlock [88]
                0.00    0.00       6/6           input_item_meta_changed [383]
                0.00    0.00       1/1           input_item_preparsed_changed [384]
                0.00    0.00       1/1           input_item_duration_changed [461]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [72]
                0.00    0.00       1/2           DecoderDecodeAudio [3]
[306]    0.0    0.00    0.00       2         aout_DecFlush [306]
                0.00    0.00       2/3           aout_OutputFlush [296]
                0.00    0.00       2/5977        aout_OutputUnlock [151]
                0.00    0.00       2/5975        aout_OutputLock [176]
-----------------------------------------------
                                                 <spontaneous>
[307]    0.0    0.00    0.00                 libvlc_media_player_set_equalizer [307]
                0.00    0.00       4/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       1/1           input_resource_HoldAout [474]
                0.00    0.00       1/46          vlc_object_release [349]
-----------------------------------------------
                0.00    0.00       1/1           vout_NewDisplay [309]
[308]    0.0    0.00    0.00       1         DisplayNew [308]
                0.00    0.00       1/49617       module_need <cycle 4> [628]
                0.00    0.00       1/148270      mdate [90]
                0.00    0.00       1/22          vlc_custom_create [347]
                0.00    0.00       1/1           vout_display_GetDefaultDisplaySize [1032]
                0.00    0.00       1/6831        vlc_mutex_init [536]
                0.00    0.00       1/1           VoutDisplayCreateRender [943]
-----------------------------------------------
                0.00    0.00       1/1           vout_OpenWrapper [213]
[309]    0.0    0.00    0.00       1         vout_NewDisplay [309]
                0.00    0.00       1/1           DisplayNew [308]
-----------------------------------------------
                0.00    0.00       1/8           Thread [17]
                0.00    0.00       2/8           ThreadChangeFilters [361]
                0.00    0.00       5/8           ThreadFlush [299]
[310]    0.0    0.00    0.00       8         VoutVideoFilterStaticNewPicture [310]
                0.00    0.00       2/20463       picture_Release [51]
                0.00    0.00       1/1           vout_control_Dead [390]
                0.00    0.00       7/379055      vlc_mutex_lock [89]
                0.00    0.00       7/438508      vlc_mutex_unlock [88]
                0.00    0.00      14/14          filter_chain_VideoFlush [637]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersPipelineCreate [205]
[311]    0.0    0.00    0.00       1         TryFormat [311]
                0.00    0.00       1/2           CreateFilter [285]
                0.00    0.00       1/7           aout_FormatPrepare [656]
-----------------------------------------------
                                   1             StreamDelete <cycle 3> [314]
                0.00    0.00       1/1           demux_Delete [270]
[312]    0.0    0.00    0.00       2         stream_Delete <cycle 3> [312]
                0.00    0.00       1/1           AStreamDestroy [313]
                                   1             StreamDelete <cycle 3> [314]
-----------------------------------------------
                0.00    0.00       1/1           stream_Delete <cycle 3> [312]
[313]    0.0    0.00    0.00       1         AStreamDestroy [313]
                0.00    0.00       1/1           access_Delete [315]
                0.00    0.00       1/3           stream_CommonDelete [468]
-----------------------------------------------
                                   1             stream_Delete <cycle 3> [312]
[314]    0.0    0.00    0.00       1         StreamDelete <cycle 3> [314]
                0.00    0.00       1/49617       module_unneed <cycle 4> [169]
                0.00    0.00       1/3           stream_CommonDelete [468]
                                   1             stream_Delete <cycle 3> [312]
-----------------------------------------------
                0.00    0.00       1/1           AStreamDestroy [313]
[315]    0.0    0.00    0.00       1         access_Delete [315]
                0.00    0.00       1/49617       module_unneed <cycle 4> [169]
                0.00    0.00       1/46          vlc_object_release [349]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [237]
[316]    0.0    0.00    0.00       1         vout_CloseWrapper [316]
                0.00    0.00       1/1           vout_DeleteDisplay [317]
-----------------------------------------------
                0.00    0.00       1/1           vout_CloseWrapper [316]
[317]    0.0    0.00    0.00       1         vout_DeleteDisplay [317]
                0.00    0.00       1/49617       module_unneed <cycle 4> [169]
                0.00    0.00       1/46          vlc_object_release [349]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       2/2           av_buffer_pool_get [40]
[318]    0.0    0.00    0.00       2         av_buffer_alloc [318]
                0.00    0.00       2/11928       av_buffer_create [67]
                0.00    0.00       2/30114       av_malloc [505]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [185]
[319]    0.0    0.00    0.00       1         aout_volume_SetFormat [319]
                0.00    0.00       1/49617       module_need <cycle 4> [628]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [139]
[320]    0.0    0.00    0.00       2         libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [320]
                0.00    0.00       6/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00       2/190         libebml::IOCallback::readFully(void*, unsigned int) [195]
-----------------------------------------------
                0.00    0.00       2/6           DeleteDecoder <cycle 4> [72]
                0.00    0.00       2/6           DecoderFlush [348]
                0.00    0.00       2/6           block_FifoRelease [358]
[321]    0.0    0.00    0.00       6         block_FifoEmpty [321]
                0.00    0.00       6/25894       vlc_cond_broadcast [104]
                0.00    0.00       6/379055      vlc_mutex_lock [89]
                0.00    0.00       6/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/3           EsOutProgramSelect [220]
                0.00    0.00       1/3           EsOutControl <cycle 4> [131]
                0.00    0.00       1/3           Create [155]
[322]    0.0    0.00    0.00       3         input_SendEventMeta [322]
                0.00    0.00       3/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       3/17          vlc_event_send [305]
-----------------------------------------------
                0.00    0.00       1/4           End [215]
                0.00    0.00       1/4           MainLoop [14]
                0.00    0.00       2/4           Init [163]
[323]    0.0    0.00    0.00       4         input_ChangeState [323]
                0.00    0.00       3/3           input_SendEventState [325]
                0.00    0.00       3/3           input_item_SetErrorWhenReading [425]
-----------------------------------------------
                0.00    0.00       1/1           CloseDecoder [236]
[324]    0.0    0.00    0.00       1         avcodec_close [324]
                0.00    0.00       1/5968        av_frame_free [71]
                0.00    0.00       4/71746       av_freep [497]
                0.00    0.00       4/5           av_buffer_pool_uninit [690]
                0.00    0.00       1/2           avcodec_is_open [790]
                0.00    0.00       1/1           aac_decode_close [945]
                0.00    0.00       1/1           av_opt_free [952]
                0.00    0.00       1/2           av_codec_is_encoder [783]
-----------------------------------------------
                0.00    0.00       3/3           input_ChangeState [323]
[325]    0.0    0.00    0.00       3         input_SendEventState [325]
                0.00    0.00       3/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       3/1002        var_Change [198]
-----------------------------------------------
                0.00    0.00       1/3           input_SendEventProgramAdd [362]
                0.00    0.00       2/3           input_SendEventEsAdd [334]
[326]    0.0    0.00    0.00       3         VarListAdd [326]
                0.00    0.00       3/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       3/1002        var_Change [198]
-----------------------------------------------
                0.00    0.00       5/5           input_DecoderIsEmpty [304]
[327]    0.0    0.00    0.00       5         aout_DecIsEmpty [327]
                0.00    0.00       1/3           aout_OutputFlush [296]
                0.00    0.00       5/5977        aout_OutputUnlock [151]
                0.00    0.00       5/148270      mdate [90]
                0.00    0.00       5/5975        aout_OutputLock [176]
-----------------------------------------------
                                   1             aout_DecDelete <cycle 4> [341]
[328]    0.0    0.00    0.00       1         aout_FiltersDelete <cycle 4> [328]
                0.00    0.00       3/34          var_DelCallback [223]
                                   2             aout_FiltersPipelineDestroy <cycle 4> [492]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[329]    0.0    0.00    0.00       1         libvlc_media_player_set_media [329]
                0.00    0.00       1/2           release_input_thread [302]
                0.00    0.00       1/5           set_state [382]
                0.00    0.00       1/880         libvlc_event_send [189]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/6           libvlc_media_release [682]
                0.00    0.00       1/6           libvlc_media_retain [683]
-----------------------------------------------
                0.00    0.00       6/6           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[330]    0.0    0.00    0.00       6         libebml::EbmlBinary::ValidateSize() const [330]
                0.00    0.00       6/63918       libebml::EbmlElement::GetSize() const [58]
-----------------------------------------------
                0.00    0.00       1/1           InitTitle [274]
[331]    0.0    0.00    0.00       1         input_SendEventTitle [331]
                0.00    0.00       1/1           input_ControlVarTitle [345]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       1/1002        var_Change [198]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_default_get_buffer2 [29]
[332]    0.0    0.00    0.00       1         av_samples_get_buffer_size [332]
                0.00    0.00       1/11934       av_sample_fmt_is_planar [55]
                0.00    0.00       1/1           av_get_bytes_per_sample [950]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [185]
[333]    0.0    0.00    0.00       1         aout_volume_New [333]
                0.00    0.00       1/50          var_AddCallback [206]
                0.00    0.00       1/732         var_TriggerCallback <cycle 5> [344]
                0.00    0.00       1/22          vlc_custom_create [347]
-----------------------------------------------
                0.00    0.00       2/2           LanguageSplit [303]
[334]    0.0    0.00    0.00       2         input_SendEventEsAdd [334]
                0.00    0.00       2/3           VarListAdd [326]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [220]
[335]    0.0    0.00    0.00       1         input_SendEventProgramScrambled [335]
                0.00    0.00       2/732         var_SetChecked <cycle 5> [212]
                0.00    0.00       1/2355        var_GetChecked [184]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [72]
                0.00    0.00       1/2           aout_update_format [80]
[336]    0.0    0.00    0.00       2         input_SendEventAout [336]
                0.00    0.00       2/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [72]
                0.00    0.00       1/2           vout_new_buffer <cycle 4> [30]
[337]    0.0    0.00    0.00       2         input_SendEventVout [337]
                0.00    0.00       2/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [222]
[338]    0.0    0.00    0.00       2         sws_alloc_context [338]
                0.00    0.00       2/29865       av_mallocz [54]
                0.00    0.00       2/3           av_opt_set_defaults [722]
-----------------------------------------------
                0.00    0.00       7/27          libvlc_media_new_from_input_item [378]
                0.00    0.00      20/27          libvlc_media_player_new [164]
[339]    0.0    0.00    0.00      27         libvlc_event_manager_register_event_type [339]
                0.00    0.00      27/379055      vlc_mutex_lock [89]
                0.00    0.00      27/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       3/26          vout_control_PushVoid [430]
                0.00    0.00       3/26          vout_control_PushTime [423]
                0.00    0.00       6/26          vout_control_PushPair [404]
                0.00    0.00       7/26          vout_control_PushInteger [399]
                0.00    0.00       7/26          vout_control_PushString [400]
[340]    0.0    0.00    0.00      26         vout_control_Push [340]
                0.00    0.00      26/379055      vlc_mutex_lock [89]
                0.00    0.00      26/438508      vlc_mutex_unlock [88]
                0.00    0.00      26/21091       vlc_cond_signal [512]
-----------------------------------------------
                                   1             DeleteDecoder <cycle 4> [72]
[341]    0.0    0.00    0.00       1         aout_DecDelete <cycle 4> [341]
                0.00    0.00       1/1           aout_OutputDelete [377]
                0.00    0.00       1/13          var_Destroy [275]
                0.00    0.00       1/5977        aout_OutputUnlock [151]
                0.00    0.00       1/5975        aout_OutputLock [176]
                                   1             aout_FiltersDelete <cycle 4> [328]
                                   1             aout_volume_Delete <cycle 4> [370]
-----------------------------------------------
                                   2             EsSelect <cycle 4> [294]
[342]    0.0    0.00    0.00       2         EsCreateDecoder <cycle 4> [342]
                0.00    0.00       2/2           input_DecoderStartWait [343]
                                   2             input_DecoderNew <cycle 4> [818]
-----------------------------------------------
                0.00    0.00       2/2           EsCreateDecoder <cycle 4> [342]
[343]    0.0    0.00    0.00       2         input_DecoderStartWait [343]
                0.00    0.00       2/2           DecoderFlush [348]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/21091       vlc_cond_signal [512]
-----------------------------------------------
                                   4             WallPaperCallback <cycle 5> [775]
                0.00    0.00       1/732         aout_volume_New [333]
                0.00    0.00      18/732         vout_IntfReinit [260]
[344]    0.0    0.00    0.00      23         var_TriggerCallback <cycle 5> [344]
                0.00    0.00      23/379055      vlc_mutex_lock [89]
                0.00    0.00      24/438508      vlc_mutex_unlock [88]
                0.00    0.00      23/4108        tfind [549]
                                  48             TriggerCallback <cycle 5> [168]
-----------------------------------------------
                0.00    0.00       1/1           input_SendEventTitle [331]
[345]    0.0    0.00    0.00       1         input_ControlVarTitle [345]
                0.00    0.00       2/13          var_Destroy [275]
                0.00    0.00       2/1002        var_Change [198]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[346]    0.0    0.00    0.00       1         libvlc_media_new_location [346]
                0.00    0.00       1/1           libvlc_media_new_from_input_item [378]
                0.00    0.00       1/1           input_item_NewExt [388]
                0.00    0.00       1/2           input_item_Release [821]
-----------------------------------------------
                0.00    0.00       1/22          vout_Request <cycle 4> [170]
                0.00    0.00       1/22          spu_Create <cycle 4> [276]
                0.00    0.00       1/22          libvlc_media_player_new [164]
                0.00    0.00       1/22          access_New [232]
                0.00    0.00       1/22          ControlPause [286]
                0.00    0.00       1/22          Create [155]
                0.00    0.00       1/22          DisplayNew [308]
                0.00    0.00       1/22          aout_New [201]
                0.00    0.00       1/22          aout_volume_New [333]
                0.00    0.00       2/22          CreateDecoder <cycle 4> [441]
                0.00    0.00       2/22          SpuRenderCreateAndLoadScale <cycle 4> [442]
                0.00    0.00       2/22          SpuRenderCreateAndLoadText <cycle 4> [254]
                0.00    0.00       2/22          demux_New [203]
                0.00    0.00       2/22          CreateFilter [285]
                0.00    0.00       3/22          stream_CommonNew [429]
[347]    0.0    0.00    0.00      22         vlc_custom_create [347]
                0.00    0.00      22/379055      vlc_mutex_lock [89]
                0.00    0.00      22/438508      vlc_mutex_unlock [88]
                0.00    0.00      22/6831        vlc_mutex_init [536]
                0.00    0.00      22/6808        vlc_cond_init [538]
                0.00    0.00      22/50          vlc_object_hold [597]
-----------------------------------------------
                0.00    0.00       2/2           input_DecoderStartWait [343]
[348]    0.0    0.00    0.00       2         DecoderFlush [348]
                0.00    0.00       2/6           block_FifoEmpty [321]
                0.00    0.00       2/12900       input_DecoderDecode [142]
                0.00    0.00       2/79          vlc_cond_wait [301]
                0.00    0.00       2/21091       vlc_cond_signal [512]
                0.00    0.00       2/2           DecoderBlockFlushNew [734]
-----------------------------------------------
                0.00    0.00       1/46          input_event_changed <cycle 5> [180]
                0.00    0.00       1/46          demux_sys_t::CleanUi() [228]
                0.00    0.00       1/46          input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       1/46          spu_Destroy <cycle 4> [493]
                0.00    0.00       1/46          aout_volume_Delete <cycle 4> [370]
                0.00    0.00       1/46          libvlc_video_get_track_count [433]
                0.00    0.00       1/46          libvlc_media_player_set_equalizer [307]
                0.00    0.00       1/46          access_Delete [315]
                0.00    0.00       1/46          demux_New [203]
                0.00    0.00       1/46          demux_Delete [270]
                0.00    0.00       1/46          ControlPause [286]
                0.00    0.00       1/46          input_Close [465]
                0.00    0.00       1/46          vout_DeleteDisplay [317]
                0.00    0.00       1/46          aout_Destroy [291]
                0.00    0.00       2/46          DeleteDecoder <cycle 4> [72]
                0.00    0.00       2/46          aout_FiltersPipelineDestroy <cycle 4> [492]
                0.00    0.00       3/46          stream_CommonDelete [468]
                0.00    0.00       4/46          FilterRelease <cycle 4> [421]
                0.00    0.00       5/46          vlc_list_release [434]
                0.00    0.00       8/46          libvlc_media_player_get_length [351]
                0.00    0.00       8/46          libvlc_media_player_get_time [352]
[349]    0.0    0.00    0.00      46         vlc_object_release [349]
                0.00    0.00      21/379055      vlc_mutex_lock [89]
                0.00    0.00      21/438508      vlc_mutex_unlock [88]
                0.00    0.00      21/12897       vlc_savecancel [523]
                0.00    0.00      21/21          var_DestroyAll [624]
                0.00    0.00      21/6803        vlc_cond_destroy [539]
                0.00    0.00      21/6820        vlc_mutex_destroy [537]
                0.00    0.00      21/12901       vlc_restorecancel [522]
                0.00    0.00       1/1           VoutDestructor [942]
                0.00    0.00       1/1           aout_Destructor [946]
                0.00    0.00       1/1           Destructor [898]
-----------------------------------------------
                                   7             input_Control <cycle 5> [658]
[350]    0.0    0.00    0.00       7         input_vaControl <cycle 5> [350]
                0.00    0.00       4/4           input_item_ReplaceInfos [356]
                0.00    0.00       2/2           input_resource_HoldVouts [452]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                                   4             input_SendEventMetaInfo <cycle 5> [364]
-----------------------------------------------
                                                 <spontaneous>
[351]    0.0    0.00    0.00                 libvlc_media_player_get_length [351]
                0.00    0.00       8/2355        var_GetChecked [184]
                0.00    0.00       8/17          libvlc_get_input_thread [359]
                0.00    0.00       8/46          vlc_object_release [349]
-----------------------------------------------
                                                 <spontaneous>
[352]    0.0    0.00    0.00                 libvlc_media_player_get_time [352]
                0.00    0.00       8/2355        var_GetChecked [184]
                0.00    0.00       8/17          libvlc_get_input_thread [359]
                0.00    0.00       8/46          vlc_object_release [349]
-----------------------------------------------
                                   2             EsOutControl <cycle 4> [131]
[353]    0.0    0.00    0.00       2         EsUnselect <cycle 4> [353]
                0.00    0.00       1/6           VarListSelect [289]
                0.00    0.00       2/2355        var_GetChecked [184]
                0.00    0.00       4/50          vlc_object_hold [597]
                0.00    0.00       2/7708        EsIsSelected [529]
                0.00    0.00       2/4           input_SendEventEsSelect [708]
                                   2             es_out_Control <cycle 4> [177]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[354]    0.0    0.00    0.00       3         libmatroska::KaxSeekID::ValidateSize() const [354]
                0.00    0.00       3/63918       libebml::EbmlElement::GetSize() const [58]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[355]    0.0    0.00    0.00       3         libebml::EbmlFloat::ValidateSize() const [355]
                0.00    0.00       3/63918       libebml::EbmlElement::GetSize() const [58]
-----------------------------------------------
                0.00    0.00       4/4           input_vaControl <cycle 5> [350]
[356]    0.0    0.00    0.00       4         input_item_ReplaceInfos [356]
                0.00    0.00       4/17          vlc_event_send [305]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
                0.00    0.00       4/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/4           InputItemFindCat [702]
-----------------------------------------------
                0.00    0.00       1/1           Create [155]
[357]    0.0    0.00    0.00       1         input_EsOutNew [357]
                0.00    0.00       2/12          LanguageSplit [303]
                0.00    0.00       7/2355        var_GetChecked [184]
                0.00    0.00       1/5           vlc_mutex_init_recursive [695]
-----------------------------------------------
                0.00    0.00       2/2           DeleteDecoder <cycle 4> [72]
[358]    0.0    0.00    0.00       2         block_FifoRelease [358]
                0.00    0.00       2/6           block_FifoEmpty [321]
                0.00    0.00       4/6803        vlc_cond_destroy [539]
                0.00    0.00       2/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/17          libvlc_video_get_track_count [433]
                0.00    0.00       8/17          libvlc_media_player_get_length [351]
                0.00    0.00       8/17          libvlc_media_player_get_time [352]
[359]    0.0    0.00    0.00      17         libvlc_get_input_thread [359]
                0.00    0.00      17/379055      vlc_mutex_lock [89]
                0.00    0.00      17/438508      vlc_mutex_unlock [88]
                0.00    0.00      17/50          vlc_object_hold [597]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop <cycle 4> [193]
[360]    0.0    0.00    0.00       1         CloseScaler [360]
                0.00    0.00       1/5           GetParameters [298]
-----------------------------------------------
                0.00    0.00       2/2           Thread [17]
[361]    0.0    0.00    0.00       2         ThreadChangeFilters [361]
                0.00    0.00       2/8           VoutVideoFilterStaticNewPicture [310]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/9           filter_chain_Reset [652]
                0.00    0.00       4/4           filter_chain_GetFmtOut [704]
                0.00    0.00       2/2           config_ChainCreate [799]
                0.00    0.00       2/2           es_format_InitFromVideo [804]
                0.00    0.00       2/2           es_format_IsSimilar [805]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [218]
[362]    0.0    0.00    0.00       1         input_SendEventProgramAdd [362]
                0.00    0.00       1/3           VarListAdd [326]
-----------------------------------------------
                0.00    0.00      14/14          vlc_module_load <cycle 4> [78]
[363]    0.0    0.00    0.00      14         vlc_object_set_name [363]
                0.00    0.00      14/379055      vlc_mutex_lock [89]
                0.00    0.00      14/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                   4             input_vaControl <cycle 5> [350]
[364]    0.0    0.00    0.00       4         input_SendEventMetaInfo <cycle 5> [364]
                0.00    0.00       4/17          vlc_event_send [305]
                                   4             var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       1/1           Run [13]
[365]    0.0    0.00    0.00       1         input_SendEventAbort [365]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       1/1           Run [13]
[366]    0.0    0.00    0.00       1         input_SendEventDead [366]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[367]    0.0    0.00    0.00       1         libvlc_media_player_set_video_title_display [367]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       2/2           Create [167]
[368]    0.0    0.00    0.00       2         spu_get_attachments [368]
                0.00    0.00       1/732         input_Control <cycle 5> [658]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [131]
[369]    0.0    0.00    0.00       1         input_SendEventMetaEpg [369]
                0.00    0.00       1/732         var_SetChecked <cycle 5> [212]
-----------------------------------------------
                                   1             aout_DecDelete <cycle 4> [341]
[370]    0.0    0.00    0.00       1         aout_volume_Delete <cycle 4> [370]
                0.00    0.00       1/34          var_DelCallback [223]
                0.00    0.00       1/46          vlc_object_release [349]
                                   1             module_unneed <cycle 4> [169]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_default_get_buffer2 [29]
[371]    0.0    0.00    0.00       1         av_buffer_pool_init [371]
                0.00    0.00       1/29865       av_mallocz [54]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [52]
[372]    0.0    0.00    0.00       1         avcodec_alloc_context3 [372]
                0.00    0.00       1/1           avcodec_get_context_defaults3 [373]
                0.00    0.00       1/30114       av_malloc [505]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_alloc_context3 [372]
[373]    0.0    0.00    0.00       1         avcodec_get_context_defaults3 [373]
                0.00    0.00       1/29865       av_mallocz [54]
                0.00    0.00       1/3           av_opt_set_defaults [722]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [375]
[374]    0.0    0.00    0.00       1         che_configure [374]
                0.00    0.00       1/29865       av_mallocz [54]
                0.00    0.00       1/1           ff_sbrdsp_init_arm [982]
                0.00    0.00       1/1           ff_sbrdsp_init [981]
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [962]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[375]    0.0    0.00    0.00       1         decode_audio_specific_config [375]
                0.00    0.00       1/1           che_configure [374]
                0.00    0.00       1/1           avpriv_mpeg4audio_get_config [958]
                0.00    0.00       1/1           sniff_channel_order [1014]
-----------------------------------------------
                0.00    0.00       1/3           Create [155]
                0.00    0.00       2/3           EsOutProgramSelect [220]
[376]    0.0    0.00    0.00       3         input_item_SetMeta [376]
                0.00    0.00       3/17          vlc_event_send [305]
                0.00    0.00       3/379055      vlc_mutex_lock [89]
                0.00    0.00       3/438508      vlc_mutex_unlock [88]
                0.00    0.00       3/3           vlc_meta_Set [730]
                0.00    0.00       1/3           vlc_meta_New [729]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecDelete <cycle 4> [341]
[377]    0.0    0.00    0.00       1         aout_OutputDelete [377]
                0.00    0.00       1/34          var_DelCallback [223]
                0.00    0.00       1/1           Stop [939]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_new_location [346]
[378]    0.0    0.00    0.00       1         libvlc_media_new_from_input_item [378]
                0.00    0.00       7/27          libvlc_event_manager_register_event_type [339]
                0.00    0.00       5/5           vlc_event_attach [409]
                0.00    0.00       1/2           libvlc_event_manager_new [443]
                0.00    0.00       1/6808        vlc_cond_init [538]
                0.00    0.00       1/6831        vlc_mutex_init [536]
                0.00    0.00       1/2           input_item_Hold [820]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[379]    0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::ValidateSize() const [379]
                0.00    0.00       2/63918       libebml::EbmlElement::GetSize() const [58]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[380]    0.0    0.00    0.00       2         libebml::EbmlDate::ValidateSize() const [380]
                0.00    0.00       2/63918       libebml::EbmlElement::GetSize() const [58]
-----------------------------------------------
                                   1             input_resource_RequestVout <cycle 4> [207]
[381]    0.0    0.00    0.00       1         vout_Close <cycle 4> [381]
                0.00    0.00       1/1           vout_snapshot_End [391]
                0.00    0.00       1/4           vlc_join [405]
                0.00    0.00       1/3           vout_control_PushVoid [430]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                                   1             spu_Destroy <cycle 4> [493]
-----------------------------------------------
                0.00    0.00       1/5           libvlc_media_player_set_media [329]
                0.00    0.00       1/5           libvlc_media_player_stop [262]
                0.00    0.00       3/5           input_event_changed <cycle 5> [180]
[382]    0.0    0.00    0.00       5         set_state [382]
                0.00    0.00       4/4           libvlc_media_set_state [397]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
                0.00    0.00       4/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/6           libvlc_media_retain [683]
                0.00    0.00       4/6           libvlc_media_release [682]
-----------------------------------------------
                0.00    0.00       6/6           vlc_event_send [305]
[383]    0.0    0.00    0.00       6         input_item_meta_changed [383]
                0.00    0.00       6/880         libvlc_event_send [189]
-----------------------------------------------
                0.00    0.00       1/1           vlc_event_send [305]
[384]    0.0    0.00    0.00       1         input_item_preparsed_changed [384]
                0.00    0.00       1/25894       vlc_cond_broadcast [104]
                0.00    0.00       1/880         libvlc_event_send [189]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           Flush [295]
[385]    0.0    0.00    0.00       1         msleep [385]
                0.00    0.00       1/6768        mwait [121]
                0.00    0.00       1/148270      mdate [90]
-----------------------------------------------
                0.00    0.00       5/5           input_DecoderIsEmpty [304]
[386]    0.0    0.00    0.00       5         vout_IsEmpty [386]
                0.00    0.00       5/5           picture_fifo_Peek [408]
                0.00    0.00       5/379055      vlc_mutex_lock [89]
                0.00    0.00       5/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/5           vout_Request <cycle 4> [170]
                0.00    0.00       1/5           vout_Reset [432]
                0.00    0.00       3/5           vout_Flush [393]
[387]    0.0    0.00    0.00       5         vout_control_WaitEmpty [387]
                0.00    0.00       5/79          vlc_cond_wait [301]
                0.00    0.00       5/379055      vlc_mutex_lock [89]
                0.00    0.00       5/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_new_location [346]
[388]    0.0    0.00    0.00       1         input_item_NewExt [388]
                0.00    0.00       1/1           input_item_NewWithType [389]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewExt [388]
[389]    0.0    0.00    0.00       1         input_item_NewWithType [389]
                0.00    0.00       8/8           vlc_event_manager_register_event_type [396]
                0.00    0.00       1/1           input_item_SetURI [473]
                0.00    0.00       1/6831        vlc_mutex_init [536]
                0.00    0.00       1/1           vlc_event_manager_init [1021]
-----------------------------------------------
                0.00    0.00       1/1           VoutVideoFilterStaticNewPicture [310]
[390]    0.0    0.00    0.00       1         vout_control_Dead [390]
                0.00    0.00       1/25894       vlc_cond_broadcast [104]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           vout_Close <cycle 4> [381]
[391]    0.0    0.00    0.00       1         vout_snapshot_End [391]
                0.00    0.00       1/25894       vlc_cond_broadcast [104]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [302]
[392]    0.0    0.00    0.00       1         input_Stop [392]
                0.00    0.00       1/1           ObjectKillChildrens [398]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/3           input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       2/3           DecoderDecodeVideo [18]
[393]    0.0    0.00    0.00       3         vout_Flush [393]
                0.00    0.00       3/5           vout_control_WaitEmpty [387]
                0.00    0.00       3/3           vout_control_PushTime [423]
-----------------------------------------------
                0.00    0.00       8/8           libvlc_event_attach [395]
[394]    0.0    0.00    0.00       8         event_attach [394]
                0.00    0.00       8/379055      vlc_mutex_lock [89]
                0.00    0.00       8/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       8/8           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[395]    0.0    0.00    0.00       8         libvlc_event_attach [395]
                0.00    0.00       8/8           event_attach [394]
-----------------------------------------------
                0.00    0.00       8/8           input_item_NewWithType [389]
[396]    0.0    0.00    0.00       8         vlc_event_manager_register_event_type [396]
                0.00    0.00       8/379055      vlc_mutex_lock [89]
                0.00    0.00       8/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       4/4           set_state [382]
[397]    0.0    0.00    0.00       4         libvlc_media_set_state [397]
                0.00    0.00       4/880         libvlc_event_send [189]
-----------------------------------------------
                0.00    0.00       1/1           input_Stop [392]
[398]    0.0    0.00    0.00       1         ObjectKillChildrens [398]
                0.00    0.00       3/3           vlc_list_children [422]
                0.00    0.00       4/4           vlc_list_release [434]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/7           vout_FlushSubpictureChannel [486]
                0.00    0.00       2/7           vout_ControlChangeSubMargin [458]
                0.00    0.00       4/7           vout_ControlChangeWindowState [420]
[399]    0.0    0.00    0.00       7         vout_control_PushInteger [399]
                0.00    0.00       7/26          vout_control_Push [340]
-----------------------------------------------
                0.00    0.00       1/7           vout_DisplayTitle [485]
                0.00    0.00       2/7           vout_ControlChangeFilters [455]
                0.00    0.00       2/7           vout_ControlChangeSubSources [459]
                0.00    0.00       2/7           vout_ControlChangeSubFilters [457]
[400]    0.0    0.00    0.00       7         vout_control_PushString [400]
                0.00    0.00       7/26          vout_control_Push [340]
-----------------------------------------------
                                   2             es_out_Control <cycle 4> [177]
[401]    0.0    0.00    0.00       2         input_DecoderDelete <cycle 4> [401]
                0.00    0.00       2/4           vlc_join [405]
                0.00    0.00       2/2           vlc_cancel [453]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/21091       vlc_cond_signal [512]
                                   2             module_unneed <cycle 4> [169]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[402]    0.0    0.00    0.00       1         libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [402]
                0.00    0.00       1/63918       libebml::EbmlElement::GetSize() const [58]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16345]
-----------------------------------------------
                0.00    0.00       1/6           picture_fifo_Delete [484]
                0.00    0.00       5/6           ThreadFlush [299]
[403]    0.0    0.00    0.00       6         picture_fifo_Flush [403]
                0.00    0.00       6/379055      vlc_mutex_lock [89]
                0.00    0.00       6/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       2/6           vout_ControlChangeZoom [460]
                0.00    0.00       2/6           vout_ControlChangeSampleAspectRatio [456]
                0.00    0.00       2/6           vout_ControlChangeCropRatio [454]
[404]    0.0    0.00    0.00       6         vout_control_PushPair [404]
                0.00    0.00       6/26          vout_control_Push [340]
-----------------------------------------------
                0.00    0.00       1/4           vout_Close <cycle 4> [381]
                0.00    0.00       1/4           input_Join [467]
                0.00    0.00       2/4           input_DecoderDelete <cycle 4> [401]
[405]    0.0    0.00    0.00       4         vlc_join [405]
                0.00    0.00       4/4           vlc_sem_wait [406]
                0.00    0.00       4/4           vlc_sem_destroy [719]
                0.00    0.00       4/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       4/4           vlc_join [405]
[406]    0.0    0.00    0.00       4         vlc_sem_wait [406]
                0.00    0.00       4/79          vlc_cond_wait [301]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [131]
[407]    0.0    0.00    0.00       1         input_item_SetEpgOffline [407]
                0.00    0.00       1/17          vlc_event_send [305]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       5/5           vout_IsEmpty [386]
[408]    0.0    0.00    0.00       5         picture_fifo_Peek [408]
                0.00    0.00       5/379055      vlc_mutex_lock [89]
                0.00    0.00       5/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       5/5           libvlc_media_new_from_input_item [378]
[409]    0.0    0.00    0.00       5         vlc_event_attach [409]
                0.00    0.00       5/379055      vlc_mutex_lock [89]
                0.00    0.00       5/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                   2             matroska_segment_c::Select(long long) <cycle 4> [217]
[410]    0.0    0.00    0.00       2         Add <cycle 4> [410]
                0.00    0.00       2/148270      mdate [90]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/25357       TsStop [507]
                                   2             EsOutAdd <cycle 4> [216]
-----------------------------------------------
                0.00    0.00       1/1           input_SendEventLength [224]
[411]    0.0    0.00    0.00       1         input_item_SetDuration [411]
                0.00    0.00       1/17          vlc_event_send [305]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [131]
[412]    0.0    0.00    0.00       1         input_item_SetPreparsed [412]
                0.00    0.00       1/17          vlc_event_send [305]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/1           vlc_meta_GetStatus [1024]
                0.00    0.00       1/1           vlc_meta_SetStatus [1025]
-----------------------------------------------
                0.00    0.00       2/4           es_out_Control <cycle 4> [177]
                0.00    0.00       2/4           DecoderThread [2]
[413]    0.0    0.00    0.00       4         input_DecoderStopWait [413]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
                0.00    0.00       4/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/21091       vlc_cond_signal [512]
-----------------------------------------------
                0.00    0.00       4/4           info_category_AddInfo [293]
[414]    0.0    0.00    0.00       4         input_item_UpdateTracksInfo [414]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
                0.00    0.00       4/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/22          es_format_Copy [619]
                0.00    0.00       2/32          es_format_Clean [608]
-----------------------------------------------
                0.00    0.00       4/4           finish_joinable_thread [417]
[415]    0.0    0.00    0.00       4         vlc_sem_post [415]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
                0.00    0.00       4/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/21091       vlc_cond_signal [512]
-----------------------------------------------
                0.00    0.00       4/4           Thread [17]
[416]    0.0    0.00    0.00       4         vout_SetWindowState [416]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
                0.00    0.00       4/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                                 <spontaneous>
[417]    0.0    0.00    0.00                 finish_joinable_thread [417]
                0.00    0.00       4/4           vlc_sem_post [415]
-----------------------------------------------
                0.00    0.00       4/4           TriggerCallback <cycle 5> [168]
[418]    0.0    0.00    0.00       4         AboveCallback [418]
                0.00    0.00       4/4           vout_ControlChangeWindowState [420]
-----------------------------------------------
                0.00    0.00       1/4           EsOutControl <cycle 4> [131]
                0.00    0.00       3/4           input_resource_RequestVout <cycle 4> [207]
[419]    0.0    0.00    0.00       4         input_item_GetMeta [419]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
                0.00    0.00       4/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/6           vlc_meta_Get [688]
-----------------------------------------------
                0.00    0.00       4/4           AboveCallback [418]
[420]    0.0    0.00    0.00       4         vout_ControlChangeWindowState [420]
                0.00    0.00       4/7           vout_control_PushInteger [399]
-----------------------------------------------
                                   2             spu_Attach <cycle 4> [282]
                                   3             spu_Destroy <cycle 4> [493]
[421]    0.0    0.00    0.00       5         FilterRelease <cycle 4> [421]
                0.00    0.00       4/46          vlc_object_release [349]
                0.00    0.00       1/2           var_Get [435]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                                   4             module_unneed <cycle 4> [169]
-----------------------------------------------
                0.00    0.00       3/3           ObjectKillChildrens [398]
[422]    0.0    0.00    0.00       3         vlc_list_children [422]
                0.00    0.00       4/379055      vlc_mutex_lock [89]
                0.00    0.00       3/438508      vlc_mutex_unlock [88]
                0.00    0.00       4/50          vlc_object_hold [597]
-----------------------------------------------
                0.00    0.00       3/3           vout_Flush [393]
[423]    0.0    0.00    0.00       3         vout_control_PushTime [423]
                0.00    0.00       3/26          vout_control_Push [340]
-----------------------------------------------
                0.00    0.00       3/3           libvlc_media_add_option_flag [427]
[424]    0.0    0.00    0.00       3         input_item_AddOption [424]
                0.00    0.00       3/379055      vlc_mutex_lock [89]
                0.00    0.00       3/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       3/3           input_ChangeState [323]
[425]    0.0    0.00    0.00       3         input_item_SetErrorWhenReading [425]
                0.00    0.00       3/379055      vlc_mutex_lock [89]
                0.00    0.00       3/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       3/3           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[426]    0.0    0.00    0.00       3         libvlc_media_add_option [426]
                0.00    0.00       3/3           libvlc_media_add_option_flag [427]
-----------------------------------------------
                0.00    0.00       3/3           libvlc_media_add_option [426]
[427]    0.0    0.00    0.00       3         libvlc_media_add_option_flag [427]
                0.00    0.00       3/3           input_item_AddOption [424]
-----------------------------------------------
                0.00    0.00       1/3           libvlc_media_player_new [164]
                0.00    0.00       2/3           libvlc_event_manager_new [443]
[428]    0.0    0.00    0.00       3         libvlc_retain [428]
                0.00    0.00       3/379055      vlc_mutex_lock [89]
                0.00    0.00       3/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/3           stream_AccessNew [188]
                0.00    0.00       2/3           stream_FilterNew [283]
[429]    0.0    0.00    0.00       3         stream_CommonNew [429]
                0.00    0.00       3/22          vlc_custom_create [347]
-----------------------------------------------
                0.00    0.00       1/3           vout_Close <cycle 4> [381]
                0.00    0.00       1/3           vout_Request <cycle 4> [170]
                0.00    0.00       1/3           vout_Reset [432]
[430]    0.0    0.00    0.00       3         vout_control_PushVoid [430]
                0.00    0.00       3/26          vout_control_Push [340]
-----------------------------------------------
                0.00    0.00       2/6           CloseDecoder [236]
                0.00    0.00       2/6           OpenDecoder [52]
                0.00    0.00       2/6           ffmpeg_OpenCodec [84]
[431]    0.0    0.00    0.00       6         vlc_global_mutex [431]
                0.00    0.00       3/379055      vlc_mutex_lock [89]
                0.00    0.00       3/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           DeleteDecoder <cycle 4> [72]
[432]    0.0    0.00    0.00       1         vout_Reset [432]
                0.00    0.00       1/5           vout_control_WaitEmpty [387]
                0.00    0.00       1/3           vout_control_PushVoid [430]
-----------------------------------------------
                                                 <spontaneous>
[433]    0.0    0.00    0.00                 libvlc_video_get_track_count [433]
                0.00    0.00       1/17          libvlc_get_input_thread [359]
                0.00    0.00       1/1002        var_Change [198]
                0.00    0.00       1/46          vlc_object_release [349]
-----------------------------------------------
                0.00    0.00       4/4           ObjectKillChildrens [398]
[434]    0.0    0.00    0.00       4         vlc_list_release [434]
                0.00    0.00       5/46          vlc_object_release [349]
-----------------------------------------------
                0.00    0.00       1/2           FilterRelease <cycle 4> [421]
                0.00    0.00       1/2           input_ControlVarInit [186]
[435]    0.0    0.00    0.00       2         var_Get [435]
                0.00    0.00       2/2355        var_GetChecked [184]
-----------------------------------------------
                0.00    0.00       1/2           input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       1/2           Create [155]
[436]    0.0    0.00    0.00       2         input_item_GetName [436]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/2           End [215]
                0.00    0.00       1/2           Create [155]
[437]    0.0    0.00    0.00       2         input_resource_SetInput [437]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       2/2           Thread [17]
[438]    0.0    0.00    0.00       2         spu_ChangeFilters [438]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       2/2           Thread [17]
[439]    0.0    0.00    0.00       2         spu_ChangeMargin [439]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       2/2           Thread [17]
[440]    0.0    0.00    0.00       2         spu_ChangeSources [440]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                   2             decoder_New <cycle 4> [800]
[441]    0.0    0.00    0.00       2         CreateDecoder <cycle 4> [441]
                0.00    0.00       2/22          vlc_custom_create [347]
                0.00    0.00       4/22          es_format_Copy [619]
                0.00    0.00       4/6808        vlc_cond_init [538]
                0.00    0.00       2/2           block_FifoNew [792]
                0.00    0.00       2/6831        vlc_mutex_init [536]
                0.00    0.00       2/22          es_format_Init [620]
                                   2             module_need <cycle 4> [628]
-----------------------------------------------
                                   2             spu_Create <cycle 4> [276]
[442]    0.0    0.00    0.00       2         SpuRenderCreateAndLoadScale <cycle 4> [442]
                0.00    0.00       2/22          vlc_custom_create [347]
                0.00    0.00       4/22          es_format_Init [620]
                                   2             module_need <cycle 4> [628]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_from_input_item [378]
                0.00    0.00       1/2           libvlc_media_player_new [164]
[443]    0.0    0.00    0.00       2         libvlc_event_manager_new [443]
                0.00    0.00       2/3           libvlc_retain [428]
                0.00    0.00       2/6831        vlc_mutex_init [536]
                0.00    0.00       2/5           vlc_mutex_init_recursive [695]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [168]
[444]    0.0    0.00    0.00       2         AspectCallback [444]
                0.00    0.00       2/2           vout_ControlChangeSampleAspectRatio [456]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [168]
[445]    0.0    0.00    0.00       2         CropCallback [445]
                0.00    0.00       2/2           vout_ControlChangeCropRatio [454]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [168]
[446]    0.0    0.00    0.00       2         ScaleCallback [446]
                0.00    0.00       2/2           vout_ControlChangeZoom [460]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [168]
[447]    0.0    0.00    0.00       2         SubFilterCallback [447]
                0.00    0.00       2/2           vout_ControlChangeSubFilters [457]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [168]
[448]    0.0    0.00    0.00       2         SubMarginCallback [448]
                0.00    0.00       2/2           vout_ControlChangeSubMargin [458]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [168]
[449]    0.0    0.00    0.00       2         SubSourceCallback [449]
                0.00    0.00       2/2           vout_ControlChangeSubSources [459]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [168]
[450]    0.0    0.00    0.00       2         VideoFilterCallback [450]
                0.00    0.00       2/2           vout_ControlChangeFilters [455]
-----------------------------------------------
                0.00    0.00       1/2           EsOutProgramAdd [218]
                0.00    0.00       1/2           EsOutControl <cycle 4> [131]
[451]    0.0    0.00    0.00       2         input_clock_SetJitter [451]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       2/2           input_vaControl <cycle 5> [350]
[452]    0.0    0.00    0.00       2         input_resource_HoldVouts [452]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/50          vlc_object_hold [597]
-----------------------------------------------
                0.00    0.00       2/2           input_DecoderDelete <cycle 4> [401]
[453]    0.0    0.00    0.00       2         vlc_cancel [453]
                0.00    0.00       2/379055      vlc_mutex_lock [89]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       2/2           CropCallback [445]
[454]    0.0    0.00    0.00       2         vout_ControlChangeCropRatio [454]
                0.00    0.00       2/6           vout_control_PushPair [404]
-----------------------------------------------
                0.00    0.00       2/2           VideoFilterCallback [450]
[455]    0.0    0.00    0.00       2         vout_ControlChangeFilters [455]
                0.00    0.00       2/7           vout_control_PushString [400]
-----------------------------------------------
                0.00    0.00       2/2           AspectCallback [444]
[456]    0.0    0.00    0.00       2         vout_ControlChangeSampleAspectRatio [456]
                0.00    0.00       2/6           vout_control_PushPair [404]
-----------------------------------------------
                0.00    0.00       2/2           SubFilterCallback [447]
[457]    0.0    0.00    0.00       2         vout_ControlChangeSubFilters [457]
                0.00    0.00       2/7           vout_control_PushString [400]
-----------------------------------------------
                0.00    0.00       2/2           SubMarginCallback [448]
[458]    0.0    0.00    0.00       2         vout_ControlChangeSubMargin [458]
                0.00    0.00       2/7           vout_control_PushInteger [399]
-----------------------------------------------
                0.00    0.00       2/2           SubSourceCallback [449]
[459]    0.0    0.00    0.00       2         vout_ControlChangeSubSources [459]
                0.00    0.00       2/7           vout_control_PushString [400]
-----------------------------------------------
                0.00    0.00       2/2           ScaleCallback [446]
[460]    0.0    0.00    0.00       2         vout_ControlChangeZoom [460]
                0.00    0.00       2/6           vout_control_PushPair [404]
-----------------------------------------------
                0.00    0.00       1/1           vlc_event_send [305]
[461]    0.0    0.00    0.00       1         input_item_duration_changed [461]
                0.00    0.00       1/880         libvlc_event_send [189]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [168]
[462]    0.0    0.00    0.00       1         input_pausable_changed [462]
                0.00    0.00       1/880         libvlc_event_send [189]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [168]
[463]    0.0    0.00    0.00       1         input_scrambled_changed [463]
                0.00    0.00       1/880         libvlc_event_send [189]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [168]
[464]    0.0    0.00    0.00       1         input_seekable_changed [464]
                0.00    0.00       1/880         libvlc_event_send [189]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [302]
[465]    0.0    0.00    0.00       1         input_Close [465]
                0.00    0.00       1/1           input_Join [467]
                0.00    0.00       1/46          vlc_object_release [349]
-----------------------------------------------
                                                 <spontaneous>
[466]    0.0    0.00    0.00                 vlc_cleanup_lock [466]
                0.00    0.00       4/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           input_Close [465]
[467]    0.0    0.00    0.00       1         input_Join [467]
                0.00    0.00       1/4           vlc_join [405]
-----------------------------------------------
                0.00    0.00       1/3           AStreamDestroy [313]
                0.00    0.00       1/3           StreamDelete <cycle 3> [314]
                0.00    0.00       1/3           stream_FilterNew [283]
[468]    0.0    0.00    0.00       3         stream_CommonDelete [468]
                0.00    0.00       3/46          vlc_object_release [349]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitInterlacingSupport [211]
[469]    0.0    0.00    0.00       1         DeinterlaceIsPresent [469]
                0.00    0.00       1/2355        var_GetChecked [184]
                0.00    0.00       1/3           vlc_inhibit_Destroy [728]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [168]
[470]    0.0    0.00    0.00       1         EqualizerCallback [470]
                0.00    0.00       1/1           aout_ChangeFilterString [471]
-----------------------------------------------
                0.00    0.00       1/1           EqualizerCallback [470]
[471]    0.0    0.00    0.00       1         aout_ChangeFilterString [471]
                0.00    0.00       1/2355        var_GetChecked [184]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [302]
[472]    0.0    0.00    0.00       1         input_ControlPush [472]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/21091       vlc_cond_signal [512]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewWithType [389]
[473]    0.0    0.00    0.00       1         input_item_SetURI [473]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/5           decode_URI [691]
                0.00    0.00       1/1           EnsureUTF8 [899]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_set_equalizer [307]
[474]    0.0    0.00    0.00       1         input_resource_HoldAout [474]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/50          vlc_object_hold [597]
-----------------------------------------------
                0.00    0.00       1/1           End [215]
[475]    0.0    0.00    0.00       1         input_resource_RequestSout [475]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_MediaList_expandMedia [481]
[476]    0.0    0.00    0.00       1         libvlc_media_player_get_media [476]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/6           libvlc_media_retain [683]
-----------------------------------------------
                0.00    0.00       1/1           Thread [17]
[477]    0.0    0.00    0.00       1         spu_ClearChannel [477]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           Create [155]
[478]    0.0    0.00    0.00       1         stats_NewInputStats [478]
                0.00    0.00       1/1           stats_ReinitInputStats [479]
                0.00    0.00       1/6831        vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       1/1           stats_NewInputStats [478]
[479]    0.0    0.00    0.00       1         stats_ReinitInputStats [479]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputNew [225]
[480]    0.0    0.00    0.00       1         var_Type [480]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       1/4108        tfind [549]
-----------------------------------------------
                                                 <spontaneous>
[481]    0.0    0.00    0.00                 Java_org_videolan_libvlc_MediaList_expandMedia [481]
                0.00    0.00       1/1           libvlc_media_player_get_media [476]
                0.00    0.00       2/429         getLong [561]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[482]    0.0    0.00    0.00       1         OpenDecoder [482]
                0.00    0.00       1/1           OpenGeneric [483]
                0.00    0.00       1/1           GetOmxRole [903]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [482]
[483]    0.0    0.00    0.00       1         OpenGeneric [483]
                0.00    0.00       1/1           InitOmxCore [487]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [237]
[484]    0.0    0.00    0.00       1         picture_fifo_Delete [484]
                0.00    0.00       1/6           picture_fifo_Flush [403]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_RequestVout <cycle 4> [207]
[485]    0.0    0.00    0.00       1         vout_DisplayTitle [485]
                0.00    0.00       1/7           vout_control_PushString [400]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_RequestVout <cycle 4> [207]
[486]    0.0    0.00    0.00       1         vout_FlushSubpictureChannel [486]
                0.00    0.00       1/7           vout_control_PushInteger [399]
-----------------------------------------------
                0.00    0.00       1/1           OpenGeneric [483]
[487]    0.0    0.00    0.00       1         InitOmxCore [487]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           LanguageSplit [303]
[488]    0.0    0.00    0.00       1         input_DecoderChangeDelay [488]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           es_out_Control <cycle 4> [177]
[489]    0.0    0.00    0.00       1         input_clock_ChangeSystemOrigin [489]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[490]    0.0    0.00    0.00       1         ReadMeta(vlc_object_t*) [490]
                0.00    0.00       1/379055      vlc_mutex_lock [89]
                0.00    0.00       1/438508      vlc_mutex_unlock [88]
                0.00    0.00       2/2           TagLib::FileRef::~FileRef() [16420]
                0.00    0.00       1/1           TagLib::FileRef::FileRef() [16539]
                0.00    0.00       1/1           TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16538]
                0.00    0.00       1/1           TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
                0.00    0.00       1/1           TagLib::FileRef::isNull() const [16567]
-----------------------------------------------
                                                 <spontaneous>
[491]    0.0    0.00    0.00                 vlc_cleanup_lock [491]
                0.00    0.00       2/438508      vlc_mutex_unlock [88]
-----------------------------------------------
                                   2             aout_FiltersDelete <cycle 4> [328]
[492]    0.0    0.00    0.00       2         aout_FiltersPipelineDestroy <cycle 4> [492]
                0.00    0.00       2/46          vlc_object_release [349]
                                   2             module_unneed <cycle 4> [169]
-----------------------------------------------
                                   1             vout_Close <cycle 4> [381]
[493]    0.0    0.00    0.00       1         spu_Destroy <cycle 4> [493]
                0.00    0.00       1/46          vlc_object_release [349]
                0.00    0.00       3/6820        vlc_mutex_destroy [537]
                0.00    0.00       2/4           filter_chain_Delete [703]
                                   3             FilterRelease <cycle 4> [421]
-----------------------------------------------
[494]    0.0    0.00    0.00      11+6       <cycle 2 as a whole> [494]
                0.00    0.00      14             stream_Peek <cycle 2> [638]
                0.00    0.00       3             Peek <cycle 2> [721]
-----------------------------------------------
[495]    0.0    0.00    0.00     133+8       <cycle 6 as a whole> [495]
                0.00    0.00     137             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16367]
                0.00    0.00       1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16498]
                0.00    0.00       1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16495]
-----------------------------------------------
                0.00    0.00       1/71950       ff_yuv2rgb_c_init_tables [985]
                0.00    0.00       2/71950       CloseDecoder [236]
                0.00    0.00       2/71950       GetParameters [298]
                0.00    0.00       2/71950       sws_freeContext [835]
                0.00    0.00       2/71950       av_buffer_pool_uninit [690]
                0.00    0.00      16/71950       sws_getCachedContext [261]
                0.00    0.00     178/71950       ff_init_vlc_sparse [568]
                0.00    0.00   71747/71950       av_freep [497]
[496]    0.0    0.00    0.00   71950         av_free [496]
-----------------------------------------------
                0.00    0.00       1/71746       ffmpeg_OpenCodec [84]
                0.00    0.00       1/71746       avcodec_open2 [86]
                0.00    0.00       1/71746       ff_aac_sbr_ctx_close [961]
                0.00    0.00       1/71746       av_opt_free [952]
                0.00    0.00       1/71746       av_opt_set_dict [954]
                0.00    0.00       3/71746       av_buffer_pool_uninit [690]
                0.00    0.00       4/71746       avcodec_close [324]
                0.00    0.00       6/71746       ff_fft_end [670]
                0.00    0.00       6/71746       ff_mdct_end [673]
                0.00    0.00       8/71746       sws_getCachedContext [261]
                0.00    0.00      56/71746       sws_freeContext [835]
                0.00    0.00      69/71746       aac_decode_close [945]
                0.00    0.00    5965/71746       DecodeAudio [4]
                0.00    0.00    5967/71746       av_frame_alloc [70]
                0.00    0.00   23859/71746       av_buffer_unref [38]
                0.00    0.00   35798/71746       av_frame_unref [31]
[497]    0.0    0.00    0.00   71746         av_freep [497]
                0.00    0.00   71747/71950       av_free [496]
-----------------------------------------------
                0.00    0.00     152/65688       vlc_cond_wait [301]
                0.00    0.00   12886/65688       block_FifoGet [68]
                0.00    0.00   52650/65688       vlc_cond_timedwait [75]
[498]    0.0    0.00    0.00   65688         vlc_testcancel [498]
-----------------------------------------------
                0.00    0.00     152/59584       vlc_cond_wait [301]
                0.00    0.00    6790/59584       vout_snapshot_IsRequested [178]
                0.00    0.00   52642/59584       vlc_cond_timedwait [75]
[499]    0.0    0.00    0.00   59584         vlc_mutex_trylock [499]
-----------------------------------------------
                0.00    0.00   27160/54320       video_format_GetTransform [518]
                0.00    0.00   27160/54320       video_format_TransformBy [519]
[500]    0.0    0.00    0.00   54320         transform_GetBasicOps [500]
-----------------------------------------------
                0.00    0.00    1479/33963       AReadStream [85]
                0.00    0.00   14595/33963       DecoderDecodeVideo [18]
                0.00    0.00   17889/33963       DecoderDecodeAudio [3]
[501]    0.0    0.00    0.00   33963         stats_Update [501]
-----------------------------------------------
                0.00    0.00      44/32988       tdelete [655]
                0.00    0.00    1201/32988       tsearch [566]
                0.00    0.00   31743/32988       tfind [549]
[502]    0.0    0.00    0.00   32988         varcmp [502]
-----------------------------------------------
                0.00    0.00   32896/32896       stream_Read <cycle 1> [126]
[503]    0.0    0.00    0.00   32896         AStreamReadStream [503]
-----------------------------------------------
                               32891             stream_Read <cycle 1> [126]
[504]    0.0    0.00    0.00   32891         Read <cycle 1> [504]
                               32892             stream_Read <cycle 1> [126]
-----------------------------------------------
                0.00    0.00       1/30114       vlc_av_frame_Release [1020]
                0.00    0.00       1/30114       avcodec_alloc_context3 [372]
                0.00    0.00       1/30114       ff_yuv2rgb_c_init_tables [985]
                0.00    0.00       2/30114       av_buffer_alloc [318]
                0.00    0.00       6/30114       ff_mdct_init [674]
                0.00    0.00      12/30114       ff_fft_init [671]
                0.00    0.00      24/30114       sws_getCachedContext [261]
                0.00    0.00      24/30114       sws_init_context [226]
                0.00    0.00     178/30114       ff_init_vlc_sparse [568]
                0.00    0.00   29865/30114       av_mallocz [54]
[505]    0.0    0.00    0.00   30114         av_malloc [505]
-----------------------------------------------
                0.00    0.00     321/26146       av_opt_free [952]
                0.00    0.00     377/26146       av_opt_set_defaults [722]
                0.00    0.00   25448/26146       av_opt_find2 [573]
[506]    0.0    0.00    0.00   26146         av_opt_next [506]
-----------------------------------------------
                0.00    0.00       2/25357       Del [238]
                0.00    0.00       2/25357       Add <cycle 4> [410]
                0.00    0.00   12455/25357       Control <cycle 4> [77]
                0.00    0.00   12898/25357       Send [69]
[507]    0.0    0.00    0.00   25357         TsStop [507]
-----------------------------------------------
                0.00    0.00       2/25165       DecoderBlockFlushNew [734]
                0.00    0.00       2/25165       EsOutControl <cycle 4> [131]
                0.00    0.00     325/25165       DoWork [92]
                0.00    0.00   11933/25165       DecodeAudio [4]
                0.00    0.00   12903/25165       MemToBlock(unsigned char*, unsigned int, unsigned int) [16185]
[508]    0.0    0.00    0.00   25165         block_Alloc [508]
                0.00    0.00   25164/25164       block_Init [509]
-----------------------------------------------
                0.00    0.00   25164/25164       block_Alloc [508]
[509]    0.0    0.00    0.00   25164         block_Init [509]
-----------------------------------------------
                0.00    0.00       1/25142       Flush [295]
                0.00    0.00       2/25142       DecoderThread [2]
                0.00    0.00     325/25142       DoWork [92]
                0.00    0.00    5965/25142       Play [165]
                0.00    0.00    6915/25142       DecodeVideo [23]
                0.00    0.00   11934/25142       DecodeAudio [4]
[510]    0.0    0.00    0.00   25142         block_generic_Release [510]
-----------------------------------------------
                0.00    0.00    6789/24807       ThreadDisplayPicture [24]
                0.00    0.00   18018/24807       ThreadDisplayPreparePicture [42]
[511]    0.0    0.00    0.00   24807         filter_chain_VideoFilter [511]
                0.00    0.00   13533/13533       FilterChainVideoFilter [521]
-----------------------------------------------
                0.00    0.00       1/21091       DecoderDecodeVideo [18]
                0.00    0.00       1/21091       DecoderDecodeAudio [3]
                0.00    0.00       1/21091       input_ControlPush [472]
                0.00    0.00       2/21091       DecoderFlush [348]
                0.00    0.00       2/21091       input_DecoderDelete <cycle 4> [401]
                0.00    0.00       2/21091       input_DecoderStartWait [343]
                0.00    0.00       4/21091       input_DecoderStopWait [413]
                0.00    0.00       4/21091       vlc_sem_post [415]
                0.00    0.00      26/21091       DecoderThread [2]
                0.00    0.00      26/21091       vout_control_Push [340]
                0.00    0.00    1226/21091       vlc_rwlock_unlock [197]
                0.00    0.00    6892/21091       vout_control_Wake [158]
                0.00    0.00   12904/21091       block_FifoPut [141]
[512]    0.0    0.00    0.00   21091         vlc_cond_signal [512]
-----------------------------------------------
                0.00    0.00    6745/20425       ThreadDisplayPreparePicture [42]
                0.00    0.00    6789/20425       ThreadDisplayPicture [24]
                0.00    0.00    6891/20425       picture_pool_Get [534]
[513]    0.0    0.00    0.00   20425         picture_Hold [513]
-----------------------------------------------
                0.00    0.00   17895/17895       DecodeAudio [4]
[514]    0.0    0.00    0.00   17895         date_Get [514]
-----------------------------------------------
                0.00    0.00       4/13800       GetOutput <cycle 4> [53]
                0.00    0.00   13796/13800       DisplayBuffer [157]
[515]    0.0    0.00    0.00   13800         get_android_opaque_mutex [515]
-----------------------------------------------
                0.00    0.00     848/13754       input_DecoderGetFifoSize [559]
                0.00    0.00   12906/13754       input_DecoderDecode [142]
[516]    0.0    0.00    0.00   13754         block_FifoSize [516]
-----------------------------------------------
                0.00    0.00    6790/13580       vout_display_PlacePicture [542]
                0.00    0.00    6790/13580       ThreadDisplayPicture [24]
[517]    0.0    0.00    0.00   13580         video_format_ApplyRotation [517]
                0.00    0.00   13580/13580       video_format_TransformTo [520]
-----------------------------------------------
                0.00    0.00   13580/13580       video_format_TransformTo [520]
[518]    0.0    0.00    0.00   13580         video_format_GetTransform [518]
                0.00    0.00   27160/54320       transform_GetBasicOps [500]
-----------------------------------------------
                0.00    0.00   13580/13580       video_format_TransformTo [520]
[519]    0.0    0.00    0.00   13580         video_format_TransformBy [519]
                0.00    0.00   27160/54320       transform_GetBasicOps [500]
-----------------------------------------------
                0.00    0.00   13580/13580       video_format_ApplyRotation [517]
[520]    0.0    0.00    0.00   13580         video_format_TransformTo [520]
                0.00    0.00   13580/13580       video_format_GetTransform [518]
                0.00    0.00   13580/13580       video_format_TransformBy [519]
-----------------------------------------------
                0.00    0.00   13533/13533       filter_chain_VideoFilter [511]
[521]    0.0    0.00    0.00   13533         FilterChainVideoFilter [521]
-----------------------------------------------
                0.00    0.00       1/12901       Run [13]
                0.00    0.00      21/12901       vlc_object_release [349]
                0.00    0.00   12879/12901       DecoderThread [2]
[522]    0.0    0.00    0.00   12901         vlc_restorecancel [522]
-----------------------------------------------
                0.00    0.00       1/12897       Run [13]
                0.00    0.00      21/12897       vlc_object_release [349]
                0.00    0.00   12875/12897       DecoderThread [2]
[523]    0.0    0.00    0.00   12897         vlc_savecancel [523]
-----------------------------------------------
                                 427             CmdExecuteControl <cycle 4> [558]
                               12030             Control <cycle 4> [77]
[524]    0.0    0.00    0.00   12457         es_out_Control <cycle 4> [524]
                               12457             EsOutControl <cycle 4> [131]
-----------------------------------------------
                0.00    0.00       1/11933       avcodec_open2 [86]
                0.00    0.00    5966/11933       avcodec_default_get_buffer2 [29]
                0.00    0.00    5966/11933       ff_get_buffer [27]
[525]    0.0    0.00    0.00   11933         av_get_channel_layout_nb_channels [525]
-----------------------------------------------
                0.00    0.00   11933/11933       spectral_to_sample [41]
[526]    0.0    0.00    0.00   11933         imdct_and_windowing [526]
-----------------------------------------------
                0.00    0.00    5965/11931       aac_decode_frame [7]
                0.00    0.00    5966/11931       avcodec_decode_audio4 [5]
[527]    0.0    0.00    0.00   11931         av_packet_get_side_data [527]
-----------------------------------------------
                0.00    0.00    7718/7718        module_provides [105]
[528]    0.0    0.00    0.00    7718         module_get_capability [528]
-----------------------------------------------
                0.00    0.00       2/7708        EsSelect <cycle 4> [294]
                0.00    0.00       2/7708        EsUnselect <cycle 4> [353]
                0.00    0.00       4/7708        EsOutSelect <cycle 4> [664]
                0.00    0.00    7700/7708        EsOutControl <cycle 4> [131]
[529]    0.0    0.00    0.00    7708         EsIsSelected [529]
-----------------------------------------------
                0.00    0.00      36/6923        picture_NewFromResource [605]
                0.00    0.00    6887/6923        vout_GetPicture [160]
[530]    0.0    0.00    0.00    6923         video_format_CopyCrop [530]
-----------------------------------------------
                0.00    0.00    6905/6905        UnlockSurface [174]
[531]    0.0    0.00    0.00    6905         UnlockCallback [531]
-----------------------------------------------
                0.00    0.00    6891/6891        DecoderDecodeVideo [18]
[532]    0.0    0.00    0.00    6891         vout_GetResetStatistic [532]
-----------------------------------------------
                0.00    0.00    6890/6890        picture_pool_Get [534]
[533]    0.0    0.00    0.00    6890         LockSurface [533]
-----------------------------------------------
                0.00    0.00    6890/6890        vout_GetPicture [160]
[534]    0.0    0.00    0.00    6890         picture_pool_Get [534]
                0.00    0.00    6891/20425       picture_Hold [513]
                0.00    0.00    6890/6890        LockSurface [533]
-----------------------------------------------
                0.00    0.00    6886/6886        vout_GetPicture [160]
[535]    0.0    0.00    0.00    6886         picture_Reset [535]
-----------------------------------------------
                0.00    0.00       1/6831        Open [910]
                0.00    0.00       1/6831        Open(vlc_object_t*) <cycle 4> [117]
                0.00    0.00       1/6831        demux_sys_t::InitUi() [200]
                0.00    0.00       1/6831        libvlc_media_new_from_input_item [378]
                0.00    0.00       1/6831        input_item_NewWithType [389]
                0.00    0.00       1/6831        stats_NewInputStats [478]
                0.00    0.00       1/6831        DisplayNew [308]
                0.00    0.00       1/6831        picture_fifo_New [1007]
                0.00    0.00       1/6831        vlc_event_manager_init [1021]
                0.00    0.00       1/6831        input_clock_New [995]
                0.00    0.00       1/6831        vout_control_Init [1031]
                0.00    0.00       1/6831        vout_snapshot_Init [1034]
                0.00    0.00       2/6831        libvlc_event_manager_new [443]
                0.00    0.00       2/6831        libvlc_media_player_new [164]
                0.00    0.00       2/6831        CreateDecoder <cycle 4> [441]
                0.00    0.00       2/6831        Create [155]
                0.00    0.00       2/6831        input_resource_New [997]
                0.00    0.00       2/6831        block_FifoNew [792]
                0.00    0.00       3/6831        vout_Request <cycle 4> [170]
                0.00    0.00       3/6831        spu_Create <cycle 4> [276]
                0.00    0.00       3/6831        aout_New [201]
                0.00    0.00       4/6831        vlc_sem_init [720]
                0.00    0.00       4/6831        vlc_clone_attr [718]
                0.00    0.00      22/6831        vlc_custom_create [347]
                0.00    0.00    6768/6831        mwait [121]
[536]    0.0    0.00    0.00    6831         vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       1/6820        Close [887]
                0.00    0.00       1/6820        event_thread_t::~event_thread_t() [16512]
                0.00    0.00       1/6820        demux_sys_t::~demux_sys_t() [230]
                0.00    0.00       1/6820        vout_DeleteDisplay [317]
                0.00    0.00       1/6820        picture_fifo_Delete [484]
                0.00    0.00       1/6820        input_clock_Delete [994]
                0.00    0.00       1/6820        EsOutDelete [900]
                0.00    0.00       1/6820        Destroy [897]
                0.00    0.00       1/6820        vout_control_Clean [1030]
                0.00    0.00       1/6820        vout_snapshot_Clean [1033]
                0.00    0.00       2/6820        DeleteDecoder <cycle 4> [72]
                0.00    0.00       2/6820        Destructor [898]
                0.00    0.00       2/6820        block_FifoRelease [358]
                0.00    0.00       3/6820        VoutDestructor [942]
                0.00    0.00       3/6820        spu_Destroy <cycle 4> [493]
                0.00    0.00       3/6820        aout_Destructor [946]
                0.00    0.00       4/6820        vlc_sem_destroy [719]
                0.00    0.00       4/6820        vlc_join [405]
                0.00    0.00      21/6820        vlc_object_release [349]
                0.00    0.00    6766/6820        mwait [121]
[537]    0.0    0.00    0.00    6820         vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/6808        demux_sys_t::InitUi() [200]
                0.00    0.00       1/6808        libvlc_media_new_from_input_item [378]
                0.00    0.00       1/6808        Create [155]
                0.00    0.00       1/6808        vout_snapshot_Init [1034]
                0.00    0.00       2/6808        vout_control_Init [1031]
                0.00    0.00       4/6808        CreateDecoder <cycle 4> [441]
                0.00    0.00       4/6808        block_FifoNew [792]
                0.00    0.00       4/6808        vlc_sem_init [720]
                0.00    0.00      22/6808        vlc_custom_create [347]
                0.00    0.00    6768/6808        mwait [121]
[538]    0.0    0.00    0.00    6808         vlc_cond_init [538]
-----------------------------------------------
                0.00    0.00       1/6803        event_thread_t::~event_thread_t() [16512]
                0.00    0.00       1/6803        Destructor [898]
                0.00    0.00       1/6803        vout_snapshot_Clean [1033]
                0.00    0.00       2/6803        vout_control_Clean [1030]
                0.00    0.00       4/6803        DeleteDecoder <cycle 4> [72]
                0.00    0.00       4/6803        block_FifoRelease [358]
                0.00    0.00       4/6803        vlc_sem_destroy [719]
                0.00    0.00      21/6803        vlc_object_release [349]
                0.00    0.00    6765/6803        mwait [121]
[539]    0.0    0.00    0.00    6803         vlc_cond_destroy [539]
-----------------------------------------------
                0.00    0.00    6790/6790        Display [115]
[540]    0.0    0.00    0.00    6790         DisplayCallback [540]
-----------------------------------------------
                0.00    0.00    6790/6790        ThreadDisplayPicture [24]
[541]    0.0    0.00    0.00    6790         vout_UpdateDisplaySourceProperties [541]
-----------------------------------------------
                0.00    0.00    6790/6790        ThreadDisplayPicture [24]
[542]    0.0    0.00    0.00    6790         vout_display_PlacePicture [542]
                0.00    0.00    6790/13580       video_format_ApplyRotation [517]
-----------------------------------------------
                0.00    0.00    6789/6789        spu_Render [133]
[543]    0.0    0.00    0.00    6789         filter_chain_SubSource [543]
-----------------------------------------------
                0.00    0.00       1/5967        InitAudioDec [83]
                0.00    0.00    5966/5967        DecodeAudio [4]
[544]    0.0    0.00    0.00    5967         SetupOutputFormat [544]
                0.00    0.00       2/2           aout_CheckChannelExtraction [781]
                0.00    0.00       2/7           aout_FormatPrepare [656]
-----------------------------------------------
                0.00    0.00    5965/5965        aout_volume_Amplify [56]
[545]    0.0    0.00    0.00    5965         FilterS16N [545]
-----------------------------------------------
                0.00    0.00    5965/5965        aac_decode_frame_int [6]
[546]    0.0    0.00    0.00    5965         get_che [546]
-----------------------------------------------
                0.00    0.00    5964/5964        DecodeAudio [4]
[547]    0.0    0.00    0.00    5964         block_Realloc [547]
-----------------------------------------------
                0.00    0.00    5964/5964        DecodeAudio [4]
[548]    0.0    0.00    0.00    5964         date_Increment [548]
-----------------------------------------------
                0.00    0.00       1/4108        var_Type [480]
                0.00    0.00      13/4108        var_Destroy [275]
                0.00    0.00      23/4108        var_TriggerCallback <cycle 5> [344]
                0.00    0.00      34/4108        var_DelCallback [223]
                0.00    0.00      50/4108        var_AddCallback [206]
                0.00    0.00     629/4108        var_SetChecked <cycle 5> [212]
                0.00    0.00    1001/4108        var_Change [198]
                0.00    0.00    2357/4108        var_GetChecked [184]
[549]    0.0    0.00    0.00    4108         tfind [549]
                0.00    0.00   31743/32988       varcmp [502]
-----------------------------------------------
                0.00    0.00       4/3330        CheckValue [553]
                0.00    0.00       4/3330        var_Create [137]
                0.00    0.00     624/3330        var_SetChecked <cycle 5> [212]
                0.00    0.00     899/3330        var_Change [198]
                0.00    0.00    1799/3330        var_GetChecked [184]
[550]    0.0    0.00    0.00    3330         DupDummy [550]
-----------------------------------------------
                0.00    0.00       2/3101        AStreamPrebufferStream [194]
                0.00    0.00     492/3101        AStreamRefillStream [82]
                0.00    0.00    2607/3101        MainLoop [14]
[551]    0.0    0.00    0.00    3101         vlc_object_alive [551]
-----------------------------------------------
                0.00    0.00       4/1645        CheckValue [553]
                0.00    0.00     132/1645        Destroy [574]
                0.00    0.00     623/1645        var_SetChecked <cycle 5> [212]
                0.00    0.00     886/1645        var_Change [198]
[552]    0.0    0.00    0.00    1645         FreeDummy [552]
-----------------------------------------------
                0.00    0.00     629/1594        var_SetChecked <cycle 5> [212]
                0.00    0.00     965/1594        var_Change [198]
[553]    0.0    0.00    0.00    1594         CheckValue [553]
                0.00    0.00     381/383         CmpString [563]
                0.00    0.00      40/46          CmpInt [598]
                0.00    0.00      13/14          CmpFloat [636]
                0.00    0.00       4/114         FreeString [582]
                0.00    0.00       4/1645        FreeDummy [552]
                0.00    0.00       4/114         DupString [581]
                0.00    0.00       4/3330        DupDummy [550]
-----------------------------------------------
                0.00    0.00    1408/1408        ff_fft_init [671]
[554]    0.0    0.00    0.00    1408         split_radix_permutation [554]
-----------------------------------------------
                0.00    0.00       2/1285        Init [163]
                0.00    0.00       3/1285        ControlPause [286]
                0.00    0.00       5/1285        InputSourceInit [172]
                0.00    0.00    1275/1285        MainLoop [14]
[555]    0.0    0.00    0.00    1285         demux_Control [555]
                0.00    0.00    1286/1286        Control(demux_t*, int, std::__va_list) [16210]
-----------------------------------------------
                0.00    0.00    1082/1082        libvlc_logf [557]
[556]    0.0    0.00    0.00    1082         debug_log [556]
-----------------------------------------------
                0.00    0.00    1082/1082        vlc_vaLog [63]
[557]    0.0    0.00    0.00    1082         libvlc_logf [557]
                0.00    0.00    1082/1082        debug_log [556]
-----------------------------------------------
                                 860             Control <cycle 4> [77]
[558]    0.0    0.00    0.00     860         CmdExecuteControl <cycle 4> [558]
                                 427             es_out_Control <cycle 4> [524]
-----------------------------------------------
                0.00    0.00     848/848         EsOutControl <cycle 4> [131]
[559]    0.0    0.00    0.00     848         input_DecoderGetFifoSize [559]
                0.00    0.00     848/13754       block_FifoSize [516]
-----------------------------------------------
                0.00    0.00     431/431         libvlc_event_send [189]
[560]    0.0    0.00    0.00     431         vlc_event_callback [560]
-----------------------------------------------
                0.00    0.00       2/429         Java_org_videolan_libvlc_MediaList_expandMedia [481]
                0.00    0.00     427/429         getMediaPlayer [562]
[561]    0.0    0.00    0.00     429         getLong [561]
-----------------------------------------------
                0.00    0.00       1/427         Java_org_videolan_libvlc_LibVLC_stop [263]
                0.00    0.00       1/427         Java_org_videolan_libvlc_LibVLC_getVideoTracksCount [2207]
                0.00    0.00       8/427         Java_org_videolan_libvlc_LibVLC_getTime [2206]
                0.00    0.00       8/427         Java_org_videolan_libvlc_LibVLC_getLength [2197]
                0.00    0.00     409/427         Java_org_videolan_libvlc_LibVLC_isPlaying [235]
[562]    0.0    0.00    0.00     427         getMediaPlayer [562]
                0.00    0.00     427/429         getLong [561]
-----------------------------------------------
                0.00    0.00       2/383         var_Change [198]
                0.00    0.00     381/383         CheckValue [553]
[563]    0.0    0.00    0.00     383         CmpString [563]
-----------------------------------------------
                0.00    0.00       2/366         Destroy [736]
                0.00    0.00       2/366         destroy_size [803]
                0.00    0.00       2/366         ft_mem_qrealloc [621]
                0.00    0.00       2/366         af_autofitter_done [777]
                0.00    0.00       4/366         ft_glyphslot_done [813]
                0.00    0.00       4/366         FT_List_Finalize [625]
                0.00    0.00       4/366         FT_Done_Face [739]
                0.00    0.00       4/366         FT_Done_Library [742]
                0.00    0.00       4/366         tt_face_done [844]
                0.00    0.00       4/366         ps_hinter_done [827]
                0.00    0.00       6/366         destroy_face [802]
                0.00    0.00       8/366         destroy_charmaps [801]
                0.00    0.00       8/366         FT_Stroker_Done [761]
                0.00    0.00       8/366         TT_Done_Context [773]
                0.00    0.00       8/366         ps_mask_table_done [654]
                0.00    0.00      12/366         af_glyph_hints_done [780]
                0.00    0.00      14/366         sfnt_done_face [830]
                0.00    0.00      18/366         FT_Stream_ReleaseFrame [627]
                0.00    0.00      52/366         FT_Stream_ExitFrame [596]
                0.00    0.00      56/366         tt_face_free_name [846]
                0.00    0.00      64/366         FT_Remove_Module [602]
                0.00    0.00      80/366         FT_GlyphLoader_Reset [631]
[564]    0.0    0.00    0.00     366         ft_mem_free [564]
                0.00    0.00     172/172         ft_free [571]
-----------------------------------------------
                0.00    0.00     348/348         aout_DecPlay [10]
[565]    0.0    0.00    0.00     348         aout_FiltersAdjustResampling [565]
-----------------------------------------------
                0.00    0.00     224/224         var_Create [137]
[566]    0.0    0.00    0.00     224         tsearch [566]
                0.00    0.00    1201/32988       varcmp [502]
-----------------------------------------------
                                 337             build_table [567]
                0.00    0.00     178/178         ff_init_vlc_sparse [568]
[567]    0.0    0.00    0.00     178+337     build_table [567]
                                 337             build_table [567]
-----------------------------------------------
                0.00    0.00       1/178         wmavoice_init_static_data [1035]
                0.00    0.00       7/178         atrac3_init_static_data [948]
                0.00    0.00      10/178         ff_aac_sbr_init [963]
                0.00    0.00      10/178         ff_ps_init [978]
                0.00    0.00      12/178         aac_decode_init [87]
                0.00    0.00      16/178         ff_atrac3p_init_vlcs [965]
                0.00    0.00      17/178         qdm2_init_static_data [1011]
                0.00    0.00     105/178         build_canonical_huff [585]
[568]    0.0    0.00    0.00     178         ff_init_vlc_sparse [568]
                0.00    0.00     178/30114       av_malloc [505]
                0.00    0.00     178/178         build_table [567]
                0.00    0.00     178/71950       av_free [496]
-----------------------------------------------
                0.00    0.00       2/176         avcodec_open2 [86]
                0.00    0.00     174/176         avcodec_find_decoder [955]
[569]    0.0    0.00    0.00     176         av_codec_is_decoder [569]
-----------------------------------------------
                0.00    0.00     172/172         ft_mem_qalloc [572]
[570]    0.0    0.00    0.00     172         ft_alloc [570]
-----------------------------------------------
                0.00    0.00     172/172         ft_mem_free [564]
[571]    0.0    0.00    0.00     172         ft_free [571]
-----------------------------------------------
                0.00    0.00      56/172         FT_Stream_EnterFrame [595]
                0.00    0.00     116/172         ft_mem_alloc [579]
[572]    0.0    0.00    0.00     172         ft_mem_qalloc [572]
                0.00    0.00     172/172         ft_alloc [570]
-----------------------------------------------
                0.00    0.00       1/167         av_opt_set [953]
                0.00    0.00       2/167         av_opt_set_q [788]
                0.00    0.00      22/167         av_opt_set_double [618]
                0.00    0.00     142/167         av_opt_set_int [576]
[573]    0.0    0.00    0.00     167         av_opt_find2 [573]
                0.00    0.00   25448/26146       av_opt_next [506]
-----------------------------------------------
                0.00    0.00       8/158         var_Destroy [275]
                0.00    0.00      12/158         var_Create [137]
                0.00    0.00     138/158         tdestroy_recurse [662]
[574]    0.0    0.00    0.00     158         Destroy [574]
                0.00    0.00     132/1645        FreeDummy [552]
                0.00    0.00     101/114         FreeString [582]
-----------------------------------------------
                0.00    0.00       2/155         aout_New [201]
                0.00    0.00       2/155         vout_InitInterlacingSupport [211]
                0.00    0.00       3/155         config_GetType [723]
                0.00    0.00      15/155         config_GetFloat [183]
                0.00    0.00      45/155         config_GetPsz [152]
                0.00    0.00      88/155         config_GetInt [138]
[575]    0.0    0.00    0.00     155         config_FindConfig [575]
-----------------------------------------------
                0.00    0.00     142/142         av_opt_set_defaults [722]
[576]    0.0    0.00    0.00     142         av_opt_set_int [576]
                0.00    0.00     142/167         av_opt_find2 [573]
-----------------------------------------------
                0.00    0.00     138/138         tdestroy_recurse [662]
[577]    0.0    0.00    0.00     138         CleanupVar [577]
-----------------------------------------------
                0.00    0.00       4/135         LanguageSplit [303]
                0.00    0.00       5/135         aout_OutputNew [225]
                0.00    0.00       9/135         input_ControlVarInit [186]
                0.00    0.00      15/135         vout_InitInterlacingSupport [211]
                0.00    0.00      32/135         vout_IntfInit [181]
                0.00    0.00      32/135         aout_New [201]
                0.00    0.00      38/135         info_category_AddInfo [293]
[578]    0.0    0.00    0.00     135         vlc_gettext [578]
-----------------------------------------------
                0.00    0.00       2/116         FT_Stream_New [759]
                0.00    0.00       2/116         FT_Open_Face [752]
                0.00    0.00       2/116         FT_Stroker_New [762]
                0.00    0.00       2/116         TT_New_Context [774]
                0.00    0.00       2/116         sfnt_init_face [831]
                0.00    0.00       2/116         ft_black_new [811]
                0.00    0.00       4/116         FT_New_GlyphSlot [748]
                0.00    0.00       4/116         open_face [823]
                0.00    0.00       4/116         FT_New_Library [749]
                0.00    0.00       4/116         FT_New_Size [751]
                0.00    0.00       6/116         FT_CMap_New [665]
                0.00    0.00       6/116         gray_raster_new [679]
                0.00    0.00      16/116         FT_GlyphLoader_New [630]
                0.00    0.00      16/116         ft_mem_qrealloc [621]
                0.00    0.00      44/116         FT_Add_Module [601]
[579]    0.0    0.00    0.00     116         ft_mem_alloc [579]
                0.00    0.00     116/172         ft_mem_qalloc [572]
-----------------------------------------------
                0.00    0.00     116/116         MainLoop [14]
[580]    0.0    0.00    0.00     116         stats_ComputeInputStats [580]
-----------------------------------------------
                0.00    0.00       3/114         var_Create [137]
                0.00    0.00       4/114         CheckValue [553]
                0.00    0.00       5/114         var_SetChecked <cycle 5> [212]
                0.00    0.00      43/114         var_GetChecked [184]
                0.00    0.00      59/114         var_Change [198]
[581]    0.0    0.00    0.00     114         DupString [581]
-----------------------------------------------
                0.00    0.00       4/114         CheckValue [553]
                0.00    0.00       4/114         var_Change [198]
                0.00    0.00       5/114         var_SetChecked <cycle 5> [212]
                0.00    0.00     101/114         Destroy [574]
[582]    0.0    0.00    0.00     114         FreeString [582]
-----------------------------------------------
                0.00    0.00     112/112         tt_face_load_font_dir [852]
[583]    0.0    0.00    0.00     112         FT_Stream_GetULong [583]
-----------------------------------------------
                0.00    0.00     105/105         Find [586]
[584]    0.0    0.00    0.00     105         Lookup [584]
-----------------------------------------------
                0.00    0.00     105/105         ff_atrac3p_init_vlcs [965]
[585]    0.0    0.00    0.00     105         build_canonical_huff [585]
                0.00    0.00     105/178         ff_init_vlc_sparse [568]
-----------------------------------------------
                                   4             Find [586]
                0.00    0.00       6/103         vlc_fourcc_GetDescription [687]
                0.00    0.00      97/103         vlc_fourcc_GetCodec [589]
[586]    0.0    0.00    0.00     103+4       Find [586]
                0.00    0.00     105/105         Lookup [584]
                                   4             Find [586]
-----------------------------------------------
                0.00    0.00       2/102         tt_face_load_hhea [714]
                0.00    0.00       4/102         tt_face_load_maxp [858]
                0.00    0.00       4/102         tt_face_load_os2 [860]
                0.00    0.00       6/102         sfnt_load_face [832]
                0.00    0.00      30/102         tt_face_load_font_dir [852]
                0.00    0.00      56/102         tt_face_load_name [859]
[587]    0.0    0.00    0.00     102         FT_Stream_ReadFields [587]
                0.00    0.00      48/56          FT_Stream_EnterFrame [595]
                0.00    0.00      48/52          FT_Stream_ExitFrame [596]
-----------------------------------------------
                0.00    0.00       4/102         FT_Stream_ReadAt [701]
                0.00    0.00       6/102         FT_Stream_ReadULong [666]
                0.00    0.00      36/102         FT_Stream_Seek [603]
                0.00    0.00      56/102         FT_Stream_EnterFrame [595]
[588]    0.0    0.00    0.00     102         ft_ansi_stream_io [588]
-----------------------------------------------
                0.00    0.00       1/97          GetOmxRole [903]
                0.00    0.00       1/97          GetFfmpegCodec [902]
                0.00    0.00       1/97          VoutValidateFormat [944]
                0.00    0.00       1/97          vlc_fourcc_GetCodecAudio [1022]
                0.00    0.00       1/97          EsOutAdd <cycle 4> [216]
                0.00    0.00       4/97          es_format_IsSimilar [805]
                0.00    0.00      12/97          aout_BitsPerSample [643]
                0.00    0.00      76/97          video_format_Setup [591]
[589]    0.0    0.00    0.00      97         vlc_fourcc_GetCodec [589]
                0.00    0.00      97/103         Find [586]
-----------------------------------------------
                0.00    0.00       1/82          vout_new_buffer <cycle 4> [30]
                0.00    0.00       1/82          VoutValidateFormat [944]
                0.00    0.00       1/82          ThreadStart [187]
                0.00    0.00       1/82          EsOutAdd <cycle 4> [216]
                0.00    0.00       2/82          vout_SetDisplayZoom [873]
                0.00    0.00      76/82          video_format_Setup [591]
[590]    0.0    0.00    0.00      82         vlc_ureduce [590]
-----------------------------------------------
                0.00    0.00       4/76          picture_New [711]
                0.00    0.00      36/76          picture_Setup [606]
                0.00    0.00      36/76          picture_NewFromResource [605]
[591]    0.0    0.00    0.00      76         video_format_Setup [591]
                0.00    0.00      76/97          vlc_fourcc_GetCodec [589]
                0.00    0.00      76/82          vlc_ureduce [590]
-----------------------------------------------
                0.00    0.00      75/75          EnsureUTF8 [899]
[592]    0.0    0.00    0.00      75         vlc_towc [592]
-----------------------------------------------
                0.00    0.00      63/63          module_load <cycle 4> [594]
[593]    0.0    0.00    0.00      63         module_Map [593]
-----------------------------------------------
                                  63             vlc_module_load <cycle 4> [78]
[594]    0.0    0.00    0.00      63         module_load <cycle 4> [594]
                0.00    0.00      63/63          module_Map [593]
                                  63             generic_start <cycle 4> [48]
-----------------------------------------------
                0.00    0.00       2/56          tt_face_load_name [859]
                0.00    0.00       2/56          tt_face_load_font_dir [852]
                0.00    0.00       4/56          FT_Stream_ExtractFrame [699]
                0.00    0.00      48/56          FT_Stream_ReadFields [587]
[595]    0.0    0.00    0.00      56         FT_Stream_EnterFrame [595]
                0.00    0.00      56/172         ft_mem_qalloc [572]
                0.00    0.00      56/102         ft_ansi_stream_io [588]
-----------------------------------------------
                0.00    0.00       2/52          tt_face_load_name [859]
                0.00    0.00       2/52          tt_face_load_font_dir [852]
                0.00    0.00      48/52          FT_Stream_ReadFields [587]
[596]    0.0    0.00    0.00      52         FT_Stream_ExitFrame [596]
                0.00    0.00      52/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       1/50          demux_GetParentInput [960]
                0.00    0.00       1/50          input_resource_HoldAout [474]
                0.00    0.00       1/50          input_resource_HoldVouts [452]
                0.00    0.00       4/50          vlc_list_children [422]
                0.00    0.00       4/50          EsUnselect <cycle 4> [353]
                0.00    0.00      17/50          libvlc_get_input_thread [359]
                0.00    0.00      22/50          vlc_custom_create [347]
[597]    0.0    0.00    0.00      50         vlc_object_hold [597]
-----------------------------------------------
                0.00    0.00       6/46          var_Change [198]
                0.00    0.00      40/46          CheckValue [553]
[598]    0.0    0.00    0.00      46         CmpInt [598]
-----------------------------------------------
                0.00    0.00       2/42          tt_face_load_cvt [850]
                0.00    0.00       2/42          tt_face_load_kern [857]
                0.00    0.00       2/42          tt_face_load_hmtx [856]
                0.00    0.00       2/42          tt_face_load_gasp [853]
                0.00    0.00       2/42          tt_face_load_pclt [861]
                0.00    0.00       2/42          tt_face_load_name [859]
                0.00    0.00       2/42          tt_face_load_post [862]
                0.00    0.00       2/42          tt_face_load_maxp [858]
                0.00    0.00       2/42          tt_face_load_cmap [849]
                0.00    0.00       2/42          tt_face_load_generic_header [854]
                0.00    0.00       2/42          tt_face_load_os2 [860]
                0.00    0.00       4/42          tt_face_load_hhea [714]
                0.00    0.00       6/42          tt_face_load_eblc [851]
                0.00    0.00      10/42          tt_face_init [848]
[599]    0.0    0.00    0.00      42         tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00      14/41          module_unneed <cycle 4> [169]
                0.00    0.00      27/41          vlc_module_load <cycle 4> [78]
[600]    0.0    0.00    0.00      41         module_get_object [600]
-----------------------------------------------
                0.00    0.00      36/36          FT_Add_Default_Modules [738]
[601]    0.0    0.00    0.00      36         FT_Add_Module [601]
                0.00    0.00      44/116         ft_mem_alloc [579]
                0.00    0.00      14/16          FT_GlyphLoader_New [630]
                0.00    0.00       8/12          FT_List_Add [642]
                0.00    0.00       8/16          FT_Lookup_Renderer [633]
                0.00    0.00       6/6           ft_smooth_init [676]
                0.00    0.00       6/6           gray_raster_new [679]
                0.00    0.00       2/2           ft_raster1_init [816]
                0.00    0.00       2/2           ps_hinter_init [828]
                0.00    0.00       2/2           af_autofitter_init [778]
                0.00    0.00       2/2           T42_Driver_Init [771]
                0.00    0.00       2/2           cid_driver_init [797]
                0.00    0.00       2/2           cff_driver_init [794]
                0.00    0.00       2/2           T1_Driver_Init [769]
                0.00    0.00       2/2           tt_driver_init [842]
                0.00    0.00       2/2           ft_black_new [811]
-----------------------------------------------
                0.00    0.00      36/36          FT_Done_Library [742]
[602]    0.0    0.00    0.00      36         FT_Remove_Module [602]
                0.00    0.00      64/366         ft_mem_free [564]
                0.00    0.00      18/20          FT_List_Finalize [625]
                0.00    0.00      12/16          FT_GlyphLoader_Done [629]
                0.00    0.00       8/10          FT_List_Find [650]
                0.00    0.00       8/10          FT_List_Remove [651]
                0.00    0.00       8/16          FT_Lookup_Renderer [633]
                0.00    0.00       6/6           gray_raster_done [678]
                0.00    0.00       2/2           tt_driver_done [841]
                0.00    0.00       2/2           T1_Driver_Done [768]
                0.00    0.00       2/2           cff_driver_done [793]
                0.00    0.00       2/2           cid_driver_done [796]
                0.00    0.00       2/2           T42_Driver_Done [770]
                0.00    0.00       2/2           af_autofitter_done [777]
                0.00    0.00       2/2           ps_hinter_done [827]
                0.00    0.00       2/2           ft_black_done [810]
-----------------------------------------------
                0.00    0.00       2/36          tt_face_load_hmtx [856]
                0.00    0.00       2/36          tt_face_load_name [859]
                0.00    0.00       2/36          tt_face_load_post [862]
                0.00    0.00       2/36          tt_face_load_maxp [858]
                0.00    0.00       2/36          tt_face_load_hhea [714]
                0.00    0.00       2/36          sfnt_init_face [831]
                0.00    0.00       2/36          tt_face_load_cmap [849]
                0.00    0.00       2/36          tt_face_load_generic_header [854]
                0.00    0.00       2/36          tt_face_load_os2 [860]
                0.00    0.00       4/36          tt_face_get_name [644]
                0.00    0.00       6/36          tt_face_init [848]
                0.00    0.00       8/36          tt_face_load_font_dir [852]
[603]    0.0    0.00    0.00      36         FT_Stream_Seek [603]
                0.00    0.00      36/102         ft_ansi_stream_io [588]
-----------------------------------------------
                0.00    0.00      36/36          picture_Release [51]
[604]    0.0    0.00    0.00      36         PictureDestroy [604]
-----------------------------------------------
                0.00    0.00       5/36          picture_NewFromFormat [693]
                0.00    0.00      31/36          Open [300]
[605]    0.0    0.00    0.00      36         picture_NewFromResource [605]
                0.00    0.00      36/76          video_format_Setup [591]
                0.00    0.00      36/36          picture_Setup [606]
                0.00    0.00      36/6923        video_format_CopyCrop [530]
                0.00    0.00       5/5           posix_memalign [694]
-----------------------------------------------
                0.00    0.00      36/36          picture_NewFromResource [605]
[606]    0.0    0.00    0.00      36         picture_Setup [606]
                0.00    0.00      36/76          video_format_Setup [591]
                0.00    0.00      36/36          vlc_fourcc_GetChromaDescription [607]
-----------------------------------------------
                0.00    0.00      36/36          picture_Setup [606]
[607]    0.0    0.00    0.00      36         vlc_fourcc_GetChromaDescription [607]
-----------------------------------------------
                0.00    0.00       2/32          matroska_segment_c::~matroska_segment_c() [16530]
                0.00    0.00       2/32          input_item_UpdateTracksInfo [414]
                0.00    0.00       2/32          DecoderUpdateFormatLocked [735]
                0.00    0.00       2/32          EsOutDel [241]
                0.00    0.00       2/32          EsOutSend [123]
                0.00    0.00       6/32          DeleteDecoder <cycle 4> [72]
                0.00    0.00       8/32          filter_chain_Reset [652]
                0.00    0.00       8/32          filter_chain_Delete [703]
[608]    0.0    0.00    0.00      32         es_format_Clean [608]
-----------------------------------------------
                0.00    0.00       1/31          OpenDecoder [52]
                0.00    0.00      30/31          avcodec_register_all [110]
[609]    0.0    0.00    0.00      31         av_register_codec_parser [609]
-----------------------------------------------
                0.00    0.00      30/30          std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::append(unsigned int, wchar_t) [23195]
[610]    0.0    0.00    0.00      30         wmemset [610]
-----------------------------------------------
                0.00    0.00       2/29          DeleteDecoder <cycle 4> [72]
                0.00    0.00      27/29          input_DecoderIsEmpty [304]
[611]    0.0    0.00    0.00      29         block_FifoCount [611]
-----------------------------------------------
                0.00    0.00       4/28          tt_get_interface [863]
                0.00    0.00       4/28          cff_get_interface [795]
                0.00    0.00      20/28          ft_module_get_service [815]
[612]    0.0    0.00    0.00      28         ft_service_list_lookup [612]
-----------------------------------------------
                0.00    0.00       1/25          ff_yuv2rgb_c_init_tables [985]
                0.00    0.00       6/25          sws_setColorspaceDetails [838]
                0.00    0.00       6/25          ff_sws_init_output_funcs [808]
                0.00    0.00      12/25          sws_init_context [226]
[613]    0.0    0.00    0.00      25         av_pix_fmt_desc_get [613]
-----------------------------------------------
                0.00    0.00      25/25          Thread [17]
[614]    0.0    0.00    0.00      25         vout_control_cmd_Clean [614]
-----------------------------------------------
                0.00    0.00       4/25          std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::rfind(wchar_t const*, unsigned int, unsigned int) const [22601]
                0.00    0.00      21/25          TagLib::String::operator==(TagLib::String const&) const [16267]
[615]    0.0    0.00    0.00      25         wmemcmp [615]
-----------------------------------------------
                0.00    0.00      24/24          ff_fft_init [671]
[616]    0.0    0.00    0.00      24         ff_init_ff_cos_tabs [616]
-----------------------------------------------
                0.00    0.00       7/23          module_find [660]
                0.00    0.00      16/23          vlc_module_load <cycle 4> [78]
[617]    0.0    0.00    0.00      23         module_list_free [617]
-----------------------------------------------
                0.00    0.00      22/22          av_opt_set_defaults [722]
[618]    0.0    0.00    0.00      22         av_opt_set_double [618]
                0.00    0.00      22/167         av_opt_find2 [573]
-----------------------------------------------
                0.00    0.00       2/22          DecoderUpdateFormatLocked [735]
                0.00    0.00       2/22          input_DecoderHasFormatChanged [143]
                0.00    0.00       2/22          EsOutAdd <cycle 4> [216]
                0.00    0.00       4/22          input_item_UpdateTracksInfo [414]
                0.00    0.00       4/22          CreateDecoder <cycle 4> [441]
                0.00    0.00       8/22          filter_chain_Reset [652]
[619]    0.0    0.00    0.00      22         es_format_Copy [619]
-----------------------------------------------
                0.00    0.00       2/22          matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
                0.00    0.00       2/22          CreateDecoder <cycle 4> [441]
                0.00    0.00       2/22          es_format_InitFromVideo [804]
                0.00    0.00       4/22          SpuRenderCreateAndLoadScale <cycle 4> [442]
                0.00    0.00       4/22          SpuRenderCreateAndLoadText <cycle 4> [254]
                0.00    0.00       8/22          filter_chain_New [705]
[620]    0.0    0.00    0.00      22         es_format_Init [620]
-----------------------------------------------
                0.00    0.00      22/22          ft_mem_realloc [622]
[621]    0.0    0.00    0.00      22         ft_mem_qrealloc [621]
                0.00    0.00      16/116         ft_mem_alloc [579]
                0.00    0.00       4/4           ft_realloc [707]
                0.00    0.00       2/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       2/22          FT_GlyphLoader_CreateExtra [745]
                0.00    0.00       2/22          TT_New_Context [774]
                0.00    0.00       2/22          tt_face_load_name [859]
                0.00    0.00       2/22          tt_face_load_font_dir [852]
                0.00    0.00       4/22          tt_name_entry_ascii_from_utf16 [715]
                0.00    0.00       4/22          tt_face_get_name [644]
                0.00    0.00       6/22          FT_CMap_New [665]
[622]    0.0    0.00    0.00      22         ft_mem_realloc [622]
                0.00    0.00      22/22          ft_mem_qrealloc [621]
-----------------------------------------------
                0.00    0.00      21/21          var_DestroyAll [624]
[623]    0.0    0.00    0.00      21         tdestroy [623]
-----------------------------------------------
                0.00    0.00      21/21          vlc_object_release [349]
[624]    0.0    0.00    0.00      21         var_DestroyAll [624]
                0.00    0.00      21/21          tdestroy [623]
                0.00    0.00       7/7           tdestroy_recurse [662]
-----------------------------------------------
                0.00    0.00       2/20          destroy_face [802]
                0.00    0.00      18/20          FT_Remove_Module [602]
[625]    0.0    0.00    0.00      20         FT_List_Finalize [625]
                0.00    0.00       4/366         ft_mem_free [564]
                0.00    0.00       2/2           destroy_size [803]
-----------------------------------------------
                0.00    0.00      19/19          vlc_module_load <cycle 4> [78]
[626]    0.0    0.00    0.00      19         module_get_score [626]
-----------------------------------------------
                0.00    0.00       2/18          tt_face_free_eblc [845]
                0.00    0.00       8/18          tt_face_done [844]
                0.00    0.00       8/18          sfnt_done_face [830]
[627]    0.0    0.00    0.00      18         FT_Stream_ReleaseFrame [627]
                0.00    0.00      18/366         ft_mem_free [564]
-----------------------------------------------
                                   2             CreateDecoder <cycle 4> [441]
                                   2             SpuRenderCreateAndLoadScale <cycle 4> [442]
                                   2             SpuRenderCreateAndLoadText <cycle 4> [254]
                0.00    0.00       1/49617       access_New [232]
                0.00    0.00       1/49617       ControlPause [286]
                0.00    0.00       1/49617       DisplayNew [308]
                0.00    0.00       1/49617       aout_New [201]
                0.00    0.00       1/49617       aout_volume_SetFormat [319]
                0.00    0.00       2/49617       demux_New [203]
                0.00    0.00       2/49617       stream_FilterNew [283]
                0.00    0.00       2/49617       CreateFilter [285]
[628]    0.0    0.00    0.00      17         module_need <cycle 4> [628]
                                  17             vlc_module_load <cycle 4> [78]
-----------------------------------------------
                0.00    0.00       2/16          ft_glyphslot_done [813]
                0.00    0.00       2/16          af_autofitter_done [777]
                0.00    0.00      12/16          FT_Remove_Module [602]
[629]    0.0    0.00    0.00      16         FT_GlyphLoader_Done [629]
                0.00    0.00      16/16          FT_GlyphLoader_Rewind [632]
                0.00    0.00      16/16          FT_GlyphLoader_Reset [631]
-----------------------------------------------
                0.00    0.00       2/16          FT_New_GlyphSlot [748]
                0.00    0.00      14/16          FT_Add_Module [601]
[630]    0.0    0.00    0.00      16         FT_GlyphLoader_New [630]
                0.00    0.00      16/116         ft_mem_alloc [579]
-----------------------------------------------
                0.00    0.00      16/16          FT_GlyphLoader_Done [629]
[631]    0.0    0.00    0.00      16         FT_GlyphLoader_Reset [631]
                0.00    0.00      80/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00      16/16          FT_GlyphLoader_Done [629]
[632]    0.0    0.00    0.00      16         FT_GlyphLoader_Rewind [632]
-----------------------------------------------
                0.00    0.00       8/16          FT_Remove_Module [602]
                0.00    0.00       8/16          FT_Add_Module [601]
[633]    0.0    0.00    0.00      16         FT_Lookup_Renderer [633]
-----------------------------------------------
                0.00    0.00       8/16          ft_recompute_scaled_metrics [817]
                0.00    0.00       8/16          tt_size_reset [867]
[634]    0.0    0.00    0.00      16         FT_MulFix [634]
-----------------------------------------------
                0.00    0.00      16/16          subtitles_Detect [243]
[635]    0.0    0.00    0.00      16         vlc_readdir [635]
-----------------------------------------------
                0.00    0.00       1/14          var_Change [198]
                0.00    0.00      13/14          CheckValue [553]
[636]    0.0    0.00    0.00      14         CmpFloat [636]
-----------------------------------------------
                0.00    0.00      14/14          VoutVideoFilterStaticNewPicture [310]
[637]    0.0    0.00    0.00      14         filter_chain_VideoFlush [637]
-----------------------------------------------
                                   3             Peek <cycle 2> [721]
                0.00    0.00       1/11          RarProbe [936]
                0.00    0.00       1/11          OpenGzip [932]
                0.00    0.00       1/11          OpenBzip2 [915]
                0.00    0.00       1/11          OpenXZ [933]
                0.00    0.00       1/11          Open [909]
                0.00    0.00       1/11          StreamOpen [940]
                0.00    0.00       1/11          Open [911]
                0.00    0.00       1/11          Open(vlc_object_t*) <cycle 4> [117]
                0.00    0.00       1/11          dash::xml::DOMParser::isDash(stream_t*) [16533]
                0.00    0.00       2/11          demux_New [203]
[638]    0.0    0.00    0.00      14         stream_Peek <cycle 2> [638]
                0.00    0.00      11/11          AStreamPeekStream [646]
                                   3             Peek <cycle 2> [721]
-----------------------------------------------
                                  14             module_unneed <cycle 4> [169]
[639]    0.0    0.00    0.00      14         vlc_module_unload <cycle 4> [639]
                                  11             generic_stop <cycle 4> [193]
-----------------------------------------------
                0.00    0.00       1/13          OpenDecoder [52]
                0.00    0.00       1/13          ff_fmt_convert_init_arm [972]
                0.00    0.00       1/13          ff_psdsp_init_arm [980]
                0.00    0.00       1/13          ff_sbrdsp_init_arm [982]
                0.00    0.00       1/13          ff_float_dsp_init_arm [968]
                0.00    0.00       2/13          sws_init_context [226]
                0.00    0.00       6/13          ff_fft_init_arm [672]
[640]    0.0    0.00    0.00      13         av_get_cpu_flags [640]
                0.00    0.00       1/1           ff_get_cpu_flags_arm [973]
-----------------------------------------------
                0.00    0.00      13/13          subtitles_Detect [243]
[641]    0.0    0.00    0.00      13         subtitles_Filter [641]
-----------------------------------------------
                0.00    0.00       2/12          FT_New_Size [751]
                0.00    0.00       2/12          FT_Open_Face [752]
                0.00    0.00       8/12          FT_Add_Module [601]
[642]    0.0    0.00    0.00      12         FT_List_Add [642]
-----------------------------------------------
                0.00    0.00       1/12          CreateResampler [893]
                0.00    0.00       1/12          aout_FiltersPipelineCreate [205]
                0.00    0.00       1/12          aout_FiltersNew [190]
                0.00    0.00       1/12          aout_OutputNew [225]
                0.00    0.00       1/12          info_category_AddInfo [293]
                0.00    0.00       7/12          aout_FormatPrepare [656]
[643]    0.0    0.00    0.00      12         aout_BitsPerSample [643]
                0.00    0.00      12/97          vlc_fourcc_GetCodec [589]
-----------------------------------------------
                0.00    0.00      12/12          sfnt_load_face [832]
[644]    0.0    0.00    0.00      12         tt_face_get_name [644]
                0.00    0.00       4/4           tt_name_entry_ascii_from_utf16 [715]
                0.00    0.00       4/22          ft_mem_realloc [622]
                0.00    0.00       4/36          FT_Stream_Seek [603]
                0.00    0.00       4/4           FT_Stream_ReadAt [701]
                0.00    0.00       4/4           FT_Stream_Read [700]
-----------------------------------------------
                0.00    0.00      11/11          AStreamSeekStream [114]
[645]    0.0    0.00    0.00      11         ASeek [645]
                0.00    0.00      11/11          FileSeek [647]
-----------------------------------------------
                0.00    0.00      11/11          stream_Peek <cycle 2> [638]
[646]    0.0    0.00    0.00      11         AStreamPeekStream [646]
-----------------------------------------------
                0.00    0.00      11/11          ASeek [645]
[647]    0.0    0.00    0.00      11         FileSeek [647]
-----------------------------------------------
                0.00    0.00       4/10          FT_Request_Metrics [753]
                0.00    0.00       6/10          tt_size_reset [867]
[648]    0.0    0.00    0.00      10         FT_DivFix [648]
-----------------------------------------------
                0.00    0.00       2/10          tt_get_interface [863]
                0.00    0.00       2/10          cff_get_interface [795]
                0.00    0.00       2/10          T42_Driver_Init [771]
                0.00    0.00       4/10          FT_Get_Module_Interface [698]
[649]    0.0    0.00    0.00      10         FT_Get_Module [649]
-----------------------------------------------
                0.00    0.00       2/10          FT_Done_Face [739]
                0.00    0.00       8/10          FT_Remove_Module [602]
[650]    0.0    0.00    0.00      10         FT_List_Find [650]
-----------------------------------------------
                0.00    0.00       2/10          FT_Done_Face [739]
                0.00    0.00       8/10          FT_Remove_Module [602]
[651]    0.0    0.00    0.00      10         FT_List_Remove [651]
-----------------------------------------------
                0.00    0.00       1/9           spu_Render [133]
                0.00    0.00       4/9           ThreadChangeFilters [361]
                0.00    0.00       4/9           filter_chain_Delete [703]
[652]    0.0    0.00    0.00       9         filter_chain_Reset [652]
                0.00    0.00       8/32          es_format_Clean [608]
                0.00    0.00       8/22          es_format_Copy [619]
-----------------------------------------------
                0.00    0.00       2/8           tt_face_load_hmtx [856]
                0.00    0.00       2/8           tt_face_load_name [859]
                0.00    0.00       2/8           sfnt_init_face [831]
                0.00    0.00       2/8           tt_face_load_font_dir [852]
[653]    0.0    0.00    0.00       8         FT_Stream_Pos [653]
-----------------------------------------------
                0.00    0.00       8/8           ps_hinter_done [827]
[654]    0.0    0.00    0.00       8         ps_mask_table_done [654]
                0.00    0.00       8/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       8/8           var_Destroy [275]
[655]    0.0    0.00    0.00       8         tdelete [655]
                0.00    0.00      44/32988       varcmp [502]
-----------------------------------------------
                0.00    0.00       1/7           Start [938]
                0.00    0.00       1/7           aout_update_format [80]
                0.00    0.00       1/7           TryFormat [311]
                0.00    0.00       2/7           SetupOutputFormat [544]
                0.00    0.00       2/7           aout_OutputNew [225]
[656]    0.0    0.00    0.00       7         aout_FormatPrepare [656]
                0.00    0.00       7/12          aout_BitsPerSample [643]
-----------------------------------------------
                0.00    0.00       1/7           InitAudioDec [83]
                0.00    0.00       6/7           DecodeAudio [4]
[657]    0.0    0.00    0.00       7         date_Set [657]
-----------------------------------------------
                                   2             input_event_changed <cycle 5> [180]
                0.00    0.00       1/732         spu_get_attachments [368]
                0.00    0.00       4/732         info_category_AddInfo [293]
[658]    0.0    0.00    0.00       7         input_Control <cycle 5> [658]
                                   7             input_vaControl <cycle 5> [350]
-----------------------------------------------
                0.00    0.00       1/7           OpenDecoder [920]
                0.00    0.00       1/7           OpenDecoder [923]
                0.00    0.00       1/7           OpenDecoder [925]
                0.00    0.00       4/7           aout_New [201]
[659]    0.0    0.00    0.00       7         module_exists [659]
                0.00    0.00       7/7           module_find [660]
-----------------------------------------------
                0.00    0.00       7/7           module_exists [659]
[660]    0.0    0.00    0.00       7         module_find [660]
                0.00    0.00       7/7           module_list_get [661]
                0.00    0.00       7/23          module_list_free [617]
-----------------------------------------------
                0.00    0.00       7/7           module_find [660]
[661]    0.0    0.00    0.00       7         module_list_get [661]
-----------------------------------------------
                                 131             tdestroy_recurse [662]
                0.00    0.00       7/7           var_DestroyAll [624]
[662]    0.0    0.00    0.00       7+131     tdestroy_recurse [662]
                0.00    0.00     138/158         Destroy [574]
                0.00    0.00     138/138         CleanupVar [577]
                                 131             tdestroy_recurse [662]
-----------------------------------------------
                0.00    0.00       7/7           vlc_audio_replay_gain_MergeFromMeta [1019]
[663]    0.0    0.00    0.00       7         vlc_meta_GetExtra [663]
-----------------------------------------------
                                   2             EsOutAdd <cycle 4> [216]
                                   4             EsOutControl <cycle 4> [131]
[664]    0.0    0.00    0.00       6         EsOutSelect <cycle 4> [664]
                0.00    0.00       4/7708        EsIsSelected [529]
                                   2             EsSelect <cycle 4> [294]
-----------------------------------------------
                0.00    0.00       6/6           tt_face_build_cmaps [843]
[665]    0.0    0.00    0.00       6         FT_CMap_New [665]
                0.00    0.00       6/116         ft_mem_alloc [579]
                0.00    0.00       6/22          ft_mem_realloc [622]
                0.00    0.00       4/4           tt_cmap4_init [712]
                0.00    0.00       2/2           tt_cmap_init [840]
-----------------------------------------------
                0.00    0.00       2/6           sfnt_init_face [831]
                0.00    0.00       4/6           tt_face_load_font_dir [852]
[666]    0.0    0.00    0.00       6         FT_Stream_ReadULong [666]
                0.00    0.00       6/102         ft_ansi_stream_io [588]
-----------------------------------------------
                0.00    0.00       6/6           GetParameters [298]
[667]    0.0    0.00    0.00       6         FixParameters [667]
-----------------------------------------------
                0.00    0.00       6/6           GetParameters [298]
[668]    0.0    0.00    0.00       6         GetFfmpegChroma [668]
-----------------------------------------------
                0.00    0.00       2/6           sws_setColorspaceDetails [838]
                0.00    0.00       4/6           sws_init_context [226]
[669]    0.0    0.00    0.00       6         av_get_bits_per_pixel [669]
-----------------------------------------------
                0.00    0.00       1/6           ff_aac_sbr_ctx_close [961]
                0.00    0.00       5/6           aac_decode_close [945]
[670]    0.0    0.00    0.00       6         ff_fft_end [670]
                0.00    0.00       6/71746       av_freep [497]
-----------------------------------------------
                0.00    0.00       6/6           ff_mdct_init [674]
[671]    0.0    0.00    0.00       6         ff_fft_init [671]
                0.00    0.00    1408/1408        split_radix_permutation [554]
                0.00    0.00      24/24          ff_init_ff_cos_tabs [616]
                0.00    0.00      12/30114       av_malloc [505]
                0.00    0.00       6/6           ff_fft_init_arm [672]
-----------------------------------------------
                0.00    0.00       6/6           ff_fft_init [671]
[672]    0.0    0.00    0.00       6         ff_fft_init_arm [672]
                0.00    0.00       6/13          av_get_cpu_flags [640]
-----------------------------------------------
                0.00    0.00       1/6           ff_aac_sbr_ctx_close [961]
                0.00    0.00       5/6           aac_decode_close [945]
[673]    0.0    0.00    0.00       6         ff_mdct_end [673]
                0.00    0.00       6/71746       av_freep [497]
-----------------------------------------------
                0.00    0.00       2/6           ff_aac_sbr_ctx_init [962]
                0.00    0.00       4/6           aac_decode_init [87]
[674]    0.0    0.00    0.00       6         ff_mdct_init [674]
                0.00    0.00       6/6           ff_fft_init [671]
                0.00    0.00       6/30114       av_malloc [505]
-----------------------------------------------
                0.00    0.00       6/6           destroy_charmaps [801]
[675]    0.0    0.00    0.00       6         ft_cmap_done_internal [675]
-----------------------------------------------
                0.00    0.00       6/6           FT_Add_Module [601]
[676]    0.0    0.00    0.00       6         ft_smooth_init [676]
                0.00    0.00       6/6           gray_raster_reset [680]
-----------------------------------------------
                0.00    0.00       6/6           tt_face_build_cmaps [843]
[677]    0.0    0.00    0.00       6         ft_validator_init [677]
-----------------------------------------------
                0.00    0.00       6/6           FT_Remove_Module [602]
[678]    0.0    0.00    0.00       6         gray_raster_done [678]
-----------------------------------------------
                0.00    0.00       6/6           FT_Add_Module [601]
[679]    0.0    0.00    0.00       6         gray_raster_new [679]
                0.00    0.00       6/116         ft_mem_alloc [579]
-----------------------------------------------
                0.00    0.00       6/6           ft_smooth_init [676]
[680]    0.0    0.00    0.00       6         gray_raster_reset [680]
-----------------------------------------------
                0.00    0.00       1/6           input_resource_RequestVout <cycle 4> [207]
                0.00    0.00       1/6           EsOutControl <cycle 4> [131]
                0.00    0.00       4/6           info_category_AddInfo [293]
[681]    0.0    0.00    0.00       6         input_GetItem [681]
-----------------------------------------------
                0.00    0.00       1/6           stopped_callback [12348]
                0.00    0.00       1/6           libvlc_media_player_set_media [329]
                0.00    0.00       4/6           set_state [382]
[682]    0.0    0.00    0.00       6         libvlc_media_release [682]
-----------------------------------------------
                0.00    0.00       1/6           libvlc_media_player_set_media [329]
                0.00    0.00       1/6           libvlc_media_player_get_media [476]
                0.00    0.00       4/6           set_state [382]
[683]    0.0    0.00    0.00       6         libvlc_media_retain [683]
-----------------------------------------------
                0.00    0.00       6/6           vlc_CPU [686]
[684]    0.0    0.00    0.00       6         pthread_once [684]
-----------------------------------------------
                0.00    0.00       2/6           ft_module_get_service [815]
                0.00    0.00       2/6           tt_get_interface [863]
                0.00    0.00       2/6           cff_get_interface [795]
[685]    0.0    0.00    0.00       6         sfnt_get_interface [685]
-----------------------------------------------
                0.00    0.00       1/6           Probe [935]
                0.00    0.00       1/6           OpenFilter [930]
                0.00    0.00       2/6           Open [766]
                0.00    0.00       2/6           Open [767]
[686]    0.0    0.00    0.00       6         vlc_CPU [686]
                0.00    0.00       6/6           pthread_once [684]
-----------------------------------------------
                0.00    0.00       1/6           GetFfmpegCodec [902]
                0.00    0.00       5/6           info_category_AddInfo [293]
[687]    0.0    0.00    0.00       6         vlc_fourcc_GetDescription [687]
                0.00    0.00       6/103         Find [586]
-----------------------------------------------
                0.00    0.00       2/6           EsOutControl <cycle 4> [131]
                0.00    0.00       4/6           input_item_GetMeta [419]
[688]    0.0    0.00    0.00       6         vlc_meta_Get [688]
-----------------------------------------------
                0.00    0.00       1/5           info_category_AddInfo [293]
                0.00    0.00       2/5           aout_FormatPrint [209]
                0.00    0.00       2/5           aout_FormatsPrint [246]
[689]    0.0    0.00    0.00       5         aout_FormatPrintChannels [689]
-----------------------------------------------
                0.00    0.00       1/5           avcodec_default_get_buffer2 [29]
                0.00    0.00       4/5           avcodec_close [324]
[690]    0.0    0.00    0.00       5         av_buffer_pool_uninit [690]
                0.00    0.00       3/71746       av_freep [497]
                0.00    0.00       2/71950       av_free [496]
                0.00    0.00       2/2           av_buffer_default_free [782]
-----------------------------------------------
                0.00    0.00       1/5           input_item_SetURI [473]
                0.00    0.00       4/5           make_path [710]
[691]    0.0    0.00    0.00       5         decode_URI [691]
-----------------------------------------------
                0.00    0.00       2/5           LanguageSplit [303]
                0.00    0.00       3/5           EsOutProgramSelect [220]
[692]    0.0    0.00    0.00       5         input_SendEventEsDel [692]
-----------------------------------------------
                0.00    0.00       1/5           Open [300]
                0.00    0.00       4/5           picture_New [711]
[693]    0.0    0.00    0.00       5         picture_NewFromFormat [693]
                0.00    0.00       5/36          picture_NewFromResource [605]
-----------------------------------------------
                0.00    0.00       5/5           picture_NewFromResource [605]
[694]    0.0    0.00    0.00       5         posix_memalign [694]
-----------------------------------------------
                0.00    0.00       1/5           vlc_event_manager_init [1021]
                0.00    0.00       1/5           input_EsOutNew [357]
                0.00    0.00       1/5           input_EsOutTimeshiftNew [219]
                0.00    0.00       2/5           libvlc_event_manager_new [443]
[695]    0.0    0.00    0.00       5         vlc_mutex_init_recursive [695]
-----------------------------------------------
                0.00    0.00       5/5           subtitles_Detect [243]
[696]    0.0    0.00    0.00       5         vlc_opendir [696]
-----------------------------------------------
                0.00    0.00       4/4           Create [167]
[697]    0.0    0.00    0.00       4         Dummy_Select [697]
-----------------------------------------------
                0.00    0.00       2/4           tt_face_init [848]
                0.00    0.00       2/4           sfnt_init_face [831]
[698]    0.0    0.00    0.00       4         FT_Get_Module_Interface [698]
                0.00    0.00       4/10          FT_Get_Module [649]
-----------------------------------------------
                0.00    0.00       2/4           tt_face_init [848]
                0.00    0.00       2/4           tt_face_load_cmap [849]
[699]    0.0    0.00    0.00       4         FT_Stream_ExtractFrame [699]
                0.00    0.00       4/56          FT_Stream_EnterFrame [595]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [644]
[700]    0.0    0.00    0.00       4         FT_Stream_Read [700]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [644]
[701]    0.0    0.00    0.00       4         FT_Stream_ReadAt [701]
                0.00    0.00       4/102         ft_ansi_stream_io [588]
-----------------------------------------------
                0.00    0.00       4/4           input_item_ReplaceInfos [356]
[702]    0.0    0.00    0.00       4         InputItemFindCat [702]
-----------------------------------------------
                0.00    0.00       2/4           ThreadStop [237]
                0.00    0.00       2/4           spu_Destroy <cycle 4> [493]
[703]    0.0    0.00    0.00       4         filter_chain_Delete [703]
                0.00    0.00       8/32          es_format_Clean [608]
                0.00    0.00       4/9           filter_chain_Reset [652]
-----------------------------------------------
                0.00    0.00       4/4           ThreadChangeFilters [361]
[704]    0.0    0.00    0.00       4         filter_chain_GetFmtOut [704]
-----------------------------------------------
                0.00    0.00       2/4           ThreadStart [187]
                0.00    0.00       2/4           spu_Create <cycle 4> [276]
[705]    0.0    0.00    0.00       4         filter_chain_New [705]
                0.00    0.00       8/22          es_format_Init [620]
-----------------------------------------------
                0.00    0.00       2/4           Create [167]
                0.00    0.00       2/4           open_face [823]
[706]    0.0    0.00    0.00       4         find_unicode_charmap [706]
-----------------------------------------------
                0.00    0.00       4/4           ft_mem_qrealloc [621]
[707]    0.0    0.00    0.00       4         ft_realloc [707]
-----------------------------------------------
                0.00    0.00       2/4           EsSelect <cycle 4> [294]
                0.00    0.00       2/4           EsUnselect <cycle 4> [353]
[708]    0.0    0.00    0.00       4         input_SendEventEsSelect [708]
-----------------------------------------------
                0.00    0.00       1/4           aac_decode_init [87]
                0.00    0.00       3/4           ff_ps_init [978]
[709]    0.0    0.00    0.00       4         make_filters_from_proto [709]
-----------------------------------------------
                0.00    0.00       1/4           get_path [988]
                0.00    0.00       1/4           subtitles_Detect [243]
                0.00    0.00       2/4           demux_New [203]
[710]    0.0    0.00    0.00       4         make_path [710]
                0.00    0.00       4/5           decode_URI [691]
-----------------------------------------------
                0.00    0.00       4/4           Init [221]
[711]    0.0    0.00    0.00       4         picture_New [711]
                0.00    0.00       4/76          video_format_Setup [591]
                0.00    0.00       4/5           picture_NewFromFormat [693]
-----------------------------------------------
                0.00    0.00       4/4           FT_CMap_New [665]
[712]    0.0    0.00    0.00       4         tt_cmap4_init [712]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_build_cmaps [843]
[713]    0.0    0.00    0.00       4         tt_cmap4_validate [713]
-----------------------------------------------
                0.00    0.00       4/4           sfnt_load_face [832]
[714]    0.0    0.00    0.00       4         tt_face_load_hhea [714]
                0.00    0.00       4/42          tt_face_goto_table [599]
                0.00    0.00       2/102         FT_Stream_ReadFields [587]
                0.00    0.00       2/36          FT_Stream_Seek [603]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [644]
[715]    0.0    0.00    0.00       4         tt_name_entry_ascii_from_utf16 [715]
                0.00    0.00       4/22          ft_mem_realloc [622]
-----------------------------------------------
                                   1             var_Copy <cycle 5> [1017]
                0.00    0.00       3/732         var_OptionParse [258]
[716]    0.0    0.00    0.00       4         var_Set <cycle 5> [716]
                                   4             var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       1/4           input_Start [993]
                0.00    0.00       1/4           vout_Request <cycle 4> [170]
                0.00    0.00       2/4           decoder_New <cycle 4> [800]
[717]    0.0    0.00    0.00       4         vlc_clone [717]
-----------------------------------------------
                0.00    0.00       1/4           input_Start [993]
                0.00    0.00       1/4           vout_Request <cycle 4> [170]
                0.00    0.00       2/4           decoder_New <cycle 4> [800]
[718]    0.0    0.00    0.00       4         vlc_clone_attr [718]
                0.00    0.00       4/4           vlc_sem_init [720]
                0.00    0.00       4/6831        vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       4/4           vlc_join [405]
[719]    0.0    0.00    0.00       4         vlc_sem_destroy [719]
                0.00    0.00       4/6803        vlc_cond_destroy [539]
                0.00    0.00       4/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       4/4           vlc_clone_attr [718]
[720]    0.0    0.00    0.00       4         vlc_sem_init [720]
                0.00    0.00       4/6831        vlc_mutex_init [536]
                0.00    0.00       4/6808        vlc_cond_init [538]
-----------------------------------------------
                                   3             stream_Peek <cycle 2> [638]
[721]    0.0    0.00    0.00       3         Peek <cycle 2> [721]
                                   3             stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/3           avcodec_get_context_defaults3 [373]
                0.00    0.00       2/3           sws_alloc_context [338]
[722]    0.0    0.00    0.00       3         av_opt_set_defaults [722]
                0.00    0.00     377/26146       av_opt_next [506]
                0.00    0.00     142/142         av_opt_set_int [576]
                0.00    0.00      22/22          av_opt_set_double [618]
                0.00    0.00       2/2           av_d2q [784]
                0.00    0.00       2/2           av_opt_set_q [788]
                0.00    0.00       1/1           av_opt_set [953]
-----------------------------------------------
                0.00    0.00       3/3           var_OptionParse [258]
[723]    0.0    0.00    0.00       3         config_GetType [723]
                0.00    0.00       3/155         config_FindConfig [575]
-----------------------------------------------
                0.00    0.00       3/3           OpenDecoder [173]
[724]    0.0    0.00    0.00       3         convert_omx_to_profile_idc [724]
-----------------------------------------------
                0.00    0.00       3/3           aac_decode_init [87]
[725]    0.0    0.00    0.00       3         ff_init_ff_sine_windows [725]
-----------------------------------------------
                0.00    0.00       3/3           aac_decode_init [87]
[726]    0.0    0.00    0.00       3         ff_sine_window_init [726]
-----------------------------------------------
                0.00    0.00       1/3           Init [221]
                0.00    0.00       2/3           es_format_IsSimilar [805]
[727]    0.0    0.00    0.00       3         video_format_IsSimilar [727]
-----------------------------------------------
                0.00    0.00       1/3           DeinterlaceIsPresent [469]
                0.00    0.00       2/3           DeinterlaceCallback <cycle 5> [202]
[728]    0.0    0.00    0.00       3         vlc_inhibit_Destroy [728]
-----------------------------------------------
                0.00    0.00       1/3           matroska_segment_c::InformationCreate() [16525]
                0.00    0.00       1/3           input_item_SetMeta [376]
                0.00    0.00       1/3           Init [163]
[729]    0.0    0.00    0.00       3         vlc_meta_New [729]
-----------------------------------------------
                0.00    0.00       3/3           input_item_SetMeta [376]
[730]    0.0    0.00    0.00       3         vlc_meta_Set [730]
-----------------------------------------------
                0.00    0.00       1/3           Create [155]
                0.00    0.00       1/3           vout_Request <cycle 4> [170]
                0.00    0.00       1/3           aout_New [201]
[731]    0.0    0.00    0.00       3         vlc_object_set_destructor [731]
-----------------------------------------------
                0.00    0.00       1/2           GetOutput <cycle 4> [53]
                0.00    0.00       1/2           CloseDecoder <cycle 4> [888]
[732]    0.0    0.00    0.00       2         ArchitectureSpecificCopyHooksDestroy [732]
-----------------------------------------------
                0.00    0.00       1/2           picture_pool_NewExtended [1008]
                0.00    0.00       1/2           picture_pool_Reserve [1010]
[733]    0.0    0.00    0.00       2         Create [733]
-----------------------------------------------
                0.00    0.00       2/2           DecoderFlush [348]
[734]    0.0    0.00    0.00       2         DecoderBlockFlushNew [734]
                0.00    0.00       2/25165       block_Alloc [508]
-----------------------------------------------
                0.00    0.00       1/2           aout_update_format [80]
                0.00    0.00       1/2           vout_new_buffer <cycle 4> [30]
[735]    0.0    0.00    0.00       2         DecoderUpdateFormatLocked [735]
                0.00    0.00       2/32          es_format_Clean [608]
                0.00    0.00       2/22          es_format_Copy [619]
-----------------------------------------------
                0.00    0.00       2/2           generic_stop <cycle 4> [193]
[736]    0.0    0.00    0.00       2         Destroy [736]
                0.00    0.00       2/366         ft_mem_free [564]
                0.00    0.00       2/2           FT_Stroker_Done [761]
                0.00    0.00       2/2           FT_Done_Face [739]
                0.00    0.00       2/2           FT_Done_FreeType [740]
-----------------------------------------------
                0.00    0.00       2/2           EsOutAdd <cycle 4> [216]
[737]    0.0    0.00    0.00       2         EsOutProgramFind [737]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [746]
[738]    0.0    0.00    0.00       2         FT_Add_Default_Modules [738]
                0.00    0.00      36/36          FT_Add_Module [601]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [736]
[739]    0.0    0.00    0.00       2         FT_Done_Face [739]
                0.00    0.00       4/366         ft_mem_free [564]
                0.00    0.00       2/10          FT_List_Find [650]
                0.00    0.00       2/10          FT_List_Remove [651]
                0.00    0.00       2/2           destroy_face [802]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [736]
[740]    0.0    0.00    0.00       2         FT_Done_FreeType [740]
                0.00    0.00       2/2           FT_Done_Library [742]
                0.00    0.00       2/2           FT_Done_Memory [743]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [802]
[741]    0.0    0.00    0.00       2         FT_Done_GlyphSlot [741]
                0.00    0.00       2/2           ft_glyphslot_done [813]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_FreeType [740]
[742]    0.0    0.00    0.00       2         FT_Done_Library [742]
                0.00    0.00      36/36          FT_Remove_Module [602]
                0.00    0.00       4/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_FreeType [740]
[743]    0.0    0.00    0.00       2         FT_Done_Memory [743]
-----------------------------------------------
                0.00    0.00       2/2           FT_GlyphLoader_CreateExtra [745]
[744]    0.0    0.00    0.00       2         FT_GlyphLoader_Adjust_Points [744]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_GlyphSlot [748]
[745]    0.0    0.00    0.00       2         FT_GlyphLoader_CreateExtra [745]
                0.00    0.00       2/22          ft_mem_realloc [622]
                0.00    0.00       2/2           FT_GlyphLoader_Adjust_Points [744]
-----------------------------------------------
                0.00    0.00       2/2           Create [167]
[746]    0.0    0.00    0.00       2         FT_Init_FreeType [746]
                0.00    0.00       2/2           FT_New_Memory [750]
                0.00    0.00       2/2           FT_New_Library [749]
                0.00    0.00       2/2           FT_Add_Default_Modules [738]
-----------------------------------------------
                0.00    0.00       2/2           Create [167]
[747]    0.0    0.00    0.00       2         FT_New_Face [747]
                0.00    0.00       2/2           FT_Open_Face [752]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [752]
[748]    0.0    0.00    0.00       2         FT_New_GlyphSlot [748]
                0.00    0.00       4/116         ft_mem_alloc [579]
                0.00    0.00       2/2           FT_GlyphLoader_CreateExtra [745]
                0.00    0.00       2/2           tt_slot_init [868]
                0.00    0.00       2/16          FT_GlyphLoader_New [630]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [746]
[749]    0.0    0.00    0.00       2         FT_New_Library [749]
                0.00    0.00       4/116         ft_mem_alloc [579]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [746]
[750]    0.0    0.00    0.00       2         FT_New_Memory [750]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [752]
[751]    0.0    0.00    0.00       2         FT_New_Size [751]
                0.00    0.00       4/116         ft_mem_alloc [579]
                0.00    0.00       2/2           tt_size_init [865]
                0.00    0.00       2/12          FT_List_Add [642]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_Face [747]
[752]    0.0    0.00    0.00       2         FT_Open_Face [752]
                0.00    0.00       2/2           FT_Stream_New [759]
                0.00    0.00       2/116         ft_mem_alloc [579]
                0.00    0.00       2/2           open_face [823]
                0.00    0.00       2/12          FT_List_Add [642]
                0.00    0.00       2/2           FT_New_GlyphSlot [748]
                0.00    0.00       2/2           FT_New_Size [751]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [866]
[753]    0.0    0.00    0.00       2         FT_Request_Metrics [753]
                0.00    0.00       4/10          FT_DivFix [648]
-----------------------------------------------
                0.00    0.00       2/2           FT_Set_Pixel_Sizes [756]
[754]    0.0    0.00    0.00       2         FT_Request_Size [754]
                0.00    0.00       2/2           tt_size_request [866]
-----------------------------------------------
                0.00    0.00       2/2           Create [167]
[755]    0.0    0.00    0.00       2         FT_Select_Charmap [755]
-----------------------------------------------
                0.00    0.00       2/2           Create [167]
[756]    0.0    0.00    0.00       2         FT_Set_Pixel_Sizes [756]
                0.00    0.00       2/2           FT_Request_Size [754]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_Free [758]
[757]    0.0    0.00    0.00       2         FT_Stream_Close [757]
                0.00    0.00       2/2           ft_ansi_stream_close [809]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [802]
[758]    0.0    0.00    0.00       2         FT_Stream_Free [758]
                0.00    0.00       2/2           FT_Stream_Close [757]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [752]
[759]    0.0    0.00    0.00       2         FT_Stream_New [759]
                0.00    0.00       2/116         ft_mem_alloc [579]
                0.00    0.00       2/2           FT_Stream_Open [760]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_New [759]
[760]    0.0    0.00    0.00       2         FT_Stream_Open [760]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [736]
[761]    0.0    0.00    0.00       2         FT_Stroker_Done [761]
                0.00    0.00       8/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       2/2           Create [167]
[762]    0.0    0.00    0.00       2         FT_Stroker_New [762]
                0.00    0.00       2/116         ft_mem_alloc [579]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [168]
[763]    0.0    0.00    0.00       2         FullscreenCallback [763]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[764]    0.0    0.00    0.00       2         Get_Interface [764]
-----------------------------------------------
                0.00    0.00       2/2           EsOutAdd <cycle 4> [216]
[765]    0.0    0.00    0.00       2         LanguageGetCode [765]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [48]
[766]    0.0    0.00    0.00       2         Open [766]
                0.00    0.00       2/6           vlc_CPU [686]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [48]
[767]    0.0    0.00    0.00       2         Open [767]
                0.00    0.00       2/6           vlc_CPU [686]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [602]
[768]    0.0    0.00    0.00       2         T1_Driver_Done [768]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[769]    0.0    0.00    0.00       2         T1_Driver_Init [769]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [602]
[770]    0.0    0.00    0.00       2         T42_Driver_Done [770]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[771]    0.0    0.00    0.00       2         T42_Driver_Init [771]
                0.00    0.00       2/10          FT_Get_Module [649]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[772]    0.0    0.00    0.00       2         T42_Get_Interface [772]
-----------------------------------------------
                0.00    0.00       2/2           tt_driver_done [841]
[773]    0.0    0.00    0.00       2         TT_Done_Context [773]
                0.00    0.00       8/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       2/2           tt_driver_init [842]
[774]    0.0    0.00    0.00       2         TT_New_Context [774]
                0.00    0.00       2/116         ft_mem_alloc [579]
                0.00    0.00       2/22          ft_mem_realloc [622]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [168]
[775]    0.0    0.00    0.00       2         WallPaperCallback <cycle 5> [775]
                                   4             var_TriggerCallback <cycle 5> [344]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [168]
[776]    0.0    0.00    0.00       2         ZoomCallback <cycle 5> [776]
                                   2             var_SetChecked <cycle 5> [212]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [602]
[777]    0.0    0.00    0.00       2         af_autofitter_done [777]
                0.00    0.00       2/2           af_glyph_hints_done [780]
                0.00    0.00       2/366         ft_mem_free [564]
                0.00    0.00       2/16          FT_GlyphLoader_Done [629]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[778]    0.0    0.00    0.00       2         af_autofitter_init [778]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[779]    0.0    0.00    0.00       2         af_get_interface [779]
-----------------------------------------------
                0.00    0.00       2/2           af_autofitter_done [777]
[780]    0.0    0.00    0.00       2         af_glyph_hints_done [780]
                0.00    0.00      12/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       2/2           SetupOutputFormat [544]
[781]    0.0    0.00    0.00       2         aout_CheckChannelExtraction [781]
-----------------------------------------------
                0.00    0.00       2/2           av_buffer_pool_uninit [690]
[782]    0.0    0.00    0.00       2         av_buffer_default_free [782]
-----------------------------------------------
                0.00    0.00       1/2           avcodec_open2 [86]
                0.00    0.00       1/2           avcodec_close [324]
[783]    0.0    0.00    0.00       2         av_codec_is_encoder [783]
-----------------------------------------------
                0.00    0.00       2/2           av_opt_set_defaults [722]
[784]    0.0    0.00    0.00       2         av_d2q [784]
                0.00    0.00       2/2           av_reduce [789]
-----------------------------------------------
                0.00    0.00       1/2           ffmpeg_OpenCodec [84]
                0.00    0.00       1/2           av_opt_set_dict [954]
[785]    0.0    0.00    0.00       2         av_dict_free [785]
-----------------------------------------------
                0.00    0.00       1/2           ffmpeg_OpenCodec [84]
                0.00    0.00       1/2           av_opt_set_dict [954]
[786]    0.0    0.00    0.00       2         av_dict_get [786]
-----------------------------------------------
                0.00    0.00       2/2           av_reduce [789]
[787]    0.0    0.00    0.00       2         av_gcd [787]
-----------------------------------------------
                0.00    0.00       2/2           av_opt_set_defaults [722]
[788]    0.0    0.00    0.00       2         av_opt_set_q [788]
                0.00    0.00       2/167         av_opt_find2 [573]
-----------------------------------------------
                0.00    0.00       2/2           av_d2q [784]
[789]    0.0    0.00    0.00       2         av_reduce [789]
                0.00    0.00       2/2           av_gcd [787]
-----------------------------------------------
                0.00    0.00       1/2           avcodec_open2 [86]
                0.00    0.00       1/2           avcodec_close [324]
[790]    0.0    0.00    0.00       2         avcodec_is_open [790]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[791]    0.0    0.00    0.00       2         bdf_driver_requester [791]
-----------------------------------------------
                0.00    0.00       2/2           CreateDecoder <cycle 4> [441]
[792]    0.0    0.00    0.00       2         block_FifoNew [792]
                0.00    0.00       4/6808        vlc_cond_init [538]
                0.00    0.00       2/6831        vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [602]
[793]    0.0    0.00    0.00       2         cff_driver_done [793]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[794]    0.0    0.00    0.00       2         cff_driver_init [794]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[795]    0.0    0.00    0.00       2         cff_get_interface [795]
                0.00    0.00       4/28          ft_service_list_lookup [612]
                0.00    0.00       2/10          FT_Get_Module [649]
                0.00    0.00       2/6           sfnt_get_interface [685]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [602]
[796]    0.0    0.00    0.00       2         cid_driver_done [796]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[797]    0.0    0.00    0.00       2         cid_driver_init [797]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[798]    0.0    0.00    0.00       2         cid_get_interface [798]
-----------------------------------------------
                0.00    0.00       2/2           ThreadChangeFilters [361]
[799]    0.0    0.00    0.00       2         config_ChainCreate [799]
-----------------------------------------------
                                   2             input_DecoderNew <cycle 4> [818]
[800]    0.0    0.00    0.00       2         decoder_New <cycle 4> [800]
                0.00    0.00       2/4           vlc_clone_attr [718]
                0.00    0.00       2/4           vlc_clone [717]
                                   2             CreateDecoder <cycle 4> [441]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [802]
[801]    0.0    0.00    0.00       2         destroy_charmaps [801]
                0.00    0.00       8/366         ft_mem_free [564]
                0.00    0.00       6/6           ft_cmap_done_internal [675]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_Face [739]
[802]    0.0    0.00    0.00       2         destroy_face [802]
                0.00    0.00       6/366         ft_mem_free [564]
                0.00    0.00       2/2           FT_Done_GlyphSlot [741]
                0.00    0.00       2/20          FT_List_Finalize [625]
                0.00    0.00       2/2           destroy_charmaps [801]
                0.00    0.00       2/2           tt_face_done [844]
                0.00    0.00       2/2           FT_Stream_Free [758]
-----------------------------------------------
                0.00    0.00       2/2           FT_List_Finalize [625]
[803]    0.0    0.00    0.00       2         destroy_size [803]
                0.00    0.00       2/2           tt_size_done [864]
                0.00    0.00       2/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       2/2           ThreadChangeFilters [361]
[804]    0.0    0.00    0.00       2         es_format_InitFromVideo [804]
                0.00    0.00       2/22          es_format_Init [620]
-----------------------------------------------
                0.00    0.00       2/2           ThreadChangeFilters [361]
[805]    0.0    0.00    0.00       2         es_format_IsSimilar [805]
                0.00    0.00       4/97          vlc_fourcc_GetCodec [589]
                0.00    0.00       2/3           video_format_IsSimilar [727]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [226]
[806]    0.0    0.00    0.00       2         ff_getSwsFunc [806]
                0.00    0.00       2/2           ff_sws_init_output_funcs [808]
                0.00    0.00       2/2           ff_sws_init_input_funcs [807]
-----------------------------------------------
                0.00    0.00       2/2           ff_getSwsFunc [806]
[807]    0.0    0.00    0.00       2         ff_sws_init_input_funcs [807]
-----------------------------------------------
                0.00    0.00       2/2           ff_getSwsFunc [806]
[808]    0.0    0.00    0.00       2         ff_sws_init_output_funcs [808]
                0.00    0.00       6/25          av_pix_fmt_desc_get [613]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_Close [757]
[809]    0.0    0.00    0.00       2         ft_ansi_stream_close [809]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [602]
[810]    0.0    0.00    0.00       2         ft_black_done [810]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[811]    0.0    0.00    0.00       2         ft_black_new [811]
                0.00    0.00       2/116         ft_mem_alloc [579]
-----------------------------------------------
                0.00    0.00       2/2           ft_raster1_init [816]
[812]    0.0    0.00    0.00       2         ft_black_reset [812]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_GlyphSlot [741]
[813]    0.0    0.00    0.00       2         ft_glyphslot_done [813]
                0.00    0.00       4/366         ft_mem_free [564]
                0.00    0.00       2/2           ft_glyphslot_free_bitmap [814]
                0.00    0.00       2/16          FT_GlyphLoader_Done [629]
-----------------------------------------------
                0.00    0.00       2/2           ft_glyphslot_done [813]
[814]    0.0    0.00    0.00       2         ft_glyphslot_free_bitmap [814]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_init_face [831]
[815]    0.0    0.00    0.00       2         ft_module_get_service [815]
                0.00    0.00      20/28          ft_service_list_lookup [612]
                0.00    0.00       2/2           tt_get_interface [863]
                0.00    0.00       2/2           psnames_get_service [829]
                0.00    0.00       2/2           af_get_interface [779]
                0.00    0.00       2/6           sfnt_get_interface [685]
                0.00    0.00       2/2           bdf_driver_requester [791]
                0.00    0.00       2/2           pcf_driver_requester [824]
                0.00    0.00       2/2           winfnt_get_service [874]
                0.00    0.00       2/2           T42_Get_Interface [772]
                0.00    0.00       2/2           pfr_get_service [825]
                0.00    0.00       2/2           cid_get_interface [798]
                0.00    0.00       2/2           cff_get_interface [795]
                0.00    0.00       2/2           Get_Interface [764]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[816]    0.0    0.00    0.00       2         ft_raster1_init [816]
                0.00    0.00       2/2           ft_black_reset [812]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [866]
[817]    0.0    0.00    0.00       2         ft_recompute_scaled_metrics [817]
                0.00    0.00       8/16          FT_MulFix [634]
-----------------------------------------------
                                   2             EsCreateDecoder <cycle 4> [342]
[818]    0.0    0.00    0.00       2         input_DecoderNew <cycle 4> [818]
                                   2             decoder_New <cycle 4> [800]
-----------------------------------------------
                0.00    0.00       2/2           EsSelect <cycle 4> [294]
[819]    0.0    0.00    0.00       2         input_SendEventTeletextSelect [819]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_from_input_item [378]
                0.00    0.00       1/2           Create [155]
[820]    0.0    0.00    0.00       2         input_item_Hold [820]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_location [346]
                0.00    0.00       1/2           Destructor [898]
[821]    0.0    0.00    0.00       2         input_item_Release [821]
-----------------------------------------------
                                   1             es_out_Control <cycle 4> [177]
                0.00    0.00       1/49617       input_resource_Terminate [273]
[822]    0.0    0.00    0.00       2         input_resource_TerminateVout <cycle 4> [822]
                                   2             input_resource_RequestVout <cycle 4> [207]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [752]
[823]    0.0    0.00    0.00       2         open_face [823]
                0.00    0.00       4/116         ft_mem_alloc [579]
                0.00    0.00       2/2           tt_face_init [848]
                0.00    0.00       2/4           find_unicode_charmap [706]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[824]    0.0    0.00    0.00       2         pcf_driver_requester [824]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[825]    0.0    0.00    0.00       2         pfr_get_service [825]
-----------------------------------------------
                0.00    0.00       2/2           vout_InitWrapper [1028]
[826]    0.0    0.00    0.00       2         picture_pool_GetSize [826]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [602]
[827]    0.0    0.00    0.00       2         ps_hinter_done [827]
                0.00    0.00       8/8           ps_mask_table_done [654]
                0.00    0.00       4/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[828]    0.0    0.00    0.00       2         ps_hinter_init [828]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[829]    0.0    0.00    0.00       2         psnames_get_service [829]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_done [844]
[830]    0.0    0.00    0.00       2         sfnt_done_face [830]
                0.00    0.00      14/366         ft_mem_free [564]
                0.00    0.00       8/18          FT_Stream_ReleaseFrame [627]
                0.00    0.00       2/2           tt_face_free_ps_names [847]
                0.00    0.00       2/2           tt_face_free_eblc [845]
                0.00    0.00       2/2           tt_face_free_name [846]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [848]
[831]    0.0    0.00    0.00       2         sfnt_init_face [831]
                0.00    0.00       2/2           ft_module_get_service [815]
                0.00    0.00       2/8           FT_Stream_Pos [653]
                0.00    0.00       2/6           FT_Stream_ReadULong [666]
                0.00    0.00       2/116         ft_mem_alloc [579]
                0.00    0.00       2/36          FT_Stream_Seek [603]
                0.00    0.00       2/2           tt_face_load_font_dir [852]
                0.00    0.00       2/4           FT_Get_Module_Interface [698]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [848]
[832]    0.0    0.00    0.00       2         sfnt_load_face [832]
                0.00    0.00      12/12          tt_face_get_name [644]
                0.00    0.00       6/102         FT_Stream_ReadFields [587]
                0.00    0.00       4/4           tt_face_load_hhea [714]
                0.00    0.00       2/2           tt_face_load_generic_header [854]
                0.00    0.00       2/2           tt_face_load_head [855]
                0.00    0.00       2/2           tt_face_load_maxp [858]
                0.00    0.00       2/2           tt_face_load_cmap [849]
                0.00    0.00       2/2           tt_face_load_name [859]
                0.00    0.00       2/2           tt_face_load_post [862]
                0.00    0.00       2/2           tt_face_load_eblc [851]
                0.00    0.00       2/2           tt_face_load_pclt [861]
                0.00    0.00       2/2           tt_face_load_gasp [853]
                0.00    0.00       2/2           tt_face_load_kern [857]
                0.00    0.00       2/2           tt_face_build_cmaps [843]
                0.00    0.00       2/2           tt_face_load_hmtx [856]
                0.00    0.00       2/2           tt_face_load_os2 [860]
-----------------------------------------------
                0.00    0.00       2/2           subtitles_Detect [243]
[833]    0.0    0.00    0.00       2         strcpy_strip_ext [833]
-----------------------------------------------
                0.00    0.00       2/2           subtitles_Detect [243]
[834]    0.0    0.00    0.00       2         strcpy_trim [834]
-----------------------------------------------
                0.00    0.00       2/2           GetParameters [298]
[835]    0.0    0.00    0.00       2         sws_freeContext [835]
                0.00    0.00      56/71746       av_freep [497]
                0.00    0.00       2/71950       av_free [496]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [226]
[836]    0.0    0.00    0.00       2         sws_isSupportedInput [836]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [226]
[837]    0.0    0.00    0.00       2         sws_isSupportedOutput [837]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [222]
[838]    0.0    0.00    0.00       2         sws_setColorspaceDetails [838]
                0.00    0.00       6/25          av_pix_fmt_desc_get [613]
                0.00    0.00       2/6           av_get_bits_per_pixel [669]
                0.00    0.00       1/1           ff_yuv2rgb_c_init_tables [985]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_build_cmaps [843]
[839]    0.0    0.00    0.00       2         tt_cmap6_validate [839]
-----------------------------------------------
                0.00    0.00       2/2           FT_CMap_New [665]
[840]    0.0    0.00    0.00       2         tt_cmap_init [840]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [602]
[841]    0.0    0.00    0.00       2         tt_driver_done [841]
                0.00    0.00       2/2           TT_Done_Context [773]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [601]
[842]    0.0    0.00    0.00       2         tt_driver_init [842]
                0.00    0.00       2/2           TT_New_Context [774]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[843]    0.0    0.00    0.00       2         tt_face_build_cmaps [843]
                0.00    0.00       6/6           ft_validator_init [677]
                0.00    0.00       6/6           FT_CMap_New [665]
                0.00    0.00       4/4           tt_cmap4_validate [713]
                0.00    0.00       2/2           tt_cmap6_validate [839]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [802]
[844]    0.0    0.00    0.00       2         tt_face_done [844]
                0.00    0.00       8/18          FT_Stream_ReleaseFrame [627]
                0.00    0.00       4/366         ft_mem_free [564]
                0.00    0.00       2/2           sfnt_done_face [830]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [830]
[845]    0.0    0.00    0.00       2         tt_face_free_eblc [845]
                0.00    0.00       2/18          FT_Stream_ReleaseFrame [627]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [830]
[846]    0.0    0.00    0.00       2         tt_face_free_name [846]
                0.00    0.00      56/366         ft_mem_free [564]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [830]
[847]    0.0    0.00    0.00       2         tt_face_free_ps_names [847]
-----------------------------------------------
                0.00    0.00       2/2           open_face [823]
[848]    0.0    0.00    0.00       2         tt_face_init [848]
                0.00    0.00      10/42          tt_face_goto_table [599]
                0.00    0.00       6/36          FT_Stream_Seek [603]
                0.00    0.00       2/4           FT_Get_Module_Interface [698]
                0.00    0.00       2/2           sfnt_init_face [831]
                0.00    0.00       2/2           sfnt_load_face [832]
                0.00    0.00       2/2           tt_face_load_cvt [850]
                0.00    0.00       2/4           FT_Stream_ExtractFrame [699]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[849]    0.0    0.00    0.00       2         tt_face_load_cmap [849]
                0.00    0.00       2/36          FT_Stream_Seek [603]
                0.00    0.00       2/42          tt_face_goto_table [599]
                0.00    0.00       2/4           FT_Stream_ExtractFrame [699]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [848]
[850]    0.0    0.00    0.00       2         tt_face_load_cvt [850]
                0.00    0.00       2/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[851]    0.0    0.00    0.00       2         tt_face_load_eblc [851]
                0.00    0.00       6/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_init_face [831]
[852]    0.0    0.00    0.00       2         tt_face_load_font_dir [852]
                0.00    0.00     112/112         FT_Stream_GetULong [583]
                0.00    0.00      30/102         FT_Stream_ReadFields [587]
                0.00    0.00       8/36          FT_Stream_Seek [603]
                0.00    0.00       4/6           FT_Stream_ReadULong [666]
                0.00    0.00       2/8           FT_Stream_Pos [653]
                0.00    0.00       2/22          ft_mem_realloc [622]
                0.00    0.00       2/56          FT_Stream_EnterFrame [595]
                0.00    0.00       2/52          FT_Stream_ExitFrame [596]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[853]    0.0    0.00    0.00       2         tt_face_load_gasp [853]
                0.00    0.00       2/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[854]    0.0    0.00    0.00       2         tt_face_load_generic_header [854]
                0.00    0.00       2/36          FT_Stream_Seek [603]
                0.00    0.00       2/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[855]    0.0    0.00    0.00       2         tt_face_load_head [855]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[856]    0.0    0.00    0.00       2         tt_face_load_hmtx [856]
                0.00    0.00       2/36          FT_Stream_Seek [603]
                0.00    0.00       2/42          tt_face_goto_table [599]
                0.00    0.00       2/8           FT_Stream_Pos [653]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[857]    0.0    0.00    0.00       2         tt_face_load_kern [857]
                0.00    0.00       2/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[858]    0.0    0.00    0.00       2         tt_face_load_maxp [858]
                0.00    0.00       4/102         FT_Stream_ReadFields [587]
                0.00    0.00       2/36          FT_Stream_Seek [603]
                0.00    0.00       2/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[859]    0.0    0.00    0.00       2         tt_face_load_name [859]
                0.00    0.00      56/102         FT_Stream_ReadFields [587]
                0.00    0.00       2/36          FT_Stream_Seek [603]
                0.00    0.00       2/42          tt_face_goto_table [599]
                0.00    0.00       2/8           FT_Stream_Pos [653]
                0.00    0.00       2/22          ft_mem_realloc [622]
                0.00    0.00       2/56          FT_Stream_EnterFrame [595]
                0.00    0.00       2/52          FT_Stream_ExitFrame [596]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[860]    0.0    0.00    0.00       2         tt_face_load_os2 [860]
                0.00    0.00       4/102         FT_Stream_ReadFields [587]
                0.00    0.00       2/36          FT_Stream_Seek [603]
                0.00    0.00       2/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[861]    0.0    0.00    0.00       2         tt_face_load_pclt [861]
                0.00    0.00       2/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [832]
[862]    0.0    0.00    0.00       2         tt_face_load_post [862]
                0.00    0.00       2/36          FT_Stream_Seek [603]
                0.00    0.00       2/42          tt_face_goto_table [599]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[863]    0.0    0.00    0.00       2         tt_get_interface [863]
                0.00    0.00       4/28          ft_service_list_lookup [612]
                0.00    0.00       2/10          FT_Get_Module [649]
                0.00    0.00       2/6           sfnt_get_interface [685]
-----------------------------------------------
                0.00    0.00       2/2           destroy_size [803]
[864]    0.0    0.00    0.00       2         tt_size_done [864]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_Size [751]
[865]    0.0    0.00    0.00       2         tt_size_init [865]
-----------------------------------------------
                0.00    0.00       2/2           FT_Request_Size [754]
[866]    0.0    0.00    0.00       2         tt_size_request [866]
                0.00    0.00       2/2           ft_recompute_scaled_metrics [817]
                0.00    0.00       2/2           FT_Request_Metrics [753]
                0.00    0.00       2/2           tt_size_reset [867]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [866]
[867]    0.0    0.00    0.00       2         tt_size_reset [867]
                0.00    0.00       8/16          FT_MulFix [634]
                0.00    0.00       6/10          FT_DivFix [648]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_GlyphSlot [748]
[868]    0.0    0.00    0.00       2         tt_slot_init [868]
-----------------------------------------------
                0.00    0.00       1/2           demux_sys_t::~demux_sys_t() [230]
                0.00    0.00       1/2           ControlPause [286]
[869]    0.0    0.00    0.00       2         vlc_meta_Delete [869]
-----------------------------------------------
                0.00    0.00       1/2           Control(demux_t*, int, std::__va_list) [16210]
                0.00    0.00       1/2           EsOutControl <cycle 4> [131]
[870]    0.0    0.00    0.00       2         vlc_meta_Merge [870]
-----------------------------------------------
                0.00    0.00       2/2           Thread [17]
[871]    0.0    0.00    0.00       2         vout_SetDisplayAspect [871]
-----------------------------------------------
                0.00    0.00       2/2           Thread [17]
[872]    0.0    0.00    0.00       2         vout_SetDisplayCrop [872]
-----------------------------------------------
                0.00    0.00       2/2           Thread [17]
[873]    0.0    0.00    0.00       2         vout_SetDisplayZoom [873]
                0.00    0.00       2/82          vlc_ureduce [590]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [815]
[874]    0.0    0.00    0.00       2         winfnt_get_service [874]
-----------------------------------------------
                0.00    0.00       1/2           std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::_Rep::_M_clone(std::allocator<wchar_t> const&, unsigned int) [23179]
                0.00    0.00       1/2           wchar_t* std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::_S_construct<wchar_t*>(wchar_t*, wchar_t*, std::allocator<wchar_t> const&, std::forward_iterator_tag) [23158]
[875]    0.0    0.00    0.00       2         wmemcpy [875]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[876]    0.0    0.00    0.00       1         Activate [876]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[877]    0.0    0.00    0.00       1         Activate [877]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[878]    0.0    0.00    0.00       1         Activate [878]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[879]    0.0    0.00    0.00       1         Activate [879]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[880]    0.0    0.00    0.00       1         Activate [880]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[881]    0.0    0.00    0.00       1         Activate [881]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[882]    0.0    0.00    0.00       1         Activate [882]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[883]    0.0    0.00    0.00       1         Activate [883]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput <cycle 4> [53]
[884]    0.0    0.00    0.00       1         ArchitectureSpecificCopyHooks [884]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop <cycle 4> [193]
[885]    0.0    0.00    0.00       1         Close [885]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop <cycle 4> [193]
[886]    0.0    0.00    0.00       1         Close [886]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop <cycle 4> [193]
[887]    0.0    0.00    0.00       1         Close [887]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                                   1             generic_stop <cycle 4> [193]
[888]    0.0    0.00    0.00       1         CloseDecoder <cycle 4> [888]
                0.00    0.00       1/2           ArchitectureSpecificCopyHooksDestroy [732]
                                   1             GetOutput <cycle 4> [53]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[889]    0.0    0.00    0.00       1         Create [889]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[890]    0.0    0.00    0.00       1         Create [890]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[891]    0.0    0.00    0.00       1         Create [891]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[892]    0.0    0.00    0.00       1         Create [892]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[893]    0.0    0.00    0.00       1         CreateResampler [893]
                0.00    0.00       1/12          aout_BitsPerSample [643]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[894]    0.0    0.00    0.00       1         DecoderOpen [894]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[895]    0.0    0.00    0.00       1         DecoderOpen [895]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[896]    0.0    0.00    0.00       1         DecoderOpen [896]
-----------------------------------------------
                0.00    0.00       1/1           End [215]
[897]    0.0    0.00    0.00       1         Destroy [897]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [349]
[898]    0.0    0.00    0.00       1         Destructor [898]
                0.00    0.00       2/6820        vlc_mutex_destroy [537]
                0.00    0.00       1/1           EsOutDelete [900]
                0.00    0.00       1/1           input_resource_Release [998]
                0.00    0.00       1/2           input_item_Release [821]
                0.00    0.00       1/6803        vlc_cond_destroy [539]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetURI [473]
[899]    0.0    0.00    0.00       1         EnsureUTF8 [899]
                0.00    0.00      75/75          vlc_towc [592]
-----------------------------------------------
                0.00    0.00       1/1           Destructor [898]
[900]    0.0    0.00    0.00       1         EsOutDelete [900]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop <cycle 4> [193]
[901]    0.0    0.00    0.00       1         FileClose [901]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [52]
[902]    0.0    0.00    0.00       1         GetFfmpegCodec [902]
                0.00    0.00       1/97          vlc_fourcc_GetCodec [589]
                0.00    0.00       1/6           vlc_fourcc_GetDescription [687]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [482]
[903]    0.0    0.00    0.00       1         GetOmxRole [903]
                0.00    0.00       1/97          vlc_fourcc_GetCodec [589]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput <cycle 4> [53]
[904]    0.0    0.00    0.00       1         IgnoreOmxDecoderPadding [904]
-----------------------------------------------
                0.00    0.00       1/1           Open [300]
[905]    0.0    0.00    0.00       1         LoadNativeWindowAPI [905]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [172]
[906]    0.0    0.00    0.00       1         MRLSeekPoint [906]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[907]    0.0    0.00    0.00       1         Open [907]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[908]    0.0    0.00    0.00       1         Open [908]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[909]    0.0    0.00    0.00       1         Open [909]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[910]    0.0    0.00    0.00       1         Open [910]
                0.00    0.00       1/6831        vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[911]    0.0    0.00    0.00       1         Open [911]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[912]    0.0    0.00    0.00       1         Open [912]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[913]    0.0    0.00    0.00       1         Open [913]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[914]    0.0    0.00    0.00       1         Open [914]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[915]    0.0    0.00    0.00       1         OpenBzip2 [915]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[916]    0.0    0.00    0.00       1         OpenCommon [916]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[917]    0.0    0.00    0.00       1         OpenDecoder [917]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[918]    0.0    0.00    0.00       1         OpenDecoder [918]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[919]    0.0    0.00    0.00       1         OpenDecoder [919]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[920]    0.0    0.00    0.00       1         OpenDecoder [920]
                0.00    0.00       1/7           module_exists [659]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[921]    0.0    0.00    0.00       1         OpenDecoder [921]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[922]    0.0    0.00    0.00       1         OpenDecoder [922]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[923]    0.0    0.00    0.00       1         OpenDecoder [923]
                0.00    0.00       1/7           module_exists [659]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[924]    0.0    0.00    0.00       1         OpenDecoder [924]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[925]    0.0    0.00    0.00       1         OpenDecoder [925]
                0.00    0.00       1/7           module_exists [659]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[926]    0.0    0.00    0.00       1         OpenDecoder [926]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[927]    0.0    0.00    0.00       1         OpenDecoder [927]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[928]    0.0    0.00    0.00       1         OpenDecoder [928]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[929]    0.0    0.00    0.00       1         OpenFilter [929]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[930]    0.0    0.00    0.00       1         OpenFilter [930]
                0.00    0.00       1/6           vlc_CPU [686]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[931]    0.0    0.00    0.00       1         OpenFilter [931]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[932]    0.0    0.00    0.00       1         OpenGzip [932]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[933]    0.0    0.00    0.00       1         OpenXZ [933]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [1028]
[934]    0.0    0.00    0.00       1         Pool [934]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[935]    0.0    0.00    0.00       1         Probe [935]
                0.00    0.00       1/6           vlc_CPU [686]
-----------------------------------------------
                0.00    0.00       1/1           RarStreamOpen [937]
[936]    0.0    0.00    0.00       1         RarProbe [936]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[937]    0.0    0.00    0.00       1         RarStreamOpen [937]
                0.00    0.00       1/1           RarProbe [936]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputNew [225]
[938]    0.0    0.00    0.00       1         Start [938]
                0.00    0.00       1/1           aout_get_native_sample_rate [947]
                0.00    0.00       1/7           aout_FormatPrepare [656]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputDelete [377]
[939]    0.0    0.00    0.00       1         Stop [939]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[940]    0.0    0.00    0.00       1         StreamOpen [940]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           spu_Render [133]
[941]    0.0    0.00    0.00       1         UpdateBufferFunctions [941]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [349]
[942]    0.0    0.00    0.00       1         VoutDestructor [942]
                0.00    0.00       3/6820        vlc_mutex_destroy [537]
                0.00    0.00       1/1           vout_control_Clean [1030]
                0.00    0.00       1/1           vout_snapshot_Clean [1033]
-----------------------------------------------
                0.00    0.00       1/1           DisplayNew [308]
[943]    0.0    0.00    0.00       1         VoutDisplayCreateRender [943]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [170]
[944]    0.0    0.00    0.00       1         VoutValidateFormat [944]
                0.00    0.00       1/97          vlc_fourcc_GetCodec [589]
                0.00    0.00       1/82          vlc_ureduce [590]
                0.00    0.00       1/1           video_format_FixRgb [1018]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_close [324]
[945]    0.0    0.00    0.00       1         aac_decode_close [945]
                0.00    0.00      69/71746       av_freep [497]
                0.00    0.00       5/6           ff_fft_end [670]
                0.00    0.00       5/6           ff_mdct_end [673]
                0.00    0.00       1/1           ff_aac_sbr_ctx_close [961]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [349]
[946]    0.0    0.00    0.00       1         aout_Destructor [946]
                0.00    0.00       3/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/1           Start [938]
[947]    0.0    0.00    0.00       1         aout_get_native_sample_rate [947]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[948]    0.0    0.00    0.00       1         atrac3_init_static_data [948]
                0.00    0.00       7/178         ff_init_vlc_sparse [568]
                0.00    0.00       1/1           ff_atrac_generate_tables [966]
-----------------------------------------------
                0.00    0.00       1/1           ff_tak_init_crc [983]
[949]    0.0    0.00    0.00       1         av_crc_init [949]
-----------------------------------------------
                0.00    0.00       1/1           av_samples_get_buffer_size [332]
[950]    0.0    0.00    0.00       1         av_get_bytes_per_sample [950]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [52]
[951]    0.0    0.00    0.00       1         av_log_set_level [951]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_close [324]
[952]    0.0    0.00    0.00       1         av_opt_free [952]
                0.00    0.00     321/26146       av_opt_next [506]
                0.00    0.00       1/71746       av_freep [497]
-----------------------------------------------
                0.00    0.00       1/1           av_opt_set_defaults [722]
[953]    0.0    0.00    0.00       1         av_opt_set [953]
                0.00    0.00       1/167         av_opt_find2 [573]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_open2 [86]
[954]    0.0    0.00    0.00       1         av_opt_set_dict [954]
                0.00    0.00       1/2           av_dict_get [786]
                0.00    0.00       1/71746       av_freep [497]
                0.00    0.00       1/2           av_dict_free [785]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [52]
[955]    0.0    0.00    0.00       1         avcodec_find_decoder [955]
                0.00    0.00     174/176         av_codec_is_decoder [569]
-----------------------------------------------
                0.00    0.00       1/1           DecodeAudio [4]
[956]    0.0    0.00    0.00       1         avcodec_flush_buffers [956]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[957]    0.0    0.00    0.00       1         avpriv_float_dsp_init [957]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [375]
[958]    0.0    0.00    0.00       1         avpriv_mpeg4audio_get_config [958]
-----------------------------------------------
                0.00    0.00       1/1           InitAudioDec [83]
[959]    0.0    0.00    0.00       1         date_Init [959]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::InitUi() [200]
[960]    0.0    0.00    0.00       1         demux_GetParentInput [960]
                0.00    0.00       1/50          vlc_object_hold [597]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_close [945]
[961]    0.0    0.00    0.00       1         ff_aac_sbr_ctx_close [961]
                0.00    0.00       1/71746       av_freep [497]
                0.00    0.00       1/6           ff_fft_end [670]
                0.00    0.00       1/6           ff_mdct_end [673]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [374]
[962]    0.0    0.00    0.00       1         ff_aac_sbr_ctx_init [962]
                0.00    0.00       2/6           ff_mdct_init [674]
                0.00    0.00       1/1           ff_psdsp_init_arm [980]
                0.00    0.00       1/1           ff_psdsp_init [979]
                0.00    0.00       1/1           ff_ps_ctx_init [977]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[963]    0.0    0.00    0.00       1         ff_aac_sbr_init [963]
                0.00    0.00      10/178         ff_init_vlc_sparse [568]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[964]    0.0    0.00    0.00       1         ff_aac_tableinit [964]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[965]    0.0    0.00    0.00       1         ff_atrac3p_init_vlcs [965]
                0.00    0.00     105/105         build_canonical_huff [585]
                0.00    0.00      16/178         ff_init_vlc_sparse [568]
-----------------------------------------------
                0.00    0.00       1/1           atrac3_init_static_data [948]
[966]    0.0    0.00    0.00       1         ff_atrac_generate_tables [966]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[967]    0.0    0.00    0.00       1         ff_dsputil_static_init [967]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[968]    0.0    0.00    0.00       1         ff_float_dsp_init_arm [968]
                0.00    0.00       1/13          av_get_cpu_flags [640]
                0.00    0.00       1/1           ff_float_dsp_init_vfp [970]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[969]    0.0    0.00    0.00       1         ff_float_dsp_init_neon [969]
-----------------------------------------------
                0.00    0.00       1/1           ff_float_dsp_init_arm [968]
[970]    0.0    0.00    0.00       1         ff_float_dsp_init_vfp [970]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[971]    0.0    0.00    0.00       1         ff_fmt_convert_init [971]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[972]    0.0    0.00    0.00       1         ff_fmt_convert_init_arm [972]
                0.00    0.00       1/13          av_get_cpu_flags [640]
-----------------------------------------------
                0.00    0.00       1/1           av_get_cpu_flags [640]
[973]    0.0    0.00    0.00       1         ff_get_cpu_flags_arm [973]
-----------------------------------------------
                0.00    0.00       1/1           jpeg2000_init_static_data [1003]
[974]    0.0    0.00    0.00       1         ff_jpeg2000_init_tier1_luts [974]
-----------------------------------------------
                0.00    0.00       1/1           qdm2_init_static_data [1011]
[975]    0.0    0.00    0.00       1         ff_mpa_synth_init_float [975]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[976]    0.0    0.00    0.00       1         ff_mqc_init_context_tables [976]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [962]
[977]    0.0    0.00    0.00       1         ff_ps_ctx_init [977]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [87]
[978]    0.0    0.00    0.00       1         ff_ps_init [978]
                0.00    0.00      10/178         ff_init_vlc_sparse [568]
                0.00    0.00       3/4           make_filters_from_proto [709]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [962]
[979]    0.0    0.00    0.00       1         ff_psdsp_init [979]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [962]
[980]    0.0    0.00    0.00       1         ff_psdsp_init_arm [980]
                0.00    0.00       1/13          av_get_cpu_flags [640]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [374]
[981]    0.0    0.00    0.00       1         ff_sbrdsp_init [981]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [374]
[982]    0.0    0.00    0.00       1         ff_sbrdsp_init_arm [982]
                0.00    0.00       1/13          av_get_cpu_flags [640]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[983]    0.0    0.00    0.00       1         ff_tak_init_crc [983]
                0.00    0.00       1/1           av_crc_init [949]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_open2 [86]
[984]    0.0    0.00    0.00       1         ff_thread_init [984]
-----------------------------------------------
                0.00    0.00       1/1           sws_setColorspaceDetails [838]
[985]    0.0    0.00    0.00       1         ff_yuv2rgb_c_init_tables [985]
                0.00    0.00       1/71950       av_free [496]
                0.00    0.00       1/25          av_pix_fmt_desc_get [613]
                0.00    0.00       1/30114       av_malloc [505]
-----------------------------------------------
                0.00    0.00       1/1           spu_Render [133]
[986]    0.0    0.00    0.00       1         filter_chain_AppendFromString [986]
                0.00    0.00       1/1           filter_chain_AppendFromStringInternal [987]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFromString [986]
[987]    0.0    0.00    0.00       1         filter_chain_AppendFromStringInternal [987]
-----------------------------------------------
                0.00    0.00       1/1           access_New [232]
[988]    0.0    0.00    0.00       1         get_path [988]
                0.00    0.00       1/4           make_path [710]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [173]
[989]    0.0    0.00    0.00       1         h264_get_profile_level [989]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [220]
[990]    0.0    0.00    0.00       1         input_SendEventProgramSelect [990]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [220]
[991]    0.0    0.00    0.00       1         input_SendEventTeletextDel [991]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [172]
[992]    0.0    0.00    0.00       1         input_SplitMRL [992]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_play [154]
[993]    0.0    0.00    0.00       1         input_Start [993]
                0.00    0.00       1/4           vlc_clone_attr [718]
                0.00    0.00       1/4           vlc_clone [717]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [131]
[994]    0.0    0.00    0.00       1         input_clock_Delete [994]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [218]
[995]    0.0    0.00    0.00       1         input_clock_New [995]
                0.00    0.00       1/6831        vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       1/1           Create [155]
[996]    0.0    0.00    0.00       1         input_resource_Hold [996]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_new [164]
[997]    0.0    0.00    0.00       1         input_resource_New [997]
                0.00    0.00       2/6831        vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       1/1           Destructor [898]
[998]    0.0    0.00    0.00       1         input_resource_Release [998]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [173]
[999]    0.0    0.00    0.00       1         jni_IsVideoPlayerActivityCreated [999]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [173]
[1000]   0.0    0.00    0.00       1         jni_LockAndGetAndroidJavaSurface [1000]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput <cycle 4> [53]
[1001]   0.0    0.00    0.00       1         jni_SetAndroidSurfaceSizeEnv [1001]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [173]
[1002]   0.0    0.00    0.00       1         jni_UnlockAndroidSurface [1002]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[1003]   0.0    0.00    0.00       1         jpeg2000_init_static_data [1003]
                0.00    0.00       1/1           ff_jpeg2000_init_tier1_luts [974]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[1004]   0.0    0.00    0.00       1         libvlc_media_event_manager [1004]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[1005]   0.0    0.00    0.00       1         libvlc_media_player_event_manager [1005]
-----------------------------------------------
                0.00    0.00       1/1           stopped_callback [12348]
[1006]   0.0    0.00    0.00       1         libvlc_media_subitems [1006]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [187]
[1007]   0.0    0.00    0.00       1         picture_fifo_New [1007]
                0.00    0.00       1/6831        vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       1/1           Open [300]
[1008]   0.0    0.00    0.00       1         picture_pool_NewExtended [1008]
                0.00    0.00       1/2           Create [733]
-----------------------------------------------
                0.00    0.00       1/1           Thread [17]
[1009]   0.0    0.00    0.00       1         picture_pool_NonEmpty [1009]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [1028]
[1010]   0.0    0.00    0.00       1         picture_pool_Reserve [1010]
                0.00    0.00       1/2           Create [733]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[1011]   0.0    0.00    0.00       1         qdm2_init_static_data [1011]
                0.00    0.00      17/178         ff_init_vlc_sparse [568]
                0.00    0.00       1/1           ff_mpa_synth_init_float [975]
-----------------------------------------------
                0.00    0.00       1/1           input_ControlVarNavigation [288]
[1012]   0.0    0.00    0.00       1         secstotimestr [1012]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [162]
[1013]   0.0    0.00    0.00       1         setLong [1013]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [375]
[1014]   0.0    0.00    0.00       1         sniff_channel_order [1014]
-----------------------------------------------
                0.00    0.00       1/1           sws_init_context [226]
[1015]   0.0    0.00    0.00       1         sws_rgb2rgb_init [1015]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[1016]   0.0    0.00    0.00       1         tak_init_static_data [1016]
-----------------------------------------------
                                   1             TriggerCallback <cycle 5> [168]
[1017]   0.0    0.00    0.00       1         var_Copy <cycle 5> [1017]
                                   1             var_Set <cycle 5> [716]
-----------------------------------------------
                0.00    0.00       1/1           VoutValidateFormat [944]
[1018]   0.0    0.00    0.00       1         video_format_FixRgb [1018]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [216]
[1019]   0.0    0.00    0.00       1         vlc_audio_replay_gain_MergeFromMeta [1019]
                0.00    0.00       7/7           vlc_meta_GetExtra [663]
-----------------------------------------------
                0.00    0.00       1/1           InitAudioDec [83]
[1020]   0.0    0.00    0.00       1         vlc_av_frame_Release [1020]
                0.00    0.00       1/30114       av_malloc [505]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewWithType [389]
[1021]   0.0    0.00    0.00       1         vlc_event_manager_init [1021]
                0.00    0.00       1/6831        vlc_mutex_init [536]
                0.00    0.00       1/5           vlc_mutex_init_recursive [695]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [216]
[1022]   0.0    0.00    0.00       1         vlc_fourcc_GetCodecAudio [1022]
                0.00    0.00       1/97          vlc_fourcc_GetCodec [589]
-----------------------------------------------
                0.00    0.00       1/1           vout_new_buffer <cycle 4> [30]
[1023]   0.0    0.00    0.00       1         vlc_fourcc_IsYUV [1023]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetPreparsed [412]
[1024]   0.0    0.00    0.00       1         vlc_meta_GetStatus [1024]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetPreparsed [412]
[1025]   0.0    0.00    0.00       1         vlc_meta_SetStatus [1025]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_new [164]
[1026]   0.0    0.00    0.00       1         vlc_object_create [1026]
-----------------------------------------------
                0.00    0.00       1/1           FileOpen [249]
[1027]   0.0    0.00    0.00       1         vlc_open [1027]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [187]
[1028]   0.0    0.00    0.00       1         vout_InitWrapper [1028]
                0.00    0.00       2/2           picture_pool_GetSize [826]
                0.00    0.00       1/1           vout_IsDisplayFiltered [1029]
                0.00    0.00       1/1           picture_pool_Reserve [1010]
                0.00    0.00       1/1           Pool [934]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [1028]
[1029]   0.0    0.00    0.00       1         vout_IsDisplayFiltered [1029]
-----------------------------------------------
                0.00    0.00       1/1           VoutDestructor [942]
[1030]   0.0    0.00    0.00       1         vout_control_Clean [1030]
                0.00    0.00       2/6803        vlc_cond_destroy [539]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [170]
[1031]   0.0    0.00    0.00       1         vout_control_Init [1031]
                0.00    0.00       2/6808        vlc_cond_init [538]
                0.00    0.00       1/6831        vlc_mutex_init [536]
-----------------------------------------------
                0.00    0.00       1/1           DisplayNew [308]
[1032]   0.0    0.00    0.00       1         vout_display_GetDefaultDisplaySize [1032]
-----------------------------------------------
                0.00    0.00       1/1           VoutDestructor [942]
[1033]   0.0    0.00    0.00       1         vout_snapshot_Clean [1033]
                0.00    0.00       1/6803        vlc_cond_destroy [539]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [170]
[1034]   0.0    0.00    0.00       1         vout_snapshot_Init [1034]
                0.00    0.00       1/6831        vlc_mutex_init [536]
                0.00    0.00       1/6808        vlc_cond_init [538]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [107]
[1035]   0.0    0.00    0.00       1         wmavoice_init_static_data [1035]
                0.00    0.00       1/178         ff_init_vlc_sparse [568]
-----------------------------------------------
                0.00    0.00   38696/38696       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
[16177   0.0    0.00    0.00   38696         libmatroska::DataBuffer::Size() [16177]
-----------------------------------------------
                0.00    0.00      15/29867       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00     786/29867       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
                0.00    0.00    4613/29867       libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16209]
                0.00    0.00   24453/29867       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[16178   0.0    0.00    0.00   29867         libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16178]
-----------------------------------------------
                0.00    0.00   25797/25797       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
[16179   0.0    0.00    0.00   25797         libmatroska::DataBuffer::Buffer() [16179]
-----------------------------------------------
                0.00    0.00       1/15401       virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
                0.00    0.00       1/15401       virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
                0.00    0.00   15399/15401       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [16183]
[16180   0.0    0.00    0.00   15401         virtual_chapter_c::getSubChapterbyTimecode(long long) [16180]
-----------------------------------------------
                0.00    0.00       1/15399       virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
                0.00    0.00       1/15399       virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
                0.00    0.00   15397/15399       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [16183]
[16181   0.0    0.00    0.00   15399         virtual_edition_c::getChapterbyTimecode(long long) [16181]
-----------------------------------------------
                0.00    0.00    7695/15397       matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.00    7702/15397       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
[16182   0.0    0.00    0.00   15397         matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16182]
-----------------------------------------------
                0.00    0.00   15395/15395       Demux(demux_t*) [16]
[16183   0.0    0.00    0.00   15395         virtual_segment_c::UpdateCurrentToChapter(demux_t&) [16183]
                0.00    0.00   15399/15401       virtual_chapter_c::getSubChapterbyTimecode(long long) [16180]
                0.00    0.00   15397/15399       virtual_edition_c::getChapterbyTimecode(long long) [16181]
-----------------------------------------------
                0.00    0.00   13374/13374       libmatroska::KaxInternalBlock::ReleaseFrames() [16197]
[16184   0.0    0.00    0.00   13374         libmatroska::DataBuffer::~DataBuffer() [16184]
-----------------------------------------------
                0.00    0.00   12900/12900       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [34]
[16185   0.0    0.00    0.00   12900         MemToBlock(unsigned char*, unsigned int, unsigned int) [16185]
                0.00    0.00   12903/25165       block_Alloc [508]
-----------------------------------------------
                0.00    0.00   10320/10320       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
[16186   0.0    0.00    0.00   10320         std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [16186]
-----------------------------------------------
                0.00    0.00      37/8898        libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16246]
                0.00    0.00     644/8898        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00    8217/8898        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [76]
[16187   0.0    0.00    0.00    8898         libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16187]
-----------------------------------------------
                0.00    0.00       1/8696        libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16507]
                0.00    0.00       1/8696        libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16504]
                0.00    0.00       1/8696        libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16510]
                0.00    0.00       1/8696        libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16501]
                0.00    0.00       2/8696        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
                0.00    0.00       2/8696        libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16436]
                0.00    0.00       2/8696        libebml::EDocType::~EDocType() [16439]
                0.00    0.00       2/8696        libebml::EDocTypeVersion::~EDocTypeVersion() [16433]
                0.00    0.00       2/8696        libebml::EMaxSizeLength::~EMaxSizeLength() [16430]
                0.00    0.00       2/8696        libebml::EMaxIdLength::~EMaxIdLength() [16424]
                0.00    0.00       2/8696        libebml::EReadVersion::~EReadVersion() [16427]
                0.00    0.00       2/8696        libebml::EVersion::~EVersion() [16442]
                0.00    0.00       2/8696        libmatroska::KaxAudioChannels::~KaxAudioChannels() [16376]
                0.00    0.00       2/8696        libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16394]
                0.00    0.00       2/8696        libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16385]
                0.00    0.00       2/8696        libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16370]
                0.00    0.00       2/8696        libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16379]
                0.00    0.00       2/8696        libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16400]
                0.00    0.00       2/8696        libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16406]
                0.00    0.00       2/8696        libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16382]
                0.00    0.00       2/8696        libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16388]
                0.00    0.00       2/8696        libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16391]
                0.00    0.00       2/8696        libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16397]
                0.00    0.00       2/8696        libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16403]
                0.00    0.00       2/8696        libmatroska::KaxDuration::~KaxDuration() [16359]
                0.00    0.00       2/8696        libmatroska::KaxDateUTC::~KaxDateUTC() [16356]
                0.00    0.00       3/8696        libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16337]
                0.00    0.00       3/8696        libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16340]
                0.00    0.00       4/8696        libmatroska::KaxTrackType::~KaxTrackType() [16303]
                0.00    0.00       4/8696        libmatroska::KaxTrackUID::~KaxTrackUID() [16300]
                0.00    0.00       4/8696        libmatroska::KaxTrackNumber::~KaxTrackNumber() [16306]
                0.00    0.00       4/8696        libmatroska::KaxCodecID::~KaxCodecID() [16297]
                0.00    0.00       6/8696        libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16286]
                0.00    0.00       6/8696        libmatroska::KaxSeekPosition::~KaxSeekPosition() [16283]
                0.00    0.00       6/8696        libmatroska::KaxWritingApp::~KaxWritingApp() [16280]
                0.00    0.00       6/8696        libmatroska::KaxMuxingApp::~KaxMuxingApp() [16277]
                0.00    0.00      33/8696        libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16258]
                0.00    0.00      66/8696        libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16237]
                0.00    0.00      66/8696        libmatroska::KaxCueTrack::~KaxCueTrack() [16234]
                0.00    0.00      66/8696        libmatroska::KaxCueTime::~KaxCueTime() [16231]
                0.00    0.00     104/8696        libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16228]
                0.00    0.00     137/8696        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00    8130/8696        libebml::EbmlBinary::~EbmlBinary() [16194]
[16188   0.0    0.00    0.00    8696         libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/8691        libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16443]
                0.00    0.00       2/8691        libmatroska::KaxDateUTC::KaxDateUTC() [16355]
                0.00    0.00       3/8691        libebml::EbmlString::EbmlString(std::string const&) [16344]
                0.00    0.00       4/8691        libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16314]
                0.00    0.00       4/8691        libebml::EbmlString::EbmlString() [16310]
                0.00    0.00      12/8691        libebml::EbmlUnicodeString::EbmlUnicodeString() [16271]
                0.00    0.00      39/8691        libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
                0.00    0.00     137/8691        libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
                0.00    0.00     361/8691        libebml::EbmlUInteger::EbmlUInteger() [16211]
                0.00    0.00    8127/8691        libebml::EbmlBinary::EbmlBinary() [16195]
[16189   0.0    0.00    0.00    8691         libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
-----------------------------------------------
                0.00    0.00     322/8345        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00    8023/8345        EbmlParser::Get(int) [35]
[16190   0.0    0.00    0.00    8345         libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16190]
-----------------------------------------------
                                 123             libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00    8337/8337        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[16191   0.0    0.00    0.00    8337+123     libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00    7976/7976        libmatroska::KaxSimpleBlock::Create() [16200]
                0.00    0.00     242/242         libebml::GetEbmlGlobal_Context() [16212]
                0.00    0.00     123/123         libmatroska::GetKaxGlobal_Context() [16224]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::Create() [16226]
                0.00    0.00      52/52          libmatroska::KaxCluster::Create() [16240]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Create() [16256]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::Create() [16235]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::Create() [16232]
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::Create() [16253]
                0.00    0.00      33/66          libmatroska::KaxCueTime::Create() [16229]
                0.00    0.00      33/33          libmatroska::KaxCuePoint::Create() [16250]
                0.00    0.00       4/4           libebml::EbmlVoid::Create() [16311]
                0.00    0.00       3/4           libmatroska::KaxInfo::Create() [16307]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::Create() [16281]
                0.00    0.00       3/6           libmatroska::KaxSeekID::Create() [16287]
                0.00    0.00       3/3           libmatroska::KaxSeek::Create() [16341]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::Create() [16404]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::Create() [16371]
                0.00    0.00       2/4           libmatroska::KaxCodecID::Create() [16295]
                0.00    0.00       2/4           libmatroska::KaxTrackType::Create() [16301]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::Create() [16298]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::Create() [16304]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::Create() [16365]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::Create() [16363]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::Create() [16354]
                0.00    0.00       2/2           libmatroska::KaxDuration::Create() [16357]
                0.00    0.00       2/6           libmatroska::KaxWritingApp::Create() [16278]
                0.00    0.00       2/6           libmatroska::KaxMuxingApp::Create() [16275]
                0.00    0.00       2/6           libmatroska::KaxTimecodeScale::Create() [16284]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::Create() [16360]
                0.00    0.00       1/2           libmatroska::KaxCues::Create() [16407]
                0.00    0.00       1/2           libmatroska::KaxTracks::Create() [16411]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::Create() [16374]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::Create() [16395]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::Create() [16493]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::Create() [16499]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::Create() [16505]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::Create() [16502]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::Create() [16392]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::Create() [16383]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::Create() [16496]
                0.00    0.00       1/3           libmatroska::KaxTrackMinCache::Create() [16335]
                0.00    0.00       1/3           libmatroska::KaxTrackFlagLacing::Create() [16338]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::Create() [16434]
                0.00    0.00       1/2           libebml::EDocTypeVersion::Create() [16431]
                0.00    0.00       1/2           libebml::EDocType::Create() [16437]
                0.00    0.00       1/2           libebml::EMaxSizeLength::Create() [16428]
                0.00    0.00       1/2           libebml::EMaxIdLength::Create() [16422]
                0.00    0.00       1/2           libebml::EReadVersion::Create() [16425]
                0.00    0.00       1/2           libebml::EVersion::Create() [16440]
                                 123             libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
-----------------------------------------------
                0.00    0.00     277/8255        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00    7978/8255        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
[16192   0.0    0.00    0.00    8255         libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [16192]
-----------------------------------------------
                0.00    0.00     554/8249        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00    7695/8249        EbmlParser::Get(int) [35]
[16193   0.0    0.00    0.00    8249         libmatroska::KaxSimpleBlock::Generic() const [16193]
-----------------------------------------------
                0.00    0.00       2/8131        libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16373]
                0.00    0.00       3/8131        libmatroska::KaxSegmentUID::~KaxSegmentUID() [16334]
                0.00    0.00       4/8131        libebml::EbmlVoid::~EbmlVoid() [16313]
                0.00    0.00       6/8131        libmatroska::KaxSeekID::~KaxSeekID() [16289]
                0.00    0.00     137/8131        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00    7979/8131        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16198]
[16194   0.0    0.00    0.00    8131         libebml::EbmlBinary::~EbmlBinary() [16194]
                0.00    0.00    8130/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/8127        libmatroska::KaxSegmentUID::KaxSegmentUID() [16364]
                0.00    0.00       2/8127        libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16372]
                0.00    0.00       4/8127        libebml::EbmlVoid::EbmlVoid() [16312]
                0.00    0.00       6/8127        libmatroska::KaxSeekID::KaxSeekID() [16288]
                0.00    0.00     137/8127        libebml::EbmlCrc32::EbmlCrc32() [16220]
                0.00    0.00    7976/8127        libmatroska::KaxSimpleBlock::Create() [16200]
[16195   0.0    0.00    0.00    8127         libebml::EbmlBinary::EbmlBinary() [16195]
                0.00    0.00    8127/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
-----------------------------------------------
                0.00    0.00     277/7978        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00    7701/7978        EbmlParser::Get(int) [35]
[16196   0.0    0.00    0.00    7978         libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16196]
                0.00    0.00    7978/7978        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16198]
-----------------------------------------------
                0.00    0.00    7978/7978        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16198]
[16197   0.0    0.00    0.00    7978         libmatroska::KaxInternalBlock::ReleaseFrames() [16197]
                0.00    0.00   13374/13374       libmatroska::DataBuffer::~DataBuffer() [16184]
-----------------------------------------------
                0.00    0.00    7978/7978        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16196]
[16198   0.0    0.00    0.00    7978         libmatroska::KaxInternalBlock::~KaxInternalBlock() [16198]
                0.00    0.00    7979/8131        libebml::EbmlBinary::~EbmlBinary() [16194]
                0.00    0.00    7978/7978        libmatroska::KaxInternalBlock::ReleaseFrames() [16197]
-----------------------------------------------
                0.00    0.00    7977/7977        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
[16199   0.0    0.00    0.00    7977         std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [16199]
-----------------------------------------------
                0.00    0.00    7976/7976        libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16200   0.0    0.00    0.00    7976         libmatroska::KaxSimpleBlock::Create() [16200]
                0.00    0.00    7976/8127        libebml::EbmlBinary::EbmlBinary() [16195]
-----------------------------------------------
                0.00    0.00      12/7949        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
                0.00    0.00    7937/7949        EbmlParser::Get(int) [35]
[16201   0.0    0.00    0.00    7949         libebml::EbmlElement::IsDummy() const [16201]
-----------------------------------------------
                0.00    0.00    7852/7852        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
[16202   0.0    0.00    0.00    7852         EbmlParser::GetLevel() const [16202]
-----------------------------------------------
                0.00    0.00       1/7803        matroska_segment_c::ParseCluster(bool) [150]
                0.00    0.00    7802/7803        EbmlParser::Get(int) [35]
[16203   0.0    0.00    0.00    7803         libmatroska::KaxCluster::Generic() const [16203]
-----------------------------------------------
                0.00    0.00    7750/7750        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
[16204   0.0    0.00    0.00    7750         EbmlParser::IsTopPresent(libebml::EbmlElement*) const [16204]
-----------------------------------------------
                0.00    0.00       1/7697        matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16526]
                0.00    0.00       1/7697        matroska_segment_c::ParseCluster(bool) [150]
                0.00    0.00    7695/7697        libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16206]
[16205   0.0    0.00    0.00    7697         libmatroska::KaxCluster::GlobalTimecode() const [16205]
-----------------------------------------------
                0.00    0.00    7695/7695        libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16207]
[16206   0.0    0.00    0.00    7695         libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16206]
                0.00    0.00    7695/7697        libmatroska::KaxCluster::GlobalTimecode() const [16205]
-----------------------------------------------
                0.00    0.00    7695/7695        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
[16207   0.0    0.00    0.00    7695         libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16207]
                0.00    0.00    7695/7695        libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16206]
-----------------------------------------------
                0.00    0.00    7694/7694        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
[16208   0.0    0.00    0.00    7694         libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [16208]
-----------------------------------------------
                0.00    0.00    4613/4613        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [66]
[16209   0.0    0.00    0.00    4613         libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16209]
                0.00    0.00    4613/29867       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16178]
-----------------------------------------------
                0.00    0.00    1286/1286        demux_Control [555]
[16210   0.0    0.00    0.00    1286         Control(demux_t*, int, std::__va_list) [16210]
                0.00    0.00       1/2           vlc_meta_Merge [870]
-----------------------------------------------
                0.00    0.00       1/361         libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16503]
                0.00    0.00       1/361         libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16506]
                0.00    0.00       2/361         libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16405]
                0.00    0.00       2/361         libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16384]
                0.00    0.00       2/361         libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16393]
                0.00    0.00       4/361         libmatroska::KaxTrackNumber::KaxTrackNumber() [16305]
                0.00    0.00       4/361         libmatroska::KaxTrackUID::KaxTrackUID() [16299]
                0.00    0.00       4/361         libmatroska::KaxTrackType::KaxTrackType() [16302]
                0.00    0.00       6/361         libmatroska::KaxSeekPosition::KaxSeekPosition() [16282]
                0.00    0.00      33/361         libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16257]
                0.00    0.00      66/361         libmatroska::KaxCueTime::KaxCueTime() [16230]
                0.00    0.00      66/361         libmatroska::KaxCueTrack::KaxCueTrack() [16233]
                0.00    0.00      66/361         libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16236]
                0.00    0.00     104/361         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16227]
[16211   0.0    0.00    0.00     361         libebml::EbmlUInteger::EbmlUInteger() [16211]
                0.00    0.00     361/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
-----------------------------------------------
                0.00    0.00     242/242         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16212   0.0    0.00    0.00     242         libebml::GetEbmlGlobal_Context() [16212]
-----------------------------------------------
                0.00    0.00     207/207         libebml::EbmlMaster::ProcessMandatory() [16216]
[16213   0.0    0.00    0.00     207         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16213]
                0.00    0.00     188/201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16214]
-----------------------------------------------
                0.00    0.00      13/201         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00     188/201         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16213]
[16214   0.0    0.00    0.00     201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16214]
-----------------------------------------------
                0.00    0.00       3/152         libebml::EbmlString::EbmlString(std::string const&) [16344]
                0.00    0.00      12/152         libebml::EbmlUnicodeString::EbmlUnicodeString() [16271]
                0.00    0.00     137/152         libebml::EbmlCrc32::EbmlCrc32() [16220]
[16215   0.0    0.00    0.00     152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16215]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
[16216   0.0    0.00    0.00     137         libebml::EbmlMaster::ProcessMandatory() [16216]
                0.00    0.00     207/207         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16213]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::Create() [16226]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::Create() [16235]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::Create() [16232]
                0.00    0.00      33/66          libmatroska::KaxCueTime::Create() [16229]
                0.00    0.00       4/6           libmatroska::KaxWritingApp::Create() [16278]
                0.00    0.00       4/6           libmatroska::KaxMuxingApp::Create() [16275]
                0.00    0.00       4/6           libmatroska::KaxTimecodeScale::Create() [16284]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::Create() [16281]
                0.00    0.00       3/6           libmatroska::KaxSeekID::Create() [16287]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::Create() [16368]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::Create() [16377]
                0.00    0.00       2/4           libmatroska::KaxCodecID::Create() [16295]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::Create() [16398]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::Create() [16401]
                0.00    0.00       2/3           libmatroska::KaxTrackMinCache::Create() [16335]
                0.00    0.00       2/3           libmatroska::KaxTrackFlagLacing::Create() [16338]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::Create() [16380]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::Create() [16386]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::Create() [16389]
                0.00    0.00       2/4           libmatroska::KaxTrackType::Create() [16301]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::Create() [16298]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::Create() [16304]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::Create() [16374]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::Create() [16395]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::Create() [16392]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::Create() [16383]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::Create() [16508]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::Create() [16434]
                0.00    0.00       1/2           libebml::EDocTypeVersion::Create() [16431]
                0.00    0.00       1/2           libebml::EDocType::Create() [16437]
                0.00    0.00       1/2           libebml::EMaxSizeLength::Create() [16428]
                0.00    0.00       1/2           libebml::EMaxIdLength::Create() [16422]
                0.00    0.00       1/2           libebml::EReadVersion::Create() [16425]
                0.00    0.00       1/2           libebml::EVersion::Create() [16440]
-----------------------------------------------
                0.00    0.00       1/137         libebml::EbmlHead::EbmlHead() [16546]
                0.00    0.00       1/137         libmatroska::KaxSegment::KaxSegment() [16491]
                0.00    0.00       1/137         libmatroska::KaxTrackVideo::KaxTrackVideo() [16497]
                0.00    0.00       1/137         libmatroska::KaxTrackAudio::KaxTrackAudio() [16494]
                0.00    0.00       2/137         libmatroska::KaxSeekHead::KaxSeekHead() [16361]
                0.00    0.00       2/137         libmatroska::KaxTracks::KaxTracks() [16412]
                0.00    0.00       2/137         libmatroska::KaxCues::KaxCues() [16408]
                0.00    0.00       2/137         libmatroska::KaxTrackEntry::KaxTrackEntry() [16366]
                0.00    0.00       3/137         libmatroska::KaxSeek::KaxSeek() [16342]
                0.00    0.00       4/137         libmatroska::KaxInfo::KaxInfo() [16308]
                0.00    0.00      33/137         libmatroska::KaxCuePoint::KaxCuePoint() [16251]
                0.00    0.00      33/137         libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16254]
                0.00    0.00      52/137         libmatroska::KaxCluster::KaxCluster() [16241]
[16217   0.0    0.00    0.00     137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
                0.00    0.00     137/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
                0.00    0.00     137/137         libebml::EbmlCrc32::EbmlCrc32() [16220]
                0.00    0.00     137/137         libebml::EbmlMaster::ProcessMandatory() [16216]
-----------------------------------------------
                                   1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16495]
                                   1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16498]
                                   2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16367]
                0.00    0.00       1/133         libebml::EbmlHead::~EbmlHead() [16547]
                0.00    0.00       1/133         libmatroska::KaxSegment::~KaxSegment() [16492]
                0.00    0.00       2/133         libmatroska::KaxCues::~KaxCues() [16410]
                0.00    0.00       2/133         libmatroska::KaxSeekHead::~KaxSeekHead() [16362]
                0.00    0.00       2/133         libmatroska::KaxTracks::~KaxTracks() [16413]
                0.00    0.00       3/133         libmatroska::KaxSeek::~KaxSeek() [16343]
                0.00    0.00       4/133         libmatroska::KaxInfo::~KaxInfo() [16309]
                0.00    0.00      33/133         libmatroska::KaxCuePoint::~KaxCuePoint() [16252]
                0.00    0.00      33/133         libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16255]
                0.00    0.00      52/133         libmatroska::KaxCluster::~KaxCluster() [16242]
[16218   0.0    0.00    0.00     137         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00     277/7978        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16196]
                0.00    0.00     137/8131        libebml::EbmlBinary::~EbmlBinary() [16194]
                0.00    0.00     137/8696        libebml::EbmlElement::~EbmlElement() [16188]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16228]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16237]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::~KaxCueTrack() [16234]
                0.00    0.00      33/66          libmatroska::KaxCueTime::~KaxCueTime() [16231]
                0.00    0.00       4/6           libmatroska::KaxWritingApp::~KaxWritingApp() [16280]
                0.00    0.00       4/6           libmatroska::KaxMuxingApp::~KaxMuxingApp() [16277]
                0.00    0.00       4/6           libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16286]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::~KaxSeekPosition() [16283]
                0.00    0.00       3/6           libmatroska::KaxSeekID::~KaxSeekID() [16289]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16406]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16373]
                0.00    0.00       2/4           libmatroska::KaxCodecID::~KaxCodecID() [16297]
                0.00    0.00       2/4           libmatroska::KaxTrackType::~KaxTrackType() [16303]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::~KaxTrackUID() [16300]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::~KaxTrackNumber() [16306]
                0.00    0.00       2/3           libmatroska::KaxSegmentUID::~KaxSegmentUID() [16334]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::~KaxDateUTC() [16356]
                0.00    0.00       2/2           libmatroska::KaxDuration::~KaxDuration() [16359]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::~KaxAudioChannels() [16376]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16397]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16501]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16507]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16504]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16394]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16385]
                0.00    0.00       1/3           libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16337]
                0.00    0.00       1/3           libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16340]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16436]
                0.00    0.00       1/2           libebml::EDocTypeVersion::~EDocTypeVersion() [16433]
                0.00    0.00       1/2           libebml::EDocType::~EDocType() [16439]
                0.00    0.00       1/2           libebml::EMaxSizeLength::~EMaxSizeLength() [16430]
                0.00    0.00       1/2           libebml::EMaxIdLength::~EMaxIdLength() [16424]
                0.00    0.00       1/2           libebml::EReadVersion::~EReadVersion() [16427]
                0.00    0.00       1/2           libebml::EVersion::~EVersion() [16442]
                                   2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16367]
                                   1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16495]
                                   1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16498]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlCrc32::EbmlCrc32() [16220]
[16219   0.0    0.00    0.00     137         libebml::EbmlCrc32::ResetCRC() [16219]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
[16220   0.0    0.00    0.00     137         libebml::EbmlCrc32::EbmlCrc32() [16220]
                0.00    0.00     137/8127        libebml::EbmlBinary::EbmlBinary() [16195]
                0.00    0.00     137/137         libebml::EbmlCrc32::ResetCRC() [16219]
                0.00    0.00     137/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16215]
-----------------------------------------------
                0.00    0.00       5/137         libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00     132/137         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[16221   0.0    0.00    0.00     137         libebml::EbmlMaster::ValidateSize() const [16221]
-----------------------------------------------
                0.00    0.00     132/132         EbmlParser::Get(int) [35]
[16222   0.0    0.00    0.00     132         libmatroska::KaxCueTrackPositions::Generic() const [16222]
-----------------------------------------------
                0.00    0.00       1/127         matroska_segment_c::ParseCluster(bool) [150]
                0.00    0.00       1/127         matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
                0.00    0.00       1/127         demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
                0.00    0.00       3/127         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00       4/127         matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
                0.00    0.00      51/127         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.00      66/127         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
[16223   0.0    0.00    0.00     127         libebml::EbmlUInteger::operator unsigned long long() const [16223]
-----------------------------------------------
                0.00    0.00     123/123         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16224   0.0    0.00    0.00     123         libmatroska::GetKaxGlobal_Context() [16224]
-----------------------------------------------
                0.00    0.00       1/121         matroska_segment_c::Preload() [118]
                0.00    0.00       3/121         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00      51/121         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
                0.00    0.00      66/121         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
[16225   0.0    0.00    0.00     121         EbmlParser::Down() [16225]
-----------------------------------------------
                0.00    0.00      52/104         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00      52/104         libebml::EbmlMaster::ProcessMandatory() [16216]
[16226   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::Create() [16226]
                0.00    0.00     104/104         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16227]
-----------------------------------------------
                0.00    0.00     104/104         libmatroska::KaxClusterTimecode::Create() [16226]
[16227   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16227]
                0.00    0.00     104/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       1/104         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00      51/104         EbmlParser::Get(int) [35]
                0.00    0.00      52/104         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16228   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16228]
                0.00    0.00     104/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16216]
[16229   0.0    0.00    0.00      66         libmatroska::KaxCueTime::Create() [16229]
                0.00    0.00      66/66          libmatroska::KaxCueTime::KaxCueTime() [16230]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueTime::Create() [16229]
[16230   0.0    0.00    0.00      66         libmatroska::KaxCueTime::KaxCueTime() [16230]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [35]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16231   0.0    0.00    0.00      66         libmatroska::KaxCueTime::~KaxCueTime() [16231]
                0.00    0.00      66/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16216]
[16232   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::Create() [16232]
                0.00    0.00      66/66          libmatroska::KaxCueTrack::KaxCueTrack() [16233]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueTrack::Create() [16232]
[16233   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::KaxCueTrack() [16233]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [35]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16234   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::~KaxCueTrack() [16234]
                0.00    0.00      66/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16216]
[16235   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::Create() [16235]
                0.00    0.00      66/66          libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16236]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueClusterPosition::Create() [16235]
[16236   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16236]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [35]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16237   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16237]
                0.00    0.00      66/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00      66/66          EbmlParser::Get(int) [35]
[16238   0.0    0.00    0.00      66         libmatroska::KaxCuePoint::Generic() const [16238]
-----------------------------------------------
                0.00    0.00       2/53          libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00      51/53          EbmlParser::Get(int) [35]
[16239   0.0    0.00    0.00      53         libmatroska::KaxClusterTimecode::Generic() const [16239]
-----------------------------------------------
                0.00    0.00      52/52          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16240   0.0    0.00    0.00      52         libmatroska::KaxCluster::Create() [16240]
                0.00    0.00      52/52          libmatroska::KaxCluster::KaxCluster() [16241]
-----------------------------------------------
                0.00    0.00      52/52          libmatroska::KaxCluster::Create() [16240]
[16241   0.0    0.00    0.00      52         libmatroska::KaxCluster::KaxCluster() [16241]
                0.00    0.00      52/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       1/52          EbmlParser::~EbmlParser() [16293]
                0.00    0.00      51/52          EbmlParser::Get(int) [35]
[16242   0.0    0.00    0.00      52         libmatroska::KaxCluster::~KaxCluster() [16242]
                0.00    0.00      52/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       8/41          matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
                0.00    0.00      33/41          matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
[16243   0.0    0.00    0.00      41         libebml::EbmlUInteger::operator unsigned short() const [16243]
-----------------------------------------------
                0.00    0.00       1/39          libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16509]
                0.00    0.00       2/39          libebml::EVersion::EVersion() [16441]
                0.00    0.00       2/39          libebml::EReadVersion::EReadVersion() [16426]
                0.00    0.00       2/39          libebml::EMaxIdLength::EMaxIdLength() [16423]
                0.00    0.00       2/39          libebml::EMaxSizeLength::EMaxSizeLength() [16429]
                0.00    0.00       2/39          libebml::EDocTypeVersion::EDocTypeVersion() [16432]
                0.00    0.00       2/39          libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16435]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16390]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16387]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16381]
                0.00    0.00       2/39          libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16399]
                0.00    0.00       2/39          libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16378]
                0.00    0.00       2/39          libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16369]
                0.00    0.00       2/39          libmatroska::KaxAudioChannels::KaxAudioChannels() [16375]
                0.00    0.00       3/39          libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16339]
                0.00    0.00       3/39          libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16336]
                0.00    0.00       6/39          libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16285]
[16244   0.0    0.00    0.00      39         libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
                0.00    0.00      39/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
-----------------------------------------------
                0.00    0.00       1/37          TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00       1/37          TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
                0.00    0.00       2/37          TagLib::FileRef::~FileRef() [16420]
                0.00    0.00      33/37          TagLib::String::~String() [16260]
[16245   0.0    0.00    0.00      37         TagLib::RefCounter::deref() [16245]
-----------------------------------------------
                0.00    0.00       1/37          EbmlParser::Reset(demux_t*) [271]
                0.00    0.00       3/37          matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
                0.00    0.00      33/37          matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
[16246   0.0    0.00    0.00      37         libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16246]
                0.00    0.00      37/37          libmatroska::KaxSegment::operator libebml::EbmlId const&() const [16247]
                0.00    0.00      37/8898        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16187]
-----------------------------------------------
                0.00    0.00      37/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16246]
[16247   0.0    0.00    0.00      37         libmatroska::KaxSegment::operator libebml::EbmlId const&() const [16247]
-----------------------------------------------
                0.00    0.00       1/35          TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16535]
                0.00    0.00       1/35          TagLib::FileRef::FileRef() [16539]
                0.00    0.00       1/35          TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16538]
                0.00    0.00       2/35          TagLib::String::String() [16417]
                0.00    0.00      30/35          TagLib::String::String(char const*, TagLib::String::Type) [16266]
[16248   0.0    0.00    0.00      35         TagLib::RefCounter::RefCounter() [16248]
-----------------------------------------------
                0.00    0.00       2/35          TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16418]
                0.00    0.00      33/35          TagLib::String::StringPrivate::~StringPrivate() [16259]
[16249   0.0    0.00    0.00      35         TagLib::RefCounter::~RefCounter() [16249]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16250   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::Create() [16250]
                0.00    0.00      33/33          libmatroska::KaxCuePoint::KaxCuePoint() [16251]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCuePoint::Create() [16250]
[16251   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::KaxCuePoint() [16251]
                0.00    0.00      33/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       1/33          EbmlParser::~EbmlParser() [16293]
                0.00    0.00      32/33          EbmlParser::Get(int) [35]
[16252   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::~KaxCuePoint() [16252]
                0.00    0.00      33/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16253   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::Create() [16253]
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16254]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::Create() [16253]
[16254   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16254]
                0.00    0.00      33/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       1/33          EbmlParser::~EbmlParser() [16293]
                0.00    0.00      32/33          EbmlParser::Get(int) [35]
[16255   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16255]
                0.00    0.00      33/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16256   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::Create() [16256]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16257]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Create() [16256]
[16257   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16257]
                0.00    0.00      33/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [35]
[16258   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16258]
                0.00    0.00      33/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/33          TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00      32/33          TagLib::String::~String() [16260]
[16259   0.0    0.00    0.00      33         TagLib::String::StringPrivate::~StringPrivate() [16259]
                0.00    0.00      33/35          TagLib::RefCounter::~RefCounter() [16249]
-----------------------------------------------
                0.00    0.00      33/33          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16260   0.0    0.00    0.00      33         TagLib::String::~String() [16260]
                0.00    0.00      33/37          TagLib::RefCounter::deref() [16245]
                0.00    0.00      32/33          TagLib::String::StringPrivate::~StringPrivate() [16259]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [35]
[16261   0.0    0.00    0.00      33         libmatroska::KaxCueTime::Generic() const [16261]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [35]
[16262   0.0    0.00    0.00      33         libmatroska::KaxCueTrack::Generic() const [16262]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [35]
[16263   0.0    0.00    0.00      33         libmatroska::KaxCueClusterPosition::Generic() const [16263]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [35]
[16264   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::Generic() const [16264]
-----------------------------------------------
                0.00    0.00      30/30          TagLib::String::String(char const*, TagLib::String::Type) [16266]
[16265   0.0    0.00    0.00      30         TagLib::String::copyFromLatin1(char const*, unsigned int) [16265]
-----------------------------------------------
                0.00    0.00      30/30          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16266   0.0    0.00    0.00      30         TagLib::String::String(char const*, TagLib::String::Type) [16266]
                0.00    0.00      30/35          TagLib::RefCounter::RefCounter() [16248]
                0.00    0.00      30/30          TagLib::String::copyFromLatin1(char const*, unsigned int) [16265]
-----------------------------------------------
                0.00    0.00      28/28          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16267   0.0    0.00    0.00      28         TagLib::String::operator==(TagLib::String const&) const [16267]
                0.00    0.00      21/25          wmemcmp [615]
-----------------------------------------------
                0.00    0.00       2/26          matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
                0.00    0.00      12/26          libmatroska::KaxWritingApp::~KaxWritingApp() [16280]
                0.00    0.00      12/26          libmatroska::KaxMuxingApp::~KaxMuxingApp() [16277]
[16268   0.0    0.00    0.00      26         libebml::UTFstring::~UTFstring() [16268]
-----------------------------------------------
                0.00    0.00      24/24          libebml::EbmlUnicodeString::EbmlUnicodeString() [16271]
[16269   0.0    0.00    0.00      24         libebml::UTFstring::UTFstring() [16269]
-----------------------------------------------
                0.00    0.00       1/18          matroska_segment_c::ParseCluster(bool) [150]
                0.00    0.00       1/18          matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [135]
                0.00    0.00       1/18          matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
                0.00    0.00       1/18          demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
                0.00    0.00       5/18          EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [210]
                0.00    0.00       9/18          libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16270   0.0    0.00    0.00      18         libebml::EbmlMaster::GetSize() const [16270]
-----------------------------------------------
                0.00    0.00       6/12          libmatroska::KaxMuxingApp::KaxMuxingApp() [16276]
                0.00    0.00       6/12          libmatroska::KaxWritingApp::KaxWritingApp() [16279]
[16271   0.0    0.00    0.00      12         libebml::EbmlUnicodeString::EbmlUnicodeString() [16271]
                0.00    0.00      24/24          libebml::UTFstring::UTFstring() [16269]
                0.00    0.00      12/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
                0.00    0.00      12/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16215]
-----------------------------------------------
                0.00    0.00      10/10          EbmlParser::Get(int) [35]
[16272   0.0    0.00    0.00      10         libmatroska::KaxSegment::Generic() const [16272]
-----------------------------------------------
                0.00    0.00      10/10          EbmlParser::Get(int) [35]
[16273   0.0    0.00    0.00      10         libmatroska::KaxSeek::Generic() const [16273]
-----------------------------------------------
                0.00    0.00       8/8           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
[16274   0.0    0.00    0.00       8         libebml::EbmlUInteger::operator unsigned int() const [16274]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16216]
[16275   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::Create() [16275]
                0.00    0.00       6/6           libmatroska::KaxMuxingApp::KaxMuxingApp() [16276]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxMuxingApp::Create() [16275]
[16276   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::KaxMuxingApp() [16276]
                0.00    0.00       6/12          libebml::EbmlUnicodeString::EbmlUnicodeString() [16271]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16277   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::~KaxMuxingApp() [16277]
                0.00    0.00      12/26          libebml::UTFstring::~UTFstring() [16268]
                0.00    0.00       6/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16216]
[16278   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::Create() [16278]
                0.00    0.00       6/6           libmatroska::KaxWritingApp::KaxWritingApp() [16279]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxWritingApp::Create() [16278]
[16279   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::KaxWritingApp() [16279]
                0.00    0.00       6/12          libebml::EbmlUnicodeString::EbmlUnicodeString() [16271]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16280   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::~KaxWritingApp() [16280]
                0.00    0.00      12/26          libebml::UTFstring::~UTFstring() [16268]
                0.00    0.00       6/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       3/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       3/6           libebml::EbmlMaster::ProcessMandatory() [16216]
[16281   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::Create() [16281]
                0.00    0.00       6/6           libmatroska::KaxSeekPosition::KaxSeekPosition() [16282]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxSeekPosition::Create() [16281]
[16282   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::KaxSeekPosition() [16282]
                0.00    0.00       6/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       3/6           EbmlParser::Get(int) [35]
                0.00    0.00       3/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16283   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::~KaxSeekPosition() [16283]
                0.00    0.00       6/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16216]
[16284   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::Create() [16284]
                0.00    0.00       6/6           libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16285]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxTimecodeScale::Create() [16284]
[16285   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16285]
                0.00    0.00       6/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16286   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16286]
                0.00    0.00       6/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       3/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       3/6           libebml::EbmlMaster::ProcessMandatory() [16216]
[16287   0.0    0.00    0.00       6         libmatroska::KaxSeekID::Create() [16287]
                0.00    0.00       6/6           libmatroska::KaxSeekID::KaxSeekID() [16288]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxSeekID::Create() [16287]
[16288   0.0    0.00    0.00       6         libmatroska::KaxSeekID::KaxSeekID() [16288]
                0.00    0.00       6/8127        libebml::EbmlBinary::EbmlBinary() [16195]
-----------------------------------------------
                0.00    0.00       3/6           EbmlParser::Get(int) [35]
                0.00    0.00       3/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16289   0.0    0.00    0.00       6         libmatroska::KaxSeekID::~KaxSeekID() [16289]
                0.00    0.00       6/8131        libebml::EbmlBinary::~EbmlBinary() [16194]
-----------------------------------------------
                0.00    0.00       3/6           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       3/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[16290   0.0    0.00    0.00       6         libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16290]
-----------------------------------------------
                0.00    0.00       1/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
                0.00    0.00       5/6           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
[16291   0.0    0.00    0.00       6         libebml::EbmlString::operator std::string const&() const [16291]
-----------------------------------------------
                                   2             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [272]
                                   3             matroska_segment_c::Select(long long) <cycle 4> [217]
[16292   0.0    0.00    0.00       5         es_out_Control(es_out_t*, int, ...) <cycle 4> [16292]
                                   5             Control <cycle 4> [77]
-----------------------------------------------
                0.00    0.00       1/5           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [129]
                0.00    0.00       1/5           matroska_segment_c::Select(long long) <cycle 4> [217]
                0.00    0.00       1/5           matroska_segment_c::UnSelect() [239]
                0.00    0.00       1/5           matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [272]
                0.00    0.00       1/5           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [119]
[16293   0.0    0.00    0.00       5         EbmlParser::~EbmlParser() [16293]
                0.00    0.00       1/2           libmatroska::KaxCues::~KaxCues() [16409]
                0.00    0.00       1/52          libmatroska::KaxCluster::~KaxCluster() [16242]
                0.00    0.00       1/33          libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16255]
                0.00    0.00       1/33          libmatroska::KaxCuePoint::~KaxCuePoint() [16252]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16309]
-----------------------------------------------
                0.00    0.00       5/5           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
[16294   0.0    0.00    0.00       5         libebml::EbmlMaster::SetSizeInfinite(bool) [16294]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16216]
[16295   0.0    0.00    0.00       4         libmatroska::KaxCodecID::Create() [16295]
                0.00    0.00       4/4           libmatroska::KaxCodecID::KaxCodecID() [16296]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxCodecID::Create() [16295]
[16296   0.0    0.00    0.00       4         libmatroska::KaxCodecID::KaxCodecID() [16296]
                0.00    0.00       4/4           libebml::EbmlString::EbmlString() [16310]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16297   0.0    0.00    0.00       4         libmatroska::KaxCodecID::~KaxCodecID() [16297]
                0.00    0.00       4/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16216]
[16298   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::Create() [16298]
                0.00    0.00       4/4           libmatroska::KaxTrackUID::KaxTrackUID() [16299]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackUID::Create() [16298]
[16299   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::KaxTrackUID() [16299]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16300   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::~KaxTrackUID() [16300]
                0.00    0.00       4/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16216]
[16301   0.0    0.00    0.00       4         libmatroska::KaxTrackType::Create() [16301]
                0.00    0.00       4/4           libmatroska::KaxTrackType::KaxTrackType() [16302]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackType::Create() [16301]
[16302   0.0    0.00    0.00       4         libmatroska::KaxTrackType::KaxTrackType() [16302]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16303   0.0    0.00    0.00       4         libmatroska::KaxTrackType::~KaxTrackType() [16303]
                0.00    0.00       4/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16216]
[16304   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::Create() [16304]
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::KaxTrackNumber() [16305]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::Create() [16304]
[16305   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::KaxTrackNumber() [16305]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16306   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::~KaxTrackNumber() [16306]
                0.00    0.00       4/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/4           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00       3/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16307   0.0    0.00    0.00       4         libmatroska::KaxInfo::Create() [16307]
                0.00    0.00       4/4           libmatroska::KaxInfo::KaxInfo() [16308]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxInfo::Create() [16307]
[16308   0.0    0.00    0.00       4         libmatroska::KaxInfo::KaxInfo() [16308]
                0.00    0.00       4/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       1/4           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       1/4           EbmlParser::~EbmlParser() [16293]
                0.00    0.00       1/4           EbmlParser::Reset(demux_t*) [271]
                0.00    0.00       1/4           EbmlParser::Get(int) [35]
[16309   0.0    0.00    0.00       4         libmatroska::KaxInfo::~KaxInfo() [16309]
                0.00    0.00       4/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxCodecID::KaxCodecID() [16296]
[16310   0.0    0.00    0.00       4         libebml::EbmlString::EbmlString() [16310]
                0.00    0.00       4/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16311   0.0    0.00    0.00       4         libebml::EbmlVoid::Create() [16311]
                0.00    0.00       4/4           libebml::EbmlVoid::EbmlVoid() [16312]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlVoid::Create() [16311]
[16312   0.0    0.00    0.00       4         libebml::EbmlVoid::EbmlVoid() [16312]
                0.00    0.00       4/8127        libebml::EbmlBinary::EbmlBinary() [16195]
-----------------------------------------------
                0.00    0.00       4/4           EbmlParser::Get(int) [35]
[16313   0.0    0.00    0.00       4         libebml::EbmlVoid::~EbmlVoid() [16313]
                0.00    0.00       4/8131        libebml::EbmlBinary::~EbmlBinary() [16194]
-----------------------------------------------
                0.00    0.00       2/4           libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16402]
                0.00    0.00       2/4           libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16396]
[16314   0.0    0.00    0.00       4         libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16314]
                0.00    0.00       4/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [266]
[16315   0.0    0.00    0.00       4         libebml::UTFstring::UpdateFromUTF8() [16315]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [266]
[16316   0.0    0.00    0.00       4         libebml::UTFstring::SetUTF8(std::string const&) [16316]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16317   0.0    0.00    0.00       4         libmatroska::KaxCodecID::Generic() const [16317]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16318   0.0    0.00    0.00       4         libmatroska::KaxDateUTC::Generic() const [16318]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16319   0.0    0.00    0.00       4         libmatroska::KaxDuration::Generic() const [16319]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16320   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::Generic() const [16320]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16321   0.0    0.00    0.00       4         libmatroska::KaxMuxingApp::Generic() const [16321]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16322   0.0    0.00    0.00       4         libmatroska::KaxTrackType::Generic() const [16322]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16323   0.0    0.00    0.00       4         libmatroska::KaxSegmentUID::Generic() const [16323]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16324   0.0    0.00    0.00       4         libmatroska::KaxTrackEntry::Generic() const [16324]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16325   0.0    0.00    0.00       4         libmatroska::KaxWritingApp::Generic() const [16325]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16326   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::Generic() const [16326]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16327   0.0    0.00    0.00       4         libmatroska::KaxCodecPrivate::Generic() const [16327]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16328   0.0    0.00    0.00       4         libmatroska::KaxTimecodeScale::Generic() const [16328]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16329   0.0    0.00    0.00       4         libmatroska::KaxTrackDefaultDuration::Generic() const [16329]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[16330   0.0    0.00    0.00       4         libebml::EbmlString::ValidateSize() const [16330]
-----------------------------------------------
                0.00    0.00       4/4           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
[16331   0.0    0.00    0.00       4         libebml::EbmlUInteger::operator unsigned char() const [16331]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [39]
[16332   0.0    0.00    0.00       4         libebml::EbmlUnicodeString::ValidateSize() const [16332]
-----------------------------------------------
                0.00    0.00       4/4           EbmlParser::Get(int) [35]
[16333   0.0    0.00    0.00       4         libebml::EbmlVoid::Generic() const [16333]
-----------------------------------------------
                0.00    0.00       1/3           matroska_segment_c::~matroska_segment_c() [16530]
                0.00    0.00       2/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16334   0.0    0.00    0.00       3         libmatroska::KaxSegmentUID::~KaxSegmentUID() [16334]
                0.00    0.00       3/8131        libebml::EbmlBinary::~EbmlBinary() [16194]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       2/3           libebml::EbmlMaster::ProcessMandatory() [16216]
[16335   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::Create() [16335]
                0.00    0.00       3/3           libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16336]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxTrackMinCache::Create() [16335]
[16336   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16336]
                0.00    0.00       3/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       2/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16337   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16337]
                0.00    0.00       3/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       2/3           libebml::EbmlMaster::ProcessMandatory() [16216]
[16338   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::Create() [16338]
                0.00    0.00       3/3           libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16339]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxTrackFlagLacing::Create() [16338]
[16339   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16339]
                0.00    0.00       3/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       2/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16340   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16340]
                0.00    0.00       3/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16341   0.0    0.00    0.00       3         libmatroska::KaxSeek::Create() [16341]
                0.00    0.00       3/3           libmatroska::KaxSeek::KaxSeek() [16342]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxSeek::Create() [16341]
[16342   0.0    0.00    0.00       3         libmatroska::KaxSeek::KaxSeek() [16342]
                0.00    0.00       3/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [35]
[16343   0.0    0.00    0.00       3         libmatroska::KaxSeek::~KaxSeek() [16343]
                0.00    0.00       3/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       1/3           libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16500]
                0.00    0.00       2/3           libebml::EDocType::EDocType() [16438]
[16344   0.0    0.00    0.00       3         libebml::EbmlString::EbmlString(std::string const&) [16344]
                0.00    0.00       3/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
                0.00    0.00       3/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16215]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [402]
                0.00    0.00       1/3           libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16543]
                0.00    0.00       1/3           libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16544]
[16345   0.0    0.00    0.00       3         libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16345]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [35]
[16346   0.0    0.00    0.00       3         libmatroska::KaxSeekHead::Generic() const [16346]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [35]
[16347   0.0    0.00    0.00       3         libmatroska::KaxSeekPosition::Generic() const [16347]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [35]
[16348   0.0    0.00    0.00       3         libmatroska::KaxSeekID::Generic() const [16348]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
[16349   0.0    0.00    0.00       3         libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16349]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
[16350   0.0    0.00    0.00       3         libebml::EReadVersion::operator libebml::EbmlId const&() const [16350]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
[16351   0.0    0.00    0.00       3         libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16351]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
[16352   0.0    0.00    0.00       3         libebml::EDocType::operator libebml::EbmlId const&() const [16352]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
[16353   0.0    0.00    0.00       3         libebml::EVersion::operator libebml::EbmlId const&() const [16353]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16354   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::Create() [16354]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::KaxDateUTC() [16355]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDateUTC::Create() [16354]
[16355   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::KaxDateUTC() [16355]
                0.00    0.00       2/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16356   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::~KaxDateUTC() [16356]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16357   0.0    0.00    0.00       2         libmatroska::KaxDuration::Create() [16357]
                0.00    0.00       2/2           libmatroska::KaxDuration::KaxDuration() [16358]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDuration::Create() [16357]
[16358   0.0    0.00    0.00       2         libmatroska::KaxDuration::KaxDuration() [16358]
                0.00    0.00       2/2           libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16443]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16359   0.0    0.00    0.00       2         libmatroska::KaxDuration::~KaxDuration() [16359]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16360   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::Create() [16360]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::KaxSeekHead() [16361]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSeekHead::Create() [16360]
[16361   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::KaxSeekHead() [16361]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       2/2           EbmlParser::Get(int) [35]
[16362   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::~KaxSeekHead() [16362]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16363   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::Create() [16363]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::KaxSegmentUID() [16364]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::Create() [16363]
[16364   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::KaxSegmentUID() [16364]
                0.00    0.00       2/8127        libebml::EbmlBinary::EbmlBinary() [16195]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16365   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::Create() [16365]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::KaxTrackEntry() [16366]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::Create() [16365]
[16366   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::KaxTrackEntry() [16366]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                                   2             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16367   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16367]
                                   2             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16368   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::Create() [16368]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16369]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::Create() [16368]
[16369   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16369]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16370   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16370]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16371   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::Create() [16371]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16372]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::Create() [16371]
[16372   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16372]
                0.00    0.00       2/8127        libebml::EbmlBinary::EbmlBinary() [16195]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16373   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16373]
                0.00    0.00       2/8131        libebml::EbmlBinary::~EbmlBinary() [16194]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16374   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::Create() [16374]
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::KaxAudioChannels() [16375]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::Create() [16374]
[16375   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::KaxAudioChannels() [16375]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16376   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::~KaxAudioChannels() [16376]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16377   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::Create() [16377]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16378]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::Create() [16377]
[16378   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16378]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16379   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16379]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16380   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::Create() [16380]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16381]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::Create() [16380]
[16381   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16381]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16382   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16382]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16383   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::Create() [16383]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16384]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::Create() [16383]
[16384   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16384]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16385   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16385]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16386   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::Create() [16386]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16387]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::Create() [16386]
[16387   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16387]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16388   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16388]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16389   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::Create() [16389]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16390]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::Create() [16389]
[16390   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16390]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16391   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16391]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16392   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::Create() [16392]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16393]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::Create() [16392]
[16393   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16393]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16394   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16394]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16395   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::Create() [16395]
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16396]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::Create() [16395]
[16396   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16396]
                0.00    0.00       2/4           libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16314]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16397   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16397]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16398   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::Create() [16398]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16399]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::Create() [16398]
[16399   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16399]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16400   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16400]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16401   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::Create() [16401]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16402]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::Create() [16401]
[16402   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16402]
                0.00    0.00       2/4           libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16314]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16403   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16403]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16404   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::Create() [16404]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16405]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::Create() [16404]
[16405   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16405]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16406   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16406]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16407   0.0    0.00    0.00       2         libmatroska::KaxCues::Create() [16407]
                0.00    0.00       2/2           libmatroska::KaxCues::KaxCues() [16408]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCues::Create() [16407]
[16408   0.0    0.00    0.00       2         libmatroska::KaxCues::KaxCues() [16408]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       1/2           EbmlParser::~EbmlParser() [16293]
[16409   0.0    0.00    0.00       2         libmatroska::KaxCues::~KaxCues() [16409]
                0.00    0.00       2/2           libmatroska::KaxCues::~KaxCues() [16410]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCues::~KaxCues() [16409]
[16410   0.0    0.00    0.00       2         libmatroska::KaxCues::~KaxCues() [16410]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16411   0.0    0.00    0.00       2         libmatroska::KaxTracks::Create() [16411]
                0.00    0.00       2/2           libmatroska::KaxTracks::KaxTracks() [16412]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTracks::Create() [16411]
[16412   0.0    0.00    0.00       2         libmatroska::KaxTracks::KaxTracks() [16412]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [120]
                0.00    0.00       1/2           EbmlParser::Get(int) [35]
[16413   0.0    0.00    0.00       2         libmatroska::KaxTracks::~KaxTracks() [16413]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::UnSelect() [239]
                0.00    0.00       1/2           event_thread_t::~event_thread_t() [16512]
[16414   0.0    0.00    0.00       2         event_thread_t::ResetPci() [16414]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
[16415   0.0    0.00    0.00       2         matroska_segment_c::TrackInit(mkv_track_t*) [16415]
                0.00    0.00       1/1           fill_extra_data(mkv_track_t*, unsigned int) [16485]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00       1/2           TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
[16416   0.0    0.00    0.00       2         TagLib::RefCounter::ref() [16416]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::String::upper() const [16564]
                0.00    0.00       1/2           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16417   0.0    0.00    0.00       2         TagLib::String::String() [16417]
                0.00    0.00       2/35          TagLib::RefCounter::RefCounter() [16248]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::FileRef::~FileRef() [16420]
                0.00    0.00       1/2           TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
[16418   0.0    0.00    0.00       2         TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16418]
                0.00    0.00       2/35          TagLib::RefCounter::~RefCounter() [16249]
-----------------------------------------------
                0.00    0.00       2/2           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16419   0.0    0.00    0.00       2         TagLib::FileRef::~FileRef() [16419]
-----------------------------------------------
                0.00    0.00       2/2           ReadMeta(vlc_object_t*) [490]
[16420   0.0    0.00    0.00       2         TagLib::FileRef::~FileRef() [16420]
                0.00    0.00       2/37          TagLib::RefCounter::deref() [16245]
                0.00    0.00       1/2           TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16418]
-----------------------------------------------
                0.00    0.00       2/2           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[16421   0.0    0.00    0.00       2         libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
                0.00    0.00       2/3           libebml::EDocType::operator libebml::EbmlId const&() const [16352]
                0.00    0.00       2/3           libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16351]
                0.00    0.00       2/3           libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16349]
                0.00    0.00       2/3           libebml::EReadVersion::operator libebml::EbmlId const&() const [16350]
                0.00    0.00       2/3           libebml::EVersion::operator libebml::EbmlId const&() const [16353]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16480]
                0.00    0.00       1/2           libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16477]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16422   0.0    0.00    0.00       2         libebml::EMaxIdLength::Create() [16422]
                0.00    0.00       2/2           libebml::EMaxIdLength::EMaxIdLength() [16423]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EMaxIdLength::Create() [16422]
[16423   0.0    0.00    0.00       2         libebml::EMaxIdLength::EMaxIdLength() [16423]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16424   0.0    0.00    0.00       2         libebml::EMaxIdLength::~EMaxIdLength() [16424]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16425   0.0    0.00    0.00       2         libebml::EReadVersion::Create() [16425]
                0.00    0.00       2/2           libebml::EReadVersion::EReadVersion() [16426]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EReadVersion::Create() [16425]
[16426   0.0    0.00    0.00       2         libebml::EReadVersion::EReadVersion() [16426]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16427   0.0    0.00    0.00       2         libebml::EReadVersion::~EReadVersion() [16427]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16428   0.0    0.00    0.00       2         libebml::EMaxSizeLength::Create() [16428]
                0.00    0.00       2/2           libebml::EMaxSizeLength::EMaxSizeLength() [16429]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EMaxSizeLength::Create() [16428]
[16429   0.0    0.00    0.00       2         libebml::EMaxSizeLength::EMaxSizeLength() [16429]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16430   0.0    0.00    0.00       2         libebml::EMaxSizeLength::~EMaxSizeLength() [16430]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16431   0.0    0.00    0.00       2         libebml::EDocTypeVersion::Create() [16431]
                0.00    0.00       2/2           libebml::EDocTypeVersion::EDocTypeVersion() [16432]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocTypeVersion::Create() [16431]
[16432   0.0    0.00    0.00       2         libebml::EDocTypeVersion::EDocTypeVersion() [16432]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16433   0.0    0.00    0.00       2         libebml::EDocTypeVersion::~EDocTypeVersion() [16433]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16434   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::Create() [16434]
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16435]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::Create() [16434]
[16435   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16435]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16436   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16436]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16437   0.0    0.00    0.00       2         libebml::EDocType::Create() [16437]
                0.00    0.00       2/2           libebml::EDocType::EDocType() [16438]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocType::Create() [16437]
[16438   0.0    0.00    0.00       2         libebml::EDocType::EDocType() [16438]
                0.00    0.00       2/3           libebml::EbmlString::EbmlString(std::string const&) [16344]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16439   0.0    0.00    0.00       2         libebml::EDocType::~EDocType() [16439]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16216]
[16440   0.0    0.00    0.00       2         libebml::EVersion::Create() [16440]
                0.00    0.00       2/2           libebml::EVersion::EVersion() [16441]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EVersion::Create() [16440]
[16441   0.0    0.00    0.00       2         libebml::EVersion::EVersion() [16441]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16442   0.0    0.00    0.00       2         libebml::EVersion::~EVersion() [16442]
                0.00    0.00       2/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDuration::KaxDuration() [16358]
[16443   0.0    0.00    0.00       2         libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16443]
                0.00    0.00       2/8691        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16189]
-----------------------------------------------
                0.00    0.00       2/2           libebml::UTFstring::operator=(wchar_t const*) [16446]
[16444   0.0    0.00    0.00       2         libebml::UTFstring::UpdateFromUCS2() [16444]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
[16445   0.0    0.00    0.00       2         libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16445]
                0.00    0.00       2/2           libebml::UTFstring::operator=(wchar_t const*) [16446]
-----------------------------------------------
                0.00    0.00       2/2           libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16445]
[16446   0.0    0.00    0.00       2         libebml::UTFstring::operator=(wchar_t const*) [16446]
                0.00    0.00       2/2           libebml::UTFstring::UpdateFromUCS2() [16444]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16447   0.0    0.00    0.00       2         libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [16447]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16448   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [16448]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16449   0.0    0.00    0.00       2         libmatroska::KaxDuration::operator libebml::EbmlId const&() const [16449]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16450   0.0    0.00    0.00       2         libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [16450]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16451   0.0    0.00    0.00       2         libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [16451]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16452   0.0    0.00    0.00       2         libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [16452]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16453   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const [16453]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16454   0.0    0.00    0.00       2         libmatroska::KaxTrackAudio::Generic() const [16454]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16455   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [16455]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16456   0.0    0.00    0.00       2         libmatroska::KaxTrackVideo::Generic() const [16456]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16457   0.0    0.00    0.00       2         libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [16457]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16458   0.0    0.00    0.00       2         libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [16458]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16459   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [16459]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16460   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::Generic() const [16460]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16461   0.0    0.00    0.00       2         libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [16461]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16462   0.0    0.00    0.00       2         libmatroska::KaxTrackLanguage::Generic() const [16462]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16463   0.0    0.00    0.00       2         libmatroska::KaxTrackMinCache::Generic() const [16463]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16464   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagLacing::Generic() const [16464]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16465   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::Generic() const [16465]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16466   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::Generic() const [16466]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16467   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::Generic() const [16467]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16468   0.0    0.00    0.00       2         libmatroska::KaxVideoDisplayWidth::Generic() const [16468]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16469   0.0    0.00    0.00       2         libmatroska::KaxVideoDisplayHeight::Generic() const [16469]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16470   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [16470]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
                0.00    0.00       1/2           EbmlParser::Get(int) [35]
[16471   0.0    0.00    0.00       2         libmatroska::KaxInfo::Generic() const [16471]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [135]
                0.00    0.00       1/2           EbmlParser::Get(int) [35]
[16472   0.0    0.00    0.00       2         libmatroska::KaxTracks::Generic() const [16472]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16473   0.0    0.00    0.00       2         libebml::EMaxIdLength::Generic() const [16473]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16474   0.0    0.00    0.00       2         libebml::EReadVersion::Generic() const [16474]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16475   0.0    0.00    0.00       2         libebml::EMaxSizeLength::Generic() const [16475]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16476   0.0    0.00    0.00       2         libebml::EDocTypeVersion::Generic() const [16476]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       1/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
[16477   0.0    0.00    0.00       2         libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16477]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
[16478   0.0    0.00    0.00       2         libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [16478]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16479   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::Generic() const [16479]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
                0.00    0.00       1/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16421]
[16480   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16480]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16481   0.0    0.00    0.00       2         libebml::EDocType::Generic() const [16481]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16482   0.0    0.00    0.00       2         libebml::EVersion::Generic() const [16482]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
[16483   0.0    0.00    0.00       2         std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) [16483]
-----------------------------------------------
                0.00    0.00       2/2           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[16484   0.0    0.00    0.00       2         std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) [16484]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::TrackInit(mkv_track_t*) [16415]
[16485   0.0    0.00    0.00       1         fill_extra_data(mkv_track_t*, unsigned int) [16485]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [48]
[16486   0.0    0.00    0.00       1         Open(vlc_object_t*) [16486]
                0.00    0.00       1/1           dash::xml::DOMParser::isDash(stream_t*) [16533]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [117]
[16487   0.0    0.00    0.00       1         demux_sys_t::FreeUnused() [16487]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [117]
[16488   0.0    0.00    0.00       1         demux_sys_t::PreloadLinked() [16488]
                0.00    0.00       1/1           demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16549]
                0.00    0.00       1/1           virtual_edition_c::GetMainName() [16516]
                0.00    0.00       1/1           virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16518]
                0.00    0.00       1/1           std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) [16570]
                0.00    0.00       1/1           std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) [16574]
-----------------------------------------------
                                   1             Open(vlc_object_t*) <cycle 4> [117]
[16489   0.0    0.00    0.00       1         demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
                0.00    0.00       1/1           matroska_segment_c::InformationCreate() [16525]
                                   1             matroska_segment_c::Select(long long) <cycle 4> [217]
                                   1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
[16490   0.0    0.00    0.00       1         libmatroska::KaxSegment::Create() [16490]
                0.00    0.00       1/1           libmatroska::KaxSegment::KaxSegment() [16491]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxSegment::Create() [16490]
[16491   0.0    0.00    0.00       1         libmatroska::KaxSegment::KaxSegment() [16491]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16530]
[16492   0.0    0.00    0.00       1         libmatroska::KaxSegment::~KaxSegment() [16492]
                0.00    0.00       1/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16493   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::Create() [16493]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::KaxTrackAudio() [16494]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::Create() [16493]
[16494   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::KaxTrackAudio() [16494]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16495   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16495]
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16496   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::Create() [16496]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::KaxTrackVideo() [16497]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::Create() [16496]
[16497   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::KaxTrackVideo() [16497]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16498   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16498]
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16499   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::Create() [16499]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16500]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::Create() [16499]
[16500   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16500]
                0.00    0.00       1/3           libebml::EbmlString::EbmlString(std::string const&) [16344]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16501   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16501]
                0.00    0.00       1/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16502   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::Create() [16502]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16503]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::Create() [16502]
[16503   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16503]
                0.00    0.00       1/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16504   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16504]
                0.00    0.00       1/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16191]
[16505   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::Create() [16505]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16506]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::Create() [16505]
[16506   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16506]
                0.00    0.00       1/361         libebml::EbmlUInteger::EbmlUInteger() [16211]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
[16507   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16507]
                0.00    0.00       1/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::ProcessMandatory() [16216]
[16508   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::Create() [16508]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16509]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::Create() [16508]
[16509   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16509]
                0.00    0.00       1/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16244]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16510   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16510]
                0.00    0.00       1/8696        libebml::EbmlElement::~EbmlElement() [16188]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::CleanUi() [228]
[16511   0.0    0.00    0.00       1         event_thread_t::~event_thread_t() [16511]
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16512]
-----------------------------------------------
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16511]
[16512   0.0    0.00    0.00       1         event_thread_t::~event_thread_t() [16512]
                0.00    0.00       1/2           event_thread_t::ResetPci() [16414]
                0.00    0.00       1/6803        vlc_cond_destroy [539]
                0.00    0.00       1/6820        vlc_mutex_destroy [537]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16518]
[16513   0.0    0.00    0.00       1         virtual_chapter_c::PublishChapters(input_title_t&, int&, int) [16513]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
[16514   0.0    0.00    0.00       1         virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) [16514]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::~virtual_edition_c() [16521]
[16515   0.0    0.00    0.00       1         virtual_chapter_c::~virtual_chapter_c() [16515]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16516   0.0    0.00    0.00       1         virtual_edition_c::GetMainName() [16516]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
[16517   0.0    0.00    0.00       1         virtual_edition_c::retimeChapters() [16517]
                0.00    0.00       1/1           virtual_edition_c::retimeSubChapters(virtual_chapter_c*) [16519]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16518   0.0    0.00    0.00       1         virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16518]
                0.00    0.00       1/1           virtual_chapter_c::PublishChapters(input_title_t&, int&, int) [16513]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::retimeChapters() [16517]
[16519   0.0    0.00    0.00       1         virtual_edition_c::retimeSubChapters(virtual_chapter_c*) [16519]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
[16520   0.0    0.00    0.00       1         virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
                0.00    0.00       1/1           virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) [16514]
                0.00    0.00       1/1           virtual_edition_c::retimeChapters() [16517]
                0.00    0.00       1/1           std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) [16572]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::~virtual_segment_c() [16524]
[16521   0.0    0.00    0.00       1         virtual_edition_c::~virtual_edition_c() [16521]
                0.00    0.00       1/1           virtual_chapter_c::~virtual_chapter_c() [16515]
-----------------------------------------------
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
[16522   0.0    0.00    0.00       1         virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16522]
                0.00    0.00       1/15401       virtual_chapter_c::getSubChapterbyTimecode(long long) [16180]
                0.00    0.00       1/15399       virtual_edition_c::getChapterbyTimecode(long long) [16181]
                                   1             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [272]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16549]
[16523   0.0    0.00    0.00       1         virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
                0.00    0.00       1/15401       virtual_chapter_c::getSubChapterbyTimecode(long long) [16180]
                0.00    0.00       1/15399       virtual_edition_c::getChapterbyTimecode(long long) [16181]
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
                0.00    0.00       1/1           std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) [16573]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [230]
[16524   0.0    0.00    0.00       1         virtual_segment_c::~virtual_segment_c() [16524]
                0.00    0.00       1/1           virtual_edition_c::~virtual_edition_c() [16521]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16489]
[16525   0.0    0.00    0.00       1         matroska_segment_c::InformationCreate() [16525]
                0.00    0.00       1/3           vlc_meta_New [729]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [20]
[16526   0.0    0.00    0.00       1         matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16526]
                0.00    0.00       1/7697        libmatroska::KaxCluster::GlobalTimecode() const [16205]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [118]
[16527   0.0    0.00    0.00       1         matroska_segment_c::ComputeTrackPriority() [16527]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[16528   0.0    0.00    0.00       1         matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) [16528]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [230]
[16529   0.0    0.00    0.00       1         matroska_segment_c::~matroska_segment_c() [16529]
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16530]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16529]
[16530   0.0    0.00    0.00       1         matroska_segment_c::~matroska_segment_c() [16530]
                0.00    0.00       2/32          es_format_Clean [608]
                0.00    0.00       1/1           libmatroska::KaxSegment::~KaxSegment() [16492]
                0.00    0.00       1/3           libmatroska::KaxSegmentUID::~KaxSegmentUID() [16334]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [117]
[16531   0.0    0.00    0.00       1         vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) [16531]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [230]
[16532   0.0    0.00    0.00       1         vlc_stream_io_callback::~vlc_stream_io_callback() [16532]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) [16486]
[16533   0.0    0.00    0.00       1         dash::xml::DOMParser::isDash(stream_t*) [16533]
                0.00    0.00       1/11          stream_Peek <cycle 2> [638]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16535]
[16534   0.0    0.00    0.00       1         TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [16534]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::String::substr(unsigned int, unsigned int) const [16565]
[16535   0.0    0.00    0.00       1         TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16535]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16248]
                0.00    0.00       1/1           TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [16534]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16536   0.0    0.00    0.00       1         TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00       1/37          TagLib::RefCounter::deref() [16245]
                0.00    0.00       1/33          TagLib::String::StringPrivate::~StringPrivate() [16259]
                0.00    0.00       1/2           TagLib::RefCounter::ref() [16416]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16538]
[16537   0.0    0.00    0.00       1         TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
                0.00    0.00      33/33          TagLib::String::~String() [16260]
                0.00    0.00      30/30          TagLib::String::String(char const*, TagLib::String::Type) [16266]
                0.00    0.00      28/28          TagLib::String::operator==(TagLib::String const&) const [16267]
                0.00    0.00       2/2           TagLib::FileRef::~FileRef() [16419]
                0.00    0.00       1/2           TagLib::String::String() [16417]
                0.00    0.00       1/1           TagLib::String::rfind(TagLib::String const&, int) const [16563]
                0.00    0.00       1/1           TagLib::String::substr(unsigned int, unsigned int) const [16565]
                0.00    0.00       1/1           TagLib::String::upper() const [16564]
                0.00    0.00       1/1           TagLib::String::operator=(TagLib::String const&) [16536]
                0.00    0.00       1/1           TagLib::String::isEmpty() const [16566]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [490]
[16538   0.0    0.00    0.00       1         TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16538]
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16248]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [490]
[16539   0.0    0.00    0.00       1         TagLib::FileRef::FileRef() [16539]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16248]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [490]
[16540   0.0    0.00    0.00       1         TagLib::FileRef::operator=(TagLib::FileRef const&) [16540]
                0.00    0.00       1/37          TagLib::RefCounter::deref() [16245]
                0.00    0.00       1/2           TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16418]
                0.00    0.00       1/2           TagLib::RefCounter::ref() [16416]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [117]
[16541   0.0    0.00    0.00       1         libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [16541]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [230]
[16542   0.0    0.00    0.00       1         libebml::EbmlStream::~EbmlStream() [16542]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[16543   0.0    0.00    0.00       1         libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16543]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16345]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[16544   0.0    0.00    0.00       1         libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16544]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16345]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [242]
[16545   0.0    0.00    0.00       1         libebml::EbmlHead::Create() [16545]
                0.00    0.00       1/1           libebml::EbmlHead::EbmlHead() [16546]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlHead::Create() [16545]
[16546   0.0    0.00    0.00       1         libebml::EbmlHead::EbmlHead() [16546]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16217]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[16547   0.0    0.00    0.00       1         libebml::EbmlHead::~EbmlHead() [16547]
                0.00    0.00       1/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16218]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [134]
[16548   0.0    0.00    0.00       1         demux_sys_t::FindSegment(libebml::EbmlBinary const&) const [16548]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16549   0.0    0.00    0.00       1         demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16549]
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16550   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [16550]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16551   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [16551]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16552   0.0    0.00    0.00       1         libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [16552]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16553   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [16553]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16554   0.0    0.00    0.00       1         libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [16554]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16555   0.0    0.00    0.00       1         libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [16555]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16556   0.0    0.00    0.00       1         libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [16556]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16557   0.0    0.00    0.00       1         libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [16557]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16558   0.0    0.00    0.00       1         libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [16558]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16559   0.0    0.00    0.00       1         libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [16559]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16560   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [16560]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [128]
[16561   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [16561]
-----------------------------------------------
                0.00    0.00       1/1           EbmlParser::Get(int) [35]
[16562   0.0    0.00    0.00       1         libmatroska::KaxCues::Generic() const [16562]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16563   0.0    0.00    0.00       1         TagLib::String::rfind(TagLib::String const&, int) const [16563]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16564   0.0    0.00    0.00       1         TagLib::String::upper() const [16564]
                0.00    0.00       1/2           TagLib::String::String() [16417]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16565   0.0    0.00    0.00       1         TagLib::String::substr(unsigned int, unsigned int) const [16565]
                0.00    0.00       1/1           TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16535]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16537]
[16566   0.0    0.00    0.00       1         TagLib::String::isEmpty() const [16566]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [490]
[16567   0.0    0.00    0.00       1         TagLib::FileRef::isNull() const [16567]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [147]
[16568   0.0    0.00    0.00       1         libebml::EbmlFloat::operator double() const [16568]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [149]
[16569   0.0    0.00    0.00       1         libebml::EbmlFloat::operator float() const [16569]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16570   0.0    0.00    0.00       1         std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) [16570]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [117]
[16571   0.0    0.00    0.00       1         std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) [16571]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16520]
[16572   0.0    0.00    0.00       1         std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) [16572]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16523]
[16573   0.0    0.00    0.00       1         std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) [16573]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16488]
[16574   0.0    0.00    0.00       1         std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) [16574]
-----------------------------------------------

 This table describes the call tree of the program, and was sorted by
 the total amount of time spent in each function and its children.

 Each entry in this table consists of several lines.  The line with the
 index number at the left hand margin lists the current function.
 The lines above it list the functions that called this function,
 and the lines below it list the functions this one called.
 This line lists:
     index	A unique number given to each element of the table.
		Index numbers are sorted numerically.
		The index number is printed next to every function name so
		it is easier to look up where the function is in the table.

     % time	This is the percentage of the `total' time that was spent
		in this function and its children.  Note that due to
		different viewpoints, functions excluded by options, etc,
		these numbers will NOT add up to 100%.

     self	This is the total amount of time spent in this function.

     children	This is the total amount of time propagated into this
		function by its children.

     called	This is the number of times the function was called.
		If the function called itself recursively, the number
		only includes non-recursive calls, and is followed by
		a `+' and the number of recursive calls.

     name	The name of the current function.  The index number is
		printed after it.  If the function is a member of a
		cycle, the cycle number is printed between the
		function's name and the index number.


 For the function's parents, the fields have the following meanings:

     self	This is the amount of time that was propagated directly
		from the function into this parent.

     children	This is the amount of time that was propagated from
		the function's children into this parent.

     called	This is the number of times this parent called the
		function `/' the total number of times the function
		was called.  Recursive calls to the function are not
		included in the number after the `/'.

     name	This is the name of the parent.  The parent's index
		number is printed after it.  If the parent is a
		member of a cycle, the cycle number is printed between
		the name and the index number.

 If the parents of the function cannot be determined, the word
 `<spontaneous>' is printed in the `name' field, and all the other
 fields are blank.

 For the function's children, the fields have the following meanings:

     self	This is the amount of time that was propagated directly
		from the child into the function.

     children	This is the amount of time that was propagated from the
		child's children to the function.

     called	This is the number of times the function called
		this child `/' the total number of times the child
		was called.  Recursive calls by the child are not
		listed in the number after the `/'.

     name	This is the name of the child.  The child's index
		number is printed after it.  If the child is a
		member of a cycle, the cycle number is printed
		between the name and the index number.

 If there are any cycles (circles) in the call graph, there is an
 entry for the cycle-as-a-whole.  This entry shows who called the
 cycle (as parents) and the members of the cycle (as children.)
 The `+' recursive calls entry shows the number of function calls that
 were internal to the cycle, and the calls entry for each member shows,
 for that member, how many times it was called from other members of
 the cycle.



Index by function name

  [85] AReadStream (stream.c) [16518] virtual_edition_c::PublishChapters(input_title_t&, int&, int) (virtual_segment.cpp) [33] fft16_neon (fft_neon.S)
 [645] ASeek (stream.c)    [16519] virtual_edition_c::retimeSubChapters(virtual_chapter_c*) (virtual_segment.cpp) [97] fft32_neon (fft_neon.S)
 [112] AStreamControl (stream.c) [16181] virtual_edition_c::getChapterbyTimecode(long long) (virtual_segment.cpp) [98] fft8_neon (fft_neon.S)
 [313] AStreamDestroy (stream.c) [16520] virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) (virtual_segment.cpp) [19] fft_pass_neon (fft_neon.S)
 [646] AStreamPeekStream (stream.c) [16521] virtual_edition_c::~virtual_edition_c() (virtual_segment.cpp) [986] filter_chain_AppendFromString
 [194] AStreamPrebufferStream (stream.c) [16183] virtual_segment_c::UpdateCurrentToChapter(demux_t&) (virtual_segment.cpp) [987] filter_chain_AppendFromStringInternal (filter_chain.c)
 [127] AStreamReadNoSeekStream (stream.c) [16522] virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) (virtual_segment.cpp) [703] filter_chain_Delete
 [503] AStreamReadStream (stream.c) [16523] virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) (virtual_segment.cpp) [704] filter_chain_GetFmtOut
  [82] AStreamRefillStream (stream.c) [16524] virtual_segment_c::~virtual_segment_c() (virtual_segment.cpp) [705] filter_chain_New
 [114] AStreamSeekStream (stream.c) [135] matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) (matroska_segment_parse.cpp) [652] filter_chain_Reset
 [418] AboveCallback (vout_intf.c) [150] matroska_segment_c::ParseCluster(bool) (matroska_segment_parse.cpp) [543] filter_chain_SubSource
 [876] Activate (yuy2_i422.c) [119] matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) (matroska_segment_parse.cpp) [511] filter_chain_VideoFilter
 [877] Activate (integer.c)  [149] matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) (matroska_segment_parse.cpp) [637] filter_chain_VideoFlush
 [878] Activate (grey_yuv.c) [120] matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) (matroska_segment.cpp) [706] find_unicode_charmap (ftobjs.c)
 [879] Activate (i420_yuy2.c) [16525] matroska_segment_c::InformationCreate() (matroska_segment.cpp) [570] ft_alloc (ftsystem.c)
 [880] Activate (yuy2_i420.c) [16526] matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) (matroska_segment.cpp) [809] ft_ansi_stream_close (ftsystem.c)
 [881] Activate (i422_i420.c) [16182] matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) (matroska_segment.cpp) [588] ft_ansi_stream_io (ftsystem.c)
 [882] Activate (i422_yuy2.c) [16527] matroska_segment_c::ComputeTrackPriority() (matroska_segment.cpp) [810] ft_black_done (ftraster.c)
 [883] Activate (i420_rgb.c) [272] matroska_segment_c::Seek(long long, long long, long long) (matroska_segment.cpp) [811] ft_black_new (ftraster.c)
 [410] Add (es_out_timeshift.c) [217] matroska_segment_c::Select(long long) (matroska_segment.cpp) [812] ft_black_reset (ftraster.c)
 [884] ArchitectureSpecificCopyHooks (utils.c) [118] matroska_segment_c::Preload() (matroska_segment.cpp) [675] ft_cmap_done_internal (ftobjs.c)
 [732] ArchitectureSpecificCopyHooksDestroy (utils.c) [20] matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) (matroska_segment.cpp) [571] ft_free (ftsystem.c)
 [444] AspectCallback (vout_intf.c) [129] matroska_segment_c::LoadCues(libmatroska::KaxCues*) (matroska_segment.cpp) [813] ft_glyphslot_done (ftobjs.c)
 [553] CheckValue (variables.c) [239] matroska_segment_c::UnSelect() (matroska_segment.cpp) [814] ft_glyphslot_free_bitmap
 [577] CleanupVar (variables.c) [147] matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) (matroska_segment_parse.cpp) [579] ft_mem_alloc
 [885] Close (yuvp.c)      [16415] matroska_segment_c::TrackInit(mkv_track_t*) (matroska_segment_parse.cpp) [564] ft_mem_free
 [886] Close (record.c)    [16528] matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) (matroska_segment.cpp) [572] ft_mem_qalloc
 [887] Close (opensles_android.c) [16529] matroska_segment_c::~matroska_segment_c() (matroska_segment.cpp) [621] ft_mem_qrealloc
 [252] Close (opaque.c)    [16530] matroska_segment_c::~matroska_segment_c() (matroska_segment.cpp) [622] ft_mem_realloc
 [888] CloseDecoder (android_mediacodec.c) [116] vlc_stream_io_callback::getFilePointer() (stream_io_callback.cpp) [815] ft_module_get_service
 [236] CloseDecoder (avcodec.c) [43] vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) (stream_io_callback.cpp) [816] ft_raster1_init (ftrend1.c)
 [360] CloseScaler (swscale.c) [73] vlc_stream_io_callback::read(void*, unsigned int) (stream_io_callback.cpp) [707] ft_realloc (ftsystem.c)
 [558] CmdExecuteControl (es_out_timeshift.c) [16531] vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) (stream_io_callback.cpp) [817] ft_recompute_scaled_metrics (ftobjs.c)
 [240] CmdExecuteDel (es_out_timeshift.c) [16532] vlc_stream_io_callback::~vlc_stream_io_callback() (stream_io_callback.hpp) [612] ft_service_list_lookup
 [122] CmdExecuteSend (es_out_timeshift.c) [16533] dash::xml::DOMParser::isDash(stream_t*) (DOMParser.cpp) [676] ft_smooth_init (ftsmooth.c)
 [636] CmpFloat (variables.c) [16416] TagLib::RefCounter::ref() [677] ft_validator_init
 [598] CmpInt (variables.c) [16245] TagLib::RefCounter::deref() [48] generic_start (modules.c)
 [563] CmpString (variables.c) [16248] TagLib::RefCounter::RefCounter() [193] generic_stop (modules.c)
  [65] Control (record.c)  [16249] TagLib::RefCounter::~RefCounter() [561] getLong
 [244] Control (opaque.c)  [16259] TagLib::String::StringPrivate::~StringPrivate() [562] getMediaPlayer
  [77] Control (es_out_timeshift.c) [16534] TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [515] get_android_opaque_mutex (android_opaque.c)
 [286] ControlPause (input.c) [16265] TagLib::String::copyFromLatin1(char const*, unsigned int) [546] get_che (aacdec.c)
 [889] Create (libass.c)   [16266] TagLib::String::String(char const*, TagLib::String::Type) [988] get_path (access.c)
 [890] Create (float.c)    [16417] TagLib::String::String() [678] gray_raster_done (ftgrays.c)
 [167] Create (freetype.c) [16535] TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [679] gray_raster_new (ftgrays.c)
 [891] Create (ugly.c)     [16260] TagLib::String::~String() [680] gray_raster_reset (ftgrays.c)
 [892] Create (dolby.c)    [16536] TagLib::String::operator=(TagLib::String const&) [989] h264_get_profile_level (utils.c)
 [155] Create (input.c)    [16418] TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [526] imdct_and_windowing (aacdec.c)
 [733] Create (picture_pool.c) [16537] TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [293] info_category_AddInfo (info.h)
 [441] CreateDecoder (decoder.c) [16538] TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [323] input_ChangeState (input.c)
 [285] CreateFilter (filters.c) [16539] TagLib::FileRef::FileRef() [465] input_Close
 [893] CreateResampler (ugly.c) [16419] TagLib::FileRef::~FileRef() [171] input_ConfigVarInit (var.c)
 [445] CropCallback (vout_intf.c) [16420] TagLib::FileRef::~FileRef() [658] input_Control
   [4] DecodeAudio (audio.c) [16540] TagLib::FileRef::operator=(TagLib::FileRef const&) [472] input_ControlPush (input.c)
  [23] DecodeVideo (android_mediacodec.c) [79] libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [186] input_ControlVarInit (var.c)
 [734] DecoderBlockFlushNew (decoder.c) [402] libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [288] input_ControlVarNavigation (var.c)
   [3] DecoderDecodeAudio (decoder.c) [16195] libebml::EbmlBinary::EbmlBinary() [255] input_ControlVarStop (var.c)
  [18] DecoderDecodeVideo (decoder.c) [16194] libebml::EbmlBinary::~EbmlBinary() [345] input_ControlVarTitle (var.c)
  [46] DecoderFixTs (decoder.c) [16213] libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [156] input_Create
 [348] DecoderFlush (decoder.c) [16421] libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [488] input_DecoderChangeDelay (decoder.c)
 [894] DecoderOpen (spudec.c) [16294] libebml::EbmlMaster::SetSizeInfinite(bool) [142] input_DecoderDecode
 [895] DecoderOpen (araw.c) [16216] libebml::EbmlMaster::ProcessMandatory() [401] input_DecoderDelete
 [896] DecoderOpen (g711.c)  [128] libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [559] input_DecoderGetFifoSize (decoder.c)
   [2] DecoderThread (decoder.c) [16217] libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [143] input_DecoderHasFormatChanged (decoder.c)
 [735] DecoderUpdateFormatLocked (decoder.c) [16218] libebml::EbmlMaster::~EbmlMaster() [144] input_DecoderIsCcPresent (decoder.c)
 [202] DeinterlaceCallback (interlacing.c) [16290] libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [304] input_DecoderIsEmpty (decoder.c)
 [469] DeinterlaceIsPresent (interlacing.c) [16190] libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [818] input_DecoderNew (decoder.c)
 [238] Del (es_out_timeshift.c) [16541] libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [343] input_DecoderStartWait (decoder.c)
  [72] DeleteDecoder (decoder.c) [16542] libebml::EbmlStream::~EbmlStream() [413] input_DecoderStopWait (decoder.c)
 [736] Destroy (freetype.c)  [265] libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [264] input_DecoderWait (decoder.c)
 [175] Destroy (picture_pool.c) [16543] libebml::EbmlString::EbmlString(libebml::EbmlString const&) [357] input_EsOutNew (es_out.c)
 [574] Destroy (variables.c) [16344] libebml::EbmlString::EbmlString(std::string const&) [219] input_EsOutTimeshiftNew (es_out_timeshift.c)
 [897] Destroy (es_out_timeshift.c) [16310] libebml::EbmlString::EbmlString() [681] input_GetItem
 [898] Destructor (input.c)  [195] libebml::IOCallback::readFully(void*, unsigned int) [467] input_Join (input.c)
 [115] Display (opaque.c)    [242] libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [365] input_SendEventAbort (event.c)
 [157] DisplayBuffer (android_mediacodec.c) [16215] libebml::EbmlElement::SetDefaultSize(unsigned long long) (EbmlElement.h) [336] input_SendEventAout (event.c)
 [540] DisplayCallback (android_mediacodec.c) [39] libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [281] input_SendEventCache (event.c)
 [308] DisplayNew (display.c) [16191] libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [366] input_SendEventDead (event.c)
  [92] DoWork (ugly.c)       [139] libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [334] input_SendEventEsAdd (event.c)
 [697] Dummy_Select (platform_fonts.c) [76] libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [692] input_SendEventEsDel (event.c)
 [550] DupDummy (variables.c) [16345] libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [708] input_SendEventEsSelect (event.c)
 [581] DupString (variables.c) [16189] libebml::EbmlElement::EbmlElement(unsigned long long, bool) [224] input_SendEventLength (event.c)
 [215] End (input.c)       [16188] libebml::EbmlElement::~EbmlElement() [322] input_SendEventMeta (event.c)
 [899] EnsureUTF8          [16422] libebml::EMaxIdLength::Create() [369] input_SendEventMetaEpg (event.c)
 [470] EqualizerCallback (filters.c) [16423] libebml::EMaxIdLength::EMaxIdLength() [364] input_SendEventMetaInfo (event.c)
 [342] EsCreateDecoder (es_out.c) [16424] libebml::EMaxIdLength::~EMaxIdLength() [161] input_SendEventPosition (event.c)
 [529] EsIsSelected (es_out.c) [16425] libebml::EReadVersion::Create() [362] input_SendEventProgramAdd (event.c)
 [216] EsOutAdd (es_out.c) [16426] libebml::EReadVersion::EReadVersion() [335] input_SendEventProgramScrambled (event.c)
 [131] EsOutControl (es_out.c) [16427] libebml::EReadVersion::~EReadVersion() [990] input_SendEventProgramSelect (event.c)
 [241] EsOutDel (es_out.c)   [153] libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [325] input_SendEventState (event.c)
 [900] EsOutDelete (es_out.c) [16544] libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [191] input_SendEventStatistics (event.c)
 [218] EsOutProgramAdd (es_out.c) [16211] libebml::EbmlUInteger::EbmlUInteger() [991] input_SendEventTeletextDel (event.c)
 [737] EsOutProgramFind (es_out.c) [16244] libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [819] input_SendEventTeletextSelect (event.c)
 [220] EsOutProgramSelect (es_out.c) [16428] libebml::EMaxSizeLength::Create() [331] input_SendEventTitle (event.c)
 [664] EsOutSelect (es_out.c) [16429] libebml::EMaxSizeLength::EMaxSizeLength() [337] input_SendEventVout (event.c)
 [123] EsOutSend (es_out.c) [16430] libebml::EMaxSizeLength::~EMaxSizeLength() [992] input_SplitMRL (input.c)
 [294] EsSelect (es_out.c) [16187] libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [993] input_Start
 [353] EsUnselect (es_out.c) [16431] libebml::EDocTypeVersion::Create() [392] input_Stop
 [738] FT_Add_Default_Modules [16432] libebml::EDocTypeVersion::EDocTypeVersion() [489] input_clock_ChangeSystemOrigin (clock.c)
 [601] FT_Add_Module       [16433] libebml::EDocTypeVersion::~EDocTypeVersion() [45] input_clock_ConvertTS (clock.c)
 [665] FT_CMap_New           [266] libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [994] input_clock_Delete (clock.c)
 [648] FT_DivFix           [16271] libebml::EbmlUnicodeString::EbmlUnicodeString() [227] input_clock_GetState (clock.c)
 [739] FT_Done_Face        [16178] libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [182] input_clock_GetWakeup (clock.c)
 [740] FT_Done_FreeType    [16434] libebml::EDocTypeReadVersion::Create() [995] input_clock_New (clock.c)
 [741] FT_Done_GlyphSlot   [16435] libebml::EDocTypeReadVersion::EDocTypeReadVersion() [451] input_clock_SetJitter (clock.c)
 [742] FT_Done_Library     [16436] libebml::EDocTypeReadVersion::~EDocTypeReadVersion() (EbmlSubHead.h) [231] input_clock_Update (clock.c)
 [743] FT_Done_Memory      [16212] libebml::GetEbmlGlobal_Context() [180] input_event_changed (media_player.c)
 [649] FT_Get_Module       [16209] libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [424] input_item_AddOption
 [698] FT_Get_Module_Interface [16437] libebml::EDocType::Create() [419] input_item_GetMeta
 [744] FT_GlyphLoader_Adjust_Points (ftgloadr.c) [16438] libebml::EDocType::EDocType() [436] input_item_GetName
 [745] FT_GlyphLoader_CreateExtra [16439] libebml::EDocType::~EDocType() (EbmlSubHead.h) [820] input_item_Hold
 [629] FT_GlyphLoader_Done [16440] libebml::EVersion::Create() [388] input_item_NewExt
 [630] FT_GlyphLoader_New  [16441] libebml::EVersion::EVersion() [389] input_item_NewWithType
 [631] FT_GlyphLoader_Reset [16442] libebml::EVersion::~EVersion() [821] input_item_Release
 [632] FT_GlyphLoader_Rewind [320] libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [356] input_item_ReplaceInfos
 [746] FT_Init_FreeType    [16545] libebml::EbmlHead::Create() [411] input_item_SetDuration
 [642] FT_List_Add         [16546] libebml::EbmlHead::EbmlHead() [407] input_item_SetEpgOffline (item.c)
 [625] FT_List_Finalize    [16547] libebml::EbmlHead::~EbmlHead() [425] input_item_SetErrorWhenReading (item.c)
 [650] FT_List_Find        [16311] libebml::EbmlVoid::Create() [376] input_item_SetMeta
 [651] FT_List_Remove      [16312] libebml::EbmlVoid::EbmlVoid() [412] input_item_SetPreparsed (item.c)
 [633] FT_Lookup_Renderer  [16313] libebml::EbmlVoid::~EbmlVoid() [473] input_item_SetURI
 [634] FT_MulFix           [16219] libebml::EbmlCrc32::ResetCRC() [414] input_item_UpdateTracksInfo (item.c)
 [747] FT_New_Face         [16220] libebml::EbmlCrc32::EbmlCrc32() [461] input_item_duration_changed (media.c)
 [748] FT_New_GlyphSlot      [297] libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [383] input_item_meta_changed (media.c)
 [749] FT_New_Library      [16443] libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [384] input_item_preparsed_changed (media.c)
 [750] FT_New_Memory       [16314] libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [462] input_pausable_changed (media_player.c)
 [751] FT_New_Size         [16444] libebml::UTFstring::UpdateFromUCS2() [192] input_resource_GetAout
 [752] FT_Open_Face        [16315] libebml::UTFstring::UpdateFromUTF8() [996] input_resource_Hold (resource.c)
 [602] FT_Remove_Module    [16316] libebml::UTFstring::SetUTF8(std::string const&) [474] input_resource_HoldAout
 [753] FT_Request_Metrics  [16445] libebml::UTFstring::UTFstring(libebml::UTFstring const&) [452] input_resource_HoldVouts (resource.c)
 [754] FT_Request_Size     [16269] libebml::UTFstring::UTFstring() [997] input_resource_New
 [755] FT_Select_Charmap   [16268] libebml::UTFstring::~UTFstring() [208] input_resource_PutAout
 [756] FT_Set_Pixel_Sizes  [16446] libebml::UTFstring::operator=(wchar_t const*) [998] input_resource_Release
 [757] FT_Stream_Close     [16204] EbmlParser::IsTopPresent(libebml::EbmlElement*) const (Ebml_parser.cpp) [475] input_resource_RequestSout (resource.c)
 [595] FT_Stream_EnterFrame [16202] EbmlParser::GetLevel() const (Ebml_parser.cpp) [207] input_resource_RequestVout (resource.c)
 [596] FT_Stream_ExitFrame [16548] demux_sys_t::FindSegment(libebml::EbmlBinary const&) const (demux.cpp) [290] input_resource_ResetAout
 [699] FT_Stream_ExtractFrame [16549] demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const (demux.cpp) [437] input_resource_SetInput (resource.c)
 [758] FT_Stream_Free      [16205] libmatroska::KaxCluster::GlobalTimecode() const [273] input_resource_Terminate
 [583] FT_Stream_GetULong  [16203] libmatroska::KaxCluster::Generic() const [822] input_resource_TerminateVout
 [759] FT_Stream_New       [16317] libmatroska::KaxCodecID::Generic() const [463] input_scrambled_changed (media_player.c)
 [760] FT_Stream_Open      [16447] libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [464] input_seekable_changed (media_player.c)
 [653] FT_Stream_Pos       [16261] libmatroska::KaxCueTime::Generic() const [350] input_vaControl
 [700] FT_Stream_Read      [16318] libmatroska::KaxDateUTC::Generic() const [999] jni_IsVideoPlayerActivityCreated
 [701] FT_Stream_ReadAt    [16448] libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [1000] jni_LockAndGetAndroidJavaSurface
 [587] FT_Stream_ReadFields [16246] libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [1001] jni_SetAndroidSurfaceSizeEnv
 [666] FT_Stream_ReadULong [16272] libmatroska::KaxSegment::Generic() const [1002] jni_UnlockAndroidSurface
 [627] FT_Stream_ReleaseFrame [16247] libmatroska::KaxSegment::operator libebml::EbmlId const&() const [1003] jpeg2000_init_static_data (jpeg2000dec.c)
 [603] FT_Stream_Seek      [16238] libmatroska::KaxCuePoint::Generic() const [395] libvlc_event_attach
 [761] FT_Stroker_Done     [16262] libmatroska::KaxCueTrack::Generic() const [443] libvlc_event_manager_new (event.c)
 [762] FT_Stroker_New      [16319] libmatroska::KaxDuration::Generic() const [339] libvlc_event_manager_register_event_type (event.c)
 [901] FileClose (file.c)  [16449] libmatroska::KaxDuration::operator libebml::EbmlId const&() const [189] libvlc_event_send (event.c)
 [278] FileControl (file.c) [16346] libmatroska::KaxSeekHead::Generic() const [359] libvlc_get_input_thread (media_player.c)
 [249] FileOpen (file.c)   [16320] libmatroska::KaxTrackUID::Generic() const [557] libvlc_logf (log.c)
 [111] FileRead (file.c)   [16450] libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [426] libvlc_media_add_option
 [647] FileSeek (file.c)   [16321] libmatroska::KaxMuxingApp::Generic() const [427] libvlc_media_add_option_flag
 [521] FilterChainVideoFilter (filter_chain.c) [16451] libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [1004] libvlc_media_event_manager
 [421] FilterRelease (vout_subpictures.c) [16322] libmatroska::KaxTrackType::Generic() const [378] libvlc_media_new_from_input_item (media.c)
 [545] FilterS16N (integer.c) [16452] libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [346] libvlc_media_new_location
 [586] Find (fourcc.c)       [379] libmatroska::KaxSegmentUID::ValidateSize() const (KaxSemantic.h) [1005] libvlc_media_player_event_manager
 [667] FixParameters (swscale.c) [16323] libmatroska::KaxSegmentUID::Generic() const (KaxSemantic.h) [476] libvlc_media_player_get_media
  [12] Fl32toS16 (format.c) [16453] libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const (KaxSemantic.h) [233] libvlc_media_player_get_state
 [295] Flush (opensles_android.c) [16454] libmatroska::KaxTrackAudio::Generic() const [234] libvlc_media_player_is_playing
 [552] FreeDummy (variables.c) [16550] libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [164] libvlc_media_player_new
 [582] FreeString (variables.c) [16324] libmatroska::KaxTrackEntry::Generic() const [329] libvlc_media_player_set_media
 [763] FullscreenCallback (vout_intf.c) [16455] libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [367] libvlc_media_player_set_video_title_display
 [668] GetFfmpegChroma (chroma.c) [16456] libmatroska::KaxTrackVideo::Generic() const [262] libvlc_media_player_stop
 [902] GetFfmpegCodec (fourcc.c) [16551] libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [682] libvlc_media_release
 [259] GetFontSize (freetype.c) [16325] libmatroska::KaxWritingApp::Generic() const [683] libvlc_media_retain
 [903] GetOmxRole (utils.c) [16457] libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [397] libvlc_media_set_state (media.c)
  [53] GetOutput (android_mediacodec.c) [16193] libmatroska::KaxSimpleBlock::Generic() const [1006] libvlc_media_subitems
 [298] GetParameters (swscale.c) [16192] libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [428] libvlc_retain
 [764] Get_Interface (t1driver.c) [16326] libmatroska::KaxTrackNumber::Generic() const [709] make_filters_from_proto (aacps_tablegen.h)
 [904] IgnoreOmxDecoderPadding (utils.c) [16458] libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [710] make_path
 [221] Init (swscale.c)    [16327] libmatroska::KaxCodecPrivate::Generic() const [90] mdate
 [163] Init (input.c)      [16459] libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [593] module_Map (bank.c)
  [83] InitAudioDec (audio.c) [16347] libmatroska::KaxSeekPosition::Generic() const [659] module_exists
 [487] InitOmxCore (omxil_core.c) [16460] libmatroska::KaxAudioChannels::Generic() const [660] module_find
 [274] InitTitle (input.c) [16552] libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [528] module_get_capability
 [257] InputDelCallbacks (var.c) [124] libmatroska::KaxInternalBlock::ValidateSize() const [600] module_get_object
 [702] InputItemFindCat (item.c) [16328] libmatroska::KaxTimecodeScale::Generic() const [626] module_get_score
 [269] InputSourceClean (input.c) [16461] libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [108] module_list_cap (bank.c)
 [172] InputSourceInit (input.c) [16462] libmatroska::KaxTrackLanguage::Generic() const [617] module_list_free
 [765] LanguageGetCode (es_out.c) [16553] libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [661] module_list_get
 [303] LanguageSplit (es_out.c) [16463] libmatroska::KaxTrackMinCache::Generic() const [594] module_load (modules.c)
 [905] LoadNativeWindowAPI (utils.c) [16554] libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [628] module_need
 [533] LockSurface (opaque.c) [16239] libmatroska::KaxClusterTimecode::Generic() const [105] module_provides
 [584] Lookup (fourcc.c)   [16555] libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [169] module_unneed
 [906] MRLSeekPoint (input.c) [16464] libmatroska::KaxTrackFlagLacing::Generic() const [385] msleep
  [14] MainLoop (input.c)  [16556] libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [121] mwait
 [398] ObjectKillChildrens (objects.c) [16465] libmatroska::KaxVideoPixelWidth::Generic() const [823] open_face (ftobjs.c)
 [250] Open (yuvp.c)       [16557] libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [824] pcf_driver_requester (pcfdrivr.c)
 [907] Open (record.c)     [16466] libmatroska::KaxVideoPixelHeight::Generic() const [825] pfr_get_service (pfrdrivr.c)
 [908] Open (dvbsub.c)     [16558] libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [513] picture_Hold
 [766] Open (chroma_yuv.c) [16467] libmatroska::KaxAudioSamplingFreq::Generic() const [711] picture_New
 [767] Open (yuv_rgb.c)    [16559] libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [693] picture_NewFromFormat
 [909] Open (httplive.c)   [16222] libmatroska::KaxCueTrackPositions::Generic() const [605] picture_NewFromResource
 [910] Open (opensles_android.c) [16468] libmatroska::KaxVideoDisplayWidth::Generic() const [51] picture_Release
 [911] Open (smooth.c)     [16560] libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [535] picture_Reset
 [912] Open (aes3.c)       [16263] libmatroska::KaxCueClusterPosition::Generic() const [606] picture_Setup
 [913] Open (vdr.c)        [16469] libmatroska::KaxVideoDisplayHeight::Generic() const [484] picture_fifo_Delete
 [914] Open (cdg.c)        [16561] libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [403] picture_fifo_Flush
 [300] Open (opaque.c)     [16264] libmatroska::KaxCueRelativePosition::Generic() const [1007] picture_fifo_New
 [251] Open (format.c)     [16329] libmatroska::KaxTrackDefaultDuration::Generic() const [408] picture_fifo_Peek
 [915] OpenBzip2 (decomp.c) [16470] libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [146] picture_fifo_Pop
 [916] OpenCommon (lpcm.c) [16562] libmatroska::KaxCues::Generic() const [159] picture_fifo_Push
 [917] OpenDecoder (jpeg.c) [16471] libmatroska::KaxInfo::Generic() const [214] picture_pool_Delete
 [918] OpenDecoder (flac.c) [16273] libmatroska::KaxSeek::Generic() const [534] picture_pool_Get
 [919] OpenDecoder (png.c)   [354] libmatroska::KaxSeekID::ValidateSize() const [826] picture_pool_GetSize
 [920] OpenDecoder (mpeg_audio.c) [16348] libmatroska::KaxSeekID::Generic() const [1008] picture_pool_NewExtended
 [173] OpenDecoder (android_mediacodec.c) [16472] libmatroska::KaxTracks::Generic() const [1009] picture_pool_NonEmpty
 [482] OpenDecoder (omxil.c) [16563] TagLib::String::rfind(TagLib::String const&, int) const [1010] picture_pool_Reserve
 [921] OpenDecoder (lpcm.c) [16564] TagLib::String::upper() const [91] pool_release_buffer (buffer.c)
 [922] OpenDecoder (theora.c) [16565] TagLib::String::substr(unsigned int, unsigned int) const [694] posix_memalign (posix_memalign.c)
  [52] OpenDecoder (avcodec.c) [16566] TagLib::String::isEmpty() const [57] profCount (prof.c)
 [923] OpenDecoder (a52.c) [16267] TagLib::String::operator==(TagLib::String const&) const [827] ps_hinter_done (pshmod.c)
 [924] OpenDecoder (opus.c) [16567] TagLib::FileRef::isNull() const [828] ps_hinter_init (pshmod.c)
 [925] OpenDecoder (dts.c)   [330] libebml::EbmlBinary::ValidateSize() const (EbmlBinary.h) [654] ps_mask_table_done (pshrec.c)
 [926] OpenDecoder (vorbis.c) [16221] libebml::EbmlMaster::ValidateSize() const [829] psnames_get_service (psmodule.c)
 [927] OpenDecoder (aes3.c) [16270] libebml::EbmlMaster::GetSize() const [684] pthread_once
 [928] OpenDecoder (speex.c) [16330] libebml::EbmlString::ValidateSize() const (EbmlString.h) [1011] qdm2_init_static_data (qdm2.c)
 [929] OpenFilter (scale.c) [16291] libebml::EbmlString::operator std::string const&() const [302] release_input_thread (media_player.c)
 [930] OpenFilter (simple_channel_mixer.c) [58] libebml::EbmlElement::GetSize() const (EbmlElement.h) [1012] secstotimestr
 [931] OpenFilter (simple.c) [16201] libebml::EbmlElement::IsDummy() const (EbmlElement.h) [1013] setLong
 [483] OpenGeneric (omxil.c) [16473] libebml::EMaxIdLength::Generic() const [382] set_state (media_player.c)
 [932] OpenGzip (decomp.c) [16349] libebml::EMaxIdLength::operator libebml::EbmlId const&() const [830] sfnt_done_face (sfobjs.c)
 [199] OpenScaler (swscale.c) [16474] libebml::EReadVersion::Generic() const [685] sfnt_get_interface (sfdriver.c)
 [933] OpenXZ (decomp.c)   [16350] libebml::EReadVersion::operator libebml::EbmlId const&() const [831] sfnt_init_face (sfobjs.c)
 [721] Peek (record.c)       [196] libebml::EbmlUInteger::ValidateSize() const (EbmlUInteger.h) [832] sfnt_load_face (sfobjs.c)
 [604] PictureDestroy (picture.c) [16331] libebml::EbmlUInteger::operator unsigned char() const [1014] sniff_channel_order (aacdec.c)
 [165] Play (opensles_android.c) [16274] libebml::EbmlUInteger::operator unsigned int() const [41] spectral_to_sample (aacdec.c)
 [934] Pool (opaque.c)     [16243] libebml::EbmlUInteger::operator unsigned short() const [554] split_radix_permutation (fft_template.c)
 [935] Probe (volume.c)    [16223] libebml::EbmlUInteger::operator unsigned long long() const [282] spu_Attach (vout_subpictures.c)
 [936] RarProbe (rar.c)    [16475] libebml::EMaxSizeLength::Generic() const [438] spu_ChangeFilters
 [937] RarStreamOpen (stream.c) [16351] libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [439] spu_ChangeMargin (vout_subpictures.c)
 [504] Read (record.c)     [16476] libebml::EDocTypeVersion::Generic() const [440] spu_ChangeSources
 [279] ReplayGainCallback (volume.c) [16477] libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [477] spu_ClearChannel
  [13] Run (input.c)       [16332] libebml::EbmlUnicodeString::ValidateSize() const [276] spu_Create
 [446] ScaleCallback (vout_intf.c) [16478] libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [493] spu_Destroy
  [69] Send (es_out_timeshift.c) [16479] libebml::EDocTypeReadVersion::Generic() const (EbmlSubHead.h) [133] spu_Render
 [544] SetupOutputFormat (audio.c) [16480] libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const (EbmlSubHead.h) [368] spu_get_attachments (vout_subpictures.c)
 [442] SpuRenderCreateAndLoadScale (vout_subpictures.c) [16481] libebml::EDocType::Generic() const (EbmlSubHead.h) [580] stats_ComputeInputStats (stats.c)
 [254] SpuRenderCreateAndLoadText (vout_subpictures.c) [16352] libebml::EDocType::operator libebml::EbmlId const&() const (EbmlSubHead.h) [478] stats_NewInputStats (stats.c)
 [938] Start (opensles_android.c) [16482] libebml::EVersion::Generic() const [479] stats_ReinitInputStats (stats.c)
 [939] Stop (opensles_android.c) [16353] libebml::EVersion::operator libebml::EbmlId const&() const [501] stats_Update (stats.c)
 [314] StreamDelete (stream_filter.c) [380] libebml::EbmlDate::ValidateSize() const [833] strcpy_strip_ext (subtitles.c)
 [940] StreamOpen (zipstream.c) [16333] libebml::EbmlVoid::Generic() const [834] strcpy_trim (subtitles.c)
 [447] SubFilterCallback (vout_intf.c) [355] libebml::EbmlFloat::ValidateSize() const [188] stream_AccessNew (stream.c)
 [448] SubMarginCallback (vout_intf.c) [16568] libebml::EbmlFloat::operator double() const [468] stream_CommonDelete (stream.c)
 [449] SubSourceCallback (vout_intf.c) [16569] libebml::EbmlFloat::operator float() const [429] stream_CommonNew (stream.c)
 [768] T1_Driver_Done (t1objs.c) [16483] std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) (vector.tcc) [64] stream_Control
 [769] T1_Driver_Init (t1objs.c) [16570] std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) (vector.tcc) [312] stream_Delete
 [770] T42_Driver_Done (t42objs.c) [16571] std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) (vector.tcc) [284] stream_FilterChainNew (stream_filter.c)
 [771] T42_Driver_Init (t42objs.c) [16572] std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) (vector.tcc) [283] stream_FilterNew
 [772] T42_Get_Interface (t42drivr.c) [16573] std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) (vector.tcc) [638] stream_Peek
 [773] TT_Done_Context (ttinterp.c) [16574] std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) (vector.tcc) [126] stream_Read
 [774] TT_New_Context      [16484] std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) (vector.tcc) [113] stream_vaControl
  [17] Thread (video_output.c) [16186] std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [243] subtitles_Detect (subtitles.c)
 [361] ThreadChangeFilters (video_output.c) [16214] std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [641] subtitles_Filter (subtitles.c)
  [24] ThreadDisplayPicture (video_output.c) [16199] std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [338] sws_alloc_context
  [42] ThreadDisplayPreparePicture (video_output.c) [99] operator new(unsigned int) [835] sws_freeContext
 [299] ThreadFlush (video_output.c) [100] __aeabi_d2lz   [261] sws_getCachedContext
 [187] ThreadStart (video_output.c) [101] __aeabi_l2f    [222] sws_getContext
 [237] ThreadStop (video_output.c) [102] __aeabi_ldivmod [226] sws_init_context
  [49] TimeGet (opensles_android.c) [59] __aeabi_uidiv   [836] sws_isSupportedInput
 [168] TriggerCallback (variables.c) [103] __aeabi_uidivmod [837] sws_isSupportedOutput
 [311] TryFormat (filters.c)  [60] __divdi3             [1015] sws_rgb2rgb_init
 [507] TsStop (es_out_timeshift.c) [61] __gnu_ldivmod_helper [838] sws_setColorspaceDetails
 [531] UnlockCallback (android_mediacodec.c) [26] __gnu_mcount_nc [1016] tak_init_static_data (takdec.c)
 [174] UnlockSurface (opaque.c) [945] aac_decode_close (aacdec.c) [655] tdelete (tdestroy.c)
 [941] UpdateBufferFunctions (filter_chain.c) [7] aac_decode_frame (aacdec.c) [623] tdestroy (tdestroy.c)
 [268] UpdatePtsDelay (input.c) [6] aac_decode_frame_int (aacdec.c) [662] tdestroy_recurse (tdestroy.c)
 [326] VarListAdd (event.c)   [87] aac_decode_init (aacdec.c) [549] tfind (tdestroy.c)
 [292] VarListDel (event.c)  [280] access_Control (vlc_access.h) [500] transform_GetBasicOps (es_format.c)
 [289] VarListSelect (event.c) [315] access_Delete (access.c) [566] tsearch (tdestroy.c)
 [450] VideoFilterCallback (vout_intf.c) [232] access_New (access.c) [712] tt_cmap4_init (ttcmap.c)
 [942] VoutDestructor (video_output.c) [777] af_autofitter_done (afmodule.c) [713] tt_cmap4_validate (ttcmap.c)
 [943] VoutDisplayCreateRender (display.c) [778] af_autofitter_init (afmodule.c) [839] tt_cmap6_validate (ttcmap.c)
 [245] VoutDisplayEvent (display.c) [779] af_get_interface (afmodule.c) [840] tt_cmap_init (ttcmap.c)
 [944] VoutValidateFormat (video_output.c) [780] af_glyph_hints_done (afhints.c) [841] tt_driver_done (ttobjs.c)
 [310] VoutVideoFilterStaticNewPicture (video_output.c) [643] aout_BitsPerSample [842] tt_driver_init (ttobjs.c)
 [775] WallPaperCallback (vout_intf.c) [471] aout_ChangeFilterString (common.c) [843] tt_face_build_cmaps (ttcmap.c)
 [776] ZoomCallback (vout_intf.c) [28] aout_ChannelExtract [844] tt_face_done (ttobjs.c)
 [16185] MemToBlock(unsigned char*, unsigned int, unsigned int) (util.cpp) [781] aout_CheckChannelExtraction [845] tt_face_free_eblc (ttsbit.c)
  [34] BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) (mkv.cpp) [341] aout_DecDelete (dec.c) [846] tt_face_free_name (ttload.c)
  [44] es_out_Control(es_out_t*, int, ...) (vlc_es_out.h) [306] aout_DecFlush (dec.c) [847] tt_face_free_ps_names (ttpost.c)
 [16292] es_out_Control(es_out_t*, int, ...) (vlc_es_out.h) [94] aout_DecGetResetLost (dec.c) [644] tt_face_get_name (sfobjs.c)
 [16485] fill_extra_data(mkv_track_t*, unsigned int) (matroska_segment_parse.cpp) [327] aout_DecIsEmpty (dec.c) [599] tt_face_goto_table (ttload.c)
 [117] Open(vlc_object_t*) (mkv.cpp) [185] aout_DecNew (dec.c) [848] tt_face_init (ttobjs.c)
 [16486] Open(vlc_object_t*) (dash.cpp) [10] aout_DecPlay (dec.c) [849] tt_face_load_cmap (ttload.c)
 [204] Close(vlc_object_t*) (mkv.cpp) [291] aout_Destroy (output.c) [850] tt_face_load_cvt (ttpload.c)
  [16] Demux(demux_t*) (mkv.cpp) [946] aout_Destructor (output.c) [851] tt_face_load_eblc (ttsbit.c)
 [16210] Control(demux_t*, int, std::__va_list) (mkv.cpp) [565] aout_FiltersAdjustResampling [852] tt_face_load_font_dir (ttload.c)
 [490] ReadMeta(vlc_object_t*) (taglib.cpp) [328] aout_FiltersDelete [853] tt_face_load_gasp (ttload.c)
 [248] EbmlParser::Up() (Ebml_parser.cpp) [190] aout_FiltersNew [854] tt_face_load_generic_header (ttload.c)
  [35] EbmlParser::Get(int) (Ebml_parser.cpp) [205] aout_FiltersPipelineCreate (filters.c) [855] tt_face_load_head (ttload.c)
 [16225] EbmlParser::Down() (Ebml_parser.cpp) [492] aout_FiltersPipelineDestroy (filters.c) [714] tt_face_load_hhea (ttmtx.c)
 [271] EbmlParser::Reset(demux_t*) (Ebml_parser.cpp) [11] aout_FiltersPlay [856] tt_face_load_hmtx (ttmtx.c)
 [210] EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) (Ebml_parser.cpp) [656] aout_FormatPrepare [857] tt_face_load_kern (ttkern.c)
 [16293] EbmlParser::~EbmlParser() (Ebml_parser.cpp) [209] aout_FormatPrint [858] tt_face_load_maxp (ttload.c)
 [16487] demux_sys_t::FreeUnused() (demux.cpp) [689] aout_FormatPrintChannels [859] tt_face_load_name (ttload.c)
 [16488] demux_sys_t::PreloadLinked() (demux.cpp) [246] aout_FormatsPrint (common.c) [860] tt_face_load_os2 (ttload.c)
 [16489] demux_sys_t::PreparePlayback(virtual_segment_c*) (demux.cpp) [21] aout_Interleave [861] tt_face_load_pclt (ttload.c)
 [134] demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) (demux.cpp) [201] aout_New (output.c) [862] tt_face_load_post (ttload.c)
 [200] demux_sys_t::InitUi() (demux.cpp) [377] aout_OutputDelete (output.c) [863] tt_get_interface (ttdriver.c)
 [228] demux_sys_t::CleanUi() (demux.cpp) [296] aout_OutputFlush (output.c) [715] tt_name_entry_ascii_from_utf16 (sfobjs.c)
 [229] demux_sys_t::~demux_sys_t() (demux.cpp) [176] aout_OutputLock (output.c) [864] tt_size_done (ttobjs.c)
 [230] demux_sys_t::~demux_sys_t() (demux.cpp) [225] aout_OutputNew (output.c) [865] tt_size_init (ttobjs.c)
 [16177] libmatroska::DataBuffer::Size() [166] aout_OutputPlay (output.c) [866] tt_size_request (ttdriver.c)
 [16179] libmatroska::DataBuffer::Buffer() [50] aout_OutputTimeGet (output.c) [867] tt_size_reset (ttobjs.c)
 [16184] libmatroska::DataBuffer::~DataBuffer() [151] aout_OutputUnlock (output.c) [868] tt_slot_init (ttobjs.c)
 [16206] libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [947] aout_get_native_sample_rate [206] var_AddCallback
 [16240] libmatroska::KaxCluster::Create() [80] aout_update_format (decoder.c) [198] var_Change
 [16241] libmatroska::KaxCluster::KaxCluster() [56] aout_volume_Amplify (volume.c) [1017] var_Copy (output.c)
 [16242] libmatroska::KaxCluster::~KaxCluster() [370] aout_volume_Delete (volume.c) [137] var_Create
 [16295] libmatroska::KaxCodecID::Create() [333] aout_volume_New (volume.c) [223] var_DelCallback
 [16296] libmatroska::KaxCodecID::KaxCodecID() [319] aout_volume_SetFormat (volume.c) [275] var_Destroy
 [16297] libmatroska::KaxCodecID::~KaxCodecID() [95] apply_ltp (aacdec.c) [624] var_DestroyAll (variables.c)
 [16229] libmatroska::KaxCueTime::Create() [948] atrac3_init_static_data (atrac3.c) [435] var_Get
 [16230] libmatroska::KaxCueTime::KaxCueTime() [318] av_buffer_alloc [184] var_GetChecked
 [16231] libmatroska::KaxCueTime::~KaxCueTime() [67] av_buffer_create [130] var_Inherit
 [16354] libmatroska::KaxDateUTC::Create() [782] av_buffer_default_free [277] var_InheritURational
 [16355] libmatroska::KaxDateUTC::KaxDateUTC() [40] av_buffer_pool_get [258] var_OptionParse (variables.c)
 [16356] libmatroska::KaxDateUTC::~KaxDateUTC() [371] av_buffer_pool_init [716] var_Set
 [16490] libmatroska::KaxSegment::Create() [690] av_buffer_pool_uninit [212] var_SetChecked
 [16491] libmatroska::KaxSegment::KaxSegment() [38] av_buffer_unref [344] var_TriggerCallback
 [16492] libmatroska::KaxSegment::~KaxSegment() [569] av_codec_is_decoder [480] var_Type
 [16250] libmatroska::KaxCuePoint::Create() [783] av_codec_is_encoder [502] varcmp (variables.c)
 [16251] libmatroska::KaxCuePoint::KaxCuePoint() [949] av_crc_init [517] video_format_ApplyRotation
 [16252] libmatroska::KaxCuePoint::~KaxCuePoint() [784] av_d2q [530] video_format_CopyCrop
 [16232] libmatroska::KaxCueTrack::Create() [785] av_dict_free [1018] video_format_FixRgb
 [16233] libmatroska::KaxCueTrack::KaxCueTrack() [786] av_dict_get [518] video_format_GetTransform
 [16234] libmatroska::KaxCueTrack::~KaxCueTrack() [70] av_frame_alloc [727] video_format_IsSimilar
 [16357] libmatroska::KaxDuration::Create() [71] av_frame_free [247] video_format_Print
 [16358] libmatroska::KaxDuration::KaxDuration() [31] av_frame_unref [591] video_format_Setup
 [16359] libmatroska::KaxDuration::~KaxDuration() [496] av_free [519] video_format_TransformBy
 [16360] libmatroska::KaxSeekHead::Create() [497] av_freep [520] video_format_TransformTo
 [16361] libmatroska::KaxSeekHead::KaxSeekHead() [787] av_gcd [686] vlc_CPU
 [16362] libmatroska::KaxSeekHead::~KaxSeekHead() [669] av_get_bits_per_pixel [62] vlc_Log
 [16298] libmatroska::KaxTrackUID::Create() [950] av_get_bytes_per_sample [1019] vlc_audio_replay_gain_MergeFromMeta (meta.c)
 [16299] libmatroska::KaxTrackUID::KaxTrackUID() [525] av_get_channel_layout_nb_channels [1020] vlc_av_frame_Release (audio.c)
 [16300] libmatroska::KaxTrackUID::~KaxTrackUID() [640] av_get_cpu_flags [453] vlc_cancel
 [16275] libmatroska::KaxMuxingApp::Create() [93] av_init_packet [717] vlc_clone
 [16276] libmatroska::KaxMuxingApp::KaxMuxingApp() [951] av_log_set_level [718] vlc_clone_attr (thread.c)
 [16277] libmatroska::KaxMuxingApp::~KaxMuxingApp() [505] av_malloc [104] vlc_cond_broadcast
 [16301] libmatroska::KaxTrackType::Create() [54] av_mallocz [539] vlc_cond_destroy
 [16302] libmatroska::KaxTrackType::KaxTrackType() [573] av_opt_find2 [538] vlc_cond_init
 [16303] libmatroska::KaxTrackType::~KaxTrackType() [952] av_opt_free [512] vlc_cond_signal
 [16363] libmatroska::KaxSegmentUID::Create() [506] av_opt_next [75] vlc_cond_timedwait
 [16364] libmatroska::KaxSegmentUID::KaxSegmentUID() [953] av_opt_set [301] vlc_cond_wait
 [16334] libmatroska::KaxSegmentUID::~KaxSegmentUID() (KaxSemantic.h) [722] av_opt_set_defaults [347] vlc_custom_create (objects.c)
 [16493] libmatroska::KaxTrackAudio::Create() [954] av_opt_set_dict [409] vlc_event_attach
 [16494] libmatroska::KaxTrackAudio::KaxTrackAudio() [618] av_opt_set_double [560] vlc_event_callback (libvlcjni.c)
 [16495] libmatroska::KaxTrackAudio::~KaxTrackAudio() [576] av_opt_set_int [1021] vlc_event_manager_init
 [16365] libmatroska::KaxTrackEntry::Create() [788] av_opt_set_q [396] vlc_event_manager_register_event_type
 [16366] libmatroska::KaxTrackEntry::KaxTrackEntry() [527] av_packet_get_side_data [305] vlc_event_send
 [16367] libmatroska::KaxTrackEntry::~KaxTrackEntry() [613] av_pix_fmt_desc_get [607] vlc_fourcc_GetChromaDescription
 [16496] libmatroska::KaxTrackVideo::Create() [789] av_reduce [589] vlc_fourcc_GetCodec
 [16497] libmatroska::KaxTrackVideo::KaxTrackVideo() [609] av_register_codec_parser [1022] vlc_fourcc_GetCodecAudio
 [16498] libmatroska::KaxTrackVideo::~KaxTrackVideo() [55] av_sample_fmt_is_planar [687] vlc_fourcc_GetDescription
 [16278] libmatroska::KaxWritingApp::Create() [332] av_samples_get_buffer_size [1023] vlc_fourcc_IsYUV
 [16279] libmatroska::KaxWritingApp::KaxWritingApp() [372] avcodec_alloc_context3 [578] vlc_gettext
 [16280] libmatroska::KaxWritingApp::~KaxWritingApp() [324] avcodec_close [431] vlc_global_mutex
 [16368] libmatroska::KaxSeekPreRoll::Create() [5] avcodec_decode_audio4 [728] vlc_inhibit_Destroy (inhibit.c)
 [16369] libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [29] avcodec_default_get_buffer2 [405] vlc_join
 [16370] libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [955] avcodec_find_decoder [422] vlc_list_children
 [16200] libmatroska::KaxSimpleBlock::Create() [956] avcodec_flush_buffers [434] vlc_list_release
 [16208] libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [373] avcodec_get_context_defaults3 [869] vlc_meta_Delete
 [16196] libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [790] avcodec_is_open [688] vlc_meta_Get
 [16304] libmatroska::KaxTrackNumber::Create() [86] avcodec_open2 [663] vlc_meta_GetExtra
 [16305] libmatroska::KaxTrackNumber::KaxTrackNumber() [107] avcodec_register [1024] vlc_meta_GetStatus
 [16306] libmatroska::KaxTrackNumber::~KaxTrackNumber() [110] avcodec_register_all [870] vlc_meta_Merge
 [16371] libmatroska::KaxCodecPrivate::Create() [957] avpriv_float_dsp_init [729] vlc_meta_New
 [16372] libmatroska::KaxCodecPrivate::KaxCodecPrivate() [958] avpriv_mpeg4audio_get_config [730] vlc_meta_Set
 [16373] libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [791] bdf_driver_requester (bdfdrivr.c) [1025] vlc_meta_SetStatus
 [16281] libmatroska::KaxSeekPosition::Create() [508] block_Alloc [78] vlc_module_load
 [16282] libmatroska::KaxSeekPosition::KaxSeekPosition() [611] block_FifoCount [639] vlc_module_unload
 [16283] libmatroska::KaxSeekPosition::~KaxSeekPosition() [321] block_FifoEmpty [537] vlc_mutex_destroy
 [16374] libmatroska::KaxAudioChannels::Create() [68] block_FifoGet [536] vlc_mutex_init
 [16375] libmatroska::KaxAudioChannels::KaxAudioChannels() [792] block_FifoNew [695] vlc_mutex_init_recursive
 [16376] libmatroska::KaxAudioChannels::~KaxAudioChannels() [141] block_FifoPut [89] vlc_mutex_lock
 [16197] libmatroska::KaxInternalBlock::ReleaseFrames() [358] block_FifoRelease [499] vlc_mutex_trylock
  [66] libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [516] block_FifoSize (block.c) [88] vlc_mutex_unlock
 [16207] libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [267] block_FifoWake [551] vlc_object_alive
 [16198] libmatroska::KaxInternalBlock::~KaxInternalBlock() [509] block_Init [1026] vlc_object_create
 [16284] libmatroska::KaxTimecodeScale::Create() [547] block_Realloc [597] vlc_object_hold
 [16285] libmatroska::KaxTimecodeScale::KaxTimecodeScale() [510] block_generic_Release (block.c) [349] vlc_object_release
 [16286] libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [585] build_canonical_huff (atrac3plus.c) [731] vlc_object_set_destructor (objects.c)
 [16499] libmatroska::KaxTrackLanguage::Create() [567] build_table (bitstream.c) [363] vlc_object_set_name (objects.c)
 [16500] libmatroska::KaxTrackLanguage::KaxTrackLanguage() [793] cff_driver_done (cffobjs.c) [1027] vlc_open
 [16501] libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [794] cff_driver_init (cffobjs.c) [696] vlc_opendir
 [16335] libmatroska::KaxTrackMinCache::Create() [795] cff_get_interface (cffdrivr.c) [635] vlc_readdir
 [16336] libmatroska::KaxTrackMinCache::KaxTrackMinCache() [374] che_configure (aacdec.c) [522] vlc_restorecancel
 [16337] libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [796] cid_driver_done (cidobjs.c) [81] vlc_rwlock_rdlock
 [16377] libmatroska::KaxCodecDecodeAll::Create() [797] cid_driver_init (cidobjs.c) [197] vlc_rwlock_unlock
 [16378] libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [798] cid_get_interface (cidriver.c) [523] vlc_savecancel
 [16379] libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [799] config_ChainCreate [719] vlc_sem_destroy
 [16226] libmatroska::KaxClusterTimecode::Create() [575] config_FindConfig [720] vlc_sem_init
 [16227] libmatroska::KaxClusterTimecode::KaxClusterTimecode() [183] config_GetFloat [415] vlc_sem_post
 [16228] libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [138] config_GetInt [406] vlc_sem_wait
 [16380] libmatroska::KaxTrackFlagForced::Create() [152] config_GetPsz [498] vlc_testcancel
 [16381] libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [723] config_GetType [592] vlc_towc (unicode.c)
 [16382] libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [724] convert_omx_to_profile_idc (utils.c) [590] vlc_ureduce
 [16338] libmatroska::KaxTrackFlagLacing::Create() [514] date_Get [63] vlc_vaLog
 [16339] libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [548] date_Increment [145] vout_AreDisplayPicturesInvalid
 [16340] libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [959] date_Init [381] vout_Close
 [16383] libmatroska::KaxVideoPixelWidth::Create() [657] date_Set [316] vout_CloseWrapper (vout_wrapper.c)
 [16384] libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [556] debug_log [454] vout_ControlChangeCropRatio (video_output.c)
 [16385] libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [691] decode_URI [455] vout_ControlChangeFilters (video_output.c)
 [16386] libmatroska::KaxTrackFlagDefault::Create() [375] decode_audio_specific_config (aacdec.c) [456] vout_ControlChangeSampleAspectRatio (video_output.c)
 [16387] libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [8] decode_cpe (aacdec.c) [457] vout_ControlChangeSubFilters (video_output.c)
 [16388] libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [9] decode_ics_info (aacdec.c) [458] vout_ControlChangeSubMargin (video_output.c)
 [16389] libmatroska::KaxTrackFlagEnabled::Create() [800] decoder_New (decoder.c) [459] vout_ControlChangeSubSources (video_output.c)
 [16390] libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [106] decoder_NewPicture [420] vout_ControlChangeWindowState (video_output.c)
 [16391] libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [555] demux_Control (demux.h) [460] vout_ControlChangeZoom (video_output.c)
 [16392] libmatroska::KaxVideoPixelHeight::Create() [270] demux_Delete (demux.c) [317] vout_DeleteDisplay
 [16393] libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [960] demux_GetParentInput [485] vout_DisplayTitle (video_output.c)
 [16394] libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [203] demux_New (demux.c) [253] vout_EndWrapper (vout_wrapper.c)
 [16224] libmatroska::GetKaxGlobal_Context() [801] destroy_charmaps (ftobjs.c) [393] vout_Flush (video_output.c)
 [16395] libmatroska::KaxAudioSamplingFreq::Create() [802] destroy_face (ftobjs.c) [486] vout_FlushSubpictureChannel
 [16396] libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [803] destroy_size (ftobjs.c) [160] vout_GetPicture
 [16397] libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [608] es_format_Clean [532] vout_GetResetStatistic (video_output.c)
 [16253] libmatroska::KaxCueTrackPositions::Create() [619] es_format_Copy [211] vout_InitInterlacingSupport (interlacing.c)
 [16254] libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [620] es_format_Init [1028] vout_InitWrapper (vout_wrapper.c)
 [16255] libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [804] es_format_InitFromVideo [181] vout_IntfInit (vout_intf.c)
 [16502] libmatroska::KaxVideoDisplayWidth::Create() [805] es_format_IsSimilar [260] vout_IntfReinit (vout_intf.c)
 [16503] libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [74] es_out_Control (vlc_es_out.h) [1029] vout_IsDisplayFiltered
 [16504] libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [177] es_out_Control (vlc_es_out.h) [386] vout_IsEmpty (video_output.c)
 [16235] libmatroska::KaxCueClusterPosition::Create() [524] es_out_Control (vlc_es_out.h) [37] vout_ManageDisplay
 [16236] libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [394] event_attach (event.c) [36] vout_ManageWrapper (vout_wrapper.c)
 [16237] libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [961] ff_aac_sbr_ctx_close [309] vout_NewDisplay
 [16398] libmatroska::KaxMaxBlockAdditionID::Create() [962] ff_aac_sbr_ctx_init [213] vout_OpenWrapper (vout_wrapper.c)
 [16399] libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [963] ff_aac_sbr_init [132] vout_PutPicture
 [16400] libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [964] ff_aac_tableinit [170] vout_Request
 [16401] libmatroska::KaxTrackTimecodeScale::Create() [965] ff_atrac3p_init_vlcs [432] vout_Reset (video_output.c)
 [16402] libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [966] ff_atrac_generate_tables [871] vout_SetDisplayAspect
 [16403] libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [32] ff_butterflies_float_neon [872] vout_SetDisplayCrop
 [16505] libmatroska::KaxVideoDisplayHeight::Create() [967] ff_dsputil_static_init [873] vout_SetDisplayZoom
 [16506] libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [670] ff_fft_end [136] vout_SetInterlacingState (interlacing.c)
 [16507] libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [671] ff_fft_init [416] vout_SetWindowState
 [16256] libmatroska::KaxCueRelativePosition::Create() [672] ff_fft_init_arm [541] vout_UpdateDisplaySourceProperties (display.c)
 [16257] libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [968] ff_float_dsp_init_arm [1030] vout_control_Clean (control.c)
 [16258] libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [969] ff_float_dsp_init_neon [390] vout_control_Dead (control.c)
 [16508] libmatroska::KaxVideoFlagInterlaced::Create() [970] ff_float_dsp_init_vfp [1031] vout_control_Init (control.c)
 [16509] libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [971] ff_fmt_convert_init [47] vout_control_Pop (control.c)
 [16510] libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [972] ff_fmt_convert_init_arm [340] vout_control_Push (control.c)
 [16404] libmatroska::KaxTrackDefaultDuration::Create() [806] ff_getSwsFunc [399] vout_control_PushInteger (control.c)
 [16405] libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [27] ff_get_buffer [404] vout_control_PushPair (control.c)
 [16406] libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [973] ff_get_cpu_flags_arm [400] vout_control_PushString (control.c)
 [16407] libmatroska::KaxCues::Create() [22] ff_imdct_half_neon [423] vout_control_PushTime (control.c)
 [16408] libmatroska::KaxCues::KaxCues() [616] ff_init_ff_cos_tabs [430] vout_control_PushVoid (control.c)
 [16409] libmatroska::KaxCues::~KaxCues() [725] ff_init_ff_sine_windows [387] vout_control_WaitEmpty (control.c)
 [16410] libmatroska::KaxCues::~KaxCues() [568] ff_init_vlc_sparse [158] vout_control_Wake (control.c)
 [16307] libmatroska::KaxInfo::Create() [974] ff_jpeg2000_init_tier1_luts [614] vout_control_cmd_Clean (control.c)
 [16308] libmatroska::KaxInfo::KaxInfo() [109] ff_kbd_window_init [256] vout_display_Control (display.c)
 [16309] libmatroska::KaxInfo::~KaxInfo() [673] ff_mdct_end [1032] vout_display_GetDefaultDisplaySize
 [16341] libmatroska::KaxSeek::Create() [674] ff_mdct_init [542] vout_display_PlacePicture
 [16342] libmatroska::KaxSeek::KaxSeek() [975] ff_mpa_synth_init_float [30] vout_new_buffer (decoder.c)
 [16343] libmatroska::KaxSeek::~KaxSeek() [976] ff_mqc_init_context_tables [1033] vout_snapshot_Clean (snapshot.c)
 [16287] libmatroska::KaxSeekID::Create() [977] ff_ps_ctx_init [391] vout_snapshot_End (snapshot.c)
 [16288] libmatroska::KaxSeekID::KaxSeekID() [978] ff_ps_init [1034] vout_snapshot_Init (snapshot.c)
 [16289] libmatroska::KaxSeekID::~KaxSeekID() [979] ff_psdsp_init [178] vout_snapshot_IsRequested (snapshot.c)
 [16411] libmatroska::KaxTracks::Create() [980] ff_psdsp_init_arm [874] winfnt_get_service (winfnt.c)
 [16412] libmatroska::KaxTracks::KaxTracks() [981] ff_sbrdsp_init [1035] wmavoice_init_static_data (wmavoice.c)
 [16413] libmatroska::KaxTracks::~KaxTracks() [982] ff_sbrdsp_init_arm [615] wmemcmp
 [16414] event_thread_t::ResetPci() (demux.cpp) [726] ff_sine_window_init [875] wmemcpy
 [16511] event_thread_t::~event_thread_t() (demux.cpp) [807] ff_sws_init_input_funcs [610] wmemset
 [16512] event_thread_t::~event_thread_t() (demux.cpp) [808] ff_sws_init_output_funcs [125] <cycle 1>
 [16513] virtual_chapter_c::PublishChapters(input_title_t&, int&, int) (virtual_segment.cpp) [983] ff_tak_init_crc [494] <cycle 2>
 [16514] virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) (virtual_segment.cpp) [984] ff_thread_init [287] <cycle 3>
 [16180] virtual_chapter_c::getSubChapterbyTimecode(long long) (virtual_segment.cpp) [96] ff_vector_fmul_scalar_neon [15] <cycle 4>
 [16515] virtual_chapter_c::~virtual_chapter_c() (virtual_segment.cpp) [25] ff_vector_fmul_window_neon [148] <cycle 5>
 [16516] virtual_edition_c::GetMainName() (virtual_segment.cpp) [985] ff_yuv2rgb_c_init_tables [495] <cycle 6>
 [16517] virtual_edition_c::retimeChapters() (virtual_segment.cpp) [84] ffmpeg_OpenCodec (avcodec.c)
-------------- next part --------------
Flat profile:

Each sample counts as 0.01 seconds.
  %   cumulative   self              self     total           
 time   seconds   seconds    calls  ms/call  ms/call  name    
 96.82     45.62    45.62                             loop_col
  0.49     45.85     0.23    17894     0.01     0.01  decode_ics_info
  0.45     46.06     0.21     5963     0.04     0.04  Fl32toS16
  0.19     46.15     0.09                             ff_imdct_half_neon
  0.17     46.23     0.08                             fft_pass_neon
  0.13     46.29     0.06     5964     0.01     0.01  aout_ChannelExtract
  0.11     46.34     0.05     5965     0.01     0.07  aac_decode_frame_int
  0.11     46.39     0.05     5962     0.01     0.05  decode_cpe
  0.11     46.44     0.05                             ff_vector_fmul_window_neon
  0.08     46.48     0.04     5964     0.01     0.01  aout_Interleave
  0.06     46.51     0.03   382619     0.00     0.00  vlc_mutex_lock
  0.06     46.54     0.03    28455     0.00     0.00  vlc_cond_timedwait
  0.06     46.57     0.03    11919     0.00     0.05  DecodeAudio
  0.04     46.59     0.02    64029     0.00     0.00  vlc_mutex_trylock
  0.04     46.61     0.02    19684     0.00     0.00  ThreadDisplayPicture
  0.04     46.63     0.02    13746     0.00     0.00  DecodeVideo
  0.04     46.65     0.02     6920     0.00     0.00  AndroidLockSurface
  0.04     46.67     0.02     5969     0.00     0.00  Play
  0.04     46.69     0.02     5962     0.00     0.00  av_init_packet
  0.04     46.71     0.02     5960     0.00     0.14  DecoderDecodeAudio
  0.04     46.73     0.02     1308     0.02     0.02  apply_ltp
  0.04     46.75     0.02                             __divdi3
  0.04     46.77     0.02                             __emutls_get_address
  0.04     46.79     0.02                             __gnu_mcount_nc
  0.04     46.81     0.02                             loop_row
  0.02     46.82     0.01   446104     0.00     0.00  vlc_mutex_unlock
  0.02     46.83     0.01   153114     0.00     0.00  mdate
  0.02     46.84     0.01   143125     0.00     0.00  av_buffer_unref
  0.02     46.85     0.01    49560     0.00     0.00  stats_Update
  0.02     46.86     0.01    32852     0.00     0.00  AStreamReadNoSeekStream
  0.02     46.87     0.01    30060     0.00     0.00  picture_Hold
  0.02     46.88     0.01    27681     0.00     0.00  transform_GetBasicOps
  0.02     46.89     0.01    20196     0.00     0.00  vlc_cond_signal
  0.02     46.90     0.01    16223     0.00     0.00  picture_pool_Get
  0.02     46.91     0.01    15377     0.00     0.00  virtual_segment_c::UpdateCurrentToChapter(demux_t&)
  0.02     46.92     0.01    12900     0.00     0.00  vlc_restorecancel
  0.02     46.93     0.01    11930     0.00     0.00  av_buffer_pool_get
  0.02     46.94     0.01     6915     0.00     0.00  vlc_fourcc_IsYUV
  0.02     46.95     0.01     6894     0.00     0.00  CopyOmxPicture
  0.02     46.96     0.01     6884     0.00     0.01  vout_new_buffer
  0.02     46.97     0.01     5967     0.00     0.00  TimeGet
  0.02     46.98     0.01     5967     0.00     0.00  aout_OutputUnlock
  0.02     46.99     0.01     5967     0.00     0.00  spectral_to_sample
  0.02     47.00     0.01     5966     0.00     0.00  DoWork
  0.02     47.01     0.01     5966     0.00     0.00  aout_OutputTimeGet
  0.02     47.02     0.01     5965     0.00     0.01  ff_get_buffer
  0.02     47.03     0.01     5963     0.00     0.00  avcodec_default_get_buffer2
  0.02     47.04     0.01      308     0.03     0.03  avcodec_register
  0.02     47.05     0.01                             __aeabi_idiv
  0.02     47.06     0.01                             __aeabi_uidiv
  0.02     47.07     0.01                             __aeabi_uidivmod
  0.02     47.08     0.01                             fft512_neon
  0.02     47.09     0.01                             fft8_neon
  0.02     47.10     0.01                             profCount
  0.00     47.10     0.00    71922     0.00     0.00  av_free
  0.00     47.10     0.00    71716     0.00     0.00  av_freep
  0.00     47.10     0.00    69905     0.00     0.00  vlc_testcancel
  0.00     47.10     0.00    65691     0.00     0.00  stream_Read
  0.00     47.10     0.00    63794     0.00     0.00  libebml::EbmlElement::GetSize() const
  0.00     47.10     0.00    49692     0.00     0.00  FileControl
  0.00     47.10     0.00    49685     0.00     0.00  access_Control
  0.00     47.10     0.00    49434     0.00     0.00  AStreamControl
  0.00     47.10     0.00    49433     0.00     0.00  Control
  0.00     47.10     0.00    49432     0.00     0.00  stream_vaControl
  0.00     47.10     0.00    49429     0.00     0.00  stream_Control
  0.00     47.10     0.00    38601     0.00     0.00  libmatroska::DataBuffer::Size()
  0.00     47.10     0.00    33028     0.00     0.00  varcmp
  0.00     47.10     0.00    32851     0.00     0.00  AStreamReadStream
  0.00     47.10     0.00    32849     0.00     0.00  Read
  0.00     47.10     0.00    32841     0.00     0.00  vlc_stream_io_callback::read(void*, unsigned int)
  0.00     47.10     0.00    30115     0.00     0.00  av_malloc
  0.00     47.10     0.00    30111     0.00     0.00  picture_Release
  0.00     47.10     0.00    29862     0.00     0.00  av_mallocz
  0.00     47.10     0.00    29792     0.00     0.00  libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&)
  0.00     47.10     0.00    27727     0.00     0.00  filter_chain_VideoFilter
  0.00     47.10     0.00    26310     0.00     0.00  vlc_cond_broadcast
  0.00     47.10     0.00    26146     0.00     0.00  av_opt_next
  0.00     47.10     0.00    25735     0.00     0.00  libmatroska::DataBuffer::Buffer()
  0.00     47.10     0.00    25284     0.00     0.00  TsStop
  0.00     47.10     0.00    25228     0.00     0.00  block_Alloc
  0.00     47.10     0.00    25228     0.00     0.00  block_generic_Release
  0.00     47.10     0.00    25223     0.00     0.00  block_Init
  0.00     47.10     0.00    20722     0.00     0.00  FilterChainVideoFilter
  0.00     47.10     0.00    18791     0.00     0.00  DeleteDecoder
  0.00     47.10     0.00    17895     0.00     0.00  av_frame_unref
  0.00     47.10     0.00    17887     0.00     0.00  date_Get
  0.00     47.10     0.00    16562     0.00     0.00  AStreamSeekStream
  0.00     47.10     0.00    16555     0.00     0.00  vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode)
  0.00     47.10     0.00    16307     0.00     0.00  vlc_stream_io_callback::getFilePointer()
  0.00     47.10     0.00    15382     0.00     0.00  virtual_chapter_c::getSubChapterbyTimecode(long long)
  0.00     47.10     0.00    15381     0.00     0.00  virtual_edition_c::getChapterbyTimecode(long long)
  0.00     47.10     0.00    15373     0.00     0.00  matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*)
  0.00     47.10     0.00    13810     0.00     0.00  Destroy
  0.00     47.10     0.00    13712     0.00     0.00  block_FifoSize
  0.00     47.10     0.00    13330     0.00     0.00  libmatroska::DataBuffer::~DataBuffer()
  0.00     47.10     0.00    12886     0.00     0.00  vout_AreDisplayPicturesInvalid
  0.00     47.10     0.00    12878     0.00     0.00  block_FifoGet
  0.00     47.10     0.00    12878     0.00     0.00  vout_ManageWrapper
  0.00     47.10     0.00    12876     0.00     0.00  Send
  0.00     47.10     0.00    12875     0.00     0.00  MemToBlock(unsigned char*, unsigned int, unsigned int)
  0.00     47.10     0.00    12873     0.00     0.00  CmdExecuteSend
  0.00     47.10     0.00    12873     0.00     0.00  EsOutSend
  0.00     47.10     0.00    12872     0.00     0.00  block_FifoPut
  0.00     47.10     0.00    12865     0.00     0.00  input_DecoderDecode
  0.00     47.10     0.00    12854     0.00     0.00  input_DecoderHasFormatChanged
  0.00     47.10     0.00    12851     0.00     0.00  vout_SetInterlacingState
  0.00     47.10     0.00    12848     0.00     0.00  input_clock_ConvertTS
  0.00     47.10     0.00    12846     0.00     0.00  vout_control_Pop
  0.00     47.10     0.00    12835     0.00     0.00  input_DecoderIsCcPresent
  0.00     47.10     0.00    12834     0.00     0.00  DecoderFixTs
  0.00     47.10     0.00    12797     0.00     0.00  vout_ManageDisplay
  0.00     47.10     0.00    12747     0.00     0.00  vlc_savecancel
  0.00     47.10     0.00    12436     0.00     0.00  EsOutControl
  0.00     47.10     0.00    12434     0.00     0.00  Control
  0.00     47.10     0.00    12430     0.00     0.00  es_out_Control
  0.00     47.10     0.00    11929     0.00     0.00  av_get_channel_layout_nb_channels
  0.00     47.10     0.00    11929     0.00     0.00  av_sample_fmt_is_planar
  0.00     47.10     0.00    11928     0.00     0.00  av_packet_get_side_data
  0.00     47.10     0.00    11927     0.00     0.00  imdct_and_windowing
  0.00     47.10     0.00    11924     0.00     0.00  pool_release_buffer
  0.00     47.10     0.00    11923     0.00     0.00  av_buffer_create
  0.00     47.10     0.00    10286     0.00     0.00  std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&)
  0.00     47.10     0.00     9501     0.00     0.01  GetOutput
  0.00     47.10     0.00     9403     0.00     0.00  vlc_mutex_init
  0.00     47.10     0.00     9379     0.00     0.00  vlc_cond_init
  0.00     47.10     0.00     9375     0.00     0.00  vlc_mutex_destroy
  0.00     47.10     0.00     9352     0.00     0.00  vlc_cond_destroy
  0.00     47.10     0.00     9339     0.00     0.00  mwait
  0.00     47.10     0.00     9303     0.00     0.00  vout_GetPicture
  0.00     47.10     0.00     8887     0.00     0.00  libebml::CodedSizeLength(unsigned long long, unsigned int, bool)
  0.00     47.10     0.00     8678     0.00     0.00  libebml::EbmlElement::~EbmlElement()
  0.00     47.10     0.00     8674     0.00     0.00  libebml::EbmlElement::EbmlElement(unsigned long long, bool)
  0.00     47.10     0.00     8334     0.00     0.00  libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int)
  0.00     47.10     0.00     8333     0.00     0.00  libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int)
  0.00     47.10     0.00     8311     0.00     0.00  libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int)
  0.00     47.10     0.00     8243     0.00     0.00  libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const
  0.00     47.10     0.00     8234     0.00     0.00  libmatroska::KaxSimpleBlock::Generic() const
  0.00     47.10     0.00     8204     0.00     0.00  libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool)
  0.00     47.10     0.00     8172     0.00     0.00  module_get_capability
  0.00     47.10     0.00     8172     0.00     0.00  module_provides
  0.00     47.10     0.00     8131     0.00     0.00  EbmlParser::Get(int)
  0.00     47.10     0.00     8119     0.00     0.00  libebml::EbmlBinary::~EbmlBinary()
  0.00     47.10     0.00     8109     0.00     0.00  libebml::EbmlBinary::EbmlBinary()
  0.00     47.10     0.00     8106     0.00     0.00  es_out_Control(es_out_t*, int, ...)
  0.00     47.10     0.00     7970     0.00     0.00  libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     47.10     0.00     7967     0.00     0.00  libmatroska::KaxInternalBlock::ReleaseFrames()
  0.00     47.10     0.00     7966     0.00     0.00  libmatroska::KaxInternalBlock::~KaxInternalBlock()
  0.00     47.10     0.00     7964     0.00     0.00  libmatroska::KaxSimpleBlock::~KaxSimpleBlock()
  0.00     47.10     0.00     7960     0.00     0.00  libmatroska::KaxInternalBlock::ValidateSize() const
  0.00     47.10     0.00     7958     0.00     0.00  libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     47.10     0.00     7956     0.00     0.00  libmatroska::KaxSimpleBlock::Create()
  0.00     47.10     0.00     7952     0.00     0.00  std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&)
  0.00     47.10     0.00     7938     0.00     0.00  libebml::EbmlElement::IsDummy() const
  0.00     47.10     0.00     7842     0.00     0.00  EbmlParser::GetLevel() const
  0.00     47.10     0.00     7794     0.00     0.00  libmatroska::KaxCluster::Generic() const
  0.00     47.10     0.00     7740     0.00     0.00  EbmlParser::IsTopPresent(libebml::EbmlElement*) const
  0.00     47.10     0.00     7692     0.00     0.00  EsIsSelected
  0.00     47.10     0.00     7692     0.00     0.00  BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool)
  0.00     47.10     0.00     7690     0.00     0.00  matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*)
  0.00     47.10     0.00     7681     0.00     0.00  libmatroska::KaxCluster::GlobalTimecode() const
  0.00     47.10     0.00     7675     0.00     0.00  libmatroska::KaxCluster::GetBlockGlobalTimecode(short)
  0.00     47.10     0.00     7675     0.00     0.00  libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&)
  0.00     47.10     0.00     7673     0.00     0.00  libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&)
  0.00     47.10     0.00     7015     0.00     0.00  ThreadDisplayPreparePicture
  0.00     47.10     0.00     7011     0.00     0.00  picture_fifo_Pop
  0.00     47.10     0.00     6988     0.00     0.00  Lookup
  0.00     47.10     0.00     6985     0.00     0.00  Find
  0.00     47.10     0.00     6977     0.00     0.00  vlc_fourcc_GetCodec
  0.00     47.10     0.00     6920     0.00     0.00  jni_UnlockAndroidSurface
  0.00     47.10     0.00     6920     0.00     0.00  video_format_TransformBy
  0.00     47.10     0.00     6919     0.00     0.00  VideoBufferNew
  0.00     47.10     0.00     6919     0.00     0.00  picture_CopyProperties
  0.00     47.10     0.00     6919     0.00     0.00  vout_UpdateDisplaySourceProperties
  0.00     47.10     0.00     6918     0.00     0.00  NV12_RGBA_Filter
  0.00     47.10     0.00     6918     0.00     0.00  video_format_ApplyRotation
  0.00     47.10     0.00     6917     0.00     0.00  Pool
  0.00     47.10     0.00     6917     0.00     0.00  spu_Render
  0.00     47.10     0.00     6917     0.00     0.00  video_format_GetTransform
  0.00     47.10     0.00     6917     0.00     0.00  vout_IsDisplayFiltered
  0.00     47.10     0.00     6917     0.00     0.00  vout_snapshot_IsRequested
  0.00     47.10     0.00     6916     0.00     0.00  filter_chain_GetLength
  0.00     47.10     0.00     6916     0.00     0.00  video_format_TransformTo
  0.00     47.10     0.00     6915     0.00     0.00  jni_LockAndGetAndroidJavaSurface
  0.00     47.10     0.00     6915     0.00     0.00  vout_FilterDisplay
  0.00     47.10     0.00     6913     0.00     0.00  filter_chain_SubSource
  0.00     47.10     0.00     6912     0.00     0.00  video_format_CopyCrop
  0.00     47.10     0.00     6908     0.00     0.00  Display
  0.00     47.10     0.00     6904     0.00     0.00  AndroidUnlockSurface
  0.00     47.10     0.00     6892     0.00     0.00  GetVlcChromaSizes
  0.00     47.10     0.00     6888     0.00     0.00  vout_GetResetStatistic
  0.00     47.10     0.00     6887     0.00     0.00  vout_PutPicture
  0.00     47.10     0.00     6886     0.00     0.01  decoder_NewPicture
  0.00     47.10     0.00     6877     0.00     0.00  vout_control_Wake
  0.00     47.10     0.00     6875     0.00     0.00  picture_fifo_Push
  0.00     47.10     0.00     6868     0.00     0.00  picture_Reset
  0.00     47.10     0.00     6860     0.00     0.01  DecoderDecodeVideo
  0.00     47.10     0.00     5979     0.00     0.00  aout_OutputLock
  0.00     47.10     0.00     5968     0.00     0.00  aout_OutputPlay
  0.00     47.10     0.00     5967     0.00     0.00  SetupOutputFormat
  0.00     47.10     0.00     5967     0.00     0.04  aout_FiltersPlay
  0.00     47.10     0.00     5967     0.00     0.00  av_frame_alloc
  0.00     47.10     0.00     5966     0.00     0.00  FilterS16N
  0.00     47.10     0.00     5966     0.00     0.07  aac_decode_frame
  0.00     47.10     0.00     5966     0.00     0.05  aout_DecPlay
  0.00     47.10     0.00     5966     0.00     0.00  aout_update_format
  0.00     47.10     0.00     5966     0.00     0.00  av_frame_free
  0.00     47.10     0.00     5965     0.00     0.00  get_che
  0.00     47.10     0.00     5964     0.00     0.00  aout_volume_Amplify
  0.00     47.10     0.00     5964     0.00     0.00  block_Realloc
  0.00     47.10     0.00     5963     0.00     0.07  avcodec_decode_audio4
  0.00     47.10     0.00     5961     0.00     0.00  date_Increment
  0.00     47.10     0.00     5955     0.00     0.00  aout_DecGetResetLost
  0.00     47.10     0.00     4597     0.00     0.00  libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&)
  0.00     47.10     0.00     4323     0.00     0.00  es_out_Control
  0.00     47.10     0.00     4112     0.00     0.00  tfind
  0.00     47.10     0.00     3327     0.00     0.00  DupDummy
  0.00     47.10     0.00     3094     0.00     0.00  vlc_object_alive
  0.00     47.10     0.00     2548     0.00     0.00  input_clock_GetWakeup
  0.00     47.10     0.00     2431     0.00     0.00  picture_fifo_Peek
  0.00     47.10     0.00     2425     0.00     0.00  msleep
  0.00     47.10     0.00     2424     0.00     0.00  harmful_delay
  0.00     47.10     0.00     2423     0.00     0.00  vout_FixLeaks
  0.00     47.10     0.00     2360     0.00     0.00  var_GetChecked
  0.00     47.10     0.00     1643     0.00     0.00  FreeDummy
  0.00     47.10     0.00     1591     0.00     0.00  CheckValue
  0.00     47.10     0.00     1408     0.00     0.00  split_radix_permutation
  0.00     47.10     0.00     1391     0.00     0.00  TriggerCallback
  0.00     47.10     0.00     1282     0.00     0.00  Control(demux_t*, int, std::__va_list)
  0.00     47.10     0.00     1281     0.00     0.03  Demux(demux_t*)
  0.00     47.10     0.00     1280     0.00     0.00  demux_Control
  0.00     47.10     0.00     1003     0.00     0.00  var_Change
  0.00     47.10     0.00      877     0.00     0.00  libvlc_event_send
  0.00     47.10     0.00      856     0.00     0.00  CmdExecuteControl
  0.00     47.10     0.00      844     0.00     0.00  input_DecoderGetFifoSize
  0.00     47.10     0.00      627     0.00     0.00  var_SetChecked
  0.00     47.10     0.00      582     0.00     0.00  input_event_changed
  0.00     47.10     0.00      493     0.00     0.00  AReadStream
  0.00     47.10     0.00      493     0.00     0.00  FileRead
  0.00     47.10     0.00      480     0.00     0.00  AStreamRefillStream
  0.00     47.10     0.00      453     0.00     0.00  getLong
  0.00     47.10     0.00      451     0.00     0.00  getMediaPlayer
  0.00     47.10     0.00      434     0.00     0.00  libvlc_media_player_get_state
  0.00     47.10     0.00      434     0.00     0.00  libvlc_media_player_is_playing
  0.00     47.10     0.00      432     0.00     0.00  input_clock_GetState
  0.00     47.10     0.00      429     0.00     0.00  vlc_event_callback
  0.00     47.10     0.00      427     0.00     0.00  input_SendEventLength
  0.00     47.10     0.00      426     0.00     0.00  input_SendEventPosition
  0.00     47.10     0.00      423     0.00     0.00  input_clock_Update
  0.00     47.10     0.00      419     0.00     0.00  aout_FiltersAdjustResampling
  0.00     47.10     0.00      400     0.00     0.00  vlc_rwlock_rdlock
  0.00     47.10     0.00      400     0.00     0.00  vlc_rwlock_unlock
  0.00     47.10     0.00      383     0.00     0.00  CmpString
  0.00     47.10     0.00      366     0.00     0.00  ft_mem_free
  0.00     47.10     0.00      361     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger()
  0.00     47.10     0.00      318     0.00     0.00  libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode)
  0.00     47.10     0.00      253     0.00     0.00  debug_log
  0.00     47.10     0.00      253     0.00     0.00  libvlc_logf
  0.00     47.10     0.00      253     0.00     0.00  vlc_Log
  0.00     47.10     0.00      253     0.00     0.00  vlc_vaLog
  0.00     47.10     0.00      242     0.00     0.00  libebml::GetEbmlGlobal_Context()
  0.00     47.10     0.00      224     0.00     0.00  tsearch
  0.00     47.10     0.00      224     0.00     0.00  var_Create
  0.00     47.10     0.00      210     0.00     0.00  libebml::EbmlUInteger::ValidateSize() const
  0.00     47.10     0.00      207     0.00     0.00  libebml::EbmlMaster::PushElement(libebml::EbmlElement&)
  0.00     47.10     0.00      201     0.00     0.00  std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&)
  0.00     47.10     0.00      190     0.00     0.00  libebml::IOCallback::readFully(void*, unsigned int)
  0.00     47.10     0.00      188     0.00     0.00  var_Inherit
  0.00     47.10     0.00      178     0.00     0.00  build_table
  0.00     47.10     0.00      178     0.00     0.00  ff_init_vlc_sparse
  0.00     47.10     0.00      177     0.00     0.00  libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     47.10     0.00      176     0.00     0.00  av_codec_is_decoder
  0.00     47.10     0.00      172     0.00     0.00  ft_alloc
  0.00     47.10     0.00      172     0.00     0.00  ft_free
  0.00     47.10     0.00      172     0.00     0.00  ft_mem_qalloc
  0.00     47.10     0.00      167     0.00     0.00  av_opt_find2
  0.00     47.10     0.00      158     0.00     0.00  Destroy
  0.00     47.10     0.00      154     0.00     0.00  config_FindConfig
  0.00     47.10     0.00      152     0.00     0.00  libebml::EbmlElement::SetDefaultSize(unsigned long long)
  0.00     47.10     0.00      142     0.00     0.00  av_opt_set_int
  0.00     47.10     0.00      138     0.00     0.00  CleanupVar
  0.00     47.10     0.00      137     0.00     0.00  libebml::EbmlMaster::ProcessMandatory()
  0.00     47.10     0.00      137     0.00     0.00  libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool)
  0.00     47.10     0.00      137     0.00     0.00  libebml::EbmlMaster::~EbmlMaster()
  0.00     47.10     0.00      137     0.00     0.00  libebml::EbmlCrc32::ResetCRC()
  0.00     47.10     0.00      137     0.00     0.00  libebml::EbmlCrc32::EbmlCrc32()
  0.00     47.10     0.00      137     0.00     0.00  libebml::EbmlMaster::ValidateSize() const
  0.00     47.10     0.00      133     0.00     0.00  vlc_gettext
  0.00     47.10     0.00      132     0.00     0.00  libmatroska::KaxCueTrackPositions::Generic() const
  0.00     47.10     0.00      127     0.00     0.00  libebml::EbmlUInteger::operator unsigned long long() const
  0.00     47.10     0.00      123     0.00     0.00  libmatroska::GetKaxGlobal_Context()
  0.00     47.10     0.00      121     0.00     0.00  EbmlParser::Down()
  0.00     47.10     0.00      120     0.00     0.00  EbmlParser::Up()
  0.00     47.10     0.00      116     0.00     0.00  ft_mem_alloc
  0.00     47.10     0.00      116     0.00     0.00  input_SendEventStatistics
  0.00     47.10     0.00      116     0.00     0.00  stats_ComputeInputStats
  0.00     47.10     0.00      115     0.00     0.00  DupString
  0.00     47.10     0.00      114     0.00     0.00  FreeString
  0.00     47.10     0.00      112     0.00     0.00  FT_Stream_GetULong
  0.00     47.10     0.00      105     0.00     0.00  build_canonical_huff
  0.00     47.10     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::Create()
  0.00     47.10     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::KaxClusterTimecode()
  0.00     47.10     0.00      104     0.00     0.00  libmatroska::KaxClusterTimecode::~KaxClusterTimecode()
  0.00     47.10     0.00      102     0.00     0.00  FT_Stream_ReadFields
  0.00     47.10     0.00      102     0.00     0.00  ft_ansi_stream_io
  0.00     47.10     0.00       87     0.00     0.00  config_GetInt
  0.00     47.10     0.00       75     0.00     0.00  vlc_towc
  0.00     47.10     0.00       70     0.00     0.00  vlc_cond_wait
  0.00     47.10     0.00       70     0.00     0.00  vlc_ureduce
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueTime::Create()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueTime::KaxCueTime()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueTime::~KaxCueTime()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::Create()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::KaxCueTrack()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueTrack::~KaxCueTrack()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::Create()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::KaxCueClusterPosition()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition()
  0.00     47.10     0.00       66     0.00     0.00  libmatroska::KaxCuePoint::Generic() const
  0.00     47.10     0.00       66     0.00     0.15  generic_start
  0.00     47.10     0.00       66     0.00     0.00  module_Map
  0.00     47.10     0.00       66     0.00     0.00  module_load
  0.00     47.10     0.00       64     0.00     0.00  video_format_Setup
  0.00     47.10     0.00       56     0.00     0.00  FT_Stream_EnterFrame
  0.00     47.10     0.00       53     0.00     0.00  libmatroska::KaxClusterTimecode::Generic() const
  0.00     47.10     0.00       52     0.00     0.00  FT_Stream_ExitFrame
  0.00     47.10     0.00       52     0.00     0.00  libmatroska::KaxCluster::Create()
  0.00     47.10     0.00       52     0.00     0.00  libmatroska::KaxCluster::KaxCluster()
  0.00     47.10     0.00       52     0.00     0.00  libmatroska::KaxCluster::~KaxCluster()
  0.00     47.10     0.00       51     0.00     0.00  var_AddCallback
  0.00     47.10     0.00       46     0.00     0.00  CmpInt
  0.00     47.10     0.00       46     0.00     0.00  module_get_object
  0.00     47.10     0.00       46     0.00     0.00  vlc_object_hold
  0.00     47.10     0.00       45     0.00     0.00  config_GetPsz
  0.00     47.10     0.00       45     0.00     0.00  vlc_object_release
  0.00     47.10     0.00       42     0.00     0.00  tt_face_goto_table
  0.00     47.10     0.00       41     0.00     0.00  libebml::EbmlUInteger::operator unsigned short() const
  0.00     47.10     0.00       39     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger(unsigned long long)
  0.00     47.10     0.00       37     0.00     0.00  TagLib::RefCounter::deref()
  0.00     47.10     0.00       37     0.00     0.00  libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const
  0.00     47.10     0.00       37     0.00     0.00  libmatroska::KaxSegment::operator libebml::EbmlId const&() const
  0.00     47.10     0.00       36     0.00     0.00  FT_Add_Module
  0.00     47.10     0.00       36     0.00     0.00  FT_Remove_Module
  0.00     47.10     0.00       36     0.00     0.00  FT_Stream_Seek
  0.00     47.10     0.00       36     0.00     0.00  es_format_Clean
  0.00     47.10     0.00       35     0.00     0.00  TagLib::RefCounter::RefCounter()
  0.00     47.10     0.00       35     0.00     0.00  TagLib::RefCounter::~RefCounter()
  0.00     47.10     0.00       34     0.00     0.00  var_DelCallback
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::Create()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::KaxCuePoint()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCuePoint::~KaxCuePoint()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::Create()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::KaxCueTrackPositions()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::Create()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::KaxCueRelativePosition()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition()
  0.00     47.10     0.00       33     0.00     0.00  TagLib::String::StringPrivate::~StringPrivate()
  0.00     47.10     0.00       33     0.00     0.00  TagLib::String::~String()
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueTime::Generic() const
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueTrack::Generic() const
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueClusterPosition::Generic() const
  0.00     47.10     0.00       33     0.00     0.00  libmatroska::KaxCueRelativePosition::Generic() const
  0.00     47.10     0.00       31     0.00     0.00  av_register_codec_parser
  0.00     47.10     0.00       31     0.00     0.00  vlc_fourcc_GetChromaDescription
  0.00     47.10     0.00       30     0.00     0.00  PictureDestroy
  0.00     47.10     0.00       30     0.00     0.00  TagLib::String::copyFromLatin1(char const*, unsigned int)
  0.00     47.10     0.00       30     0.00     0.00  TagLib::String::String(char const*, TagLib::String::Type)
  0.00     47.10     0.00       30     0.00     0.00  block_FifoCount
  0.00     47.10     0.00       30     0.00     0.00  picture_NewFromResource
  0.00     47.10     0.00       30     0.00     0.00  picture_Setup
  0.00     47.10     0.00       30     0.00     0.00  wmemset
  0.00     47.10     0.00       29     0.00     0.00  picture_NewFromFormat
  0.00     47.10     0.00       29     0.00     0.00  posix_memalign
  0.00     47.10     0.00       28     0.00     0.00  TagLib::String::operator==(TagLib::String const&) const
  0.00     47.10     0.00       28     0.00     0.00  es_format_Init
  0.00     47.10     0.00       28     0.00     0.00  ft_service_list_lookup
  0.00     47.10     0.00       28     0.00     0.00  input_DecoderIsEmpty
  0.00     47.10     0.00       27     0.00     0.00  libvlc_event_manager_register_event_type
  0.00     47.10     0.00       26     0.00     0.00  libebml::UTFstring::~UTFstring()
  0.00     47.10     0.00       26     0.00     0.00  vout_control_Push
  0.00     47.10     0.00       25     0.00     0.00  av_pix_fmt_desc_get
  0.00     47.10     0.00       25     0.00     0.00  es_format_Copy
  0.00     47.10     0.00       25     0.00     0.00  module_list_free
  0.00     47.10     0.00       25     0.00     0.00  vout_control_cmd_Clean
  0.00     47.10     0.00       25     0.00     0.00  wmemcmp
  0.00     47.10     0.00       24     0.00     0.00  libebml::UTFstring::UTFstring()
  0.00     47.10     0.00       24     0.00     0.00  ff_init_ff_cos_tabs
  0.00     47.10     0.00       24     0.00     0.00  var_TriggerCallback
  0.00     47.10     0.00       24     0.00     0.00  vlc_custom_create
  0.00     47.10     0.00       23     0.00     0.00  tdestroy
  0.00     47.10     0.00       23     0.00     0.00  var_DestroyAll
  0.00     47.10     0.00       22     0.00     0.00  av_opt_set_double
  0.00     47.10     0.00       22     0.00     0.00  ft_mem_qrealloc
  0.00     47.10     0.00       22     0.00     0.00  ft_mem_realloc
  0.00     47.10     0.00       20     0.00     0.00  FT_List_Finalize
  0.00     47.10     0.00       19     0.00     0.00  libvlc_get_input_thread
  0.00     47.10     0.00       19     0.00     0.00  module_get_score
  0.00     47.10     0.00       18     0.00     0.00  FT_Stream_ReleaseFrame
  0.00     47.10     0.00       18     0.00     0.00  libebml::EbmlMaster::GetSize() const
  0.00     47.10     0.00       18     0.00     0.00  block_FifoWake
  0.00     47.10     0.00       18     0.00     0.00  module_list_cap
  0.00     47.10     0.00       18     0.00     0.00  module_need
  0.00     47.10     0.00       18     0.00     0.00  vlc_module_load
  0.00     47.10     0.00       17     0.00     0.00  vlc_event_send
  0.00     47.10     0.00       16     0.00     0.00  FT_GlyphLoader_Done
  0.00     47.10     0.00       16     0.00     0.00  FT_GlyphLoader_New
  0.00     47.10     0.00       16     0.00     0.00  FT_GlyphLoader_Reset
  0.00     47.10     0.00       16     0.00     0.00  FT_GlyphLoader_Rewind
  0.00     47.10     0.00       16     0.00     0.00  FT_Lookup_Renderer
  0.00     47.10     0.00       16     0.00     0.00  FT_MulFix
  0.00     47.10     0.00       16     0.00     0.00  vlc_readdir
  0.00     47.10     0.00       15     0.00     0.00  config_GetFloat
  0.00     47.10     0.00       15     0.00     0.00  module_unneed
  0.00     47.10     0.00       15     0.00     0.00  vlc_module_unload
  0.00     47.10     0.00       15     0.00     0.00  vlc_object_set_name
  0.00     47.10     0.00       14     0.00     0.00  CmpFloat
  0.00     47.10     0.00       14     0.00     0.00  filter_chain_VideoFlush
  0.00     47.10     0.00       14     0.00     0.00  stream_Peek
  0.00     47.10     0.00       13     0.00     0.00  av_get_cpu_flags
  0.00     47.10     0.00       13     0.00     0.00  subtitles_Filter
  0.00     47.10     0.00       13     0.00     0.00  var_Destroy
  0.00     47.10     0.00       12     0.00     0.00  FT_List_Add
  0.00     47.10     0.00       12     0.00     0.00  LanguageSplit
  0.00     47.10     0.00       12     0.00     0.00  libebml::EbmlUnicodeString::EbmlUnicodeString()
  0.00     47.10     0.00       12     0.00     0.00  aout_BitsPerSample
  0.00     47.10     0.00       12     0.00     0.00  tt_face_get_name
  0.00     47.10     0.00       11     0.00     0.00  ASeek
  0.00     47.10     0.00       11     0.00     0.00  AStreamPeekStream
  0.00     47.10     0.00       11     0.00     0.00  FileSeek
  0.00     47.10     0.00       11     0.00     0.00  filter_chain_Reset
  0.00     47.10     0.00       11     0.00     0.00  generic_stop
  0.00     47.10     0.00       10     0.00     0.00  FT_DivFix
  0.00     47.10     0.00       10     0.00     0.00  FT_Get_Module
  0.00     47.10     0.00       10     0.00     0.00  FT_List_Find
  0.00     47.10     0.00       10     0.00     0.00  FT_List_Remove
  0.00     47.10     0.00       10     0.00     0.00  libmatroska::KaxSegment::Generic() const
  0.00     47.10     0.00       10     0.00     0.00  libmatroska::KaxSeek::Generic() const
  0.00     47.10     0.00        9     0.00     0.00  es_out_Control
  0.00     47.10     0.00        9     0.00     0.00  vout_IsEmpty
  0.00     47.10     0.00        8     0.00     0.00  FT_Stream_Pos
  0.00     47.10     0.00        8     0.00     0.00  VoutVideoFilterStaticNewPicture
  0.00     47.10     0.00        8     0.00     0.00  libebml::EbmlUInteger::operator unsigned int() const
  0.00     47.10     0.00        8     0.00     0.00  event_attach
  0.00     47.10     0.00        8     0.00     0.00  input_SendEventCache
  0.00     47.10     0.00        8     0.00     0.00  libvlc_event_attach
  0.00     47.10     0.00        8     0.00     0.00  ps_mask_table_done
  0.00     47.10     0.00        8     0.00     0.00  pthread_once
  0.00     47.10     0.00        8     0.00     0.00  sws_getCachedContext
  0.00     47.10     0.00        8     0.00     0.00  tdelete
  0.00     47.10     0.00        8     0.00     0.00  vlc_CPU
  0.00     47.10     0.00        8     0.00     0.00  vlc_event_manager_register_event_type
  0.00     47.10     0.00        7     0.00     0.00  VarListSelect
  0.00     47.10     0.00        7     0.00     0.00  aout_FormatPrepare
  0.00     47.10     0.00        7     0.00     0.00  date_Set
  0.00     47.10     0.00        7     0.00     0.00  input_Control
  0.00     47.10     0.00        7     0.00     0.00  input_vaControl
  0.00     47.10     0.00        7     0.00     0.00  module_exists
  0.00     47.10     0.00        7     0.00     0.00  module_find
  0.00     47.10     0.00        7     0.00     0.00  module_list_get
  0.00     47.10     0.00        7     0.00     0.00  tdestroy_recurse
  0.00     47.10     0.00        7     0.00     0.00  vlc_fourcc_GetDescription
  0.00     47.10     0.00        7     0.00     0.00  vlc_meta_GetExtra
  0.00     47.10     0.00        7     0.00     0.00  vout_control_PushInteger
  0.00     47.10     0.00        7     0.00     0.00  vout_control_PushString
  0.00     47.10     0.00        6     0.00     0.00  BinaryLog
  0.00     47.10     0.00        6     0.00     0.00  EsOutSelect
  0.00     47.10     0.00        6     0.00     0.00  FT_CMap_New
  0.00     47.10     0.00        6     0.00     0.00  FT_Stream_ReadULong
  0.00     47.10     0.00        6     0.00     0.00  FixParameters
  0.00     47.10     0.00        6     0.00     0.00  GetFfmpegChroma
  0.00     47.10     0.00        6     0.00     0.00  VarListDel
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::Create()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::KaxMuxingApp()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxMuxingApp::~KaxMuxingApp()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::Create()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::KaxWritingApp()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxWritingApp::~KaxWritingApp()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::Create()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::KaxSeekPosition()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxSeekPosition::~KaxSeekPosition()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::Create()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::KaxTimecodeScale()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxTimecodeScale::~KaxTimecodeScale()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxSeekID::Create()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxSeekID::KaxSeekID()
  0.00     47.10     0.00        6     0.00     0.00  libmatroska::KaxSeekID::~KaxSeekID()
  0.00     47.10     0.00        6     0.00     0.00  libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long)
  0.00     47.10     0.00        6     0.00     0.00  libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long)
  0.00     47.10     0.00        6     0.00     0.00  libebml::EbmlBinary::ValidateSize() const
  0.00     47.10     0.00        6     0.00     0.00  libebml::EbmlString::operator std::string const&() const
  0.00     47.10     0.00        6     0.00     0.00  aout_DecIsEmpty
  0.00     47.10     0.00        6     0.00     0.00  av_get_bits_per_pixel
  0.00     47.10     0.00        6     0.00     0.00  block_FifoEmpty
  0.00     47.10     0.00        6     0.00     0.00  ff_fft_end
  0.00     47.10     0.00        6     0.00     0.00  ff_fft_init
  0.00     47.10     0.00        6     0.00     0.00  ff_fft_init_arm
  0.00     47.10     0.00        6     0.00     0.00  ff_mdct_end
  0.00     47.10     0.00        6     0.00     0.00  ff_mdct_init
  0.00     47.10     0.00        6     0.00     0.00  ft_cmap_done_internal
  0.00     47.10     0.00        6     0.00     0.00  ft_smooth_init
  0.00     47.10     0.00        6     0.00     0.00  ft_validator_init
  0.00     47.10     0.00        6     0.00     0.00  gray_raster_done
  0.00     47.10     0.00        6     0.00     0.00  gray_raster_new
  0.00     47.10     0.00        6     0.00     0.00  gray_raster_reset
  0.00     47.10     0.00        6     0.00     0.00  input_GetItem
  0.00     47.10     0.00        6     0.00     0.00  input_item_meta_changed
  0.00     47.10     0.00        6     0.00     0.00  picture_fifo_Flush
  0.00     47.10     0.00        6     0.00     0.00  sfnt_get_interface
  0.00     47.10     0.00        6     0.00     0.00  vlc_global_mutex
  0.00     47.10     0.00        6     0.00     0.00  vlc_meta_Get
  0.00     47.10     0.00        6     0.00     0.00  vout_control_PushPair
  0.00     47.10     0.00        5     0.00     0.00  FilterRelease
  0.00     47.10     0.00        5     0.00     0.00  GetParameters
  0.00     47.10     0.00        5     0.00     0.00  ThreadFlush
  0.00     47.10     0.00        5     0.00     0.00  es_out_Control(es_out_t*, int, ...)
  0.00     47.10     0.00        5     0.00     0.00  EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*)
  0.00     47.10     0.00        5     0.00     0.00  EbmlParser::~EbmlParser()
  0.00     47.10     0.00        5     0.00     0.00  libebml::EbmlMaster::SetSizeInfinite(bool)
  0.00     47.10     0.00        5     0.00     0.09  libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode)
  0.00     47.10     0.00        5     0.00     0.00  aout_FormatPrintChannels
  0.00     47.10     0.00        5     0.00     0.00  av_buffer_pool_uninit
  0.00     47.10     0.00        5     0.00     0.00  decode_URI
  0.00     47.10     0.00        5     0.00     0.00  filter_chain_Delete
  0.00     47.10     0.00        5     0.00     0.00  filter_chain_New
  0.00     47.10     0.00        5     0.00     0.00  input_SendEventEsDel
  0.00     47.10     0.00        5     0.00     0.00  libvlc_media_release
  0.00     47.10     0.00        5     0.00     0.00  libvlc_media_retain
  0.00     47.10     0.00        5     0.00     0.00  vlc_event_attach
  0.00     47.10     0.00        5     0.00     0.00  vlc_mutex_init_recursive
  0.00     47.10     0.00        5     0.00     0.00  vlc_opendir
  0.00     47.10     0.00        5     0.00     0.00  vout_control_WaitEmpty
  0.00     47.10     0.00        4     0.00     0.00  AboveCallback
  0.00     47.10     0.00        4     0.00     0.00  Control
  0.00     47.10     0.00        4     0.00     0.00  Dummy_Select
  0.00     47.10     0.00        4     0.00     0.00  FT_Get_Module_Interface
  0.00     47.10     0.00        4     0.00     0.00  FT_Stream_ExtractFrame
  0.00     47.10     0.00        4     0.00     0.00  FT_Stream_Read
  0.00     47.10     0.00        4     0.00     0.00  FT_Stream_ReadAt
  0.00     47.10     0.00        4     0.00     0.00  InputItemFindCat
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxCodecID::Create()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxCodecID::KaxCodecID()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxCodecID::~KaxCodecID()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::Create()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::KaxTrackUID()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::~KaxTrackUID()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackType::Create()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackType::KaxTrackType()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackType::~KaxTrackType()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::Create()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::KaxTrackNumber()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::~KaxTrackNumber()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxInfo::Create()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxInfo::KaxInfo()
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxInfo::~KaxInfo()
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlString::EbmlString()
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlVoid::Create()
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlVoid::EbmlVoid()
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlVoid::~EbmlVoid()
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision)
  0.00     47.10     0.00        4     0.00     0.00  libebml::UTFstring::UpdateFromUTF8()
  0.00     47.10     0.00        4     0.00     0.00  libebml::UTFstring::SetUTF8(std::string const&)
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxCodecID::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxDateUTC::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxDuration::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackUID::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxMuxingApp::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackType::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxSegmentUID::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackEntry::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxWritingApp::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackNumber::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxCodecPrivate::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTimecodeScale::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libmatroska::KaxTrackDefaultDuration::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlString::ValidateSize() const
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlUInteger::operator unsigned char() const
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlUnicodeString::ValidateSize() const
  0.00     47.10     0.00        4     0.00     0.00  libebml::EbmlVoid::Generic() const
  0.00     47.10     0.00        4     0.00     0.00  es_format_InitFromVideo
  0.00     47.10     0.00        4     0.00     0.00  filter_chain_GetFmtOut
  0.00     47.10     0.00        4     0.00     0.00  find_unicode_charmap
  0.00     47.10     0.00        4     0.00     0.00  ft_realloc
  0.00     47.10     0.00        4     0.00     0.00  info_category_AddInfo
  0.00     47.10     0.00        4     0.00     0.00  input_ChangeState
  0.00     47.10     0.00        4     0.00     0.00  input_DecoderStopWait
  0.00     47.10     0.00        4     0.00     0.00  input_SendEventEsSelect
  0.00     47.10     0.00        4     0.00     0.00  input_SendEventMetaInfo
  0.00     47.10     0.00        4     0.00     0.00  input_item_GetMeta
  0.00     47.10     0.00        4     0.00     0.00  input_item_ReplaceInfos
  0.00     47.10     0.00        4     0.00     0.00  input_item_UpdateTracksInfo
  0.00     47.10     0.00        4     0.00     0.00  input_resource_RequestVout
  0.00     47.10     0.00        4     0.00     0.00  make_filters_from_proto
  0.00     47.10     0.00        4     0.00     0.00  make_path
  0.00     47.10     0.00        4     0.00     0.00  picture_New
  0.00     47.10     0.00        4     0.00     0.00  set_state
  0.00     47.10     0.00        4     0.00     0.00  tt_cmap4_init
  0.00     47.10     0.00        4     0.00     0.00  tt_cmap4_validate
  0.00     47.10     0.00        4     0.00     0.00  tt_face_load_hhea
  0.00     47.10     0.00        4     0.00     0.00  tt_name_entry_ascii_from_utf16
  0.00     47.10     0.00        4     0.00     0.00  var_Set
  0.00     47.10     0.00        4     0.00     0.00  vlc_clone
  0.00     47.10     0.00        4     0.00     0.00  vlc_clone_attr
  0.00     47.10     0.00        4     0.00     0.00  vlc_join
  0.00     47.10     0.00        4     0.00     0.00  vlc_sem_destroy
  0.00     47.10     0.00        4     0.00     0.00  vlc_sem_init
  0.00     47.10     0.00        4     0.00     0.00  vlc_sem_post
  0.00     47.10     0.00        4     0.00     0.00  vlc_sem_wait
  0.00     47.10     0.00        4     0.00     0.00  vout_ControlChangeWindowState
  0.00     47.10     0.00        4     0.00     0.00  vout_SetWindowState
  0.00     47.10     0.00        4     0.00     0.00  vout_display_Control
  0.00     47.10     0.00        3     0.00     0.00  Create
  0.00     47.10     0.00        3     0.00     0.00  Flush
  0.00     47.10     0.00        3     0.00     0.00  InputDelCallbacks
  0.00     47.10     0.00        3     0.00     0.00  Open
  0.00     47.10     0.00        3     0.00     0.00  Open
  0.00     47.10     0.00        3     0.00     0.00  Peek
  0.00     47.10     0.00        3     0.00     0.00  VarListAdd
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxSegmentUID::~KaxSegmentUID()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::Create()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::KaxTrackMinCache()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxTrackMinCache::~KaxTrackMinCache()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::Create()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxSeek::Create()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxSeek::KaxSeek()
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxSeek::~KaxSeek()
  0.00     47.10     0.00        3     0.00     0.18  matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long)
  0.00     47.10     0.00        3     0.00     0.00  libebml::EbmlString::EbmlString(std::string const&)
  0.00     47.10     0.00        3     0.00     0.00  libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&)
  0.00     47.10     0.00        3     0.00     0.00  libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxSeekHead::Generic() const
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxSeekPosition::Generic() const
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxSeekID::ValidateSize() const
  0.00     47.10     0.00        3     0.00     0.00  libmatroska::KaxSeekID::Generic() const
  0.00     47.10     0.00        3     0.00     0.00  libebml::EMaxIdLength::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        3     0.00     0.00  libebml::EReadVersion::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        3     0.00     0.00  libebml::EMaxSizeLength::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        3     0.00     0.00  libebml::EDocType::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        3     0.00     0.00  libebml::EVersion::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        3     0.00     0.00  libebml::EbmlFloat::ValidateSize() const
  0.00     47.10     0.00        3     0.00     0.00  aout_OutputFlush
  0.00     47.10     0.00        3     0.00     0.00  av_opt_set_defaults
  0.00     47.10     0.00        3     0.00     0.00  config_GetType
  0.00     47.10     0.00        3     0.00     0.00  convert_omx_to_profile_idc
  0.00     47.10     0.00        3     0.00     0.00  ff_init_ff_sine_windows
  0.00     47.10     0.00        3     0.00     0.00  ff_sine_window_init
  0.00     47.10     0.00        3     0.00     0.00  input_SendEventMeta
  0.00     47.10     0.00        3     0.00     0.00  input_SendEventState
  0.00     47.10     0.00        3     0.00     0.00  input_item_AddOption
  0.00     47.10     0.00        3     0.00     0.00  input_item_SetErrorWhenReading
  0.00     47.10     0.00        3     0.00     0.00  input_item_SetMeta
  0.00     47.10     0.00        3     0.00     0.00  libvlc_media_add_option
  0.00     47.10     0.00        3     0.00     0.00  libvlc_media_add_option_flag
  0.00     47.10     0.00        3     0.00     0.00  libvlc_media_set_state
  0.00     47.10     0.00        3     0.00     0.00  libvlc_retain
  0.00     47.10     0.00        3     0.00     0.00  picture_pool_Delete
  0.00     47.10     0.00        3     0.00     0.00  stream_CommonDelete
  0.00     47.10     0.00        3     0.00     0.00  stream_CommonNew
  0.00     47.10     0.00        3     0.00     0.00  var_OptionParse
  0.00     47.10     0.00        3     0.00     0.00  video_format_IsSimilar
  0.00     47.10     0.00        3     0.00     0.00  vlc_inhibit_Destroy
  0.00     47.10     0.00        3     0.00     0.00  vlc_meta_New
  0.00     47.10     0.00        3     0.00     0.00  vlc_meta_Set
  0.00     47.10     0.00        3     0.00     0.00  vlc_object_set_destructor
  0.00     47.10     0.00        3     0.00     0.00  vout_Flush
  0.00     47.10     0.00        3     0.00     0.00  vout_control_PushTime
  0.00     47.10     0.00        3     0.00     0.00  vout_control_PushVoid
  0.00     47.10     0.00        2     0.00     0.00  Add
  0.00     47.10     0.00        2     0.00     0.00  ArchitectureSpecificCopyHooksDestroy
  0.00     47.10     0.00        2     0.00     0.00  AspectCallback
  0.00     47.10     0.00        2     0.00     0.00  CmdExecuteDel
  0.00     47.10     0.00        2     0.00     0.00  ControlPause
  0.00     47.10     0.00        2     0.00     0.01  Create
  0.00     47.10     0.00        2     0.00     0.00  CreateDecoder
  0.00     47.10     0.00        2     0.00     0.00  CreateFilter
  0.00     47.10     0.00        2     0.00     0.00  CropCallback
  0.00     47.10     0.00        2     0.00     0.00  DecoderBlockFlushNew
  0.00     47.10     0.00        2     0.00     0.00  DecoderFlush
  0.00     47.10     0.00        2     0.00   478.74  DecoderThread
  0.00     47.10     0.00        2     0.00     0.00  DecoderUpdateFormatLocked
  0.00     47.10     0.00        2     0.00     0.00  DeinterlaceCallback
  0.00     47.10     0.00        2     0.00     0.00  Del
  0.00     47.10     0.00        2     0.00     0.00  Destroy
  0.00     47.10     0.00        2     0.00     0.00  EsCreateDecoder
  0.00     47.10     0.00        2     0.00     0.01  EsOutAdd
  0.00     47.10     0.00        2     0.00     0.00  EsOutDel
  0.00     47.10     0.00        2     0.00     0.00  EsOutProgramFind
  0.00     47.10     0.00        2     0.00     0.00  EsSelect
  0.00     47.10     0.00        2     0.00     0.00  EsUnselect
  0.00     47.10     0.00        2     0.00     0.00  FT_Add_Default_Modules
  0.00     47.10     0.00        2     0.00     0.00  FT_Done_Face
  0.00     47.10     0.00        2     0.00     0.00  FT_Done_FreeType
  0.00     47.10     0.00        2     0.00     0.00  FT_Done_GlyphSlot
  0.00     47.10     0.00        2     0.00     0.00  FT_Done_Library
  0.00     47.10     0.00        2     0.00     0.00  FT_Done_Memory
  0.00     47.10     0.00        2     0.00     0.00  FT_GlyphLoader_Adjust_Points
  0.00     47.10     0.00        2     0.00     0.00  FT_GlyphLoader_CreateExtra
  0.00     47.10     0.00        2     0.00     0.00  FT_Init_FreeType
  0.00     47.10     0.00        2     0.00     0.00  FT_New_Face
  0.00     47.10     0.00        2     0.00     0.00  FT_New_GlyphSlot
  0.00     47.10     0.00        2     0.00     0.00  FT_New_Library
  0.00     47.10     0.00        2     0.00     0.00  FT_New_Memory
  0.00     47.10     0.00        2     0.00     0.00  FT_New_Size
  0.00     47.10     0.00        2     0.00     0.00  FT_Open_Face
  0.00     47.10     0.00        2     0.00     0.00  FT_Request_Metrics
  0.00     47.10     0.00        2     0.00     0.00  FT_Request_Size
  0.00     47.10     0.00        2     0.00     0.00  FT_Select_Charmap
  0.00     47.10     0.00        2     0.00     0.00  FT_Set_Pixel_Sizes
  0.00     47.10     0.00        2     0.00     0.00  FT_Stream_Close
  0.00     47.10     0.00        2     0.00     0.00  FT_Stream_Free
  0.00     47.10     0.00        2     0.00     0.00  FT_Stream_New
  0.00     47.10     0.00        2     0.00     0.00  FT_Stream_Open
  0.00     47.10     0.00        2     0.00     0.00  FT_Stroker_Done
  0.00     47.10     0.00        2     0.00     0.00  FT_Stroker_New
  0.00     47.10     0.00        2     0.00     0.00  FullscreenCallback
  0.00     47.10     0.00        2     0.00     0.00  GetFontSize
  0.00     47.10     0.00        2     0.00     0.00  Get_Interface
  0.00     47.10     0.00        2     0.00     0.00  LanguageGetCode
  0.00     47.10     0.00        2     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        2     0.00     0.00  OpenScaler
  0.00     47.10     0.00        2     0.00     0.00  ScaleCallback
  0.00     47.10     0.00        2     0.00     0.00  SpuRenderCreateAndLoadScale
  0.00     47.10     0.00        2     0.00     0.00  SpuRenderCreateAndLoadText
  0.00     47.10     0.00        2     0.00     0.00  SubFilterCallback
  0.00     47.10     0.00        2     0.00     0.00  SubMarginCallback
  0.00     47.10     0.00        2     0.00     0.00  SubSourceCallback
  0.00     47.10     0.00        2     0.00     0.00  T1_Driver_Done
  0.00     47.10     0.00        2     0.00     0.00  T1_Driver_Init
  0.00     47.10     0.00        2     0.00     0.00  T42_Driver_Done
  0.00     47.10     0.00        2     0.00     0.00  T42_Driver_Init
  0.00     47.10     0.00        2     0.00     0.00  T42_Get_Interface
  0.00     47.10     0.00        2     0.00     0.00  TT_Done_Context
  0.00     47.10     0.00        2     0.00     0.00  TT_New_Context
  0.00     47.10     0.00        2     0.00     0.00  ThreadChangeFilters
  0.00     47.10     0.00        2     0.00     0.00  UpdateBufferFunctions
  0.00     47.10     0.00        2     0.00     0.00  VideoFilterCallback
  0.00     47.10     0.00        2     0.00     0.00  WallPaperCallback
  0.00     47.10     0.00        2     0.00     0.00  ZoomCallback
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::KaxDateUTC()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::~KaxDateUTC()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxDuration::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxDuration::KaxDuration()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxDuration::~KaxDuration()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::KaxSeekHead()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSeekHead::~KaxSeekHead()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::KaxSegmentUID()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::KaxTrackEntry()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::~KaxTrackEntry()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::KaxSeekPreRoll()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::KaxCodecPrivate()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::~KaxCodecPrivate()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::KaxAudioChannels()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::~KaxAudioChannels()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::KaxTrackFlagForced()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCues::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCues::KaxCues()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCues::~KaxCues()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCues::~KaxCues()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTracks::Create()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTracks::KaxTracks()
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTracks::~KaxTracks()
  0.00     47.10     0.00        2     0.00     0.00  event_thread_t::ResetPci()
  0.00     47.10     0.00        2     0.00     0.01  matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*)
  0.00     47.10     0.00        2     0.00     0.00  matroska_segment_c::TrackInit(mkv_track_t*)
  0.00     47.10     0.00        2     0.00     0.00  TagLib::RefCounter::ref()
  0.00     47.10     0.00        2     0.00     0.00  TagLib::String::String()
  0.00     47.10     0.00        2     0.00     0.00  TagLib::FileRef::FileRefPrivate::~FileRefPrivate()
  0.00     47.10     0.00        2     0.00     0.00  TagLib::FileRef::~FileRef()
  0.00     47.10     0.00        2     0.00     0.00  TagLib::FileRef::~FileRef()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool)
  0.00     47.10     0.00        2     0.00     0.00  libebml::EMaxIdLength::Create()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EMaxIdLength::EMaxIdLength()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EMaxIdLength::~EMaxIdLength()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EReadVersion::Create()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EReadVersion::EReadVersion()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EReadVersion::~EReadVersion()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EMaxSizeLength::Create()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EMaxSizeLength::EMaxSizeLength()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EMaxSizeLength::~EMaxSizeLength()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeVersion::Create()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeVersion::EDocTypeVersion()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeVersion::~EDocTypeVersion()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::Create()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::EDocTypeReadVersion()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::~EDocTypeReadVersion()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocType::Create()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocType::EDocType()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocType::~EDocType()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EVersion::Create()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EVersion::EVersion()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EVersion::~EVersion()
  0.00     47.10     0.00        2     0.00     0.00  libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode)
  0.00     47.10     0.00        2     0.00     0.00  libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision)
  0.00     47.10     0.00        2     0.00     0.00  libebml::UTFstring::UpdateFromUCS2()
  0.00     47.10     0.00        2     0.00     0.00  libebml::UTFstring::UTFstring(libebml::UTFstring const&)
  0.00     47.10     0.00        2     0.00     0.00  libebml::UTFstring::operator=(wchar_t const*)
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCodecID::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxDuration::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackType::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::ValidateSize() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackAudio::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackVideo::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxAudioChannels::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackLanguage::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackMinCache::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackFlagLacing::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelWidth::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoPixelHeight::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxAudioSamplingFreq::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoDisplayWidth::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxVideoDisplayHeight::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxInfo::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libmatroska::KaxTracks::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EMaxIdLength::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EReadVersion::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EMaxSizeLength::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeVersion::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeVersion::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EDocType::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EVersion::Generic() const
  0.00     47.10     0.00        2     0.00     0.00  libebml::EbmlDate::ValidateSize() const
  0.00     47.10     0.00        2     0.00     0.00  std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&)
  0.00     47.10     0.00        2     0.00     0.00  std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&)
  0.00     47.10     0.00        2     0.00     0.00  af_autofitter_done
  0.00     47.10     0.00        2     0.00     0.00  af_autofitter_init
  0.00     47.10     0.00        2     0.00     0.00  af_get_interface
  0.00     47.10     0.00        2     0.00     0.00  af_glyph_hints_done
  0.00     47.10     0.00        2     0.00     0.00  aout_CheckChannelExtraction
  0.00     47.10     0.00        2     0.00     0.00  aout_DecFlush
  0.00     47.10     0.00        2     0.00     0.00  aout_FiltersPipelineDestroy
  0.00     47.10     0.00        2     0.00     0.00  aout_FormatPrint
  0.00     47.10     0.00        2     0.00     0.00  av_buffer_alloc
  0.00     47.10     0.00        2     0.00     0.00  av_buffer_default_free
  0.00     47.10     0.00        2     0.00     0.00  av_codec_is_encoder
  0.00     47.10     0.00        2     0.00     0.00  av_d2q
  0.00     47.10     0.00        2     0.00     0.00  av_dict_free
  0.00     47.10     0.00        2     0.00     0.00  av_dict_get
  0.00     47.10     0.00        2     0.00     0.00  av_gcd
  0.00     47.10     0.00        2     0.00     0.00  av_opt_set_q
  0.00     47.10     0.00        2     0.00     0.00  av_reduce
  0.00     47.10     0.00        2     0.00     0.00  avcodec_is_open
  0.00     47.10     0.00        2     0.00     0.00  bdf_driver_requester
  0.00     47.10     0.00        2     0.00     0.00  block_FifoNew
  0.00     47.10     0.00        2     0.00     0.00  block_FifoRelease
  0.00     47.10     0.00        2     0.00     0.00  cff_driver_done
  0.00     47.10     0.00        2     0.00     0.00  cff_driver_init
  0.00     47.10     0.00        2     0.00     0.00  cff_get_interface
  0.00     47.10     0.00        2     0.00     0.00  cid_driver_done
  0.00     47.10     0.00        2     0.00     0.00  cid_driver_init
  0.00     47.10     0.00        2     0.00     0.00  cid_get_interface
  0.00     47.10     0.00        2     0.00     0.00  config_ChainCreate
  0.00     47.10     0.00        2     0.00     0.00  decoder_New
  0.00     47.10     0.00        2     0.00     0.00  demux_New
  0.00     47.10     0.00        2     0.00     0.00  destroy_charmaps
  0.00     47.10     0.00        2     0.00     0.00  destroy_face
  0.00     47.10     0.00        2     0.00     0.00  destroy_size
  0.00     47.10     0.00        2     0.00     0.00  es_format_IsSimilar
  0.00     47.10     0.00        2     0.00     0.00  ff_getSwsFunc
  0.00     47.10     0.00        2     0.00     0.00  ff_kbd_window_init
  0.00     47.10     0.00        2     0.00     0.00  ff_sws_init_input_funcs
  0.00     47.10     0.00        2     0.00     0.00  ff_sws_init_output_funcs
  0.00     47.10     0.00        2     0.00     0.00  ft_ansi_stream_close
  0.00     47.10     0.00        2     0.00     0.00  ft_black_done
  0.00     47.10     0.00        2     0.00     0.00  ft_black_new
  0.00     47.10     0.00        2     0.00     0.00  ft_black_reset
  0.00     47.10     0.00        2     0.00     0.00  ft_glyphslot_done
  0.00     47.10     0.00        2     0.00     0.00  ft_glyphslot_free_bitmap
  0.00     47.10     0.00        2     0.00     0.00  ft_module_get_service
  0.00     47.10     0.00        2     0.00     0.00  ft_raster1_init
  0.00     47.10     0.00        2     0.00     0.00  ft_recompute_scaled_metrics
  0.00     47.10     0.00        2     0.00     0.00  get_android_opaque_mutex
  0.00     47.10     0.00        2     0.00     0.00  input_DecoderDelete
  0.00     47.10     0.00        2     0.00     0.00  input_DecoderNew
  0.00     47.10     0.00        2     0.00     0.00  input_DecoderStartWait
  0.00     47.10     0.00        2     0.00     0.01  input_DecoderWait
  0.00     47.10     0.00        2     0.00     0.00  input_SendEventAout
  0.00     47.10     0.00        2     0.00     0.00  input_SendEventEsAdd
  0.00     47.10     0.00        2     0.00     0.00  input_SendEventTeletextSelect
  0.00     47.10     0.00        2     0.00     0.00  input_SendEventVout
  0.00     47.10     0.00        2     0.00     0.00  input_clock_SetJitter
  0.00     47.10     0.00        2     0.00     0.00  input_item_GetName
  0.00     47.10     0.00        2     0.00     0.00  input_item_Hold
  0.00     47.10     0.00        2     0.00     0.00  input_item_Release
  0.00     47.10     0.00        2     0.00     0.01  input_resource_GetAout
  0.00     47.10     0.00        2     0.00     0.00  input_resource_HoldVouts
  0.00     47.10     0.00        2     0.00     0.00  input_resource_PutAout
  0.00     47.10     0.00        2     0.00     0.00  input_resource_SetInput
  0.00     47.10     0.00        2     0.00     0.00  input_resource_TerminateVout
  0.00     47.10     0.00        2     0.00     0.00  jni_SetAndroidSurfaceSize
  0.00     47.10     0.00        2     0.00     0.00  jni_SetAndroidSurfaceSizeEnv
  0.00     47.10     0.00        2     0.00     0.00  libvlc_event_manager_new
  0.00     47.10     0.00        2     0.00     0.00  open_face
  0.00     47.10     0.00        2     0.00     0.00  pcf_driver_requester
  0.00     47.10     0.00        2     0.00     0.00  pfr_get_service
  0.00     47.10     0.00        2     0.00     0.00  picture_pool_NewExtended
  0.00     47.10     0.00        2     0.00     0.00  ps_hinter_done
  0.00     47.10     0.00        2     0.00     0.00  ps_hinter_init
  0.00     47.10     0.00        2     0.00     0.00  psnames_get_service
  0.00     47.10     0.00        2     0.00     0.00  release_input_thread
  0.00     47.10     0.00        2     0.00     0.00  sfnt_done_face
  0.00     47.10     0.00        2     0.00     0.00  sfnt_init_face
  0.00     47.10     0.00        2     0.00     0.00  sfnt_load_face
  0.00     47.10     0.00        2     0.00     0.00  spu_Attach
  0.00     47.10     0.00        2     0.00     0.00  spu_ChangeFilters
  0.00     47.10     0.00        2     0.00     0.00  spu_ChangeMargin
  0.00     47.10     0.00        2     0.00     0.00  spu_ChangeSources
  0.00     47.10     0.00        2     0.00     0.00  spu_get_attachments
  0.00     47.10     0.00        2     0.00     0.00  strcpy_strip_ext
  0.00     47.10     0.00        2     0.00     0.00  strcpy_trim
  0.00     47.10     0.00        2     0.00     0.00  stream_Delete
  0.00     47.10     0.00        2     0.00     0.00  stream_FilterNew
  0.00     47.10     0.00        2     0.00     0.00  sws_alloc_context
  0.00     47.10     0.00        2     0.00     0.00  sws_freeContext
  0.00     47.10     0.00        2     0.00     0.00  sws_getContext
  0.00     47.10     0.00        2     0.00     0.00  sws_init_context
  0.00     47.10     0.00        2     0.00     0.00  sws_isSupportedInput
  0.00     47.10     0.00        2     0.00     0.00  sws_isSupportedOutput
  0.00     47.10     0.00        2     0.00     0.00  sws_setColorspaceDetails
  0.00     47.10     0.00        2     0.00     0.00  tt_cmap6_validate
  0.00     47.10     0.00        2     0.00     0.00  tt_cmap_init
  0.00     47.10     0.00        2     0.00     0.00  tt_driver_done
  0.00     47.10     0.00        2     0.00     0.00  tt_driver_init
  0.00     47.10     0.00        2     0.00     0.00  tt_face_build_cmaps
  0.00     47.10     0.00        2     0.00     0.00  tt_face_done
  0.00     47.10     0.00        2     0.00     0.00  tt_face_free_eblc
  0.00     47.10     0.00        2     0.00     0.00  tt_face_free_name
  0.00     47.10     0.00        2     0.00     0.00  tt_face_free_ps_names
  0.00     47.10     0.00        2     0.00     0.00  tt_face_init
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_cmap
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_cvt
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_eblc
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_font_dir
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_gasp
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_generic_header
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_head
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_hmtx
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_kern
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_maxp
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_name
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_os2
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_pclt
  0.00     47.10     0.00        2     0.00     0.00  tt_face_load_post
  0.00     47.10     0.00        2     0.00     0.00  tt_get_interface
  0.00     47.10     0.00        2     0.00     0.00  tt_size_done
  0.00     47.10     0.00        2     0.00     0.00  tt_size_init
  0.00     47.10     0.00        2     0.00     0.00  tt_size_request
  0.00     47.10     0.00        2     0.00     0.00  tt_size_reset
  0.00     47.10     0.00        2     0.00     0.00  tt_slot_init
  0.00     47.10     0.00        2     0.00     0.00  var_Get
  0.00     47.10     0.00        2     0.00     0.00  video_format_FixRgb
  0.00     47.10     0.00        2     0.00     0.00  vlc_cancel
  0.00     47.10     0.00        2     0.00     0.00  vlc_meta_Delete
  0.00     47.10     0.00        2     0.00     0.00  vlc_meta_Merge
  0.00     47.10     0.00        2     0.00     0.00  vout_ControlChangeCropRatio
  0.00     47.10     0.00        2     0.00     0.00  vout_ControlChangeFilters
  0.00     47.10     0.00        2     0.00     0.00  vout_ControlChangeSampleAspectRatio
  0.00     47.10     0.00        2     0.00     0.00  vout_ControlChangeSubFilters
  0.00     47.10     0.00        2     0.00     0.00  vout_ControlChangeSubMargin
  0.00     47.10     0.00        2     0.00     0.00  vout_ControlChangeSubSources
  0.00     47.10     0.00        2     0.00     0.00  vout_ControlChangeZoom
  0.00     47.10     0.00        2     0.00     0.01  vout_IntfReinit
  0.00     47.10     0.00        2     0.00     0.03  vout_Request
  0.00     47.10     0.00        2     0.00     0.00  vout_SetDisplayAspect
  0.00     47.10     0.00        2     0.00     0.00  vout_SetDisplayCrop
  0.00     47.10     0.00        2     0.00     0.00  vout_SetDisplayZoom
  0.00     47.10     0.00        2     0.00     0.00  winfnt_get_service
  0.00     47.10     0.00        2     0.00     0.00  wmemcpy
  0.00     47.10     0.00        1     0.00     0.00  AStreamDestroy
  0.00     47.10     0.00        1     0.00     0.00  AStreamPrebufferStream
  0.00     47.10     0.00        1     0.00     0.00  Activate
  0.00     47.10     0.00        1     0.00     0.00  Activate
  0.00     47.10     0.00        1     0.00     0.00  Activate
  0.00     47.10     0.00        1     0.00     0.00  Activate
  0.00     47.10     0.00        1     0.00     0.00  Activate
  0.00     47.10     0.00        1     0.00     0.00  Activate
  0.00     47.10     0.00        1     0.00     0.00  Activate
  0.00     47.10     0.00        1     0.00     0.00  Activate
  0.00     47.10     0.00        1     0.00     0.00  ArchitectureSpecificCopyHooks
  0.00     47.10     0.00        1     0.00     0.00  Close
  0.00     47.10     0.00        1     0.00     0.00  Close
  0.00     47.10     0.00        1     0.00     0.00  Close
  0.00     47.10     0.00        1     0.00     0.00  Close
  0.00     47.10     0.00        1     0.00     0.00  CloseDecoder
  0.00     47.10     0.00        1     0.00     0.00  CloseDecoder
  0.00     47.10     0.00        1     0.00     0.00  CloseScaler
  0.00     47.10     0.00        1     0.00     0.00  Create
  0.00     47.10     0.00        1     0.00     0.00  Create
  0.00     47.10     0.00        1     0.00     0.00  Create
  0.00     47.10     0.00        1     0.00     0.00  Create
  0.00     47.10     0.00        1     0.00     0.07  Create
  0.00     47.10     0.00        1     0.00     0.00  CreateResampler
  0.00     47.10     0.00        1     0.00     0.00  DecoderOpen
  0.00     47.10     0.00        1     0.00     0.00  DecoderOpen
  0.00     47.10     0.00        1     0.00     0.00  DecoderOpen
  0.00     47.10     0.00        1     0.00     0.00  DeinterlaceIsPresent
  0.00     47.10     0.00        1     0.00     0.00  Destroy
  0.00     47.10     0.00        1     0.00     0.00  Destructor
  0.00     47.10     0.00        1     0.00     0.00  DisplayNew
  0.00     47.10     0.00        1     0.00     0.02  End
  0.00     47.10     0.00        1     0.00     0.00  EnsureUTF8
  0.00     47.10     0.00        1     0.00     0.00  EqualizerCallback
  0.00     47.10     0.00        1     0.00     0.00  EsOutDelete
  0.00     47.10     0.00        1     0.00     0.01  EsOutProgramAdd
  0.00     47.10     0.00        1     0.00     0.01  EsOutProgramSelect
  0.00     47.10     0.00        1     0.00     0.00  FileClose
  0.00     47.10     0.00        1     0.00     0.00  FileOpen
  0.00     47.10     0.00        1     0.00     0.00  FilterAllocationClean
  0.00     47.10     0.00        1     0.00     0.00  FilterAllocationInit
  0.00     47.10     0.00        1     0.00     0.00  GetFfmpegCodec
  0.00     47.10     0.00        1     0.00     0.00  GetOmxRole
  0.00     47.10     0.00        1     0.00     0.00  GetVlcChromaFormat
  0.00     47.10     0.00        1     0.00     0.00  IgnoreOmxDecoderPadding
  0.00     47.10     0.00        1     0.00     0.00  Init
  0.00     47.10     0.00        1     0.00     0.04  Init
  0.00     47.10     0.00        1     0.00     0.00  InitAudioDec
  0.00     47.10     0.00        1     0.00     0.00  InitOmxCore
  0.00     47.10     0.00        1     0.00     0.00  InitTitle
  0.00     47.10     0.00        1     0.00     0.01  InputSourceClean
  0.00     47.10     0.00        1     0.00     0.02  InputSourceInit
  0.00     47.10     0.00        1     0.00     0.00  LoadNativeWindowAPI
  0.00     47.10     0.00        1     0.00     0.00  MRLSeekPoint
  0.00     47.10     0.00        1     0.00    46.95  MainLoop
  0.00     47.10     0.00        1     0.00     0.00  ObjectKillChildrens
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.01  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  Open
  0.00     47.10     0.00        1     0.00     0.00  OpenBzip2
  0.00     47.10     0.00        1     0.00     0.00  OpenCommon
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00    10.01  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenDecoder
  0.00     47.10     0.00        1     0.00     0.00  OpenFilter
  0.00     47.10     0.00        1     0.00     0.00  OpenFilter
  0.00     47.10     0.00        1     0.00     0.00  OpenFilter
  0.00     47.10     0.00        1     0.00     0.00  OpenGeneric
  0.00     47.10     0.00        1     0.00     0.00  OpenGzip
  0.00     47.10     0.00        1     0.00     0.00  OpenXZ
  0.00     47.10     0.00        1     0.00     0.00  Probe
  0.00     47.10     0.00        1     0.00     0.00  RarProbe
  0.00     47.10     0.00        1     0.00     0.00  RarStreamOpen
  0.00     47.10     0.00        1     0.00     0.00  ReplayGainCallback
  0.00     47.10     0.00        1     0.00    47.01  Run
  0.00     47.10     0.00        1     0.00     0.00  Start
  0.00     47.10     0.00        1     0.00     0.00  Stop
  0.00     47.10     0.00        1     0.00     0.00  StreamDelete
  0.00     47.10     0.00        1     0.00     0.00  StreamOpen
  0.00     47.10     0.00        1     0.00   111.29  Thread
  0.00     47.10     0.00        1     0.00     0.01  ThreadStart
  0.00     47.10     0.00        1     0.00     0.00  ThreadStop
  0.00     47.10     0.00        1     0.00     0.00  TryFormat
  0.00     47.10     0.00        1     0.00     0.00  UpdatePtsDelay
  0.00     47.10     0.00        1     0.00     0.00  VoutDestructor
  0.00     47.10     0.00        1     0.00     0.00  VoutDisplayCreateRender
  0.00     47.10     0.00        1     0.00     0.00  VoutDisplayEvent
  0.00     47.10     0.00        1     0.00     0.00  VoutValidateFormat
  0.00     47.10     0.00        1     0.00     0.00  fill_extra_data(mkv_track_t*, unsigned int)
  0.00     47.10     0.00        1     0.00     0.85  Open(vlc_object_t*)
  0.00     47.10     0.00        1     0.00     0.00  Open(vlc_object_t*)
  0.00     47.10     0.00        1     0.00     0.01  Close(vlc_object_t*)
  0.00     47.10     0.00        1     0.00     0.00  ReadMeta(vlc_object_t*)
  0.00     47.10     0.00        1     0.00     0.00  EbmlParser::Reset(demux_t*)
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::FreeUnused()
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::PreloadLinked()
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::PreparePlayback(virtual_segment_c*)
  0.00     47.10     0.00        1     0.00     0.19  demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool)
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::InitUi()
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::CleanUi()
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::~demux_sys_t()
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::~demux_sys_t()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxSegment::Create()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxSegment::KaxSegment()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxSegment::~KaxSegment()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::Create()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::KaxTrackAudio()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::~KaxTrackAudio()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::Create()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::KaxTrackVideo()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::~KaxTrackVideo()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::Create()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::KaxTrackLanguage()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::~KaxTrackLanguage()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::Create()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::Create()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::Create()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced()
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced()
  0.00     47.10     0.00        1     0.00     0.00  event_thread_t::~event_thread_t()
  0.00     47.10     0.00        1     0.00     0.00  event_thread_t::~event_thread_t()
  0.00     47.10     0.00        1     0.00     0.00  virtual_chapter_c::PublishChapters(input_title_t&, int&, int)
  0.00     47.10     0.00        1     0.00     0.00  virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool)
  0.00     47.10     0.00        1     0.00     0.00  virtual_chapter_c::~virtual_chapter_c()
  0.00     47.10     0.00        1     0.00     0.00  virtual_edition_c::GetMainName()
  0.00     47.10     0.00        1     0.00     0.00  virtual_edition_c::retimeChapters()
  0.00     47.10     0.00        1     0.00     0.00  virtual_edition_c::PublishChapters(input_title_t&, int&, int)
  0.00     47.10     0.00        1     0.00     0.00  virtual_edition_c::retimeSubChapters(virtual_chapter_c*)
  0.00     47.10     0.00        1     0.00     0.00  virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*)
  0.00     47.10     0.00        1     0.00     0.00  virtual_edition_c::~virtual_edition_c()
  0.00     47.10     0.00        1     0.00     0.00  virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long)
  0.00     47.10     0.00        1     0.00     0.00  virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*)
  0.00     47.10     0.00        1     0.00     0.00  virtual_segment_c::~virtual_segment_c()
  0.00     47.10     0.00        1     0.00     0.11  matroska_segment_c::ParseTracks(libmatroska::KaxTracks*)
  0.00     47.10     0.00        1     0.00     0.09  matroska_segment_c::ParseCluster(bool)
  0.00     47.10     0.00        1     0.00     0.56  matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*)
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::InformationCreate()
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*)
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::ComputeTrackPriority()
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::Seek(long long, long long, long long)
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::Select(long long)
  0.00     47.10     0.00        1     0.00     0.66  matroska_segment_c::Preload()
  0.00     47.10     0.00        1     0.00     0.33  matroska_segment_c::LoadCues(libmatroska::KaxCues*)
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::UnSelect()
  0.00     47.10     0.00        1     0.00     0.09  matroska_segment_c::ParseInfo(libmatroska::KaxInfo*)
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&)
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::~matroska_segment_c()
  0.00     47.10     0.00        1     0.00     0.00  matroska_segment_c::~matroska_segment_c()
  0.00     47.10     0.00        1     0.00     0.00  vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool)
  0.00     47.10     0.00        1     0.00     0.00  vlc_stream_io_callback::~vlc_stream_io_callback()
  0.00     47.10     0.00        1     0.00     0.00  dash::xml::DOMParser::isDash(stream_t*)
  0.00     47.10     0.00        1     0.00     0.00  TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type)
  0.00     47.10     0.00        1     0.00     0.00  TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type)
  0.00     47.10     0.00        1     0.00     0.00  TagLib::String::operator=(TagLib::String const&)
  0.00     47.10     0.00        1     0.00     0.00  TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle)
  0.00     47.10     0.00        1     0.00     0.00  TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle)
  0.00     47.10     0.00        1     0.00     0.00  TagLib::FileRef::FileRef()
  0.00     47.10     0.00        1     0.00     0.00  TagLib::FileRef::operator=(TagLib::FileRef const&)
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&)
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlStream::EbmlStream(libebml::IOCallback&)
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlStream::~EbmlStream()
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlString::EbmlString(libebml::EbmlString const&)
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&)
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlHead::Create()
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlHead::EbmlHead()
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlHead::~EbmlHead()
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::FindSegment(libebml::EbmlBinary const&) const
  0.00     47.10     0.00        1     0.00     0.00  demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const
  0.00     47.10     0.00        1     0.00     0.00  libmatroska::KaxCues::Generic() const
  0.00     47.10     0.00        1     0.00     0.00  TagLib::String::rfind(TagLib::String const&, int) const
  0.00     47.10     0.00        1     0.00     0.00  TagLib::String::upper() const
  0.00     47.10     0.00        1     0.00     0.00  TagLib::String::substr(unsigned int, unsigned int) const
  0.00     47.10     0.00        1     0.00     0.00  TagLib::String::isEmpty() const
  0.00     47.10     0.00        1     0.00     0.00  TagLib::FileRef::isNull() const
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlFloat::operator double() const
  0.00     47.10     0.00        1     0.00     0.00  libebml::EbmlFloat::operator float() const
  0.00     47.10     0.00        1     0.00     0.00  std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&)
  0.00     47.10     0.00        1     0.00     0.00  std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&)
  0.00     47.10     0.00        1     0.00     0.00  std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&)
  0.00     47.10     0.00        1     0.00     0.00  std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&)
  0.00     47.10     0.00        1     0.00     0.00  std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&)
  0.00     47.10     0.00        1     0.00     0.00  aac_decode_close
  0.00     47.10     0.00        1     0.00     0.00  aac_decode_init
  0.00     47.10     0.00        1     0.00     0.00  access_Delete
  0.00     47.10     0.00        1     0.00     0.00  access_New
  0.00     47.10     0.00        1     0.00     0.00  aout_ChangeFilterString
  0.00     47.10     0.00        1     0.00     0.01  aout_DecDelete
  0.00     47.10     0.00        1     0.00     0.02  aout_DecNew
  0.00     47.10     0.00        1     0.00     0.01  aout_Destroy
  0.00     47.10     0.00        1     0.00     0.00  aout_Destructor
  0.00     47.10     0.00        1     0.00     0.01  aout_FiltersDelete
  0.00     47.10     0.00        1     0.00     0.01  aout_FiltersNew
  0.00     47.10     0.00        1     0.00     0.00  aout_FiltersPipelineCreate
  0.00     47.10     0.00        1     0.00     0.00  aout_FormatsPrint
  0.00     47.10     0.00        1     0.00     0.01  aout_New
  0.00     47.10     0.00        1     0.00     0.00  aout_OutputDelete
  0.00     47.10     0.00        1     0.00     0.00  aout_OutputNew
  0.00     47.10     0.00        1     0.00     0.00  aout_get_native_sample_rate
  0.00     47.10     0.00        1     0.00     0.00  aout_volume_Delete
  0.00     47.10     0.00        1     0.00     0.00  aout_volume_New
  0.00     47.10     0.00        1     0.00     0.00  aout_volume_SetFormat
  0.00     47.10     0.00        1     0.00     0.00  atrac3_init_static_data
  0.00     47.10     0.00        1     0.00     0.00  av_buffer_pool_init
  0.00     47.10     0.00        1     0.00     0.00  av_crc_init
  0.00     47.10     0.00        1     0.00     0.00  av_get_bytes_per_sample
  0.00     47.10     0.00        1     0.00     0.00  av_log_set_level
  0.00     47.10     0.00        1     0.00     0.00  av_opt_free
  0.00     47.10     0.00        1     0.00     0.00  av_opt_set
  0.00     47.10     0.00        1     0.00     0.00  av_opt_set_dict
  0.00     47.10     0.00        1     0.00     0.00  av_samples_get_buffer_size
  0.00     47.10     0.00        1     0.00     0.00  avcodec_alloc_context3
  0.00     47.10     0.00        1     0.00     0.00  avcodec_close
  0.00     47.10     0.00        1     0.00     0.00  avcodec_find_decoder
  0.00     47.10     0.00        1     0.00     0.00  avcodec_flush_buffers
  0.00     47.10     0.00        1     0.00     0.00  avcodec_get_context_defaults3
  0.00     47.10     0.00        1     0.00     0.00  avcodec_open2
  0.00     47.10     0.00        1     0.00    10.00  avcodec_register_all
  0.00     47.10     0.00        1     0.00     0.00  avpriv_float_dsp_init
  0.00     47.10     0.00        1     0.00     0.00  avpriv_mpeg4audio_get_config
  0.00     47.10     0.00        1     0.00     0.00  che_configure
  0.00     47.10     0.00        1     0.00     0.00  date_Init
  0.00     47.10     0.00        1     0.00     0.00  decode_audio_specific_config
  0.00     47.10     0.00        1     0.00     0.01  demux_Delete
  0.00     47.10     0.00        1     0.00     0.00  demux_GetParentInput
  0.00     47.10     0.00        1     0.00     0.00  ff_aac_sbr_ctx_close
  0.00     47.10     0.00        1     0.00     0.00  ff_aac_sbr_ctx_init
  0.00     47.10     0.00        1     0.00     0.00  ff_aac_sbr_init
  0.00     47.10     0.00        1     0.00     0.00  ff_aac_tableinit
  0.00     47.10     0.00        1     0.00     0.00  ff_atrac3p_init_vlcs
  0.00     47.10     0.00        1     0.00     0.00  ff_atrac_generate_tables
  0.00     47.10     0.00        1     0.00     0.00  ff_dsputil_static_init
  0.00     47.10     0.00        1     0.00     0.00  ff_float_dsp_init_arm
  0.00     47.10     0.00        1     0.00     0.00  ff_float_dsp_init_neon
  0.00     47.10     0.00        1     0.00     0.00  ff_float_dsp_init_vfp
  0.00     47.10     0.00        1     0.00     0.00  ff_fmt_convert_init
  0.00     47.10     0.00        1     0.00     0.00  ff_fmt_convert_init_arm
  0.00     47.10     0.00        1     0.00     0.00  ff_get_cpu_flags_arm
  0.00     47.10     0.00        1     0.00     0.00  ff_jpeg2000_init_tier1_luts
  0.00     47.10     0.00        1     0.00     0.00  ff_mpa_synth_init_float
  0.00     47.10     0.00        1     0.00     0.00  ff_mqc_init_context_tables
  0.00     47.10     0.00        1     0.00     0.00  ff_ps_ctx_init
  0.00     47.10     0.00        1     0.00     0.00  ff_ps_init
  0.00     47.10     0.00        1     0.00     0.00  ff_psdsp_init
  0.00     47.10     0.00        1     0.00     0.00  ff_psdsp_init_arm
  0.00     47.10     0.00        1     0.00     0.00  ff_sbrdsp_init
  0.00     47.10     0.00        1     0.00     0.00  ff_sbrdsp_init_arm
  0.00     47.10     0.00        1     0.00     0.00  ff_tak_init_crc
  0.00     47.10     0.00        1     0.00     0.00  ff_thread_init
  0.00     47.10     0.00        1     0.00     0.00  ff_yuv2rgb_c_init_tables
  0.00     47.10     0.00        1     0.00     0.00  ffmpeg_OpenCodec
  0.00     47.10     0.00        1     0.00     0.00  filter_DeleteBlend
  0.00     47.10     0.00        1     0.00     0.00  filter_NewBlend
  0.00     47.10     0.00        1     0.00     0.00  filter_chain_AppendFilter
  0.00     47.10     0.00        1     0.00     0.00  filter_chain_AppendFilterInternal
  0.00     47.10     0.00        1     0.00     0.00  filter_chain_AppendFromString
  0.00     47.10     0.00        1     0.00     0.00  filter_chain_AppendFromStringInternal
  0.00     47.10     0.00        1     0.00     0.00  filter_chain_DeleteFilterInternal
  0.00     47.10     0.00        1     0.00     0.00  get_path
  0.00     47.10     0.00        1     0.00     0.00  h264_get_profile_level
  0.00     47.10     0.00        1     0.00     0.00  input_Close
  0.00     47.10     0.00        1     0.00     0.04  input_ConfigVarInit
  0.00     47.10     0.00        1     0.00     0.00  input_ControlPush
  0.00     47.10     0.00        1     0.00     0.03  input_ControlVarInit
  0.00     47.10     0.00        1     0.00     0.00  input_ControlVarNavigation
  0.00     47.10     0.00        1     0.00     0.01  input_ControlVarStop
  0.00     47.10     0.00        1     0.00     0.00  input_ControlVarTitle
  0.00     47.10     0.00        1     0.00     0.07  input_Create
  0.00     47.10     0.00        1     0.00     0.00  input_DecoderChangeDelay
  0.00     47.10     0.00        1     0.00     0.00  input_EsOutNew
  0.00     47.10     0.00        1     0.00     0.00  input_EsOutTimeshiftNew
  0.00     47.10     0.00        1     0.00     0.00  input_Join
  0.00     47.10     0.00        1     0.00     0.00  input_SendEventDead
  0.00     47.10     0.00        1     0.00     0.00  input_SendEventMetaEpg
  0.00     47.10     0.00        1     0.00     0.00  input_SendEventProgramAdd
  0.00     47.10     0.00        1     0.00     0.00  input_SendEventProgramScrambled
  0.00     47.10     0.00        1     0.00     0.00  input_SendEventProgramSelect
  0.00     47.10     0.00        1     0.00     0.00  input_SendEventTeletextDel
  0.00     47.10     0.00        1     0.00     0.00  input_SendEventTitle
  0.00     47.10     0.00        1     0.00     0.00  input_SplitMRL
  0.00     47.10     0.00        1     0.00     0.00  input_Start
  0.00     47.10     0.00        1     0.00     0.00  input_Stop
  0.00     47.10     0.00        1     0.00     0.00  input_clock_ChangeSystemOrigin
  0.00     47.10     0.00        1     0.00     0.00  input_clock_Delete
  0.00     47.10     0.00        1     0.00     0.00  input_clock_New
  0.00     47.10     0.00        1     0.00     0.00  input_item_NewExt
  0.00     47.10     0.00        1     0.00     0.00  input_item_NewWithType
  0.00     47.10     0.00        1     0.00     0.00  input_item_SetDuration
  0.00     47.10     0.00        1     0.00     0.00  input_item_SetEpgOffline
  0.00     47.10     0.00        1     0.00     0.00  input_item_SetPreparsed
  0.00     47.10     0.00        1     0.00     0.00  input_item_SetURI
  0.00     47.10     0.00        1     0.00     0.00  input_item_duration_changed
  0.00     47.10     0.00        1     0.00     0.00  input_item_preparsed_changed
  0.00     47.10     0.00        1     0.00     0.00  input_pausable_changed
  0.00     47.10     0.00        1     0.00     0.00  input_resource_Hold
  0.00     47.10     0.00        1     0.00     0.00  input_resource_HoldAout
  0.00     47.10     0.00        1     0.00     0.00  input_resource_New
  0.00     47.10     0.00        1     0.00     0.00  input_resource_Release
  0.00     47.10     0.00        1     0.00     0.00  input_resource_RequestSout
  0.00     47.10     0.00        1     0.00     0.01  input_resource_ResetAout
  0.00     47.10     0.00        1     0.00     0.01  input_resource_Terminate
  0.00     47.10     0.00        1     0.00     0.00  input_scrambled_changed
  0.00     47.10     0.00        1     0.00     0.00  input_seekable_changed
  0.00     47.10     0.00        1     0.00     0.00  jni_IsVideoPlayerActivityCreated
  0.00     47.10     0.00        1     0.00     0.00  jpeg2000_init_static_data
  0.00     47.10     0.00        1     0.00     0.00  libvlc_media_event_manager
  0.00     47.10     0.00        1     0.00     0.00  libvlc_media_new_from_input_item
  0.00     47.10     0.00        1     0.00     0.00  libvlc_media_new_location
  0.00     47.10     0.00        1     0.00     0.00  libvlc_media_player_event_manager
  0.00     47.10     0.00        1     0.00     0.00  libvlc_media_player_get_media
  0.00     47.10     0.00        1     0.00     0.05  libvlc_media_player_new
  0.00     47.10     0.00        1     0.00     0.00  libvlc_media_player_set_media
  0.00     47.10     0.00        1     0.00     0.00  libvlc_media_player_set_video_title_display
  0.00     47.10     0.00        1     0.00     0.01  libvlc_media_player_stop
  0.00     47.10     0.00        1     0.00     0.00  libvlc_media_subitems
  0.00     47.10     0.00        1     0.00     0.00  module_get_name
  0.00     47.10     0.00        1     0.00     0.00  picture_fifo_Delete
  0.00     47.10     0.00        1     0.00     0.00  picture_fifo_New
  0.00     47.10     0.00        1     0.00     0.00  picture_pool_GetSize
  0.00     47.10     0.00        1     0.00     0.00  picture_pool_New
  0.00     47.10     0.00        1     0.00     0.00  picture_pool_NewFromFormat
  0.00     47.10     0.00        1     0.00     0.00  picture_pool_NonEmpty
  0.00     47.10     0.00        1     0.00     0.00  picture_pool_Reserve
  0.00     47.10     0.00        1     0.00     0.00  qdm2_init_static_data
  0.00     47.10     0.00        1     0.00     0.00  secstotimestr
  0.00     47.10     0.00        1     0.00     0.00  setLong
  0.00     47.10     0.00        1     0.00     0.00  sniff_channel_order
  0.00     47.10     0.00        1     0.00     0.00  spu_ClearChannel
  0.00     47.10     0.00        1     0.00     0.00  spu_Create
  0.00     47.10     0.00        1     0.00     0.01  spu_Destroy
  0.00     47.10     0.00        1     0.00     0.00  stats_NewInputStats
  0.00     47.10     0.00        1     0.00     0.00  stats_ReinitInputStats
  0.00     47.10     0.00        1     0.00     0.00  stream_AccessNew
  0.00     47.10     0.00        1     0.00     0.00  stream_FilterChainNew
  0.00     47.10     0.00        1     0.00     0.00  subtitles_Detect
  0.00     47.10     0.00        1     0.00     0.00  sws_rgb2rgb_init
  0.00     47.10     0.00        1     0.00     0.00  tak_init_static_data
  0.00     47.10     0.00        1     0.00     0.00  var_Copy
  0.00     47.10     0.00        1     0.00     0.00  var_InheritURational
  0.00     47.10     0.00        1     0.00     0.00  var_Type
  0.00     47.10     0.00        1     0.00     0.00  video_format_Print
  0.00     47.10     0.00        1     0.00     0.00  vlc_audio_replay_gain_MergeFromMeta
  0.00     47.10     0.00        1     0.00     0.00  vlc_av_frame_Release
  0.00     47.10     0.00        1     0.00     0.00  vlc_event_manager_init
  0.00     47.10     0.00        1     0.00     0.00  vlc_fourcc_GetCodecAudio
  0.00     47.10     0.00        1     0.00     0.00  vlc_fourcc_GetCodecFromString
  0.00     47.10     0.00        1     0.00     0.00  vlc_list_children
  0.00     47.10     0.00        1     0.00     0.00  vlc_list_release
  0.00     47.10     0.00        1     0.00     0.00  vlc_meta_GetStatus
  0.00     47.10     0.00        1     0.00     0.00  vlc_meta_SetStatus
  0.00     47.10     0.00        1     0.00     0.00  vlc_object_create
  0.00     47.10     0.00        1     0.00     0.00  vlc_open
  0.00     47.10     0.00        1     0.00     0.01  vout_Close
  0.00     47.10     0.00        1     0.00     0.00  vout_CloseWrapper
  0.00     47.10     0.00        1     0.00     0.00  vout_DeleteDisplay
  0.00     47.10     0.00        1     0.00     0.00  vout_DisplayTitle
  0.00     47.10     0.00        1     0.00     0.00  vout_EndWrapper
  0.00     47.10     0.00        1     0.00     0.00  vout_FlushSubpictureChannel
  0.00     47.10     0.00        1     0.00     0.01  vout_InitInterlacingSupport
  0.00     47.10     0.00        1     0.00     0.00  vout_InitWrapper
  0.00     47.10     0.00        1     0.00     0.04  vout_IntfInit
  0.00     47.10     0.00        1     0.00     0.00  vout_NewDisplay
  0.00     47.10     0.00        1     0.00     0.01  vout_OpenWrapper
  0.00     47.10     0.00        1     0.00     0.00  vout_Reset
  0.00     47.10     0.00        1     0.00     0.00  vout_control_Clean
  0.00     47.10     0.00        1     0.00     0.00  vout_control_Dead
  0.00     47.10     0.00        1     0.00     0.00  vout_control_Init
  0.00     47.10     0.00        1     0.00     0.00  vout_display_GetDefaultDisplaySize
  0.00     47.10     0.00        1     0.00     0.00  vout_snapshot_Clean
  0.00     47.10     0.00        1     0.00     0.00  vout_snapshot_End
  0.00     47.10     0.00        1     0.00     0.00  vout_snapshot_Init
  0.00     47.10     0.00        1     0.00     0.00  wmavoice_init_static_data

 %         the percentage of the total running time of the
time       program used by this function.

cumulative a running sum of the number of seconds accounted
 seconds   for by this function and those listed above it.

 self      the number of seconds accounted for by this
seconds    function alone.  This is the major sort for this
           listing.

calls      the number of times this function was invoked, if
           this function is profiled, else blank.
 
 self      the average number of milliseconds spent in this
ms/call    function per call, if this function is profiled,
	   else blank.

 total     the average number of milliseconds spent in this
ms/call    function and its descendents per call, if this 
	   function is profiled, else blank.

name       the name of the function.  This is the minor sort
           for this listing. The index shows the location of
	   the function in the gprof listing. If the index is
	   in parenthesis it shows where it would appear in
	   the gprof listing if it were to be printed.


		     Call graph (explanation follows)


granularity: each sample hit covers 2 byte(s) for 0.02% of 47.10 seconds

index % time    self  children    called     name
                                                 <spontaneous>
[1]     96.9   45.62    0.00                 loop_col [1]
-----------------------------------------------
                                                 <spontaneous>
[2]      2.4    0.00    1.12                 joinable_thread [2]
                0.00    0.96       2/2           DecoderThread [3]
                0.00    0.11       1/1           Thread [14]
                0.00    0.05       1/1           Run [24]
-----------------------------------------------
                0.00    0.96       2/2           joinable_thread [2]
[3]      2.0    0.00    0.96       2         DecoderThread [3]
                0.02    0.84    5960/5960        DecoderDecodeAudio [4]
                0.00    0.09    6860/6860        DecoderDecodeVideo [16]
                0.01    0.00   12876/12900       vlc_restorecancel [77]
                0.00    0.00   12878/12878       block_FifoGet [121]
                0.00    0.00   12803/382619      vlc_mutex_lock [32]
                0.00    0.00   12781/446104      vlc_mutex_unlock [91]
                0.00    0.00      27/20196       vlc_cond_signal [75]
                0.00    0.00       2/4           input_DecoderStopWait [287]
                0.00    0.00   12723/12747       vlc_savecancel [497]
                0.00    0.00       2/25228       block_generic_Release [492]
-----------------------------------------------
                0.02    0.84    5960/5960        DecoderThread [3]
[4]      1.8    0.02    0.84    5960         DecoderDecodeAudio [4]
                0.03    0.52   11919/11919       DecodeAudio [5]
                0.00    0.27    5966/5966        aout_DecPlay [10]
                0.00    0.01   11918/31235       DeleteDecoder <cycle 4> [63]
                0.00    0.00   17891/49560       stats_Update [72]
                0.00    0.00   17887/382619      vlc_mutex_lock [32]
                0.00    0.00    5956/12834       DecoderFixTs [114]
                0.00    0.00   17880/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/2           aout_DecFlush [226]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/20196       vlc_cond_signal [75]
                0.00    0.00    5955/5955        aout_DecGetResetLost [536]
-----------------------------------------------
                0.03    0.52   11919/11919       DecoderDecodeAudio [4]
[5]      1.2    0.03    0.52   11919         DecodeAudio [5]
                0.00    0.40    5963/5963        avcodec_decode_audio4 [6]
                0.06    0.00    5964/5964        aout_ChannelExtract [20]
                0.04    0.00    5964/5964        aout_Interleave [27]
                0.02    0.00    5962/5962        av_init_packet [43]
                0.00    0.00    5965/5966        av_frame_free [109]
                0.00    0.00    5966/5966        aout_update_format [190]
                0.00    0.00   17887/17887       date_Get [494]
                0.00    0.00   11933/25228       block_generic_Release [492]
                0.00    0.00   11928/25228       block_Alloc [491]
                0.00    0.00    5966/5967        av_frame_alloc [530]
                0.00    0.00    5966/5967        SetupOutputFormat [529]
                0.00    0.00    5965/11929       av_sample_fmt_is_planar [500]
                0.00    0.00    5964/5964        block_Realloc [534]
                0.00    0.00    5961/5961        date_Increment [535]
                0.00    0.00    5960/71716       av_freep [480]
                0.00    0.00       6/7           date_Set [648]
                0.00    0.00       1/1           avcodec_flush_buffers [961]
-----------------------------------------------
                0.00    0.40    5963/5963        DecodeAudio [5]
[6]      0.8    0.00    0.40    5963         avcodec_decode_audio4 [6]
                0.00    0.39    5966/5966        aac_decode_frame [7]
                0.00    0.00    5965/17895       av_frame_unref [76]
                0.00    0.00    5962/11928       av_packet_get_side_data [501]
-----------------------------------------------
                0.00    0.39    5966/5966        avcodec_decode_audio4 [6]
[7]      0.8    0.00    0.39    5966         aac_decode_frame [7]
                0.05    0.34    5965/5965        aac_decode_frame_int [8]
                0.00    0.00    5966/11928       av_packet_get_side_data [501]
-----------------------------------------------
                0.05    0.34    5965/5965        aac_decode_frame [7]
[8]      0.8    0.05    0.34    5965         aac_decode_frame_int [8]
                0.05    0.24    5962/5962        decode_cpe [9]
                0.01    0.02    5965/5965        ff_get_buffer [31]
                0.01    0.01    5967/5967        spectral_to_sample [41]
                0.00    0.00    5965/17895       av_frame_unref [76]
                0.00    0.00    5965/5965        get_che [532]
-----------------------------------------------
                0.05    0.24    5962/5962        aac_decode_frame_int [8]
[9]      0.6    0.05    0.24    5962         decode_cpe [9]
                0.23    0.01   17894/17894       decode_ics_info [11]
-----------------------------------------------
                0.00    0.27    5966/5966        DecoderDecodeAudio [4]
[10]     0.6    0.00    0.27    5966         aout_DecPlay [10]
                0.00    0.22    5967/5967        aout_FiltersPlay [12]
                0.00    0.02    5968/5968        aout_OutputPlay [37]
                0.01    0.01    5966/5966        aout_OutputTimeGet [38]
                0.01    0.00    5956/5967        aout_OutputUnlock [60]
                0.00    0.00   11930/153114      mdate [70]
                0.00    0.00    5969/5979        aout_OutputLock [136]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00    5964/5964        aout_volume_Amplify [533]
                0.00    0.00     419/419         aout_FiltersAdjustResampling [551]
-----------------------------------------------
                0.23    0.01   17894/17894       decode_cpe [9]
[11]     0.5    0.23    0.01   17894         decode_ics_info [11]
                0.01    0.00     654/1308        apply_ltp [44]
-----------------------------------------------
                0.00    0.22    5967/5967        aout_DecPlay [10]
[12]     0.5    0.00    0.22    5967         aout_FiltersPlay [12]
                0.21    0.00    5963/5963        Fl32toS16 [13]
                0.01    0.00    5966/5966        DoWork [81]
-----------------------------------------------
                0.21    0.00    5963/5963        aout_FiltersPlay [12]
[13]     0.4    0.21    0.00    5963         Fl32toS16 [13]
-----------------------------------------------
                0.00    0.11       1/1           joinable_thread [2]
[14]     0.2    0.00    0.11       1         Thread [14]
                0.02    0.06   19684/19684       ThreadDisplayPicture [17]
                0.00    0.02   12846/12846       vout_control_Pop [34]
                0.00    0.00   12878/12878       vout_ManageWrapper [102]
                0.00    0.00   12809/382619      vlc_mutex_lock [32]
                0.00    0.00   12851/12851       vout_SetInterlacingState [130]
                0.00    0.00   12887/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/1           ThreadStart [200]
                0.00    0.00       1/1           ThreadStop [273]
                0.00    0.00       2/2           ThreadChangeFilters [342]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       4/5           ThreadFlush [367]
                0.00    0.00       4/4           vout_SetWindowState [418]
                0.00    0.00       2/2           spu_ChangeMargin [438]
                0.00    0.00       2/2           spu_ChangeFilters [437]
                0.00    0.00       2/2           spu_ChangeSources [439]
                0.00    0.00       2/153114      mdate [70]
                0.00    0.00       1/1           spu_ClearChannel [459]
                0.00    0.00       1/8           VoutVideoFilterStaticNewPicture [384]
                0.00    0.00      25/25          vout_control_cmd_Clean [606]
                0.00    0.00       2/2           vout_SetDisplayCrop [871]
                0.00    0.00       2/2           vout_SetDisplayAspect [870]
                0.00    0.00       2/2           vout_SetDisplayZoom [872]
                0.00    0.00       1/1           picture_pool_NonEmpty [1018]
-----------------------------------------------
                                                 <spontaneous>
[15]     0.2    0.09    0.00                 ff_imdct_half_neon [15]
-----------------------------------------------
                0.00    0.09    6860/6860        DecoderThread [3]
[16]     0.2    0.00    0.09    6860         DecoderDecodeVideo [16]
                0.02    0.05   13746/13746       DecodeVideo [19]
                0.00    0.01    6887/6887        vout_PutPicture [99]
                0.00    0.01    6871/31235       DeleteDecoder <cycle 4> [63]
                0.00    0.00   18263/49560       stats_Update [72]
                0.00    0.00   19859/382619      vlc_mutex_lock [32]
                0.00    0.00    6878/12834       DecoderFixTs [114]
                0.00    0.00   19860/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/3           vout_Flush [256]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       1/20196       vlc_cond_signal [75]
                0.00    0.00    6888/6888        vout_GetResetStatistic [527]
-----------------------------------------------
                0.02    0.06   19684/19684       Thread [14]
[17]     0.2    0.02    0.06   19684         ThreadDisplayPicture [17]
                0.00    0.01    6914/9339        mwait [50]
                0.00    0.01    6917/6917        spu_Render [56]
                0.00    0.01    7015/7015        ThreadDisplayPreparePicture [57]
                0.00    0.01    6918/6918        video_format_ApplyRotation [92]
                0.00    0.00    6915/6915        vout_FilterDisplay [106]
                0.00    0.00    6910/27727       filter_chain_VideoFilter [51]
                0.00    0.00   47331/153114      mdate [70]
                0.00    0.00    6917/6917        vout_snapshot_IsRequested [112]
                0.00    0.00    6914/30060       picture_Hold [73]
                0.00    0.00    6915/382619      vlc_mutex_lock [32]
                0.00    0.00    6914/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/1           filter_NewBlend [471]
                0.00    0.00    6919/6919        vout_UpdateDisplaySourceProperties [517]
                0.00    0.00    6916/6917        vout_IsDisplayFiltered [519]
                0.00    0.00    6908/30111       picture_Release [486]
                0.00    0.00    6908/6908        Display [524]
-----------------------------------------------
                                                 <spontaneous>
[18]     0.2    0.08    0.00                 fft_pass_neon [18]
-----------------------------------------------
                0.02    0.05   13746/13746       DecoderDecodeVideo [16]
[19]     0.1    0.02    0.05   13746         DecodeVideo [19]
                0.00    0.05    9501/9501        GetOutput [23]
                0.00    0.00    6909/25228       block_generic_Release [492]
-----------------------------------------------
                0.06    0.00    5964/5964        DecodeAudio [5]
[20]     0.1    0.06    0.00    5964         aout_ChannelExtract [20]
-----------------------------------------------
                                                 <spontaneous>
[21]     0.1    0.05    0.00                 ff_vector_fmul_window_neon [21]
-----------------------------------------------
                0.00    0.00    1298/28455       MainLoop [25]
                0.01    0.00    5980/28455       DeleteDecoder <cycle 4> [63]
                0.01    0.01    9372/28455       mwait [50]
                0.01    0.01   11805/28455       vout_control_Pop [34]
[22]     0.1    0.03    0.02   28455         vlc_cond_timedwait [22]
                0.02    0.00   56974/64029       vlc_mutex_trylock [40]
                0.00    0.00   56845/446104      vlc_mutex_unlock [91]
                0.00    0.00   56895/69905       vlc_testcancel [481]
-----------------------------------------------
                0.00    0.05    9501/9501        DecodeVideo [19]
[23]     0.1    0.00    0.05    9501         GetOutput [23]
                0.00    0.04    6886/6886        decoder_NewPicture [28]
                0.01    0.00    6894/6894        CopyOmxPicture [80]
                0.00    0.00       3/253         vlc_Log [152]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00    6892/6892        GetVlcChromaSizes [526]
                0.00    0.00       2/2           get_android_opaque_mutex [811]
                0.00    0.00       1/2           ArchitectureSpecificCopyHooksDestroy [726]
                0.00    0.00       1/1           ArchitectureSpecificCopyHooks [883]
                0.00    0.00       1/1           IgnoreOmxDecoderPadding [907]
                0.00    0.00       1/1           GetVlcChromaFormat [906]
-----------------------------------------------
                0.00    0.05       1/1           joinable_thread [2]
[24]     0.1    0.00    0.05       1         Run [24]
                0.00    0.05       1/1           MainLoop [25]
                0.00    0.00       1/1           Init [182]
                0.00    0.00       1/1           End [191]
                0.00    0.00       1/12900       vlc_restorecancel [77]
                0.00    0.00       1/1           input_SendEventDead [402]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/12747       vlc_savecancel [497]
-----------------------------------------------
                0.00    0.05       1/1           Run [24]
[25]     0.1    0.00    0.05       1         MainLoop [25]
                0.00    0.04    1281/1281        Demux(demux_t*) [26]
                0.00    0.00    4315/4323        es_out_Control [107]
                0.00    0.00    1298/28455       vlc_cond_timedwait [22]
                0.00    0.00    1722/382619      vlc_mutex_lock [32]
                0.00    0.00    1333/153114      mdate [70]
                0.00    0.00     116/116         input_SendEventStatistics [165]
                0.00    0.00    1729/446104      vlc_mutex_unlock [91]
                0.00    0.00      22/253         vlc_Log [152]
                0.00    0.00       1/224         var_Create [155]
                0.00    0.00       1/4           input_ChangeState [308]
                0.00    0.00       2/2360        var_GetChecked [148]
                0.00    0.00    2600/3094        vlc_object_alive [539]
                0.00    0.00    1270/1280        demux_Control [544]
                0.00    0.00     116/116         stats_ComputeInputStats [570]
-----------------------------------------------
                0.00    0.04    1281/1281        MainLoop [25]
[26]     0.1    0.00    0.04    1281         Demux(demux_t*) [26]
                0.00    0.02    7692/7692        BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
                0.00    0.01    7690/7690        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.01    0.00   15377/15377       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [87]
                0.00    0.00     421/8106        es_out_Control(es_out_t*, int, ...) [98]
                0.00    0.00    1281/382619      vlc_mutex_lock [32]
                0.00    0.00    1279/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/253         vlc_Log [152]
-----------------------------------------------
                0.04    0.00    5964/5964        DecodeAudio [5]
[27]     0.1    0.04    0.00    5964         aout_Interleave [27]
-----------------------------------------------
                0.00    0.04    6886/6886        GetOutput [23]
[28]     0.1    0.00    0.04    6886         decoder_NewPicture [28]
                0.01    0.03    6884/6884        vout_new_buffer [29]
-----------------------------------------------
                0.01    0.03    6884/6884        decoder_NewPicture [28]
[29]     0.1    0.01    0.03    6884         vout_new_buffer [29]
                0.00    0.02    9303/9303        vout_GetPicture [35]
                0.00    0.00    2424/2425        msleep [103]
                0.00    0.00    2423/2423        vout_FixLeaks [126]
                0.00    0.00   14151/382619      vlc_mutex_lock [32]
                0.00    0.00   14147/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/6915        vlc_fourcc_IsYUV [79]
                0.00    0.00       1/31235       input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       1/2           input_SendEventVout [348]
                0.00    0.00    2424/2424        harmful_delay [540]
                0.00    0.00       1/70          vlc_ureduce [578]
                0.00    0.00       1/2           DecoderUpdateFormatLocked [728]
                0.00    0.00       1/31          vlc_fourcc_GetChromaDescription [593]
-----------------------------------------------
                0.00    0.01    6916/16223       VideoBufferNew [54]
                0.01    0.01    9307/16223       vout_GetPicture [35]
[30]     0.1    0.01    0.02   16223         picture_pool_Get [30]
                0.02    0.00    6919/6920        AndroidLockSurface [39]
                0.00    0.00   13813/30060       picture_Hold [73]
-----------------------------------------------
                0.01    0.02    5965/5965        aac_decode_frame_int [8]
[31]     0.1    0.01    0.02    5965         ff_get_buffer [31]
                0.01    0.01    5963/5963        avcodec_default_get_buffer2 [42]
                0.00    0.00    5965/11929       av_get_channel_layout_nb_channels [499]
-----------------------------------------------
                0.00    0.00       1/382619      input_DecoderChangeDelay [472]
                0.00    0.00       1/382619      GetOutput [23]
                0.00    0.00       1/382619      InitOmxCore [451]
                0.00    0.00       1/382619      ReadMeta(vlc_object_t*) [467]
                0.00    0.00       1/382619      libvlc_media_player_get_media [458]
                0.00    0.00       1/382619      libvlc_media_player_stop [213]
                0.00    0.00       1/382619      input_item_SetPreparsed [420]
                0.00    0.00       1/382619      input_item_SetURI [455]
                0.00    0.00       1/382619      input_item_SetDuration [419]
                0.00    0.00       1/382619      aout_update_format [190]
                0.00    0.00       1/382619      InitTitle [252]
                0.00    0.00       1/382619      End [191]
                0.00    0.00       1/382619      input_ControlPush [408]
                0.00    0.00       1/382619      input_Stop [424]
                0.00    0.00       1/382619      InputSourceInit [197]
                0.00    0.00       1/382619      Init [182]
                0.00    0.00       1/382619      Run [24]
                0.00    0.00       1/382619      input_resource_HoldAout [456]
                0.00    0.00       1/382619      input_resource_ResetAout [230]
                0.00    0.00       1/382619      input_resource_RequestSout [457]
                0.00    0.00       1/382619      input_resource_Terminate [225]
                0.00    0.00       1/382619      stats_ReinitInputStats [461]
                0.00    0.00       1/382619      VoutDisplayEvent [385]
                0.00    0.00       1/382619      vout_Close [227]
                0.00    0.00       1/382619      FilterRelease [222]
                0.00    0.00       1/382619      spu_ClearChannel [459]
                0.00    0.00       1/382619      aout_Destroy [234]
                0.00    0.00       1/382619      vlc_list_children [463]
                0.00    0.00       1/382619      ObjectKillChildrens [441]
                0.00    0.00       1/382619      var_Type [462]
                0.00    0.00       1/382619      input_clock_ChangeSystemOrigin [454]
                0.00    0.00       1/382619      vout_control_Dead [464]
                0.00    0.00       1/382619      vout_snapshot_End [465]
                0.00    0.00       1/382619      input_item_preparsed_changed [432]
                0.00    0.00       1/382619      input_vaControl <cycle 5> [304]
                0.00    0.00       2/382619      Flush [259]
                0.00    0.00       2/382619      libvlc_media_player_set_media [277]
                0.00    0.00       2/382619      libvlc_media_player_play [161]
                0.00    0.00       2/382619      input_item_GetName [435]
                0.00    0.00       2/382619      input_item_SetEpgOffline [414]
                0.00    0.00       2/382619      input_DecoderDelete [249]
                0.00    0.00       2/382619      input_DecoderStartWait [243]
                0.00    0.00       2/382619      input_DecoderWait [202]
                0.00    0.00       2/382619      Create [163]
                0.00    0.00       2/382619      input_resource_PutAout [324]
                0.00    0.00       2/382619      input_resource_SetInput [436]
                0.00    0.00       2/382619      ThreadChangeFilters [342]
                0.00    0.00       2/382619      spu_Attach <cycle 4> [235]
                0.00    0.00       2/382619      spu_ChangeSources [439]
                0.00    0.00       2/382619      spu_ChangeFilters [437]
                0.00    0.00       2/382619      spu_ChangeMargin [438]
                0.00    0.00       2/382619      vlc_cancel [440]
                0.00    0.00       2/382619      input_clock_SetJitter [434]
                0.00    0.00       2/382619      EsOutDel [332]
                0.00    0.00       2/382619      Del [310]
                0.00    0.00       2/382619      Add <cycle 4> [422]
                0.00    0.00       2/382619      input_resource_HoldVouts [433]
                0.00    0.00       3/382619      libvlc_retain [430]
                0.00    0.00       3/382619      set_state [372]
                0.00    0.00       3/382619      input_item_SetErrorWhenReading [427]
                0.00    0.00       3/382619      input_item_SetMeta [350]
                0.00    0.00       3/382619      input_item_AddOption [426]
                0.00    0.00       3/382619      input_item_UpdateTracksInfo [423]
                0.00    0.00       3/382619      input_resource_GetAout [204]
                0.00    0.00       3/382619      vlc_global_mutex [425]
                0.00    0.00       3/382619      EsOutAdd <cycle 4> [207]
                0.00    0.00       4/382619      input_item_GetMeta [417]
                0.00    0.00       4/382619      input_DecoderStopWait [287]
                0.00    0.00       4/382619      vout_SetWindowState [418]
                0.00    0.00       4/382619      vlc_sem_post [288]
                0.00    0.00       4/382619      vlc_sem_wait [322]
                0.00    0.00       4/382619      input_item_ReplaceInfos [325]
                0.00    0.00       5/382619      vlc_event_attach [413]
                0.00    0.00       5/382619      vout_control_WaitEmpty [262]
                0.00    0.00       6/382619      input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       6/382619      block_FifoEmpty [405]
                0.00    0.00       6/382619      picture_fifo_Flush [406]
                0.00    0.00       7/382619      VoutVideoFilterStaticNewPicture [384]
                0.00    0.00       8/382619      event_attach [381]
                0.00    0.00       8/382619      vlc_event_manager_register_event_type [383]
                0.00    0.00       9/382619      vout_IsEmpty [247]
                0.00    0.00      13/382619      var_Destroy [223]
                0.00    0.00      15/382619      input_DecoderIsEmpty [194]
                0.00    0.00      15/382619      vlc_object_set_name [330]
                0.00    0.00      18/382619      block_FifoWake [309]
                0.00    0.00      19/382619      libvlc_get_input_thread [307]
                0.00    0.00      23/382619      vlc_object_release [193]
                0.00    0.00      24/382619      vlc_custom_create [284]
                0.00    0.00      24/382619      var_TriggerCallback <cycle 5> [283]
                0.00    0.00      26/382619      vout_control_Push [199]
                0.00    0.00      27/382619      libvlc_event_manager_register_event_type [279]
                0.00    0.00      33/382619      vlc_event_send [239]
                0.00    0.00      34/382619      var_DelCallback [192]
                0.00    0.00      51/382619      var_AddCallback [183]
                0.00    0.00     224/382619      var_Create [155]
                0.00    0.00     400/382619      vlc_rwlock_rdlock [181]
                0.00    0.00     400/382619      vlc_rwlock_unlock [147]
                0.00    0.00     423/382619      input_clock_Update [179]
                0.00    0.00     432/382619      input_clock_GetState [175]
                0.00    0.00     433/382619      libvlc_media_player_get_state [176]
                0.00    0.00     493/382619      AReadStream [142]
                0.00    0.00     614/382619      TriggerCallback <cycle 5> [162]
                0.00    0.00     627/382619      var_SetChecked <cycle 5> [166]
                0.00    0.00    1003/382619      var_Change [158]
                0.00    0.00    1281/382619      Demux(demux_t*) [26]
                0.00    0.00    1722/382619      MainLoop [25]
                0.00    0.00    1753/382619      libvlc_event_send [151]
                0.00    0.00    2360/382619      var_GetChecked [148]
                0.00    0.00    2423/382619      vout_FixLeaks [126]
                0.00    0.00    2430/382619      picture_fifo_Peek [127]
                0.00    0.00    2549/382619      input_clock_GetWakeup [146]
                0.00    0.00    5969/382619      TimeGet [62]
                0.00    0.00    5969/382619      Play [36]
                0.00    0.00    5969/382619      aout_OutputUnlock [60]
                0.00    0.00    5979/382619      aout_OutputLock [136]
                0.00    0.00    6877/382619      picture_fifo_Push [132]
                0.00    0.00    6878/382619      vout_control_Wake [104]
                0.00    0.00    6887/382619      vout_PutPicture [99]
                0.00    0.00    6915/382619      ThreadDisplayPicture [17]
                0.00    0.00    7013/382619      picture_fifo_Pop [131]
                0.00    0.00    7016/382619      ThreadDisplayPreparePicture [57]
                0.00    0.00    9303/382619      vout_GetPicture [35]
                0.00    0.00    9336/382619      mwait [50]
                0.00    0.00   12435/382619      Control <cycle 4> [122]
                0.00    0.00   12437/382619      EsOutControl <cycle 4> [115]
                0.00    0.00   12803/382619      DecoderThread [3]
                0.00    0.00   12809/382619      Thread [14]
                0.00    0.00   12838/382619      block_FifoGet [121]
                0.00    0.00   12839/382619      input_DecoderIsCcPresent [125]
                0.00    0.00   12849/382619      input_clock_ConvertTS [113]
                0.00    0.00   12859/382619      input_DecoderHasFormatChanged [124]
                0.00    0.00   12871/382619      EsOutSend [59]
                0.00    0.00   12871/382619      vout_control_Pop [34]
                0.00    0.00   12873/382619      block_FifoPut [96]
                0.00    0.00   12878/382619      Send [55]
                0.00    0.00   12892/382619      vout_AreDisplayPicturesInvalid [123]
                0.00    0.00   13871/382619      PlayedCallback [105]
                0.00    0.00   14151/382619      vout_new_buffer [29]
                0.00    0.00   17887/382619      DecoderDecodeAudio [4]
                0.00    0.00   19859/382619      DecoderDecodeVideo [16]
                0.00    0.00   20747/382619      spu_Render [56]
                0.00    0.00   25660/382619      vout_ManageDisplay [108]
[32]     0.1    0.03    0.00  382619         vlc_mutex_lock [32]
-----------------------------------------------
[33]     0.1    0.00    0.02   31235+25936   <cycle 4 as a whole> [33]
                0.00    0.01   18791             DeleteDecoder <cycle 4> [63]
                0.00    0.01      66             generic_start <cycle 4> [68]
                0.00    0.00   12436             EsOutControl <cycle 4> [115]
                0.00    0.00   12434             Control <cycle 4> [122]
                0.00    0.00       1             Open(vlc_object_t*) <cycle 4> [129]
                0.00    0.00       2             vout_Request <cycle 4> [168]
                0.00    0.00      18             vlc_module_load <cycle 4> [185]
                0.00    0.00       9             es_out_Control <cycle 4> [187]
                0.00    0.00       4             input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       2             EsOutAdd <cycle 4> [207]
                0.00    0.00       2             spu_Attach <cycle 4> [235]
                0.00    0.00       2             EsCreateDecoder <cycle 4> [242]
                0.00    0.00       2             EsSelect <cycle 4> [265]
                0.00    0.00       2             SpuRenderCreateAndLoadText <cycle 4> [282]
                0.00    0.00       2             EsUnselect <cycle 4> [320]
                0.00    0.00       1             matroska_segment_c::Select(long long) <cycle 4> [323]
                0.00    0.00       1             spu_Create <cycle 4> [368]
                0.00    0.00       1             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [374]
                0.00    0.00       2             Add <cycle 4> [422]
                0.00    0.00       2             SpuRenderCreateAndLoadScale <cycle 4> [443]
                0.00    0.00       2             CreateDecoder <cycle 4> [442]
                0.00    0.00   12430             es_out_Control <cycle 4> [498]
                0.00    0.00     856             CmdExecuteControl <cycle 4> [545]
                0.00    0.00      66             module_load <cycle 4> [580]
                0.00    0.00      18             module_need <cycle 4> [618]
                0.00    0.00       6             EsOutSelect <cycle 4> [657]
                0.00    0.00       5             es_out_Control(es_out_t*, int, ...) <cycle 4> [16284]
                0.00    0.00       2             input_resource_TerminateVout <cycle 4> [816]
                0.00    0.00       2             input_DecoderNew <cycle 4> [812]
                0.00    0.00       2             decoder_New <cycle 4> [793]
                0.00    0.00       1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16485]
                0.00    0.00       1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16518]
-----------------------------------------------
                0.00    0.02   12846/12846       Thread [14]
[34]     0.0    0.00    0.02   12846         vout_control_Pop [34]
                0.01    0.01   11805/28455       vlc_cond_timedwait [22]
                0.00    0.00   12871/382619      vlc_mutex_lock [32]
                0.00    0.00   12889/153114      mdate [70]
                0.00    0.00   12844/446104      vlc_mutex_unlock [91]
                0.00    0.00   12807/26310       vlc_cond_broadcast [488]
-----------------------------------------------
                0.00    0.02    9303/9303        vout_new_buffer [29]
[35]     0.0    0.00    0.02    9303         vout_GetPicture [35]
                0.01    0.01    9307/16223       picture_pool_Get [30]
                0.00    0.00    9303/382619      vlc_mutex_lock [32]
                0.00    0.00    9307/446104      vlc_mutex_unlock [91]
                0.00    0.00    6882/6912        video_format_CopyCrop [523]
                0.00    0.00    6868/6868        picture_Reset [528]
-----------------------------------------------
                0.02    0.00    5969/5969        aout_OutputPlay [37]
[36]     0.0    0.02    0.00    5969         Play [36]
                0.00    0.00    5969/382619      vlc_mutex_lock [32]
                0.00    0.00    5964/446104      vlc_mutex_unlock [91]
                0.00    0.00    5965/25228       block_generic_Release [492]
-----------------------------------------------
                0.00    0.02    5968/5968        aout_DecPlay [10]
[37]     0.0    0.00    0.02    5968         aout_OutputPlay [37]
                0.02    0.00    5969/5969        Play [36]
-----------------------------------------------
                0.01    0.01    5966/5966        aout_DecPlay [10]
[38]     0.0    0.01    0.01    5966         aout_OutputTimeGet [38]
                0.01    0.00    5966/5967        TimeGet [62]
-----------------------------------------------
                0.00    0.00       1/6920        Open [233]
                0.02    0.00    6919/6920        picture_pool_Get [30]
[39]     0.0    0.02    0.00    6920         AndroidLockSurface [39]
                0.00    0.00       1/1           VoutDisplayEvent [385]
                0.00    0.00    6915/6915        jni_LockAndGetAndroidJavaSurface [521]
                0.00    0.00       2/2           jni_SetAndroidSurfaceSize [817]
                0.00    0.00       2/6920        jni_UnlockAndroidSurface [515]
-----------------------------------------------
                0.00    0.00       1/64029       Open [233]
                0.00    0.00     137/64029       vlc_cond_wait [173]
                0.00    0.00    6917/64029       vout_snapshot_IsRequested [112]
                0.02    0.00   56974/64029       vlc_cond_timedwait [22]
[40]     0.0    0.02    0.00   64029         vlc_mutex_trylock [40]
-----------------------------------------------
                0.01    0.01    5967/5967        aac_decode_frame_int [8]
[41]     0.0    0.01    0.01    5967         spectral_to_sample [41]
                0.01    0.00     654/1308        apply_ltp [44]
                0.00    0.00   11927/11927       imdct_and_windowing [502]
-----------------------------------------------
                0.01    0.01    5963/5963        ff_get_buffer [31]
[42]     0.0    0.01    0.01    5963         avcodec_default_get_buffer2 [42]
                0.01    0.00   11930/11930       av_buffer_pool_get [78]
                0.00    0.00    5963/11929       av_get_channel_layout_nb_channels [499]
                0.00    0.00    5963/11929       av_sample_fmt_is_planar [500]
                0.00    0.00       1/5           av_buffer_pool_uninit [679]
                0.00    0.00       1/1           av_samples_get_buffer_size [958]
                0.00    0.00       1/1           av_buffer_pool_init [951]
-----------------------------------------------
                0.02    0.00    5962/5962        DecodeAudio [5]
[43]     0.0    0.02    0.00    5962         av_init_packet [43]
-----------------------------------------------
                0.01    0.00     654/1308        spectral_to_sample [41]
                0.01    0.00     654/1308        decode_ics_info [11]
[44]     0.0    0.02    0.00    1308         apply_ltp [44]
-----------------------------------------------
                                                 <spontaneous>
[45]     0.0    0.02    0.00                 loop_row [45]
-----------------------------------------------
                                                 <spontaneous>
[46]     0.0    0.02    0.00                 __divdi3 [46]
-----------------------------------------------
                                                 <spontaneous>
[47]     0.0    0.02    0.00                 __emutls_get_address [47]
-----------------------------------------------
                                                 <spontaneous>
[48]     0.0    0.02    0.00                 __gnu_mcount_nc [48]
-----------------------------------------------
                0.00    0.02    7692/7692        Demux(demux_t*) [26]
[49]     0.0    0.00    0.02    7692         BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
                0.00    0.01   12876/12876       Send [55]
                0.00    0.01    7685/8106        es_out_Control(es_out_t*, int, ...) [98]
                0.00    0.00   38601/38601       libmatroska::DataBuffer::Size() [16167]
                0.00    0.00   25735/25735       libmatroska::DataBuffer::Buffer() [16169]
                0.00    0.00   12875/12875       MemToBlock(unsigned char*, unsigned int, unsigned int) [16174]
                0.00    0.00    7688/15373       matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16172]
                0.00    0.00    7666/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00    2425/9339        msleep [103]
                0.00    0.01    6914/9339        ThreadDisplayPicture [17]
[50]     0.0    0.00    0.02    9339         mwait [50]
                0.01    0.01    9372/28455       vlc_cond_timedwait [22]
                0.00    0.00    9336/382619      vlc_mutex_lock [32]
                0.00    0.00    9338/9403        vlc_mutex_init [505]
                0.00    0.00    9337/9379        vlc_cond_init [506]
                0.00    0.00    9319/9375        vlc_mutex_destroy [507]
                0.00    0.00    9312/9352        vlc_cond_destroy [508]
-----------------------------------------------
                0.00    0.00    6910/27727       ThreadDisplayPicture [17]
                0.00    0.00    6916/27727       vout_FilterDisplay [106]
                0.00    0.01   13901/27727       ThreadDisplayPreparePicture [57]
[51]     0.0    0.00    0.01   27727         filter_chain_VideoFilter [51]
                0.00    0.01   20722/20722       FilterChainVideoFilter [52]
-----------------------------------------------
                0.00    0.01   20722/20722       filter_chain_VideoFilter [51]
[52]     0.0    0.00    0.01   20722         FilterChainVideoFilter [52]
                0.00    0.01    6918/6918        NV12_RGBA_Filter [53]
-----------------------------------------------
                0.00    0.01    6918/6918        FilterChainVideoFilter [52]
[53]     0.0    0.00    0.01    6918         NV12_RGBA_Filter [53]
                0.00    0.01    6919/6919        VideoBufferNew [54]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00    6921/30111       picture_Release [486]
                0.00    0.00    6919/6919        picture_CopyProperties [516]
-----------------------------------------------
                0.00    0.01    6919/6919        NV12_RGBA_Filter [53]
[54]     0.0    0.00    0.01    6919         VideoBufferNew [54]
                0.00    0.01    6916/16223       picture_pool_Get [30]
                0.00    0.00    6916/6917        Pool [518]
-----------------------------------------------
                0.00    0.01   12876/12876       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
[55]     0.0    0.00    0.01   12876         Send [55]
                0.00    0.01   12873/12873       CmdExecuteSend [58]
                0.00    0.00   12878/382619      vlc_mutex_lock [32]
                0.00    0.00   12859/153114      mdate [70]
                0.00    0.00   12833/446104      vlc_mutex_unlock [91]
                0.00    0.00   12854/25284       TsStop [490]
-----------------------------------------------
                0.00    0.01    6917/6917        ThreadDisplayPicture [17]
[56]     0.0    0.00    0.01    6917         spu_Render [56]
                0.01    0.00    6914/6915        vlc_fourcc_IsYUV [79]
                0.00    0.00   20747/382619      vlc_mutex_lock [32]
                0.00    0.00   20744/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/11          filter_chain_Reset [290]
                0.00    0.00    6913/6913        filter_chain_SubSource [522]
                0.00    0.00       1/2           UpdateBufferFunctions [766]
                0.00    0.00       1/1           filter_chain_AppendFromString [995]
-----------------------------------------------
                0.00    0.01    7015/7015        ThreadDisplayPicture [17]
[57]     0.0    0.00    0.01    7015         ThreadDisplayPreparePicture [57]
                0.00    0.01   13901/27727       filter_chain_VideoFilter [51]
                0.00    0.00    6907/30060       picture_Hold [73]
                0.00    0.00    7011/7011        picture_fifo_Pop [131]
                0.00    0.00    7016/382619      vlc_mutex_lock [32]
                0.00    0.00    6897/153114      mdate [70]
                0.00    0.00    6997/446104      vlc_mutex_unlock [91]
                0.00    0.00       7/253         vlc_Log [152]
                0.00    0.00    6911/30111       picture_Release [486]
-----------------------------------------------
                0.00    0.01   12873/12873       Send [55]
[58]     0.0    0.00    0.01   12873         CmdExecuteSend [58]
                0.00    0.01   12873/12873       EsOutSend [59]
-----------------------------------------------
                0.00    0.01   12873/12873       CmdExecuteSend [58]
[59]     0.0    0.00    0.01   12873         EsOutSend [59]
                0.00    0.01   12861/12865       input_DecoderDecode [97]
                0.00    0.00   12854/12854       input_DecoderHasFormatChanged [124]
                0.00    0.00   12835/12835       input_DecoderIsCcPresent [125]
                0.00    0.00   12871/382619      vlc_mutex_lock [32]
                0.00    0.00   12836/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/4           info_category_AddInfo [257]
                0.00    0.00       2/36          es_format_Clean [591]
-----------------------------------------------
                0.00    0.00       1/5967        aout_DecNew [198]
                0.00    0.00       1/5967        aout_DecDelete [211]
                0.00    0.00       1/5967        aout_Destroy [234]
                0.00    0.00       2/5967        aout_DecFlush [226]
                0.00    0.00       6/5967        aout_DecIsEmpty [205]
                0.01    0.00    5956/5967        aout_DecPlay [10]
[60]     0.0    0.01    0.00    5967         aout_OutputUnlock [60]
                0.00    0.00    5969/382619      vlc_mutex_lock [32]
                0.00    0.00   11933/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.01    7690/7690        Demux(demux_t*) [26]
[61]     0.0    0.00    0.01    7690         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.00    0.01    7843/8131        EbmlParser::Get(int) [94]
                0.00    0.00    7681/7958        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
                0.00    0.00      51/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [171]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00      51/120         EbmlParser::Up() [396]
                0.00    0.00    7842/7842        EbmlParser::GetLevel() const [16192]
                0.00    0.00    7740/7740        EbmlParser::IsTopPresent(libebml::EbmlElement*) const [16194]
                0.00    0.00    7740/63794       libebml::EbmlElement::GetSize() const [16166]
                0.00    0.00    7685/15373       matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16172]
                0.00    0.00    7675/7675        libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [16197]
                0.00    0.00    7673/7673        libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16198]
                0.00    0.00      51/127         libebml::EbmlUInteger::operator unsigned long long() const [16214]
                0.00    0.00      51/121         EbmlParser::Down() [16216]
                0.00    0.00       1/1           matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16522]
-----------------------------------------------
                0.00    0.00       1/5967        Flush [259]
                0.01    0.00    5966/5967        aout_OutputTimeGet [38]
[62]     0.0    0.01    0.00    5967         TimeGet [62]
                0.00    0.00    5969/382619      vlc_mutex_lock [32]
                0.00    0.00    5964/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                                   2             es_out_Control <cycle 4> [187]
                0.00    0.01    6871/31235       DecoderDecodeVideo [16]
                0.00    0.01   11918/31235       DecoderDecodeAudio [4]
[63]     0.0    0.00    0.01   18791         DeleteDecoder <cycle 4> [63]
                0.01    0.00    5980/28455       vlc_cond_timedwait [22]
                0.00    0.00       1/1           aout_DecDelete [211]
                0.00    0.00       1/2           aout_DecFlush [226]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       1/1           vout_Reset [338]
                0.00    0.00       2/70          vlc_cond_wait [173]
                0.00    0.00       2/45          vlc_object_release [193]
                0.00    0.00       1/2           input_resource_PutAout [324]
                0.00    0.00       1/2           input_SendEventAout [347]
                0.00    0.00       1/2           input_SendEventVout [348]
                0.00    0.00       2/6           block_FifoEmpty [405]
                0.00    0.00       2/2           block_FifoRelease [444]
                0.00    0.00       6/36          es_format_Clean [591]
                0.00    0.00       4/9352        vlc_cond_destroy [508]
                0.00    0.00       2/30          block_FifoCount [595]
                0.00    0.00       2/9375        vlc_mutex_destroy [507]
                                   1             input_resource_RequestVout <cycle 4> [206]
-----------------------------------------------
[64]     0.0    0.00    0.01   32843+65697   <cycle 1 as a whole> [64]
                0.00    0.01   65691             stream_Read <cycle 1> [65]
                0.00    0.00   32849             Read <cycle 1> [484]
-----------------------------------------------
                               32848             Read <cycle 1> [484]
                0.00    0.01   32843/32843       vlc_stream_io_callback::read(void*, unsigned int) [67]
[65]     0.0    0.00    0.01   65691         stream_Read <cycle 1> [65]
                0.01    0.00   32852/32852       AStreamReadNoSeekStream [66]
                0.00    0.00   32851/32851       AStreamReadStream [483]
                               32849             Read <cycle 1> [484]
-----------------------------------------------
                0.01    0.00   32852/32852       stream_Read <cycle 1> [65]
[66]     0.0    0.01    0.00   32852         AStreamReadNoSeekStream [66]
                0.00    0.00     115/480         AStreamRefillStream [141]
-----------------------------------------------
                0.00    0.00      36/32841       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00     190/32841       libebml::IOCallback::readFully(void*, unsigned int) [169]
                0.00    0.00    7972/32841       libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [111]
                0.00    0.01   24643/32841       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[67]     0.0    0.00    0.01   32841         vlc_stream_io_callback::read(void*, unsigned int) [67]
                0.00    0.01   32843/32843       stream_Read <cycle 1> [65]
-----------------------------------------------
                                  66             module_load <cycle 4> [580]
[68]     0.0    0.00    0.01      66         generic_start <cycle 4> [68]
                0.00    0.01       1/1           OpenDecoder [69]
                0.00    0.00       2/2           Create [189]
                0.00    0.00       2/2           OpenDecoder [220]
                0.00    0.00       1/1           Open [233]
                0.00    0.00       2/2           OpenScaler [336]
                0.00    0.00       3/3           Open [390]
                0.00    0.00       1/1           Open [392]
                0.00    0.00       1/1           Open [393]
                0.00    0.00       1/1           FileOpen [391]
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [467]
                0.00    0.00       1/1           OpenDecoder [452]
                0.00    0.00       3/3           Open [713]
                0.00    0.00       1/1           Open [919]
                0.00    0.00       1/1           OpenFilter [934]
                0.00    0.00       1/1           Activate [880]
                0.00    0.00       1/1           Activate [877]
                0.00    0.00       1/1           Activate [878]
                0.00    0.00       1/1           Activate [879]
                0.00    0.00       1/1           Activate [875]
                0.00    0.00       1/1           Activate [881]
                0.00    0.00       1/1           Activate [882]
                0.00    0.00       1/1           CreateResampler [893]
                0.00    0.00       1/1           Create [891]
                0.00    0.00       1/1           Create [892]
                0.00    0.00       1/1           OpenFilter [936]
                0.00    0.00       1/1           OpenFilter [935]
                0.00    0.00       1/1           Activate [876]
                0.00    0.00       1/1           Create [890]
                0.00    0.00       1/1           Probe [939]
                0.00    0.00       1/1           DecoderOpen [894]
                0.00    0.00       1/1           Open [912]
                0.00    0.00       1/1           OpenDecoder [928]
                0.00    0.00       1/1           OpenDecoder [929]
                0.00    0.00       1/1           OpenDecoder [930]
                0.00    0.00       1/1           DecoderOpen [895]
                0.00    0.00       1/1           OpenDecoder [923]
                0.00    0.00       1/1           OpenDecoder [931]
                0.00    0.00       1/1           OpenCommon [921]
                0.00    0.00       1/1           OpenDecoder [926]
                0.00    0.00       1/1           Create [889]
                0.00    0.00       1/1           OpenDecoder [925]
                0.00    0.00       1/1           DecoderOpen [896]
                0.00    0.00       1/1           OpenDecoder [933]
                0.00    0.00       1/1           Open [916]
                0.00    0.00       1/1           OpenDecoder [932]
                0.00    0.00       1/1           OpenDecoder [927]
                0.00    0.00       1/1           OpenDecoder [922]
                0.00    0.00       1/1           OpenDecoder [924]
                0.00    0.00       1/1           Open [918]
                0.00    0.00       1/1           Open [911]
                0.00    0.00       1/1           RarStreamOpen [941]
                0.00    0.00       1/1           StreamOpen [944]
                0.00    0.00       1/1           Open(vlc_object_t*) [16482]
                0.00    0.00       1/1           OpenXZ [938]
                0.00    0.00       1/1           Open [913]
                0.00    0.00       1/1           OpenBzip2 [920]
                0.00    0.00       1/1           OpenGzip [937]
                0.00    0.00       1/1           Open [915]
                0.00    0.00       1/1           Open [917]
                0.00    0.00       1/1           Open [914]
                                   1             Open(vlc_object_t*) <cycle 4> [129]
-----------------------------------------------
                0.00    0.01       1/1           generic_start <cycle 4> [68]
[69]     0.0    0.00    0.01       1         OpenDecoder [69]
                0.00    0.01       1/1           avcodec_register_all [83]
                0.00    0.00       3/188         var_Inherit [154]
                0.00    0.00       1/1           InitAudioDec [318]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/224         var_Create [155]
                0.00    0.00       2/6           vlc_global_mutex [425]
                0.00    0.00       1/2360        var_GetChecked [148]
                0.00    0.00       1/1           GetFfmpegCodec [904]
                0.00    0.00       1/1           av_log_set_level [954]
                0.00    0.00       1/13          av_get_cpu_flags [629]
                0.00    0.00       1/31          av_register_codec_parser [592]
                0.00    0.00       1/1           avcodec_find_decoder [960]
                0.00    0.00       1/1           avcodec_alloc_context3 [959]
-----------------------------------------------
                0.00    0.00       1/153114      DisplayNew [269]
                0.00    0.00       2/153114      Thread [14]
                0.00    0.00       2/153114      Del [310]
                0.00    0.00       2/153114      Add <cycle 4> [422]
                0.00    0.00       3/153114      es_out_Control <cycle 4> [187]
                0.00    0.00       4/153114      AStreamPrebufferStream [274]
                0.00    0.00       6/153114      aout_DecIsEmpty [205]
                0.00    0.00     628/153114      AStreamRefillStream [141]
                0.00    0.00     847/153114      EsOutControl <cycle 4> [115]
                0.00    0.00     856/153114      Control <cycle 4> [122]
                0.00    0.00    1333/153114      MainLoop [25]
                0.00    0.00    2425/153114      msleep [103]
                0.00    0.00    6897/153114      ThreadDisplayPreparePicture [57]
                0.00    0.00   11930/153114      aout_DecPlay [10]
                0.00    0.00   12822/153114      vout_ManageDisplay [108]
                0.00    0.00   12847/153114      input_clock_ConvertTS [113]
                0.00    0.00   12859/153114      Send [55]
                0.00    0.00   12865/153114      vout_SetInterlacingState [130]
                0.00    0.00   12889/153114      vout_control_Pop [34]
                0.00    0.00   16565/153114      AStreamSeekStream [120]
                0.00    0.00   47331/153114      ThreadDisplayPicture [17]
[70]     0.0    0.01    0.00  153114         mdate [70]
-----------------------------------------------
                0.01    0.00  143125/143125      av_frame_unref [76]
[71]     0.0    0.01    0.00  143125         av_buffer_unref [71]
                0.00    0.00   23843/71716       av_freep [480]
                0.00    0.00   11924/11924       pool_release_buffer [503]
-----------------------------------------------
                0.00    0.00    1479/49560       AReadStream [142]
                0.00    0.00   11927/49560       PlayedCallback [105]
                0.00    0.00   17891/49560       DecoderDecodeAudio [4]
                0.00    0.00   18263/49560       DecoderDecodeVideo [16]
[72]     0.0    0.01    0.00   49560         stats_Update [72]
-----------------------------------------------
                0.00    0.00    2426/30060       picture_fifo_Peek [127]
                0.00    0.00    6907/30060       ThreadDisplayPreparePicture [57]
                0.00    0.00    6914/30060       ThreadDisplayPicture [17]
                0.00    0.00   13813/30060       picture_pool_Get [30]
[73]     0.0    0.01    0.00   30060         picture_Hold [73]
-----------------------------------------------
                0.00    0.00       1/27681       Open [233]
                0.00    0.00       2/27681       video_format_FixRgb [388]
                0.00    0.00   13838/27681       video_format_GetTransform [101]
                0.00    0.00   13840/27681       video_format_TransformBy [100]
[74]     0.0    0.01    0.00   27681         transform_GetBasicOps [74]
                0.00    0.00       6/6           BinaryLog [656]
-----------------------------------------------
                0.00    0.00       1/20196       DecoderDecodeVideo [16]
                0.00    0.00       1/20196       DecoderDecodeAudio [4]
                0.00    0.00       1/20196       input_ControlPush [408]
                0.00    0.00       2/20196       DecoderFlush [263]
                0.00    0.00       2/20196       input_DecoderDelete [249]
                0.00    0.00       2/20196       input_DecoderStartWait [243]
                0.00    0.00       4/20196       input_DecoderStopWait [287]
                0.00    0.00       4/20196       vlc_sem_post [288]
                0.00    0.00      26/20196       vout_control_Push [199]
                0.00    0.00      27/20196       DecoderThread [3]
                0.00    0.00     400/20196       vlc_rwlock_unlock [147]
                0.00    0.00    6872/20196       vout_control_Wake [104]
                0.01    0.00   12854/20196       block_FifoPut [96]
[75]     0.0    0.01    0.00   20196         vlc_cond_signal [75]
-----------------------------------------------
                0.00    0.00    5965/17895       avcodec_decode_audio4 [6]
                0.00    0.00    5965/17895       aac_decode_frame_int [8]
                0.00    0.00    5965/17895       av_frame_free [109]
[76]     0.0    0.00    0.01   17895         av_frame_unref [76]
                0.01    0.00  143125/143125      av_buffer_unref [71]
                0.00    0.00   35788/71716       av_freep [480]
-----------------------------------------------
                0.00    0.00       1/12900       Run [24]
                0.00    0.00      23/12900       vlc_object_release [193]
                0.01    0.00   12876/12900       DecoderThread [3]
[77]     0.0    0.01    0.00   12900         vlc_restorecancel [77]
-----------------------------------------------
                0.01    0.00   11930/11930       avcodec_default_get_buffer2 [42]
[78]     0.0    0.01    0.00   11930         av_buffer_pool_get [78]
                0.00    0.00   11921/11923       av_buffer_create [504]
                0.00    0.00       2/2           av_buffer_alloc [774]
                0.00    0.00       2/29862       av_mallocz [487]
-----------------------------------------------
                0.00    0.00       1/6915        vout_new_buffer [29]
                0.01    0.00    6914/6915        spu_Render [56]
[79]     0.0    0.01    0.00    6915         vlc_fourcc_IsYUV [79]
-----------------------------------------------
                0.01    0.00    6894/6894        GetOutput [23]
[80]     0.0    0.01    0.00    6894         CopyOmxPicture [80]
-----------------------------------------------
                0.01    0.00    5966/5966        aout_FiltersPlay [12]
[81]     0.0    0.01    0.00    5966         DoWork [81]
                0.00    0.00     418/25228       block_generic_Release [492]
                0.00    0.00     418/25228       block_Alloc [491]
-----------------------------------------------
                0.01    0.00     308/308         avcodec_register_all [83]
[82]     0.0    0.01    0.00     308         avcodec_register [82]
                0.00    0.00       1/1           ff_dsputil_static_init [976]
                0.00    0.00       1/1           wmavoice_init_static_data [1044]
                0.00    0.00       1/1           ff_tak_init_crc [992]
                0.00    0.00       1/1           tak_init_static_data [1025]
                0.00    0.00       1/1           qdm2_init_static_data [1020]
                0.00    0.00       1/1           ff_atrac3p_init_vlcs [974]
                0.00    0.00       1/1           atrac3_init_static_data [950]
                0.00    0.00       1/1           ff_mqc_init_context_tables [985]
                0.00    0.00       1/1           jpeg2000_init_static_data [1009]
-----------------------------------------------
                0.00    0.01       1/1           OpenDecoder [69]
[83]     0.0    0.00    0.01       1         avcodec_register_all [83]
                0.01    0.00     308/308         avcodec_register [82]
                0.00    0.00      30/31          av_register_codec_parser [592]
-----------------------------------------------
                                                 <spontaneous>
[84]     0.0    0.01    0.00                 fft512_neon [84]
-----------------------------------------------
                                                 <spontaneous>
[85]     0.0    0.01    0.00                 fft8_neon [85]
-----------------------------------------------
                                                 <spontaneous>
[86]     0.0    0.01    0.00                 profCount [86]
-----------------------------------------------
                0.01    0.00   15377/15377       Demux(demux_t*) [26]
[87]     0.0    0.01    0.00   15377         virtual_segment_c::UpdateCurrentToChapter(demux_t&) [87]
                0.00    0.00   15380/15382       virtual_chapter_c::getSubChapterbyTimecode(long long) [16170]
                0.00    0.00   15379/15381       virtual_edition_c::getChapterbyTimecode(long long) [16171]
-----------------------------------------------
                                                 <spontaneous>
[88]     0.0    0.01    0.00                 __aeabi_idiv [88]
-----------------------------------------------
                                                 <spontaneous>
[89]     0.0    0.01    0.00                 __aeabi_uidiv [89]
-----------------------------------------------
                                                 <spontaneous>
[90]     0.0    0.01    0.00                 __aeabi_uidivmod [90]
-----------------------------------------------
                0.00    0.00       1/446104      input_DecoderChangeDelay [472]
                0.00    0.00       1/446104      GetOutput [23]
                0.00    0.00       1/446104      InitOmxCore [451]
                0.00    0.00       1/446104      ReadMeta(vlc_object_t*) [467]
                0.00    0.00       1/446104      Close [476]
                0.00    0.00       1/446104      libvlc_media_player_get_media [458]
                0.00    0.00       1/446104      libvlc_media_player_stop [213]
                0.00    0.00       1/446104      input_item_SetPreparsed [420]
                0.00    0.00       1/446104      input_item_SetURI [455]
                0.00    0.00       1/446104      input_item_SetDuration [419]
                0.00    0.00       1/446104      aout_update_format [190]
                0.00    0.00       1/446104      InitTitle [252]
                0.00    0.00       1/446104      End [191]
                0.00    0.00       1/446104      input_ControlPush [408]
                0.00    0.00       1/446104      input_Stop [424]
                0.00    0.00       1/446104      InputSourceInit [197]
                0.00    0.00       1/446104      Init [182]
                0.00    0.00       1/446104      Run [24]
                0.00    0.00       1/446104      input_resource_HoldAout [456]
                0.00    0.00       1/446104      input_resource_ResetAout [230]
                0.00    0.00       1/446104      input_resource_RequestSout [457]
                0.00    0.00       1/446104      input_resource_Terminate [225]
                0.00    0.00       1/446104      stats_ReinitInputStats [461]
                0.00    0.00       1/446104      VoutDisplayEvent [385]
                0.00    0.00       1/446104      vout_Close [227]
                0.00    0.00       1/446104      FilterRelease [222]
                0.00    0.00       1/446104      spu_ClearChannel [459]
                0.00    0.00       1/446104      vlc_list_children [463]
                0.00    0.00       1/446104      ObjectKillChildrens [441]
                0.00    0.00       1/446104      var_Type [462]
                0.00    0.00       1/446104      input_clock_ChangeSystemOrigin [454]
                0.00    0.00       1/446104      vout_control_Dead [464]
                0.00    0.00       1/446104      vout_snapshot_End [465]
                0.00    0.00       1/446104      input_item_preparsed_changed [432]
                0.00    0.00       1/446104      input_vaControl <cycle 5> [304]
                0.00    0.00       2/446104      Flush [259]
                0.00    0.00       2/446104      libvlc_media_player_set_media [277]
                0.00    0.00       2/446104      libvlc_media_player_play [161]
                0.00    0.00       2/446104      input_item_GetName [435]
                0.00    0.00       2/446104      input_item_SetEpgOffline [414]
                0.00    0.00       2/446104      input_DecoderDelete [249]
                0.00    0.00       2/446104      input_DecoderStartWait [243]
                0.00    0.00       2/446104      input_DecoderWait [202]
                0.00    0.00       2/446104      Create [163]
                0.00    0.00       2/446104      input_resource_PutAout [324]
                0.00    0.00       2/446104      input_resource_SetInput [436]
                0.00    0.00       2/446104      ThreadChangeFilters [342]
                0.00    0.00       2/446104      spu_Attach <cycle 4> [235]
                0.00    0.00       2/446104      spu_ChangeSources [439]
                0.00    0.00       2/446104      spu_ChangeFilters [437]
                0.00    0.00       2/446104      spu_ChangeMargin [438]
                0.00    0.00       2/446104      vlc_cleanup_lock [475]
                0.00    0.00       2/446104      vlc_cancel [440]
                0.00    0.00       2/446104      input_clock_SetJitter [434]
                0.00    0.00       2/446104      EsOutDel [332]
                0.00    0.00       2/446104      Del [310]
                0.00    0.00       2/446104      Add <cycle 4> [422]
                0.00    0.00       2/446104      input_resource_HoldVouts [433]
                0.00    0.00       3/446104      libvlc_retain [430]
                0.00    0.00       3/446104      set_state [372]
                0.00    0.00       3/446104      input_item_SetErrorWhenReading [427]
                0.00    0.00       3/446104      input_item_SetMeta [350]
                0.00    0.00       3/446104      input_item_AddOption [426]
                0.00    0.00       3/446104      input_resource_GetAout [204]
                0.00    0.00       3/446104      vlc_global_mutex [425]
                0.00    0.00       3/446104      EsOutAdd <cycle 4> [207]
                0.00    0.00       4/446104      input_item_GetMeta [417]
                0.00    0.00       4/446104      input_item_UpdateTracksInfo [423]
                0.00    0.00       4/446104      input_DecoderStopWait [287]
                0.00    0.00       4/446104      vout_SetWindowState [418]
                0.00    0.00       4/446104      vlc_cleanup_lock [474]
                0.00    0.00       4/446104      vlc_sem_post [288]
                0.00    0.00       4/446104      input_item_ReplaceInfos [325]
                0.00    0.00       5/446104      vlc_event_attach [413]
                0.00    0.00       5/446104      vout_control_WaitEmpty [262]
                0.00    0.00       6/446104      input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       6/446104      block_FifoEmpty [405]
                0.00    0.00       6/446104      picture_fifo_Flush [406]
                0.00    0.00       7/446104      VoutVideoFilterStaticNewPicture [384]
                0.00    0.00       8/446104      event_attach [381]
                0.00    0.00       8/446104      vout_IsEmpty [247]
                0.00    0.00       8/446104      vlc_event_manager_register_event_type [383]
                0.00    0.00      13/446104      var_Destroy [223]
                0.00    0.00      15/446104      input_DecoderIsEmpty [194]
                0.00    0.00      15/446104      vlc_object_set_name [330]
                0.00    0.00      18/446104      libvlc_get_input_thread [307]
                0.00    0.00      18/446104      block_FifoWake [309]
                0.00    0.00      23/446104      vlc_object_release [193]
                0.00    0.00      24/446104      vlc_custom_create [284]
                0.00    0.00      24/446104      var_TriggerCallback <cycle 5> [283]
                0.00    0.00      26/446104      vout_control_Push [199]
                0.00    0.00      27/446104      libvlc_event_manager_register_event_type [279]
                0.00    0.00      34/446104      var_DelCallback [192]
                0.00    0.00      34/446104      vlc_event_send [239]
                0.00    0.00      51/446104      var_AddCallback [183]
                0.00    0.00     135/446104      vlc_cond_wait [173]
                0.00    0.00     224/446104      var_Create [155]
                0.00    0.00     400/446104      vlc_rwlock_rdlock [181]
                0.00    0.00     400/446104      vlc_rwlock_unlock [147]
                0.00    0.00     423/446104      input_clock_Update [179]
                0.00    0.00     424/446104      libvlc_media_player_get_state [176]
                0.00    0.00     431/446104      input_clock_GetState [175]
                0.00    0.00     493/446104      AReadStream [142]
                0.00    0.00     614/446104      TriggerCallback <cycle 5> [162]
                0.00    0.00     627/446104      var_SetChecked <cycle 5> [166]
                0.00    0.00    1002/446104      var_Change [158]
                0.00    0.00    1279/446104      Demux(demux_t*) [26]
                0.00    0.00    1729/446104      MainLoop [25]
                0.00    0.00    1755/446104      libvlc_event_send [151]
                0.00    0.00    2360/446104      var_GetChecked [148]
                0.00    0.00    2423/446104      vout_FixLeaks [126]
                0.00    0.00    2432/446104      picture_fifo_Peek [127]
                0.00    0.00    2549/446104      input_clock_GetWakeup [146]
                0.00    0.00    5964/446104      TimeGet [62]
                0.00    0.00    5964/446104      Play [36]
                0.00    0.00    6777/446104      vout_PutPicture [99]
                0.00    0.00    6842/446104      picture_fifo_Push [132]
                0.00    0.00    6886/446104      vout_control_Wake [104]
                0.00    0.00    6913/446104      vout_snapshot_IsRequested [112]
                0.00    0.00    6914/446104      ThreadDisplayPicture [17]
                0.00    0.00    6997/446104      ThreadDisplayPreparePicture [57]
                0.00    0.00    7006/446104      picture_fifo_Pop [131]
                0.00    0.00    9307/446104      vout_GetPicture [35]
                0.00    0.00    9336/446104      vlc_cleanup_lock [149]
                0.00    0.00   11933/446104      aout_OutputUnlock [60]
                0.00    0.00   12408/446104      Control <cycle 4> [122]
                0.00    0.00   12426/446104      EsOutControl <cycle 4> [115]
                0.00    0.00   12781/446104      DecoderThread [3]
                0.00    0.00   12816/446104      input_DecoderIsCcPresent [125]
                0.00    0.00   12833/446104      Send [55]
                0.00    0.00   12836/446104      EsOutSend [59]
                0.00    0.00   12840/446104      input_DecoderHasFormatChanged [124]
                0.00    0.00   12844/446104      vout_AreDisplayPicturesInvalid [123]
                0.00    0.00   12844/446104      vout_control_Pop [34]
                0.00    0.00   12851/446104      input_clock_ConvertTS [113]
                0.00    0.00   12868/446104      block_FifoGet [121]
                0.00    0.00   12874/446104      block_FifoPut [96]
                0.00    0.00   12887/446104      Thread [14]
                0.00    0.00   13865/446104      PlayedCallback [105]
                0.00    0.00   14147/446104      vout_new_buffer [29]
                0.00    0.00   17880/446104      DecoderDecodeAudio [4]
                0.00    0.00   19860/446104      DecoderDecodeVideo [16]
                0.00    0.00   20744/446104      spu_Render [56]
                0.00    0.00   25602/446104      vout_ManageDisplay [108]
                0.00    0.00   56845/446104      vlc_cond_timedwait [22]
[91]     0.0    0.01    0.00  446104         vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.01    6918/6918        ThreadDisplayPicture [17]
[92]     0.0    0.00    0.01    6918         video_format_ApplyRotation [92]
                0.00    0.01    6916/6916        video_format_TransformTo [93]
-----------------------------------------------
                0.00    0.01    6916/6916        video_format_ApplyRotation [92]
[93]     0.0    0.00    0.01    6916         video_format_TransformTo [93]
                0.00    0.00    6920/6920        video_format_TransformBy [100]
                0.00    0.00    6917/6917        video_format_GetTransform [101]
-----------------------------------------------
                0.00    0.00       3/8131        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
                0.00    0.00       6/8131        matroska_segment_c::Preload() [133]
                0.00    0.00      14/8131        matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00     265/8131        matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
                0.00    0.01    7843/8131        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
[94]     0.0    0.00    0.01    8131         EbmlParser::Get(int) [94]
                0.00    0.01    8012/8334        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
                0.00    0.00    7881/8204        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [137]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00    8011/8333        libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16179]
                0.00    0.00    7926/7938        libebml::EbmlElement::IsDummy() const [16191]
                0.00    0.00    7793/7794        libmatroska::KaxCluster::Generic() const [16193]
                0.00    0.00    7687/7964        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16187]
                0.00    0.00    7680/8234        libmatroska::KaxSimpleBlock::Generic() const [16182]
                0.00    0.00     132/132         libmatroska::KaxCueTrackPositions::Generic() const [16213]
                0.00    0.00      66/66          libmatroska::KaxCuePoint::Generic() const [16229]
                0.00    0.00      51/53          libmatroska::KaxClusterTimecode::Generic() const [16230]
                0.00    0.00      51/52          libmatroska::KaxCluster::~KaxCluster() [16233]
                0.00    0.00      51/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16219]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Generic() const [16255]
                0.00    0.00      33/33          libmatroska::KaxCueClusterPosition::Generic() const [16254]
                0.00    0.00      33/33          libmatroska::KaxCueTrack::Generic() const [16253]
                0.00    0.00      33/33          libmatroska::KaxCueTime::Generic() const [16252]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16249]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16228]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::~KaxCueTrack() [16225]
                0.00    0.00      33/66          libmatroska::KaxCueTime::~KaxCueTime() [16222]
                0.00    0.00      32/33          libmatroska::KaxCuePoint::~KaxCuePoint() [16243]
                0.00    0.00      32/33          libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16246]
                0.00    0.00      10/10          libmatroska::KaxSegment::Generic() const [16263]
                0.00    0.00      10/10          libmatroska::KaxSeek::Generic() const [16264]
                0.00    0.00       4/4           libebml::EbmlVoid::Generic() const [16325]
                0.00    0.00       4/4           libebml::EbmlVoid::~EbmlVoid() [16305]
                0.00    0.00       3/3           libmatroska::KaxSeekHead::Generic() const [16338]
                0.00    0.00       3/3           libmatroska::KaxSeekPosition::Generic() const [16339]
                0.00    0.00       3/3           libmatroska::KaxSeekID::Generic() const [16341]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::~KaxSeekPosition() [16274]
                0.00    0.00       3/3           libmatroska::KaxSeek::~KaxSeek() [16335]
                0.00    0.00       3/6           libmatroska::KaxSeekID::~KaxSeekID() [16280]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::~KaxSeekHead() [16356]
                0.00    0.00       1/2           libmatroska::KaxTracks::Generic() const [16467]
                0.00    0.00       1/2           libmatroska::KaxInfo::Generic() const [16466]
                0.00    0.00       1/1           libmatroska::KaxCues::Generic() const [16559]
                0.00    0.00       1/2           libmatroska::KaxTracks::~KaxTracks() [16407]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16301]
-----------------------------------------------
                0.00    0.00     322/8334        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.01    8012/8334        EbmlParser::Get(int) [94]
[95]     0.0    0.00    0.01    8334         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
                0.00    0.01   24643/32841       vlc_stream_io_callback::read(void*, unsigned int) [67]
                0.00    0.00    8329/16555       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
                0.00    0.00    8329/16307       vlc_stream_io_callback::getFilePointer() [138]
                0.00    0.00   24397/29792       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16168]
                0.00    0.00    8311/8311        libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00    7960/7960        libmatroska::KaxInternalBlock::ValidateSize() const [16188]
                0.00    0.00     210/210         libebml::EbmlUInteger::ValidateSize() const [16203]
                0.00    0.00     132/137         libebml::EbmlMaster::ValidateSize() const [16212]
                0.00    0.00      12/7938        libebml::EbmlElement::IsDummy() const [16191]
                0.00    0.00       6/6           libebml::EbmlBinary::ValidateSize() const [16282]
                0.00    0.00       4/4           libebml::EbmlString::ValidateSize() const [16322]
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ValidateSize() const [16324]
                0.00    0.00       3/3           libmatroska::KaxSeekID::ValidateSize() const [16340]
                0.00    0.00       3/3           libebml::EbmlFloat::ValidateSize() const [16347]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::ValidateSize() const [16447]
                0.00    0.00       2/2           libebml::EbmlDate::ValidateSize() const [16478]
-----------------------------------------------
                0.00    0.01   12872/12872       input_DecoderDecode [97]
[96]     0.0    0.00    0.01   12872         block_FifoPut [96]
                0.01    0.00   12854/20196       vlc_cond_signal [75]
                0.00    0.00   12873/382619      vlc_mutex_lock [32]
                0.00    0.00   12874/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       2/12865       DecoderFlush [263]
                0.00    0.00       2/12865       EsOutControl <cycle 4> [115]
                0.00    0.01   12861/12865       EsOutSend [59]
[97]     0.0    0.00    0.01   12865         input_DecoderDecode [97]
                0.00    0.01   12872/12872       block_FifoPut [96]
                0.00    0.00   12868/13712       block_FifoSize [496]
-----------------------------------------------
                0.00    0.00     421/8106        Demux(demux_t*) [26]
                0.00    0.01    7685/8106        BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
[98]     0.0    0.00    0.01    8106         es_out_Control(es_out_t*, int, ...) [98]
                0.00    0.01    8109/31235       Control <cycle 4> [122]
-----------------------------------------------
                0.00    0.01    6887/6887        DecoderDecodeVideo [16]
[99]     0.0    0.00    0.01    6887         vout_PutPicture [99]
                0.00    0.00    6877/6877        vout_control_Wake [104]
                0.00    0.00    6875/6875        picture_fifo_Push [132]
                0.00    0.00    6887/382619      vlc_mutex_lock [32]
                0.00    0.00    6777/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00    6920/6920        video_format_TransformTo [93]
[100]    0.0    0.00    0.00    6920         video_format_TransformBy [100]
                0.00    0.00   13840/27681       transform_GetBasicOps [74]
-----------------------------------------------
                0.00    0.00    6917/6917        video_format_TransformTo [93]
[101]    0.0    0.00    0.00    6917         video_format_GetTransform [101]
                0.00    0.00   13838/27681       transform_GetBasicOps [74]
-----------------------------------------------
                0.00    0.00   12878/12878       Thread [14]
[102]    0.0    0.00    0.00   12878         vout_ManageWrapper [102]
                0.00    0.00   12797/12797       vout_ManageDisplay [108]
                0.00    0.00   12886/12886       vout_AreDisplayPicturesInvalid [123]
-----------------------------------------------
                0.00    0.00       1/2425        Flush [259]
                0.00    0.00    2424/2425        vout_new_buffer [29]
[103]    0.0    0.00    0.00    2425         msleep [103]
                0.00    0.00    2425/9339        mwait [50]
                0.00    0.00    2425/153114      mdate [70]
-----------------------------------------------
                0.00    0.00    6877/6877        vout_PutPicture [99]
[104]    0.0    0.00    0.00    6877         vout_control_Wake [104]
                0.00    0.00    6872/20196       vlc_cond_signal [75]
                0.00    0.00    6878/382619      vlc_mutex_lock [32]
                0.00    0.00    6886/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                                                 <spontaneous>
[105]    0.0    0.00    0.00                 PlayedCallback [105]
                0.00    0.00   11927/49560       stats_Update [72]
                0.00    0.00   13871/382619      vlc_mutex_lock [32]
                0.00    0.00   13865/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00    6915/6915        ThreadDisplayPicture [17]
[106]    0.0    0.00    0.00    6915         vout_FilterDisplay [106]
                0.00    0.00    6916/27727       filter_chain_VideoFilter [51]
                0.00    0.00    6916/6916        filter_chain_GetLength [520]
-----------------------------------------------
                0.00    0.00       1/4323        ControlPause [299]
                0.00    0.00       2/4323        End [191]
                0.00    0.00       2/4323        Init [182]
                0.00    0.00       3/4323        UpdatePtsDelay [280]
                0.00    0.00    4315/4323        MainLoop [25]
[107]    0.0    0.00    0.00    4323         es_out_Control [107]
                0.00    0.00    4320/31235       Control <cycle 4> [122]
                0.00    0.00       3/31235       EsOutControl <cycle 4> [115]
-----------------------------------------------
                0.00    0.00   12797/12797       vout_ManageWrapper [102]
[108]    0.0    0.00    0.00   12797         vout_ManageDisplay [108]
                0.00    0.00   25660/382619      vlc_mutex_lock [32]
                0.00    0.00   12822/153114      mdate [70]
                0.00    0.00   25602/446104      vlc_mutex_unlock [91]
                0.00    0.00       4/253         vlc_Log [152]
                0.00    0.00       4/4           vout_display_Control [711]
-----------------------------------------------
                0.00    0.00       1/5966        avcodec_close [411]
                0.00    0.00    5965/5966        DecodeAudio [5]
[109]    0.0    0.00    0.00    5966         av_frame_free [109]
                0.00    0.00    5965/17895       av_frame_unref [76]
-----------------------------------------------
                0.00    0.00     277/7958        libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
                0.00    0.00    7681/7958        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
[110]    0.0    0.00    0.00    7958         libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
                0.00    0.00    7963/7970        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [111]
                0.00    0.00    7961/16307       vlc_stream_io_callback::getFilePointer() [138]
                0.00    0.00   15132/63794       libebml::EbmlElement::GetSize() const [16166]
                0.00    0.00   10286/10286       std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [16175]
                0.00    0.00    7966/8243        libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [16181]
                0.00    0.00    7952/7952        std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [16190]
                0.00    0.00    4597/4597        libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16199]
                0.00    0.00     783/29792       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16168]
-----------------------------------------------
                0.00    0.00       3/7970        matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00       4/7970        libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
                0.00    0.00    7963/7970        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
[111]    0.0    0.00    0.00    7970         libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [111]
                0.00    0.00    7972/32841       vlc_stream_io_callback::read(void*, unsigned int) [67]
                0.00    0.00   23912/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00    6917/6917        ThreadDisplayPicture [17]
[112]    0.0    0.00    0.00    6917         vout_snapshot_IsRequested [112]
                0.00    0.00    6917/64029       vlc_mutex_trylock [40]
                0.00    0.00    6913/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00   12848/12848       DecoderFixTs [114]
[113]    0.0    0.00    0.00   12848         input_clock_ConvertTS [113]
                0.00    0.00   12849/382619      vlc_mutex_lock [32]
                0.00    0.00   12847/153114      mdate [70]
                0.00    0.00   12851/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00    5956/12834       DecoderDecodeAudio [4]
                0.00    0.00    6878/12834       DecoderDecodeVideo [16]
[114]    0.0    0.00    0.00   12834         DecoderFixTs [114]
                0.00    0.00   12848/12848       input_clock_ConvertTS [113]
-----------------------------------------------
                               12433             es_out_Control <cycle 4> [498]
                0.00    0.00       3/31235       es_out_Control [107]
[115]    0.0    0.00    0.00   12436         EsOutControl <cycle 4> [115]
                0.00    0.00   12437/382619      vlc_mutex_lock [32]
                0.00    0.00     425/426         input_SendEventPosition [143]
                0.00    0.00   12426/446104      vlc_mutex_unlock [91]
                0.00    0.00    2548/2548        input_clock_GetWakeup [146]
                0.00    0.00     847/153114      mdate [70]
                0.00    0.00     426/427         input_SendEventLength [174]
                0.00    0.00     425/432         input_clock_GetState [175]
                0.00    0.00     423/423         input_clock_Update [179]
                0.00    0.00      28/28          input_DecoderIsEmpty [194]
                0.00    0.00       2/12865       input_DecoderDecode [97]
                0.00    0.00       4/12          LanguageSplit [271]
                0.00    0.00       1/3           input_SendEventMeta [278]
                0.00    0.00       1/1           input_SendEventMetaEpg [403]
                0.00    0.00       1/1           input_item_SetEpgOffline [414]
                0.00    0.00       1/1           input_item_SetPreparsed [420]
                0.00    0.00       1/4           input_item_GetMeta [417]
                0.00    0.00       1/2           input_clock_SetJitter [434]
                0.00    0.00    7684/7692        EsIsSelected [511]
                0.00    0.00     844/844         input_DecoderGetFifoSize [546]
                0.00    0.00       2/25228       block_Alloc [491]
                0.00    0.00       2/6           vlc_meta_Get [676]
                0.00    0.00       1/6           input_GetItem [674]
                0.00    0.00       1/2           vlc_meta_Merge [869]
                0.00    0.00       1/1           input_clock_Delete [1003]
                                   7             es_out_Control <cycle 4> [187]
                                   4             EsOutSelect <cycle 4> [657]
                                   2             EsUnselect <cycle 4> [320]
-----------------------------------------------
                0.00    0.00   49434/49434       stream_vaControl [118]
[116]    0.0    0.00    0.00   49434         AStreamControl [116]
                0.00    0.00   16562/16562       AStreamSeekStream [120]
                0.00    0.00   16560/49685       access_Control [380]
                0.00    0.00       5/49692       FileControl [378]
-----------------------------------------------
                0.00    0.00   49433/49433       stream_Control [119]
[117]    0.0    0.00    0.00   49433         Control [117]
                0.00    0.00   49432/49432       stream_vaControl [118]
-----------------------------------------------
                0.00    0.00   49432/49432       Control [117]
[118]    0.0    0.00    0.00   49432         stream_vaControl [118]
                0.00    0.00   49434/49434       AStreamControl [116]
-----------------------------------------------
                0.00    0.00       1/49429       matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00       4/49429       InputSourceInit [197]
                0.00    0.00   16306/49429       vlc_stream_io_callback::getFilePointer() [138]
                0.00    0.00   33118/49429       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
[119]    0.0    0.00    0.00   49429         stream_Control [119]
                0.00    0.00   49433/49433       Control [117]
-----------------------------------------------
                0.00    0.00   16562/16562       AStreamControl [116]
[120]    0.0    0.00    0.00   16562         AStreamSeekStream [120]
                0.00    0.00   16565/153114      mdate [70]
                0.00    0.00     365/480         AStreamRefillStream [141]
                0.00    0.00   33124/49685       access_Control [380]
                0.00    0.00      11/11          ASeek [634]
-----------------------------------------------
                0.00    0.00   12878/12878       DecoderThread [3]
[121]    0.0    0.00    0.00   12878         block_FifoGet [121]
                0.00    0.00   12838/382619      vlc_mutex_lock [32]
                0.00    0.00   12868/446104      vlc_mutex_unlock [91]
                0.00    0.00      41/70          vlc_cond_wait [173]
                0.00    0.00   12873/69905       vlc_testcancel [481]
                0.00    0.00   12862/26310       vlc_cond_broadcast [488]
-----------------------------------------------
                                   5             es_out_Control(es_out_t*, int, ...) <cycle 4> [16284]
                0.00    0.00    4320/31235       es_out_Control [107]
                0.00    0.01    8109/31235       es_out_Control(es_out_t*, int, ...) [98]
[122]    0.0    0.00    0.00   12434         Control <cycle 4> [122]
                0.00    0.00   12435/382619      vlc_mutex_lock [32]
                0.00    0.00   12408/446104      vlc_mutex_unlock [91]
                0.00    0.00     856/153114      mdate [70]
                0.00    0.00   12426/25284       TsStop [490]
                               12003             es_out_Control <cycle 4> [498]
                                 856             CmdExecuteControl <cycle 4> [545]
-----------------------------------------------
                0.00    0.00   12886/12886       vout_ManageWrapper [102]
[123]    0.0    0.00    0.00   12886         vout_AreDisplayPicturesInvalid [123]
                0.00    0.00   12892/382619      vlc_mutex_lock [32]
                0.00    0.00   12844/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00   12854/12854       EsOutSend [59]
[124]    0.0    0.00    0.00   12854         input_DecoderHasFormatChanged [124]
                0.00    0.00   12859/382619      vlc_mutex_lock [32]
                0.00    0.00   12840/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/25          es_format_Copy [604]
-----------------------------------------------
                0.00    0.00   12835/12835       EsOutSend [59]
[125]    0.0    0.00    0.00   12835         input_DecoderIsCcPresent [125]
                0.00    0.00   12839/382619      vlc_mutex_lock [32]
                0.00    0.00   12816/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00    2423/2423        vout_new_buffer [29]
[126]    0.0    0.00    0.00    2423         vout_FixLeaks [126]
                0.00    0.00    2422/2431        picture_fifo_Peek [127]
                0.00    0.00    2423/382619      vlc_mutex_lock [32]
                0.00    0.00    2423/446104      vlc_mutex_unlock [91]
                0.00    0.00    2424/30111       picture_Release [486]
-----------------------------------------------
                0.00    0.00       9/2431        vout_IsEmpty [247]
                0.00    0.00    2422/2431        vout_FixLeaks [126]
[127]    0.0    0.00    0.00    2431         picture_fifo_Peek [127]
                0.00    0.00    2426/30060       picture_Hold [73]
                0.00    0.00    2430/382619      vlc_mutex_lock [32]
                0.00    0.00    2432/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/16555       matroska_segment_c::Select(long long) <cycle 4> [323]
                0.00    0.00       1/16555       matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [374]
                0.00    0.00       1/16555       EbmlParser::Reset(demux_t*) [373]
                0.00    0.00       6/16555       matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00       9/16555       libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00    8208/16555       libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [137]
                0.00    0.00    8329/16555       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[128]    0.0    0.00    0.00   16555         vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
                0.00    0.00   33118/49429       stream_Control [119]
-----------------------------------------------
                                   1             generic_start <cycle 4> [68]
[129]    0.0    0.00    0.00       1         Open(vlc_object_t*) <cycle 4> [129]
                0.00    0.00       1/1           matroska_segment_c::Preload() [133]
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
                0.00    0.00       1/1           demux_sys_t::InitUi() [248]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
                0.00    0.00       1/9403        vlc_mutex_init [505]
                0.00    0.00       1/1           vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) [16527]
                0.00    0.00       1/1           libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [16538]
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16484]
                0.00    0.00       1/1           demux_sys_t::FreeUnused() [16483]
                0.00    0.00       1/1           std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) [16568]
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16485]
-----------------------------------------------
                0.00    0.00   12851/12851       Thread [14]
[130]    0.0    0.00    0.00   12851         vout_SetInterlacingState [130]
                0.00    0.00   12865/153114      mdate [70]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00    7011/7011        ThreadDisplayPreparePicture [57]
[131]    0.0    0.00    0.00    7011         picture_fifo_Pop [131]
                0.00    0.00    7013/382619      vlc_mutex_lock [32]
                0.00    0.00    7006/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00    6875/6875        vout_PutPicture [99]
[132]    0.0    0.00    0.00    6875         picture_fifo_Push [132]
                0.00    0.00    6877/382619      vlc_mutex_lock [32]
                0.00    0.00    6842/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [129]
[133]    0.0    0.00    0.00       1         matroska_segment_c::Preload() [133]
                0.00    0.00       1/1           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00       1/1           matroska_segment_c::ParseCluster(bool) [160]
                0.00    0.00       6/8131        EbmlParser::Get(int) [94]
                0.00    0.00       6/253         vlc_Log [152]
                0.00    0.00       1/1           EbmlParser::Reset(demux_t*) [373]
                0.00    0.00       3/16307       vlc_stream_io_callback::getFilePointer() [138]
                0.00    0.00       1/121         EbmlParser::Down() [16216]
                0.00    0.00       1/1           matroska_segment_c::ComputeTrackPriority() [16523]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [133]
[134]    0.0    0.00    0.00       1         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00       3/3           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00      14/8131        EbmlParser::Get(int) [94]
                0.00    0.00       7/253         vlc_Log [152]
                0.00    0.00       3/7970        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [111]
                0.00    0.00       3/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [171]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [253]
                0.00    0.00       1/49429       stream_Control [119]
                0.00    0.00       3/120         EbmlParser::Up() [396]
                0.00    0.00      10/63794       libebml::EbmlElement::GetSize() const [16166]
                0.00    0.00       3/121         EbmlParser::Down() [16216]
                0.00    0.00       3/127         libebml::EbmlUInteger::operator unsigned long long() const [16214]
                0.00    0.00       3/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16237]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16285]
-----------------------------------------------
                0.00    0.00       3/3           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
[135]    0.0    0.00    0.00       3         matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00       1/1           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
                0.00    0.00       1/1           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [156]
                0.00    0.00       1/1           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
                0.00    0.00       3/6           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00       3/253         vlc_Log [152]
                0.00    0.00       6/16555       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
                0.00    0.00       3/16307       vlc_stream_io_callback::getFilePointer() [138]
                0.00    0.00       3/6           libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16281]
                0.00    0.00       1/2           libmatroska::KaxCues::~KaxCues() [16403]
                0.00    0.00       1/2           libmatroska::KaxTracks::~KaxTracks() [16407]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16301]
-----------------------------------------------
                0.00    0.00       1/5979        aout_DecNew [198]
                0.00    0.00       1/5979        aout_DecDelete [211]
                0.00    0.00       2/5979        aout_DecFlush [226]
                0.00    0.00       6/5979        aout_DecIsEmpty [205]
                0.00    0.00    5969/5979        aout_DecPlay [10]
[136]    0.0    0.00    0.00    5979         aout_OutputLock [136]
                0.00    0.00    5979/382619      vlc_mutex_lock [32]
-----------------------------------------------
                0.00    0.00       1/8204        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
                0.00    0.00     322/8204        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00    7881/8204        EbmlParser::Get(int) [94]
[137]    0.0    0.00    0.00    8204         libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [137]
                0.00    0.00    8208/16555       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
                0.00    0.00    8206/8887        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16176]
-----------------------------------------------
                0.00    0.00       3/16307       matroska_segment_c::Preload() [133]
                0.00    0.00       3/16307       matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00      11/16307       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00    7961/16307       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
                0.00    0.00    8329/16307       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[138]    0.0    0.00    0.00   16307         vlc_stream_io_callback::getFilePointer() [138]
                0.00    0.00   16306/49429       stream_Control [119]
-----------------------------------------------
[139]    0.0    0.00    0.00     733+1920    <cycle 5 as a whole> [139]
                0.00    0.00     582             input_event_changed <cycle 5> [145]
                0.00    0.00    1391             TriggerCallback <cycle 5> [162]
                0.00    0.00     627             var_SetChecked <cycle 5> [166]
                0.00    0.00       2             DeinterlaceCallback <cycle 5> [268]
                0.00    0.00      24             var_TriggerCallback <cycle 5> [283]
                0.00    0.00       7             input_vaControl <cycle 5> [304]
                0.00    0.00       4             input_SendEventMetaInfo <cycle 5> [365]
                0.00    0.00       7             input_Control <cycle 5> [649]
                0.00    0.00       4             var_Set <cycle 5> [706]
                0.00    0.00       2             ZoomCallback <cycle 5> [768]
                0.00    0.00       2             WallPaperCallback <cycle 5> [767]
                0.00    0.00       1             var_Copy <cycle 5> [1026]
-----------------------------------------------
                                   4             libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       1/5           matroska_segment_c::ParseCluster(bool) [160]
                0.00    0.00       1/5           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [156]
                0.00    0.00       1/5           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
                0.00    0.00       2/5           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[140]    0.0    0.00    0.00       5+4       libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00     322/8334        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
                0.00    0.00     318/318         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
                0.00    0.00     322/8204        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [137]
                0.00    0.00       9/16555       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
                0.00    0.00     644/8887        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16176]
                0.00    0.00     554/8234        libmatroska::KaxSimpleBlock::Generic() const [16182]
                0.00    0.00     322/8333        libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16179]
                0.00    0.00     277/8243        libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [16181]
                0.00    0.00      13/201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16205]
                0.00    0.00       9/18          libebml::EbmlMaster::GetSize() const [16261]
                0.00    0.00       4/4           libmatroska::KaxTrackDefaultDuration::Generic() const [16321]
                0.00    0.00       4/4           libmatroska::KaxCodecPrivate::Generic() const [16319]
                0.00    0.00       4/4           libmatroska::KaxCodecID::Generic() const [16309]
                0.00    0.00       4/4           libmatroska::KaxTrackType::Generic() const [16314]
                0.00    0.00       4/4           libmatroska::KaxTrackUID::Generic() const [16312]
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::Generic() const [16318]
                0.00    0.00       4/4           libmatroska::KaxTrackEntry::Generic() const [16316]
                0.00    0.00       4/4           libmatroska::KaxSegmentUID::Generic() const [16315]
                0.00    0.00       4/4           libmatroska::KaxDateUTC::Generic() const [16310]
                0.00    0.00       4/4           libmatroska::KaxDuration::Generic() const [16311]
                0.00    0.00       4/4           libmatroska::KaxWritingApp::Generic() const [16317]
                0.00    0.00       4/4           libmatroska::KaxMuxingApp::Generic() const [16313]
                0.00    0.00       4/4           libmatroska::KaxTimecodeScale::Generic() const [16320]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16364]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16373]
                0.00    0.00       2/4           libmatroska::KaxCodecID::~KaxCodecID() [16289]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16394]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16397]
                0.00    0.00       2/3           libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16329]
                0.00    0.00       2/3           libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16332]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16376]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16382]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16385]
                0.00    0.00       2/4           libmatroska::KaxTrackType::~KaxTrackType() [16295]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::~KaxTrackUID() [16292]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::~KaxTrackNumber() [16298]
                0.00    0.00       2/6           libmatroska::KaxWritingApp::~KaxWritingApp() [16271]
                0.00    0.00       2/6           libmatroska::KaxMuxingApp::~KaxMuxingApp() [16268]
                0.00    0.00       2/6           libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16277]
                0.00    0.00       2/53          libmatroska::KaxClusterTimecode::Generic() const [16230]
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::Generic() const [16455]
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::Generic() const [16462]
                0.00    0.00       2/2           libmatroska::KaxTrackAudio::Generic() const [16449]
                0.00    0.00       2/2           libmatroska::KaxTrackLanguage::Generic() const [16457]
                0.00    0.00       2/2           libmatroska::KaxVideoDisplayHeight::Generic() const [16464]
                0.00    0.00       2/2           libmatroska::KaxVideoDisplayWidth::Generic() const [16463]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::Generic() const [16461]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::Generic() const [16460]
                0.00    0.00       2/2           libmatroska::KaxTrackVideo::Generic() const [16451]
                0.00    0.00       2/2           libmatroska::KaxTrackMinCache::Generic() const [16458]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagLacing::Generic() const [16459]
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::Generic() const [16474]
                0.00    0.00       2/2           libebml::EDocTypeVersion::Generic() const [16471]
                0.00    0.00       2/2           libebml::EDocType::Generic() const [16476]
                0.00    0.00       2/2           libebml::EMaxSizeLength::Generic() const [16470]
                0.00    0.00       2/2           libebml::EMaxIdLength::Generic() const [16468]
                0.00    0.00       2/2           libebml::EReadVersion::Generic() const [16469]
                0.00    0.00       2/2           libebml::EVersion::Generic() const [16477]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [16450]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [16465]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [16454]
                0.00    0.00       2/2           libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [16441]
                0.00    0.00       2/2           libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [16446]
                0.00    0.00       2/2           libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [16444]
                0.00    0.00       2/2           libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [16453]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const [16448]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [16442]
                0.00    0.00       2/2           libmatroska::KaxDuration::operator libebml::EbmlId const&() const [16443]
                0.00    0.00       2/2           libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [16452]
                0.00    0.00       2/2           libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [16445]
                0.00    0.00       2/2           libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [16456]
                0.00    0.00       1/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16219]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::~KaxAudioChannels() [16370]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16391]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16388]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16379]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16506]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16430]
                0.00    0.00       1/2           libebml::EDocTypeVersion::~EDocTypeVersion() [16427]
                0.00    0.00       1/2           libebml::EDocType::~EDocType() [16433]
                0.00    0.00       1/2           libebml::EMaxSizeLength::~EMaxSizeLength() [16424]
                0.00    0.00       1/2           libebml::EMaxIdLength::~EMaxIdLength() [16418]
                0.00    0.00       1/2           libebml::EReadVersion::~EReadVersion() [16421]
                0.00    0.00       1/2           libebml::EVersion::~EVersion() [16436]
                0.00    0.00       1/1           libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [16552]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [16547]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [16550]
                0.00    0.00       1/1           libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [16549]
                0.00    0.00       1/1           libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [16556]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [16548]
                0.00    0.00       1/1           libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [16551]
                0.00    0.00       1/1           libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [16553]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [16558]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [16557]
                0.00    0.00       1/1           libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [16555]
                0.00    0.00       1/1           libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [16554]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16475]
                0.00    0.00       1/2           libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16472]
                0.00    0.00       1/3           libebml::EDocType::operator libebml::EbmlId const&() const [16345]
                0.00    0.00       1/3           libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16344]
                0.00    0.00       1/3           libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16342]
                0.00    0.00       1/3           libebml::EReadVersion::operator libebml::EbmlId const&() const [16343]
                0.00    0.00       1/3           libebml::EVersion::operator libebml::EbmlId const&() const [16346]
                                   4             libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
-----------------------------------------------
                0.00    0.00     115/480         AStreamReadNoSeekStream [66]
                0.00    0.00     365/480         AStreamSeekStream [120]
[141]    0.0    0.00    0.00     480         AStreamRefillStream [141]
                0.00    0.00     492/493         AReadStream [142]
                0.00    0.00     628/153114      mdate [70]
                0.00    0.00     492/3094        vlc_object_alive [539]
-----------------------------------------------
                0.00    0.00       1/493         AStreamPrebufferStream [274]
                0.00    0.00     492/493         AStreamRefillStream [141]
[142]    0.0    0.00    0.00     493         AReadStream [142]
                0.00    0.00    1479/49560       stats_Update [72]
                0.00    0.00     493/382619      vlc_mutex_lock [32]
                0.00    0.00     493/446104      vlc_mutex_unlock [91]
                0.00    0.00     493/493         FileRead [547]
-----------------------------------------------
                0.00    0.00       1/426         Init [182]
                0.00    0.00     425/426         EsOutControl <cycle 4> [115]
[143]    0.0    0.00    0.00     426         input_SendEventPosition [143]
                0.00    0.00     426/733         var_SetChecked <cycle 5> [166]
                0.00    0.00     852/1003        var_Change [158]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
[144]    0.0    0.00    0.00       1         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
                0.00    0.00     265/8131        EbmlParser::Get(int) [94]
                0.00    0.00      99/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [171]
                0.00    0.00      34/253         vlc_Log [152]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [253]
                0.00    0.00      66/120         EbmlParser::Up() [396]
                0.00    0.00     132/63794       libebml::EbmlElement::GetSize() const [16166]
                0.00    0.00      66/121         EbmlParser::Down() [16216]
                0.00    0.00      66/127         libebml::EbmlUInteger::operator unsigned long long() const [16214]
                0.00    0.00      33/41          libebml::EbmlUInteger::operator unsigned short() const [16234]
                0.00    0.00      33/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16237]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16285]
-----------------------------------------------
                                 582             TriggerCallback <cycle 5> [162]
[145]    0.0    0.00    0.00     582         input_event_changed <cycle 5> [145]
                0.00    0.00     861/877         libvlc_event_send [151]
                0.00    0.00    1285/2360        var_GetChecked [148]
                0.00    0.00       2/4           set_state [372]
                0.00    0.00       1/45          vlc_object_release [193]
                                   2             input_Control <cycle 5> [649]
-----------------------------------------------
                0.00    0.00    2548/2548        EsOutControl <cycle 4> [115]
[146]    0.0    0.00    0.00    2548         input_clock_GetWakeup [146]
                0.00    0.00    2549/382619      vlc_mutex_lock [32]
                0.00    0.00    2549/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00      15/400         config_GetFloat [212]
                0.00    0.00      45/400         config_GetPsz [186]
                0.00    0.00      87/400         config_GetInt [167]
                0.00    0.00     253/400         vlc_vaLog [153]
[147]    0.0    0.00    0.00     400         vlc_rwlock_unlock [147]
                0.00    0.00     400/20196       vlc_cond_signal [75]
                0.00    0.00     400/382619      vlc_mutex_lock [32]
                0.00    0.00     400/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/2360        OpenDecoder [69]
                0.00    0.00       1/2360        OpenScaler [336]
                0.00    0.00       1/2360        input_SendEventProgramScrambled [340]
                0.00    0.00       1/2360        Create [163]
                0.00    0.00       1/2360        subtitles_Detect [386]
                0.00    0.00       1/2360        input_ControlVarInit [188]
                0.00    0.00       1/2360        vout_OpenWrapper [229]
                0.00    0.00       1/2360        aout_New [209]
                0.00    0.00       1/2360        aout_OutputNew [276]
                0.00    0.00       1/2360        DeinterlaceIsPresent [470]
                0.00    0.00       1/2360        aout_ChangeFilterString [469]
                0.00    0.00       2/2360        MainLoop [25]
                0.00    0.00       2/2360        var_Get [446]
                0.00    0.00       2/2360        EsSelect <cycle 4> [265]
                0.00    0.00       2/2360        EsUnselect <cycle 4> [320]
                0.00    0.00       2/2360        input_EsOutTimeshiftNew [302]
                0.00    0.00       2/2360        vout_InitInterlacingSupport [221]
                0.00    0.00       3/2360        UpdatePtsDelay [280]
                0.00    0.00       3/2360        vout_IntfInit [180]
                0.00    0.00       5/2360        InputSourceInit [197]
                0.00    0.00       7/2360        ThreadStart [200]
                0.00    0.00       7/2360        input_EsOutNew [343]
                0.00    0.00       8/2360        libvlc_media_player_get_length [237]
                0.00    0.00       8/2360        libvlc_media_player_get_time [238]
                0.00    0.00      10/2360        DeinterlaceCallback <cycle 5> [268]
                0.00    0.00      17/2360        Init [182]
                0.00    0.00     427/2360        input_SendEventLength [174]
                0.00    0.00     557/2360        var_Inherit [154]
                0.00    0.00    1285/2360        input_event_changed <cycle 5> [145]
[148]    0.0    0.00    0.00    2360         var_GetChecked [148]
                0.00    0.00    2360/382619      vlc_mutex_lock [32]
                0.00    0.00    2360/446104      vlc_mutex_unlock [91]
                0.00    0.00    2360/4112        tfind [537]
                0.00    0.00    1799/3327        DupDummy [538]
                0.00    0.00      44/115         DupString [571]
-----------------------------------------------
                                                 <spontaneous>
[149]    0.0    0.00    0.00                 vlc_cleanup_lock [149]
                0.00    0.00    9336/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [129]
[150]    0.0    0.00    0.00       1         demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
                0.00    0.00       2/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       3/6           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00       3/8131        EbmlParser::Get(int) [94]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [253]
                0.00    0.00       1/8204        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [137]
                0.00    0.00       3/6           libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16281]
                0.00    0.00       2/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
                0.00    0.00       2/2           std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) [16480]
                0.00    0.00       1/1           libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16540]
                0.00    0.00       1/6           libebml::EbmlString::operator std::string const&() const [16283]
                0.00    0.00       1/1           libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16541]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16214]
                0.00    0.00       1/1           libebml::EbmlHead::~EbmlHead() [16544]
                0.00    0.00       1/1           matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) [16524]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16261]
                0.00    0.00       1/1           demux_sys_t::FindSegment(libebml::EbmlBinary const&) const [16545]
                0.00    0.00       1/1           libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [16537]
-----------------------------------------------
                0.00    0.00       1/877         libvlc_media_player_set_media [277]
                0.00    0.00       1/877         libvlc_media_player_stop [213]
                0.00    0.00       1/877         input_item_duration_changed [447]
                0.00    0.00       1/877         input_item_preparsed_changed [432]
                0.00    0.00       1/877         input_scrambled_changed [449]
                0.00    0.00       1/877         input_pausable_changed [448]
                0.00    0.00       1/877         input_seekable_changed [450]
                0.00    0.00       3/877         libvlc_media_set_state [407]
                0.00    0.00       6/877         input_item_meta_changed [349]
                0.00    0.00     861/877         input_event_changed <cycle 5> [145]
[151]    0.0    0.00    0.00     877         libvlc_event_send [151]
                0.00    0.00    1753/382619      vlc_mutex_lock [32]
                0.00    0.00    1755/446104      vlc_mutex_unlock [91]
                0.00    0.00     429/429         vlc_event_callback [550]
-----------------------------------------------
                0.00    0.00       1/253         Open [392]
                0.00    0.00       1/253         CloseDecoder [337]
                0.00    0.00       1/253         OpenDecoder [69]
                0.00    0.00       1/253         ffmpeg_OpenCodec [319]
                0.00    0.00       1/253         Open [390]
                0.00    0.00       1/253         FileOpen [391]
                0.00    0.00       1/253         Demux(demux_t*) [26]
                0.00    0.00       1/253         matroska_segment_c::Select(long long) <cycle 4> [323]
                0.00    0.00       1/253         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.00    0.00       1/253         demux_sys_t::InitUi() [248]
                0.00    0.00       1/253         demux_sys_t::CleanUi() [244]
                0.00    0.00       1/253         EbmlParser::Up() [396]
                0.00    0.00       1/253         EbmlParser::Get(int) [94]
                0.00    0.00       1/253         OpenScaler [336]
                0.00    0.00       1/253         Open [233]
                0.00    0.00       1/253         Open [393]
                0.00    0.00       1/253         access_New [326]
                0.00    0.00       1/253         DecoderDecodeAudio [4]
                0.00    0.00       1/253         Create [163]
                0.00    0.00       1/253         Init [182]
                0.00    0.00       1/253         stream_AccessNew [258]
                0.00    0.00       1/253         subtitles_Detect [386]
                0.00    0.00       1/253         VoutDisplayCreateRender [281]
                0.00    0.00       1/253         VoutDisplayEvent [385]
                0.00    0.00       1/253         vout_Request <cycle 4> [168]
                0.00    0.00       1/253         vout_OpenWrapper [229]
                0.00    0.00       1/253         aout_FormatsPrint [394]
                0.00    0.00       1/253         aout_FiltersPipelineCreate [293]
                0.00    0.00       1/253         video_format_Print [395]
                0.00    0.00       1/253         filter_chain_DeleteFilterInternal [291]
                0.00    0.00       1/253         filter_chain_AppendFilterInternal [328]
                0.00    0.00       1/253         EsOutDel [332]
                0.00    0.00       1/253         EsOutProgramSelect [219]
                0.00    0.00       1/253         input_EsOutTimeshiftNew [302]
                0.00    0.00       1/253         vout_InitInterlacingSupport [221]
                0.00    0.00       1/253         vout_SetInterlacingState [130]
                0.00    0.00       2/253         NV12_RGBA_Filter [53]
                0.00    0.00       2/253         DeleteDecoder <cycle 4> [63]
                0.00    0.00       2/253         DecoderDecodeVideo [16]
                0.00    0.00       2/253         demux_New [264]
                0.00    0.00       2/253         InputSourceInit [197]
                0.00    0.00       2/253         input_resource_GetAout [204]
                0.00    0.00       2/253         input_resource_PutAout [324]
                0.00    0.00       2/253         input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       2/253         aout_FormatPrint [335]
                0.00    0.00       2/253         aout_DecPlay [10]
                0.00    0.00       2/253         DeinterlaceCallback <cycle 5> [268]
                0.00    0.00       3/253         GetOutput [23]
                0.00    0.00       3/253         matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00       3/253         AStreamPrebufferStream [274]
                0.00    0.00       4/253         vout_ManageDisplay [108]
                0.00    0.00       6/253         matroska_segment_c::Preload() [133]
                0.00    0.00       6/253         matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
                0.00    0.00       6/253         Create [189]
                0.00    0.00       7/253         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00       7/253         ThreadDisplayPreparePicture [57]
                0.00    0.00       8/253         es_out_Control <cycle 4> [187]
                0.00    0.00      10/253         OpenDecoder [220]
                0.00    0.00      15/253         module_unneed [195]
                0.00    0.00      22/253         MainLoop [25]
                0.00    0.00      25/253         matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
                0.00    0.00      34/253         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
                0.00    0.00      36/253         vlc_module_load <cycle 4> [185]
[152]    0.0    0.00    0.00     253         vlc_Log [152]
                0.00    0.00     253/253         vlc_vaLog [153]
-----------------------------------------------
                0.00    0.00     253/253         vlc_Log [152]
[153]    0.0    0.00    0.00     253         vlc_vaLog [153]
                0.00    0.00     253/400         vlc_rwlock_unlock [147]
                0.00    0.00     253/400         vlc_rwlock_rdlock [181]
                0.00    0.00     253/253         libvlc_logf [555]
-----------------------------------------------
                0.00    0.00       1/188         OpenDecoder [220]
                0.00    0.00       1/188         ffmpeg_OpenCodec [319]
                0.00    0.00       1/188         FileControl [378]
                0.00    0.00       1/188         EbmlParser::Reset(demux_t*) [373]
                0.00    0.00       1/188         Open [233]
                0.00    0.00       1/188         aout_update_format [190]
                0.00    0.00       1/188         Create [163]
                0.00    0.00       1/188         Init [182]
                0.00    0.00       1/188         Thread [14]
                0.00    0.00       1/188         spu_Create <cycle 4> [368]
                0.00    0.00       1/188         vout_OpenWrapper [229]
                0.00    0.00       1/188         var_InheritURational [379]
                0.00    0.00       1/188         ReplayGainCallback [377]
                0.00    0.00       2/188         GetFontSize [315]
                0.00    0.00       2/188         ThreadStart [200]
                0.00    0.00       3/188         OpenDecoder [69]
                0.00    0.00       3/188         aout_FiltersNew [215]
                0.00    0.00       4/188         vout_Request <cycle 4> [168]
                0.00    0.00       5/188         EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [253]
                0.00    0.00       7/188         vlc_module_load <cycle 4> [185]
                0.00    0.00      24/188         Create [189]
                0.00    0.00     125/188         var_Create [155]
[154]    0.0    0.00    0.00     188         var_Inherit [154]
                0.00    0.00      87/87          config_GetInt [167]
                0.00    0.00     557/2360        var_GetChecked [148]
                0.00    0.00      45/45          config_GetPsz [186]
                0.00    0.00      15/15          config_GetFloat [212]
-----------------------------------------------
                0.00    0.00       1/224         OpenDecoder [69]
                0.00    0.00       1/224         OpenScaler [336]
                0.00    0.00       1/224         InputSourceInit [197]
                0.00    0.00       1/224         MainLoop [25]
                0.00    0.00       1/224         input_ControlVarNavigation [297]
                0.00    0.00       1/224         spu_Attach <cycle 4> [235]
                0.00    0.00       1/224         vout_OpenWrapper [229]
                0.00    0.00       1/224         aout_OutputNew [276]
                0.00    0.00       2/224         input_EsOutTimeshiftNew [302]
                0.00    0.00       2/224         DeinterlaceCallback <cycle 5> [268]
                0.00    0.00       3/224         var_OptionParse [267]
                0.00    0.00       3/224         vout_InitInterlacingSupport [221]
                0.00    0.00       4/224         Init [182]
                0.00    0.00       4/224         SpuRenderCreateAndLoadText <cycle 4> [282]
                0.00    0.00       7/224         demux_sys_t::InitUi() [248]
                0.00    0.00       8/224         ThreadStart [200]
                0.00    0.00      10/224         aout_New [209]
                0.00    0.00      23/224         input_ControlVarInit [188]
                0.00    0.00      32/224         vout_IntfInit [180]
                0.00    0.00      52/224         input_ConfigVarInit [184]
                0.00    0.00      66/224         libvlc_media_player_new [172]
[155]    0.0    0.00    0.00     224         var_Create [155]
                0.00    0.00     125/188         var_Inherit [154]
                0.00    0.00     224/382619      vlc_mutex_lock [32]
                0.00    0.00     224/446104      vlc_mutex_unlock [91]
                0.00    0.00     224/224         tsearch [556]
                0.00    0.00      12/158         Destroy [564]
                0.00    0.00       4/3327        DupDummy [538]
                0.00    0.00       3/115         DupString [571]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
[156]    0.0    0.00    0.00       1         matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [156]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16261]
                0.00    0.00       1/2           libmatroska::KaxTracks::Generic() const [16467]
-----------------------------------------------
                0.00    0.00     318/318         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[157]    0.0    0.00    0.00     318         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
                0.00    0.00     277/7958        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
                0.00    0.00      24/177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [171]
                0.00    0.00       4/7970        libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [111]
                0.00    0.00       4/4           libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [345]
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [346]
                0.00    0.00       3/3           libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [369]
                0.00    0.00       2/2           libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [400]
-----------------------------------------------
                0.00    0.00       1/1003        libvlc_video_get_spu_count [397]
                0.00    0.00       1/1003        libvlc_video_get_track_count [398]
                0.00    0.00       1/1003        input_SendEventLength [174]
                0.00    0.00       1/1003        input_SendEventTitle [303]
                0.00    0.00       2/1003        input_ControlVarTitle [344]
                0.00    0.00       3/1003        VarListAdd [298]
                0.00    0.00       3/1003        input_SendEventState [329]
                0.00    0.00       4/1003        LanguageSplit [271]
                0.00    0.00       4/1003        input_ControlVarNavigation [297]
                0.00    0.00       6/1003        VarListDel [251]
                0.00    0.00       7/1003        VarListSelect [241]
                0.00    0.00       7/1003        aout_OutputNew [276]
                0.00    0.00       8/1003        input_SendEventCache [228]
                0.00    0.00      16/1003        input_ControlVarInit [188]
                0.00    0.00      19/1003        vout_InitInterlacingSupport [221]
                0.00    0.00      32/1003        aout_New [209]
                0.00    0.00      36/1003        vout_IntfInit [180]
                0.00    0.00     852/1003        input_SendEventPosition [143]
[158]    0.0    0.00    0.00    1003         var_Change [158]
                0.00    0.00    1003/382619      vlc_mutex_lock [32]
                0.00    0.00    1002/446104      vlc_mutex_unlock [91]
                0.00    0.00    1003/4112        tfind [537]
                0.00    0.00     965/1591        CheckValue [542]
                0.00    0.00     899/3327        DupDummy [538]
                0.00    0.00     885/1643        FreeDummy [541]
                0.00    0.00      59/115         DupString [571]
                0.00    0.00       6/46          CmpInt [584]
                0.00    0.00       4/114         FreeString [572]
                0.00    0.00       2/383         CmpString [552]
                0.00    0.00       1/14          CmpFloat [626]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
[159]    0.0    0.00    0.00       1         matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       6/253         vlc_Log [152]
                0.00    0.00       2/2           libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [16473]
                0.00    0.00       2/2           libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16439]
                0.00    0.00       2/26          libebml::UTFstring::~UTFstring() [16259]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16261]
                0.00    0.00       1/2           libmatroska::KaxInfo::Generic() const [16466]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16214]
                0.00    0.00       1/1           libebml::EbmlFloat::operator double() const [16565]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [133]
[160]    0.0    0.00    0.00       1         matroska_segment_c::ParseCluster(bool) [160]
                0.00    0.00       1/5           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       1/18          libebml::EbmlMaster::GetSize() const [16261]
                0.00    0.00       1/7794        libmatroska::KaxCluster::Generic() const [16193]
                0.00    0.00       1/127         libebml::EbmlUInteger::operator unsigned long long() const [16214]
                0.00    0.00       1/7681        libmatroska::KaxCluster::GlobalTimecode() const [16195]
-----------------------------------------------
                                                 <spontaneous>
[161]    0.0    0.00    0.00                 libvlc_media_player_play [161]
                0.00    0.00       1/1           input_Create [164]
                0.00    0.00       4/51          var_AddCallback [183]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/1           input_Start [1002]
-----------------------------------------------
                                  48             var_TriggerCallback <cycle 5> [283]
                                1253             var_SetChecked <cycle 5> [166]
                0.00    0.00       9/733         var_Destroy [223]
                0.00    0.00      30/733         var_DelCallback [192]
                0.00    0.00      51/733         var_AddCallback [183]
[162]    0.0    0.00    0.00    1391         TriggerCallback <cycle 5> [162]
                0.00    0.00     614/382619      vlc_mutex_lock [32]
                0.00    0.00     614/446104      vlc_mutex_unlock [91]
                0.00    0.00       4/4           AboveCallback [285]
                0.00    0.00       2/2           AspectCallback [351]
                0.00    0.00       2/2           CropCallback [352]
                0.00    0.00       2/2           ScaleCallback [353]
                0.00    0.00       2/2           SubMarginCallback [358]
                0.00    0.00       2/2           SubFilterCallback [357]
                0.00    0.00       2/2           SubSourceCallback [359]
                0.00    0.00       2/2           VideoFilterCallback [360]
                0.00    0.00       1/1           ReplayGainCallback [377]
                0.00    0.00       1/1           input_scrambled_changed [449]
                0.00    0.00       1/1           input_seekable_changed [450]
                0.00    0.00       1/1           input_pausable_changed [448]
                0.00    0.00       1/1           EqualizerCallback [468]
                0.00    0.00     614/26310       vlc_cond_broadcast [488]
                0.00    0.00       2/2           FullscreenCallback [756]
                                 582             input_event_changed <cycle 5> [145]
                                   2             WallPaperCallback <cycle 5> [767]
                                   2             ZoomCallback <cycle 5> [768]
                                   2             DeinterlaceCallback <cycle 5> [268]
                                   1             var_Copy <cycle 5> [1026]
-----------------------------------------------
                0.00    0.00       1/1           input_Create [164]
[163]    0.0    0.00    0.00       1         Create [163]
                0.00    0.00       1/1           input_ConfigVarInit [184]
                0.00    0.00       1/1           input_ControlVarInit [188]
                0.00    0.00       3/3           var_OptionParse [267]
                0.00    0.00       1/1           input_EsOutNew [343]
                0.00    0.00       1/3           input_SendEventMeta [278]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/3           input_item_SetMeta [350]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       1/2           input_item_GetName [435]
                0.00    0.00       1/2           input_resource_SetInput [436]
                0.00    0.00       1/1           stats_NewInputStats [460]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       1/2360        var_GetChecked [148]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/9403        vlc_mutex_init [505]
                0.00    0.00       1/2           input_item_Hold [814]
                0.00    0.00       1/1           input_resource_Hold [1005]
                0.00    0.00       1/9379        vlc_cond_init [506]
                0.00    0.00       1/3           vlc_object_set_destructor [725]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_play [161]
[164]    0.0    0.00    0.00       1         input_Create [164]
                0.00    0.00       1/1           Create [163]
-----------------------------------------------
                0.00    0.00     116/116         MainLoop [25]
[165]    0.0    0.00    0.00     116         input_SendEventStatistics [165]
                0.00    0.00     116/733         var_SetChecked <cycle 5> [166]
-----------------------------------------------
                                   2             ZoomCallback <cycle 5> [768]
                                   2             DeinterlaceCallback <cycle 5> [268]
                                   4             input_SendEventMetaInfo <cycle 5> [365]
                                   4             var_Set <cycle 5> [706]
                0.00    0.00       1/733         libvlc_media_player_set_video_title_display [404]
                0.00    0.00       1/733         input_SendEventDead [402]
                0.00    0.00       1/733         input_SendEventLength [174]
                0.00    0.00       1/733         input_SendEventTitle [303]
                0.00    0.00       1/733         input_SendEventMetaEpg [403]
                0.00    0.00       1/733         vout_IntfInit [180]
                0.00    0.00       1/733         aout_Destroy [234]
                0.00    0.00       1/733         EsOutProgramSelect [219]
                0.00    0.00       1/733         vout_InitInterlacingSupport [221]
                0.00    0.00       1/733         vout_SetInterlacingState [130]
                0.00    0.00       2/733         input_SendEventState [329]
                0.00    0.00       2/733         input_SendEventProgramScrambled [340]
                0.00    0.00       2/733         input_SendEventVout [348]
                0.00    0.00       2/733         input_SendEventAout [347]
                0.00    0.00       2/733         Init [182]
                0.00    0.00       2/733         info_category_AddInfo [257]
                0.00    0.00       3/733         VarListAdd [298]
                0.00    0.00       3/733         input_SendEventMeta [278]
                0.00    0.00       4/733         libvlc_media_player_new [172]
                0.00    0.00       4/733         libvlc_media_player_set_equalizer [275]
                0.00    0.00       5/733         InputSourceInit [197]
                0.00    0.00       6/733         VarListDel [251]
                0.00    0.00       7/733         VarListSelect [241]
                0.00    0.00       8/733         input_SendEventCache [228]
                0.00    0.00      11/733         input_ConfigVarInit [184]
                0.00    0.00     116/733         input_SendEventStatistics [165]
                0.00    0.00     426/733         input_SendEventPosition [143]
[166]    0.0    0.00    0.00     627         var_SetChecked <cycle 5> [166]
                0.00    0.00     627/382619      vlc_mutex_lock [32]
                0.00    0.00     627/446104      vlc_mutex_unlock [91]
                0.00    0.00     626/4112        tfind [537]
                0.00    0.00     626/1591        CheckValue [542]
                0.00    0.00     622/1643        FreeDummy [541]
                0.00    0.00     621/3327        DupDummy [538]
                0.00    0.00       5/115         DupString [571]
                0.00    0.00       5/114         FreeString [572]
                                1253             TriggerCallback <cycle 5> [162]
-----------------------------------------------
                0.00    0.00      87/87          var_Inherit [154]
[167]    0.0    0.00    0.00      87         config_GetInt [167]
                0.00    0.00      87/400         vlc_rwlock_unlock [147]
                0.00    0.00      87/400         vlc_rwlock_rdlock [181]
                0.00    0.00      87/154         config_FindConfig [565]
-----------------------------------------------
                                   2             input_resource_RequestVout <cycle 4> [206]
[168]    0.0    0.00    0.00       2         vout_Request <cycle 4> [168]
                0.00    0.00       1/1           vout_IntfInit [180]
                0.00    0.00       1/1           vout_InitInterlacingSupport [221]
                0.00    0.00       1/2           vout_IntfReinit [210]
                0.00    0.00       4/188         var_Inherit [154]
                0.00    0.00       1/5           vout_control_WaitEmpty [262]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/3           vout_control_PushVoid [314]
                0.00    0.00       1/1           VoutValidateFormat [421]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       3/9403        vlc_mutex_init [505]
                0.00    0.00       1/1           vout_control_Init [1040]
                0.00    0.00       1/1           vout_snapshot_Init [1043]
                0.00    0.00       1/3           vlc_object_set_destructor [725]
                0.00    0.00       1/4           vlc_clone_attr [708]
                0.00    0.00       1/4           vlc_clone [707]
                                   2             spu_Attach <cycle 4> [235]
                                   1             spu_Create <cycle 4> [368]
-----------------------------------------------
                0.00    0.00       2/190         libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [400]
                0.00    0.00       3/190         libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [369]
                0.00    0.00       4/190         libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [345]
                0.00    0.00       4/190         libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [346]
                0.00    0.00     177/190         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [171]
[169]    0.0    0.00    0.00     190         libebml::IOCallback::readFully(void*, unsigned int) [169]
                0.00    0.00     190/32841       vlc_stream_io_callback::read(void*, unsigned int) [67]
-----------------------------------------------
                                                 <spontaneous>
[170]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_playMRL [170]
                0.00    0.00       1/1           libvlc_media_player_new [172]
                0.00    0.00       1/1           libvlc_media_player_set_media [277]
                0.00    0.00       1/1           libvlc_media_new_location [296]
                0.00    0.00       8/8           libvlc_event_attach [382]
                0.00    0.00       1/1           libvlc_media_player_set_video_title_display [404]
                0.00    0.00       3/3           libvlc_media_add_option [428]
                0.00    0.00       1/1           libvlc_media_player_event_manager [1011]
                0.00    0.00       1/1           setLong [1022]
                0.00    0.00       1/1           libvlc_media_event_manager [1010]
-----------------------------------------------
                0.00    0.00       3/177         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00      24/177         libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
                0.00    0.00      51/177         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.00    0.00      99/177         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
[171]    0.0    0.00    0.00     177         libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [171]
                0.00    0.00     177/190         libebml::IOCallback::readFully(void*, unsigned int) [169]
                0.00    0.00     946/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[172]    0.0    0.00    0.00       1         libvlc_media_player_new [172]
                0.00    0.00      66/224         var_Create [155]
                0.00    0.00       1/2           input_resource_GetAout [204]
                0.00    0.00       4/733         var_SetChecked <cycle 5> [166]
                0.00    0.00      20/27          libvlc_event_manager_register_event_type [279]
                0.00    0.00       1/2           input_resource_PutAout [324]
                0.00    0.00       1/51          var_AddCallback [183]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       1/2           libvlc_event_manager_new [445]
                0.00    0.00       1/3           libvlc_retain [430]
                0.00    0.00       2/9403        vlc_mutex_init [505]
                0.00    0.00       1/1           vlc_object_create [1035]
                0.00    0.00       1/1           input_resource_New [1006]
-----------------------------------------------
                0.00    0.00       2/70          DeleteDecoder <cycle 4> [63]
                0.00    0.00       2/70          DecoderFlush [263]
                0.00    0.00       2/70          vlc_sem_wait [322]
                0.00    0.00       5/70          vout_control_WaitEmpty [262]
                0.00    0.00      18/70          input_DecoderWait [202]
                0.00    0.00      41/70          block_FifoGet [121]
[173]    0.0    0.00    0.00      70         vlc_cond_wait [173]
                0.00    0.00     137/64029       vlc_mutex_trylock [40]
                0.00    0.00     135/446104      vlc_mutex_unlock [91]
                0.00    0.00     137/69905       vlc_testcancel [481]
-----------------------------------------------
                0.00    0.00       1/427         Init [182]
                0.00    0.00     426/427         EsOutControl <cycle 4> [115]
[174]    0.0    0.00    0.00     427         input_SendEventLength [174]
                0.00    0.00     427/2360        var_GetChecked [148]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       1/1           input_item_SetDuration [419]
                0.00    0.00       1/1003        var_Change [158]
-----------------------------------------------
                0.00    0.00       7/432         es_out_Control <cycle 4> [187]
                0.00    0.00     425/432         EsOutControl <cycle 4> [115]
[175]    0.0    0.00    0.00     432         input_clock_GetState [175]
                0.00    0.00     432/382619      vlc_mutex_lock [32]
                0.00    0.00     431/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/434         libvlc_media_player_stop [213]
                0.00    0.00     433/434         libvlc_media_player_is_playing [177]
[176]    0.0    0.00    0.00     434         libvlc_media_player_get_state [176]
                0.00    0.00     433/382619      vlc_mutex_lock [32]
                0.00    0.00     424/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00     434/434         Java_org_videolan_libvlc_LibVLC_isPlaying [178]
[177]    0.0    0.00    0.00     434         libvlc_media_player_is_playing [177]
                0.00    0.00     433/434         libvlc_media_player_get_state [176]
-----------------------------------------------
                                                 <spontaneous>
[178]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_isPlaying [178]
                0.00    0.00     434/434         libvlc_media_player_is_playing [177]
                0.00    0.00     431/451         getMediaPlayer [549]
-----------------------------------------------
                0.00    0.00     423/423         EsOutControl <cycle 4> [115]
[179]    0.0    0.00    0.00     423         input_clock_Update [179]
                0.00    0.00     423/382619      vlc_mutex_lock [32]
                0.00    0.00     423/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [168]
[180]    0.0    0.00    0.00       1         vout_IntfInit [180]
                0.00    0.00      32/224         var_Create [155]
                0.00    0.00      17/51          var_AddCallback [183]
                0.00    0.00       1/2           vout_IntfReinit [210]
                0.00    0.00      36/1003        var_Change [158]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       3/2360        var_GetChecked [148]
                0.00    0.00      32/133         vlc_gettext [568]
-----------------------------------------------
                0.00    0.00      15/400         config_GetFloat [212]
                0.00    0.00      45/400         config_GetPsz [186]
                0.00    0.00      87/400         config_GetInt [167]
                0.00    0.00     253/400         vlc_vaLog [153]
[181]    0.0    0.00    0.00     400         vlc_rwlock_rdlock [181]
                0.00    0.00     400/382619      vlc_mutex_lock [32]
                0.00    0.00     400/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           Run [24]
[182]    0.0    0.00    0.00       1         Init [182]
                0.00    0.00       1/1           InputSourceInit [197]
                0.00    0.00       1/1           InitTitle [252]
                0.00    0.00       1/1           UpdatePtsDelay [280]
                0.00    0.00       4/224         var_Create [155]
                0.00    0.00       2/2           ControlPause [299]
                0.00    0.00       1/1           input_EsOutTimeshiftNew [302]
                0.00    0.00      17/2360        var_GetChecked [148]
                0.00    0.00       2/4323        es_out_Control [107]
                0.00    0.00       2/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       2/4           input_ChangeState [308]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       1/426         input_SendEventPosition [143]
                0.00    0.00       1/1           subtitles_Detect [386]
                0.00    0.00       1/8           input_SendEventCache [228]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/427         input_SendEventLength [174]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/1280        demux_Control [544]
                0.00    0.00       1/3           vlc_meta_New [723]
-----------------------------------------------
                0.00    0.00       1/51          libvlc_media_player_new [172]
                0.00    0.00       1/51          input_ControlVarNavigation [297]
                0.00    0.00       1/51          spu_Attach <cycle 4> [235]
                0.00    0.00       1/51          aout_OutputNew [276]
                0.00    0.00       1/51          aout_volume_New [333]
                0.00    0.00       2/51          aout_New [209]
                0.00    0.00       3/51          aout_FiltersNew [215]
                0.00    0.00       3/51          vout_InitInterlacingSupport [221]
                0.00    0.00       4/51          libvlc_media_player_play [161]
                0.00    0.00      17/51          input_ControlVarInit [188]
                0.00    0.00      17/51          vout_IntfInit [180]
[183]    0.0    0.00    0.00      51         var_AddCallback [183]
                0.00    0.00      51/733         TriggerCallback <cycle 5> [162]
                0.00    0.00      51/382619      vlc_mutex_lock [32]
                0.00    0.00      51/446104      vlc_mutex_unlock [91]
                0.00    0.00      51/4112        tfind [537]
-----------------------------------------------
                0.00    0.00       1/1           Create [163]
[184]    0.0    0.00    0.00       1         input_ConfigVarInit [184]
                0.00    0.00      52/224         var_Create [155]
                0.00    0.00      11/733         var_SetChecked <cycle 5> [166]
-----------------------------------------------
                                  18             module_need <cycle 4> [618]
[185]    0.0    0.00    0.00      18         vlc_module_load <cycle 4> [185]
                0.00    0.00      36/253         vlc_Log [152]
                0.00    0.00       7/188         var_Inherit [154]
                0.00    0.00      15/15          vlc_object_set_name [330]
                0.00    0.00      30/46          module_get_object [585]
                0.00    0.00      19/19          module_get_score [615]
                0.00    0.00      18/18          module_list_cap [617]
                0.00    0.00      18/25          module_list_free [605]
                                  66             module_load <cycle 4> [580]
-----------------------------------------------
                0.00    0.00      45/45          var_Inherit [154]
[186]    0.0    0.00    0.00      45         config_GetPsz [186]
                0.00    0.00      45/400         vlc_rwlock_unlock [147]
                0.00    0.00      45/400         vlc_rwlock_rdlock [181]
                0.00    0.00      45/154         config_FindConfig [565]
-----------------------------------------------
                                   2             EsUnselect <cycle 4> [320]
                                   7             EsOutControl <cycle 4> [115]
[187]    0.0    0.00    0.00       9         es_out_Control <cycle 4> [187]
                0.00    0.00       2/2           input_DecoderWait [202]
                0.00    0.00       8/253         vlc_Log [152]
                0.00    0.00       7/8           input_SendEventCache [228]
                0.00    0.00       2/2           input_DecoderDelete [249]
                0.00    0.00       2/4           input_DecoderStopWait [287]
                0.00    0.00       7/432         input_clock_GetState [175]
                0.00    0.00       3/153114      mdate [70]
                0.00    0.00       1/1           input_clock_ChangeSystemOrigin [454]
                                   2             DeleteDecoder <cycle 4> [63]
                                   1             input_resource_TerminateVout <cycle 4> [816]
-----------------------------------------------
                0.00    0.00       1/1           Create [163]
[188]    0.0    0.00    0.00       1         input_ControlVarInit [188]
                0.00    0.00      23/224         var_Create [155]
                0.00    0.00      17/51          var_AddCallback [183]
                0.00    0.00      16/1003        var_Change [158]
                0.00    0.00       1/2           var_Get [446]
                0.00    0.00       1/2360        var_GetChecked [148]
                0.00    0.00       9/133         vlc_gettext [568]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [68]
[189]    0.0    0.00    0.00       2         Create [189]
                0.00    0.00      24/188         var_Inherit [154]
                0.00    0.00       6/253         vlc_Log [152]
                0.00    0.00       2/2           GetFontSize [315]
                0.00    0.00       2/2           spu_get_attachments [401]
                0.00    0.00       4/4           Dummy_Select [688]
                0.00    0.00       2/2           FT_Init_FreeType [739]
                0.00    0.00       2/2           FT_New_Face [740]
                0.00    0.00       2/4           find_unicode_charmap [696]
                0.00    0.00       2/2           FT_Select_Charmap [748]
                0.00    0.00       2/2           FT_Set_Pixel_Sizes [749]
                0.00    0.00       2/2           FT_Stroker_New [755]
-----------------------------------------------
                0.00    0.00    5966/5966        DecodeAudio [5]
[190]    0.0    0.00    0.00    5966         aout_update_format [190]
                0.00    0.00       1/1           aout_DecNew [198]
                0.00    0.00       1/2           input_resource_GetAout [204]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       1/2           input_SendEventAout [347]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/2           DecoderUpdateFormatLocked [728]
                0.00    0.00       1/7           aout_FormatPrepare [647]
-----------------------------------------------
                0.00    0.00       1/1           Run [24]
[191]    0.0    0.00    0.00       1         End [191]
                0.00    0.00       1/1           input_ControlVarStop [201]
                0.00    0.00       1/1           InputSourceClean [231]
                0.00    0.00       2/4323        es_out_Control [107]
                0.00    0.00       1/4           input_ChangeState [308]
                0.00    0.00       1/1           input_resource_RequestSout [457]
                0.00    0.00       1/2           input_resource_SetInput [436]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/1           Destroy [897]
-----------------------------------------------
                0.00    0.00       1/34          input_ControlVarStop [201]
                0.00    0.00       1/34          spu_Attach <cycle 4> [235]
                0.00    0.00       1/34          aout_OutputDelete [399]
                0.00    0.00       1/34          aout_volume_Delete [292]
                0.00    0.00       2/34          aout_Destroy [234]
                0.00    0.00       3/34          aout_FiltersDelete [236]
                0.00    0.00       4/34          release_input_thread [250]
                0.00    0.00      21/34          InputDelCallbacks [203]
[192]    0.0    0.00    0.00      34         var_DelCallback [192]
                0.00    0.00      30/733         TriggerCallback <cycle 5> [162]
                0.00    0.00      34/382619      vlc_mutex_lock [32]
                0.00    0.00      34/446104      vlc_mutex_unlock [91]
                0.00    0.00      34/4112        tfind [537]
-----------------------------------------------
                0.00    0.00       1/45          demux_sys_t::CleanUi() [244]
                0.00    0.00       1/45          libvlc_video_get_spu_count [397]
                0.00    0.00       1/45          libvlc_video_get_track_count [398]
                0.00    0.00       1/45          libvlc_audio_get_track_count [412]
                0.00    0.00       1/45          libvlc_media_player_set_equalizer [275]
                0.00    0.00       1/45          access_Delete [317]
                0.00    0.00       1/45          demux_New [264]
                0.00    0.00       1/45          demux_Delete [232]
                0.00    0.00       1/45          ControlPause [299]
                0.00    0.00       1/45          input_Close [376]
                0.00    0.00       1/45          input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       1/45          vout_DeleteDisplay [306]
                0.00    0.00       1/45          spu_Destroy [240]
                0.00    0.00       1/45          aout_Destroy [234]
                0.00    0.00       1/45          aout_volume_Delete [292]
                0.00    0.00       1/45          filter_DeleteBlend [415]
                0.00    0.00       1/45          filter_chain_DeleteFilterInternal [291]
                0.00    0.00       1/45          input_event_changed <cycle 5> [145]
                0.00    0.00       2/45          DeleteDecoder <cycle 4> [63]
                0.00    0.00       2/45          aout_FiltersPipelineDestroy [272]
                0.00    0.00       3/45          stream_CommonDelete [339]
                0.00    0.00       4/45          FilterRelease [222]
                0.00    0.00       8/45          libvlc_media_player_get_length [237]
                0.00    0.00       8/45          libvlc_media_player_get_time [238]
[193]    0.0    0.00    0.00      45         vlc_object_release [193]
                0.00    0.00      23/12900       vlc_restorecancel [77]
                0.00    0.00      23/382619      vlc_mutex_lock [32]
                0.00    0.00      23/446104      vlc_mutex_unlock [91]
                0.00    0.00      23/12747       vlc_savecancel [497]
                0.00    0.00      23/23          var_DestroyAll [610]
                0.00    0.00      23/9352        vlc_cond_destroy [508]
                0.00    0.00      23/9375        vlc_mutex_destroy [507]
                0.00    0.00       1/1           VoutDestructor [945]
                0.00    0.00       1/1           aout_Destructor [948]
                0.00    0.00       1/1           Destructor [898]
-----------------------------------------------
                0.00    0.00      28/28          EsOutControl <cycle 4> [115]
[194]    0.0    0.00    0.00      28         input_DecoderIsEmpty [194]
                0.00    0.00       6/6           aout_DecIsEmpty [205]
                0.00    0.00       9/9           vout_IsEmpty [247]
                0.00    0.00      15/382619      vlc_mutex_lock [32]
                0.00    0.00      15/446104      vlc_mutex_unlock [91]
                0.00    0.00      28/30          block_FifoCount [595]
-----------------------------------------------
                0.00    0.00       1/15          access_Delete [317]
                0.00    0.00       1/15          demux_Delete [232]
                0.00    0.00       1/15          StreamDelete <cycle 3> [316]
                0.00    0.00       1/15          vout_DeleteDisplay [306]
                0.00    0.00       1/15          aout_Destroy [234]
                0.00    0.00       1/15          aout_volume_Delete [292]
                0.00    0.00       1/15          filter_chain_DeleteFilterInternal [291]
                0.00    0.00       2/15          input_DecoderDelete [249]
                0.00    0.00       2/15          aout_FiltersPipelineDestroy [272]
                0.00    0.00       4/15          FilterRelease [222]
[195]    0.0    0.00    0.00      15         module_unneed [195]
                0.00    0.00      15/253         vlc_Log [152]
                0.00    0.00      15/15          vlc_module_unload [217]
                0.00    0.00      15/46          module_get_object [585]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [156]
[196]    0.0    0.00    0.00       2         matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
                0.00    0.00      25/253         vlc_Log [152]
                0.00    0.00       8/8           libebml::EbmlUInteger::operator unsigned int() const [16265]
                0.00    0.00       8/41          libebml::EbmlUInteger::operator unsigned short() const [16234]
                0.00    0.00       5/6           libebml::EbmlString::operator std::string const&() const [16283]
                0.00    0.00       4/4           libebml::EbmlUInteger::operator unsigned char() const [16323]
                0.00    0.00       4/127         libebml::EbmlUInteger::operator unsigned long long() const [16214]
                0.00    0.00       4/63794       libebml::EbmlElement::GetSize() const [16166]
                0.00    0.00       2/28          es_format_Init [601]
                0.00    0.00       2/2           matroska_segment_c::TrackInit(mkv_track_t*) [16409]
                0.00    0.00       2/2           std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) [16479]
                0.00    0.00       1/1           libebml::EbmlFloat::operator float() const [16566]
-----------------------------------------------
                0.00    0.00       1/1           Init [182]
[197]    0.0    0.00    0.00       1         InputSourceInit [197]
                0.00    0.00       1/1           stream_AccessNew [258]
                0.00    0.00       2/2           demux_New [264]
                0.00    0.00       5/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       1/1           stream_FilterChainNew [295]
                0.00    0.00       1/1           access_New [326]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       1/224         var_Create [155]
                0.00    0.00       5/2360        var_GetChecked [148]
                0.00    0.00       4/49429       stream_Control [119]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       5/1280        demux_Control [544]
                0.00    0.00       1/1           input_SplitMRL [1001]
                0.00    0.00       1/1           MRLSeekPoint [910]
-----------------------------------------------
                0.00    0.00       1/1           aout_update_format [190]
[198]    0.0    0.00    0.00       1         aout_DecNew [198]
                0.00    0.00       1/1           aout_FiltersNew [215]
                0.00    0.00       1/1           aout_OutputNew [276]
                0.00    0.00       1/5967        aout_OutputUnlock [60]
                0.00    0.00       1/1           aout_volume_New [333]
                0.00    0.00       1/1           aout_volume_SetFormat [387]
                0.00    0.00       1/13          var_Destroy [223]
                0.00    0.00       1/5979        aout_OutputLock [136]
-----------------------------------------------
                0.00    0.00       3/26          vout_control_PushVoid [314]
                0.00    0.00       3/26          vout_control_PushTime [313]
                0.00    0.00       6/26          vout_control_PushPair [266]
                0.00    0.00       7/26          vout_control_PushInteger [254]
                0.00    0.00       7/26          vout_control_PushString [255]
[199]    0.0    0.00    0.00      26         vout_control_Push [199]
                0.00    0.00      26/20196       vlc_cond_signal [75]
                0.00    0.00      26/382619      vlc_mutex_lock [32]
                0.00    0.00      26/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           Thread [14]
[200]    0.0    0.00    0.00       1         ThreadStart [200]
                0.00    0.00       1/1           vout_OpenWrapper [229]
                0.00    0.00       8/224         var_Create [155]
                0.00    0.00       2/188         var_Inherit [154]
                0.00    0.00       1/1           var_InheritURational [379]
                0.00    0.00       7/2360        var_GetChecked [148]
                0.00    0.00       1/1           video_format_Print [395]
                0.00    0.00       2/5           filter_chain_New [681]
                0.00    0.00       1/1           picture_fifo_New [1014]
                0.00    0.00       1/1           vout_InitWrapper [1038]
                0.00    0.00       1/70          vlc_ureduce [578]
-----------------------------------------------
                0.00    0.00       1/1           End [191]
[201]    0.0    0.00    0.00       1         input_ControlVarStop [201]
                0.00    0.00       3/3           InputDelCallbacks [203]
                0.00    0.00       1/34          var_DelCallback [192]
-----------------------------------------------
                0.00    0.00       2/2           es_out_Control <cycle 4> [187]
[202]    0.0    0.00    0.00       2         input_DecoderWait [202]
                0.00    0.00      18/70          vlc_cond_wait [173]
                0.00    0.00      18/18          block_FifoWake [309]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       3/3           input_ControlVarStop [201]
[203]    0.0    0.00    0.00       3         InputDelCallbacks [203]
                0.00    0.00      21/34          var_DelCallback [192]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_player_new [172]
                0.00    0.00       1/2           aout_update_format [190]
[204]    0.0    0.00    0.00       2         input_resource_GetAout [204]
                0.00    0.00       1/1           aout_New [209]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       3/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       6/6           input_DecoderIsEmpty [194]
[205]    0.0    0.00    0.00       6         aout_DecIsEmpty [205]
                0.00    0.00       6/5967        aout_OutputUnlock [60]
                0.00    0.00       1/3           aout_OutputFlush [260]
                0.00    0.00       6/5979        aout_OutputLock [136]
                0.00    0.00       6/153114      mdate [70]
-----------------------------------------------
                                   1             DeleteDecoder <cycle 4> [63]
                                   2             input_resource_TerminateVout <cycle 4> [816]
                0.00    0.00       1/31235       vout_new_buffer [29]
[206]    0.0    0.00    0.00       4         input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       1/1           vout_Close [227]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       1/3           vout_Flush [256]
                0.00    0.00       1/1           vout_DisplayTitle [409]
                0.00    0.00       1/1           vout_FlushSubpictureChannel [410]
                0.00    0.00       6/382619      vlc_mutex_lock [32]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       3/4           input_item_GetMeta [417]
                0.00    0.00       6/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/2           input_item_GetName [435]
                0.00    0.00       1/6           input_GetItem [674]
                                   2             vout_Request <cycle 4> [168]
-----------------------------------------------
                                   2             Add <cycle 4> [422]
[207]    0.0    0.00    0.00       2         EsOutAdd <cycle 4> [207]
                0.00    0.00       1/1           EsOutProgramAdd [216]
                0.00    0.00       2/4           info_category_AddInfo [257]
                0.00    0.00       2/12          LanguageSplit [271]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       3/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/2           EsOutProgramFind [730]
                0.00    0.00       2/25          es_format_Copy [604]
                0.00    0.00       2/2           LanguageGetCode [758]
                0.00    0.00       1/6977        vlc_fourcc_GetCodec [514]
                0.00    0.00       1/1           vlc_fourcc_GetCodecAudio [1030]
                0.00    0.00       1/70          vlc_ureduce [578]
                0.00    0.00       1/1           vlc_audio_replay_gain_MergeFromMeta [1027]
                                   2             EsOutSelect <cycle 4> [657]
-----------------------------------------------
                0.00    0.00       3/6           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00       3/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[208]    0.0    0.00    0.00       6         libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00      36/32841       vlc_stream_io_callback::read(void*, unsigned int) [67]
                0.00    0.00      11/16307       vlc_stream_io_callback::getFilePointer() [138]
                0.00    0.00      15/29792       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16168]
                0.00    0.00       5/137         libebml::EbmlMaster::ValidateSize() const [16212]
                0.00    0.00       5/5           libebml::EbmlMaster::SetSizeInfinite(bool) [16286]
                0.00    0.00       1/2           libmatroska::KaxCues::Create() [16401]
                0.00    0.00       1/2           libmatroska::KaxTracks::Create() [16405]
                0.00    0.00       1/4           libmatroska::KaxInfo::Create() [16299]
                0.00    0.00       1/1           libmatroska::KaxSegment::Create() [16486]
                0.00    0.00       1/1           libebml::EbmlHead::Create() [16542]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_GetAout [204]
[209]    0.0    0.00    0.00       1         aout_New [209]
                0.00    0.00      10/224         var_Create [155]
                0.00    0.00      32/1003        var_Change [158]
                0.00    0.00       2/51          var_AddCallback [183]
                0.00    0.00       1/31235       module_need <cycle 4> [618]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       1/2360        var_GetChecked [148]
                0.00    0.00      32/133         vlc_gettext [568]
                0.00    0.00       4/7           module_exists [650]
                0.00    0.00       3/9403        vlc_mutex_init [505]
                0.00    0.00       2/154         config_FindConfig [565]
                0.00    0.00       1/3           vlc_object_set_destructor [725]
-----------------------------------------------
                0.00    0.00       1/2           vout_Request <cycle 4> [168]
                0.00    0.00       1/2           vout_IntfInit [180]
[210]    0.0    0.00    0.00       2         vout_IntfReinit [210]
                0.00    0.00      18/733         var_TriggerCallback <cycle 5> [283]
-----------------------------------------------
                0.00    0.00       1/1           DeleteDecoder <cycle 4> [63]
[211]    0.0    0.00    0.00       1         aout_DecDelete [211]
                0.00    0.00       1/1           aout_FiltersDelete [236]
                0.00    0.00       1/1           aout_volume_Delete [292]
                0.00    0.00       1/5967        aout_OutputUnlock [60]
                0.00    0.00       1/1           aout_OutputDelete [399]
                0.00    0.00       1/13          var_Destroy [223]
                0.00    0.00       1/5979        aout_OutputLock [136]
-----------------------------------------------
                0.00    0.00      15/15          var_Inherit [154]
[212]    0.0    0.00    0.00      15         config_GetFloat [212]
                0.00    0.00      15/400         vlc_rwlock_unlock [147]
                0.00    0.00      15/400         vlc_rwlock_rdlock [181]
                0.00    0.00      15/154         config_FindConfig [565]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_stop [214]
[213]    0.0    0.00    0.00       1         libvlc_media_player_stop [213]
                0.00    0.00       1/1           input_resource_Terminate [225]
                0.00    0.00       1/2           release_input_thread [250]
                0.00    0.00       1/4           set_state [372]
                0.00    0.00       1/877         libvlc_event_send [151]
                0.00    0.00       1/434         libvlc_media_player_get_state [176]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                                                 <spontaneous>
[214]    0.0    0.00    0.00                 Java_org_videolan_libvlc_LibVLC_stop [214]
                0.00    0.00       1/1           libvlc_media_player_stop [213]
                0.00    0.00       1/451         getMediaPlayer [549]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [198]
[215]    0.0    0.00    0.00       1         aout_FiltersNew [215]
                0.00    0.00       3/188         var_Inherit [154]
                0.00    0.00       1/1           aout_FiltersPipelineCreate [293]
                0.00    0.00       3/51          var_AddCallback [183]
                0.00    0.00       1/2           CreateFilter [312]
                0.00    0.00       1/2           aout_FormatPrint [335]
                0.00    0.00       1/733         var_TriggerCallback <cycle 5> [283]
                0.00    0.00       1/12          aout_BitsPerSample [632]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [207]
[216]    0.0    0.00    0.00       1         EsOutProgramAdd [216]
                0.00    0.00       1/1           EsOutProgramSelect [219]
                0.00    0.00       1/1           input_SendEventProgramAdd [389]
                0.00    0.00       1/2           input_clock_SetJitter [434]
                0.00    0.00       1/1           input_clock_New [1004]
-----------------------------------------------
                0.00    0.00      15/15          module_unneed [195]
[217]    0.0    0.00    0.00      15         vlc_module_unload [217]
                0.00    0.00      11/11          generic_stop [218]
-----------------------------------------------
                0.00    0.00      11/11          vlc_module_unload [217]
[218]    0.0    0.00    0.00      11         generic_stop [218]
                0.00    0.00       1/1           Close(vlc_object_t*) [224]
                0.00    0.00       1/1           CloseDecoder [337]
                0.00    0.00       1/1           Close [476]
                0.00    0.00       2/2           Destroy [729]
                0.00    0.00       1/1           CloseScaler [888]
                0.00    0.00       1/1           Close [884]
                0.00    0.00       1/1           Close [886]
                0.00    0.00       1/1           FileClose [901]
                0.00    0.00       1/1           Close [885]
                0.00    0.00       1/1           CloseDecoder [887]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [216]
[219]    0.0    0.00    0.00       1         EsOutProgramSelect [219]
                0.00    0.00       4/6           VarListDel [251]
                0.00    0.00       1/1           input_SendEventProgramScrambled [340]
                0.00    0.00       1/3           input_SendEventMeta [278]
                0.00    0.00       2/3           input_item_SetMeta [350]
                0.00    0.00       1/7           VarListSelect [241]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       3/5           input_SendEventEsDel [682]
                0.00    0.00       1/1           input_SendEventProgramSelect [999]
                0.00    0.00       1/1           input_SendEventTeletextDel [1000]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [68]
[220]    0.0    0.00    0.00       2         OpenDecoder [220]
                0.00    0.00      10/253         vlc_Log [152]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       3/3           convert_omx_to_profile_idc [717]
                0.00    0.00       1/1           jni_IsVideoPlayerActivityCreated [1008]
                0.00    0.00       1/1           h264_get_profile_level [998]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [168]
[221]    0.0    0.00    0.00       1         vout_InitInterlacingSupport [221]
                0.00    0.00       3/51          var_AddCallback [183]
                0.00    0.00      19/1003        var_Change [158]
                0.00    0.00       3/224         var_Create [155]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       2/2360        var_GetChecked [148]
                0.00    0.00       1/1           DeinterlaceIsPresent [470]
                0.00    0.00      15/133         vlc_gettext [568]
                0.00    0.00       2/154         config_FindConfig [565]
-----------------------------------------------
                0.00    0.00       2/5           spu_Attach <cycle 4> [235]
                0.00    0.00       3/5           spu_Destroy [240]
[222]    0.0    0.00    0.00       5         FilterRelease [222]
                0.00    0.00       4/15          module_unneed [195]
                0.00    0.00       4/45          vlc_object_release [193]
                0.00    0.00       1/2           var_Get [446]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/13          input_ControlVarNavigation [297]
                0.00    0.00       1/13          spu_Attach <cycle 4> [235]
                0.00    0.00       1/13          aout_DecNew [198]
                0.00    0.00       1/13          aout_DecDelete [211]
                0.00    0.00       2/13          input_ControlVarTitle [344]
                0.00    0.00       7/13          demux_sys_t::CleanUi() [244]
[223]    0.0    0.00    0.00      13         var_Destroy [223]
                0.00    0.00       9/733         TriggerCallback <cycle 5> [162]
                0.00    0.00      13/382619      vlc_mutex_lock [32]
                0.00    0.00      13/446104      vlc_mutex_unlock [91]
                0.00    0.00      13/4112        tfind [537]
                0.00    0.00       8/8           tdelete [645]
                0.00    0.00       8/158         Destroy [564]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[224]    0.0    0.00    0.00       1         Close(vlc_object_t*) [224]
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [245]
                0.00    0.00       1/1           matroska_segment_c::UnSelect() [311]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_stop [213]
[225]    0.0    0.00    0.00       1         input_resource_Terminate [225]
                0.00    0.00       1/1           input_resource_ResetAout [230]
                0.00    0.00       1/31235       input_resource_TerminateVout <cycle 4> [816]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [63]
                0.00    0.00       1/2           DecoderDecodeAudio [4]
[226]    0.0    0.00    0.00       2         aout_DecFlush [226]
                0.00    0.00       2/5967        aout_OutputUnlock [60]
                0.00    0.00       2/3           aout_OutputFlush [260]
                0.00    0.00       2/5979        aout_OutputLock [136]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_RequestVout <cycle 4> [206]
[227]    0.0    0.00    0.00       1         vout_Close [227]
                0.00    0.00       1/1           spu_Destroy [240]
                0.00    0.00       1/3           vout_control_PushVoid [314]
                0.00    0.00       1/4           vlc_join [321]
                0.00    0.00       1/1           vout_snapshot_End [465]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/8           Init [182]
                0.00    0.00       7/8           es_out_Control <cycle 4> [187]
[228]    0.0    0.00    0.00       8         input_SendEventCache [228]
                0.00    0.00       8/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       8/1003        var_Change [158]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [200]
[229]    0.0    0.00    0.00       1         vout_OpenWrapper [229]
                0.00    0.00       1/1           vout_NewDisplay [270]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/224         var_Create [155]
                0.00    0.00       1/2360        var_GetChecked [148]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_Terminate [225]
[230]    0.0    0.00    0.00       1         input_resource_ResetAout [230]
                0.00    0.00       1/1           aout_Destroy [234]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           End [191]
[231]    0.0    0.00    0.00       1         InputSourceClean [231]
                0.00    0.00       1/1           demux_Delete [232]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceClean [231]
[232]    0.0    0.00    0.00       1         demux_Delete [232]
                0.00    0.00       1/1           stream_Delete <cycle 3> [300]
                0.00    0.00       1/15          module_unneed [195]
                0.00    0.00       1/45          vlc_object_release [193]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[233]    0.0    0.00    0.00       1         Open [233]
                0.00    0.00       1/6920        AndroidLockSurface [39]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/27681       transform_GetBasicOps [74]
                0.00    0.00       1/2           video_format_FixRgb [388]
                0.00    0.00       1/64029       vlc_mutex_trylock [40]
                0.00    0.00       1/1           LoadNativeWindowAPI [909]
                0.00    0.00       1/1           vlc_fourcc_GetCodecFromString [1031]
                0.00    0.00       1/30          picture_NewFromResource [596]
                0.00    0.00       1/2           picture_pool_NewExtended [822]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_ResetAout [230]
[234]    0.0    0.00    0.00       1         aout_Destroy [234]
                0.00    0.00       1/5967        aout_OutputUnlock [60]
                0.00    0.00       2/34          var_DelCallback [192]
                0.00    0.00       1/15          module_unneed [195]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
-----------------------------------------------
                                   2             vout_Request <cycle 4> [168]
[235]    0.0    0.00    0.00       2         spu_Attach <cycle 4> [235]
                0.00    0.00       2/5           FilterRelease [222]
                0.00    0.00       1/51          var_AddCallback [183]
                0.00    0.00       1/34          var_DelCallback [192]
                0.00    0.00       1/224         var_Create [155]
                0.00    0.00       1/13          var_Destroy [223]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                                   1             SpuRenderCreateAndLoadText <cycle 4> [282]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecDelete [211]
[236]    0.0    0.00    0.00       1         aout_FiltersDelete [236]
                0.00    0.00       2/2           aout_FiltersPipelineDestroy [272]
                0.00    0.00       3/34          var_DelCallback [192]
-----------------------------------------------
                                                 <spontaneous>
[237]    0.0    0.00    0.00                 libvlc_media_player_get_length [237]
                0.00    0.00       8/45          vlc_object_release [193]
                0.00    0.00       8/2360        var_GetChecked [148]
                0.00    0.00       8/19          libvlc_get_input_thread [307]
-----------------------------------------------
                                                 <spontaneous>
[238]    0.0    0.00    0.00                 libvlc_media_player_get_time [238]
                0.00    0.00       8/45          vlc_object_release [193]
                0.00    0.00       8/2360        var_GetChecked [148]
                0.00    0.00       8/19          libvlc_get_input_thread [307]
-----------------------------------------------
                0.00    0.00       1/17          input_item_SetPreparsed [420]
                0.00    0.00       1/17          input_item_SetDuration [419]
                0.00    0.00       1/17          input_item_SetEpgOffline [414]
                0.00    0.00       3/17          input_item_SetMeta [350]
                0.00    0.00       3/17          input_SendEventMeta [278]
                0.00    0.00       4/17          input_item_ReplaceInfos [325]
                0.00    0.00       4/17          input_SendEventMetaInfo <cycle 5> [365]
[239]    0.0    0.00    0.00      17         vlc_event_send [239]
                0.00    0.00      33/382619      vlc_mutex_lock [32]
                0.00    0.00       6/6           input_item_meta_changed [349]
                0.00    0.00      34/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/1           input_item_preparsed_changed [432]
                0.00    0.00       1/1           input_item_duration_changed [447]
-----------------------------------------------
                0.00    0.00       1/1           vout_Close [227]
[240]    0.0    0.00    0.00       1         spu_Destroy [240]
                0.00    0.00       3/5           FilterRelease [222]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       2/5           filter_chain_Delete [366]
                0.00    0.00       3/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/7           EsOutProgramSelect [219]
                0.00    0.00       2/7           EsUnselect <cycle 4> [320]
                0.00    0.00       4/7           EsSelect <cycle 4> [265]
[241]    0.0    0.00    0.00       7         VarListSelect [241]
                0.00    0.00       7/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       7/1003        var_Change [158]
-----------------------------------------------
                                   2             EsSelect <cycle 4> [265]
[242]    0.0    0.00    0.00       2         EsCreateDecoder <cycle 4> [242]
                0.00    0.00       2/2           input_DecoderStartWait [243]
                                   2             input_DecoderNew <cycle 4> [812]
-----------------------------------------------
                0.00    0.00       2/2           EsCreateDecoder <cycle 4> [242]
[243]    0.0    0.00    0.00       2         input_DecoderStartWait [243]
                0.00    0.00       2/2           DecoderFlush [263]
                0.00    0.00       2/20196       vlc_cond_signal [75]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [246]
[244]    0.0    0.00    0.00       1         demux_sys_t::CleanUi() [244]
                0.00    0.00       7/13          var_Destroy [223]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16507]
-----------------------------------------------
                0.00    0.00       1/1           Close(vlc_object_t*) [224]
[245]    0.0    0.00    0.00       1         demux_sys_t::~demux_sys_t() [245]
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [246]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [245]
[246]    0.0    0.00    0.00       1         demux_sys_t::~demux_sys_t() [246]
                0.00    0.00       1/1           demux_sys_t::CleanUi() [244]
                0.00    0.00       1/1           libebml::EbmlStream::~EbmlStream() [16539]
                0.00    0.00       1/1           vlc_stream_io_callback::~vlc_stream_io_callback() [16528]
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16525]
                0.00    0.00       1/1           virtual_segment_c::~virtual_segment_c() [16520]
                0.00    0.00       1/2           vlc_meta_Delete [868]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       9/9           input_DecoderIsEmpty [194]
[247]    0.0    0.00    0.00       9         vout_IsEmpty [247]
                0.00    0.00       9/2431        picture_fifo_Peek [127]
                0.00    0.00       9/382619      vlc_mutex_lock [32]
                0.00    0.00       8/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/30111       picture_Release [486]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [129]
[248]    0.0    0.00    0.00       1         demux_sys_t::InitUi() [248]
                0.00    0.00       7/224         var_Create [155]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/1           demux_GetParentInput [969]
                0.00    0.00       1/9403        vlc_mutex_init [505]
                0.00    0.00       1/9379        vlc_cond_init [506]
-----------------------------------------------
                0.00    0.00       2/2           es_out_Control <cycle 4> [187]
[249]    0.0    0.00    0.00       2         input_DecoderDelete [249]
                0.00    0.00       2/15          module_unneed [195]
                0.00    0.00       2/20196       vlc_cond_signal [75]
                0.00    0.00       2/4           vlc_join [321]
                0.00    0.00       2/2           vlc_cancel [440]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_player_set_media [277]
                0.00    0.00       1/2           libvlc_media_player_stop [213]
[250]    0.0    0.00    0.00       2         release_input_thread [250]
                0.00    0.00       4/34          var_DelCallback [192]
                0.00    0.00       1/1           input_Close [376]
                0.00    0.00       1/1           input_ControlPush [408]
                0.00    0.00       1/1           input_Stop [424]
-----------------------------------------------
                0.00    0.00       2/6           LanguageSplit [271]
                0.00    0.00       4/6           EsOutProgramSelect [219]
[251]    0.0    0.00    0.00       6         VarListDel [251]
                0.00    0.00       6/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       6/1003        var_Change [158]
-----------------------------------------------
                0.00    0.00       1/1           Init [182]
[252]    0.0    0.00    0.00       1         InitTitle [252]
                0.00    0.00       1/1           input_ControlVarNavigation [297]
                0.00    0.00       1/1           input_SendEventTitle [303]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/5           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
                0.00    0.00       1/5           matroska_segment_c::Select(long long) <cycle 4> [323]
                0.00    0.00       1/5           matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [374]
                0.00    0.00       1/5           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00       1/5           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[253]    0.0    0.00    0.00       5         EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [253]
                0.00    0.00       5/188         var_Inherit [154]
                0.00    0.00       5/18          libebml::EbmlMaster::GetSize() const [16261]
-----------------------------------------------
                0.00    0.00       1/7           vout_FlushSubpictureChannel [410]
                0.00    0.00       2/7           vout_ControlChangeSubMargin [363]
                0.00    0.00       4/7           vout_ControlChangeWindowState [286]
[254]    0.0    0.00    0.00       7         vout_control_PushInteger [254]
                0.00    0.00       7/26          vout_control_Push [199]
-----------------------------------------------
                0.00    0.00       1/7           vout_DisplayTitle [409]
                0.00    0.00       2/7           vout_ControlChangeFilters [361]
                0.00    0.00       2/7           vout_ControlChangeSubSources [364]
                0.00    0.00       2/7           vout_ControlChangeSubFilters [362]
[255]    0.0    0.00    0.00       7         vout_control_PushString [255]
                0.00    0.00       7/26          vout_control_Push [199]
-----------------------------------------------
                0.00    0.00       1/3           input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       2/3           DecoderDecodeVideo [16]
[256]    0.0    0.00    0.00       3         vout_Flush [256]
                0.00    0.00       3/5           vout_control_WaitEmpty [262]
                0.00    0.00       3/3           vout_control_PushTime [313]
-----------------------------------------------
                                  22             info_category_AddInfo [257]
                0.00    0.00       2/4           EsOutAdd <cycle 4> [207]
                0.00    0.00       2/4           EsOutSend [59]
[257]    0.0    0.00    0.00       4+22      info_category_AddInfo [257]
                0.00    0.00       4/733         input_Control <cycle 5> [649]
                0.00    0.00       2/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       4/4           input_item_UpdateTracksInfo [423]
                0.00    0.00      36/133         vlc_gettext [568]
                0.00    0.00       5/7           vlc_fourcc_GetDescription [654]
                0.00    0.00       4/6           input_GetItem [674]
                0.00    0.00       1/12          aout_BitsPerSample [632]
                0.00    0.00       1/5           aout_FormatPrintChannels [678]
                                  22             info_category_AddInfo [257]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [197]
[258]    0.0    0.00    0.00       1         stream_AccessNew [258]
                0.00    0.00       1/1           AStreamPrebufferStream [274]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/3           stream_CommonNew [431]
                0.00    0.00       1/49685       access_Control [380]
-----------------------------------------------
                0.00    0.00       3/3           aout_OutputFlush [260]
[259]    0.0    0.00    0.00       3         Flush [259]
                0.00    0.00       1/2425        msleep [103]
                0.00    0.00       1/5967        TimeGet [62]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/25228       block_generic_Release [492]
-----------------------------------------------
                0.00    0.00       1/3           aout_DecIsEmpty [205]
                0.00    0.00       2/3           aout_DecFlush [226]
[260]    0.0    0.00    0.00       3         aout_OutputFlush [260]
                0.00    0.00       3/3           Flush [259]
-----------------------------------------------
[261]    0.0    0.00    0.00       1+2       <cycle 3 as a whole> [261]
                0.00    0.00       2             stream_Delete <cycle 3> [300]
                0.00    0.00       1             StreamDelete <cycle 3> [316]
-----------------------------------------------
                0.00    0.00       1/5           vout_Request <cycle 4> [168]
                0.00    0.00       1/5           vout_Reset [338]
                0.00    0.00       3/5           vout_Flush [256]
[262]    0.0    0.00    0.00       5         vout_control_WaitEmpty [262]
                0.00    0.00       5/70          vlc_cond_wait [173]
                0.00    0.00       5/382619      vlc_mutex_lock [32]
                0.00    0.00       5/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       2/2           input_DecoderStartWait [243]
[263]    0.0    0.00    0.00       2         DecoderFlush [263]
                0.00    0.00       2/70          vlc_cond_wait [173]
                0.00    0.00       2/12865       input_DecoderDecode [97]
                0.00    0.00       2/20196       vlc_cond_signal [75]
                0.00    0.00       2/6           block_FifoEmpty [405]
                0.00    0.00       2/2           DecoderBlockFlushNew [727]
-----------------------------------------------
                0.00    0.00       2/2           InputSourceInit [197]
[264]    0.0    0.00    0.00       2         demux_New [264]
                0.00    0.00       2/31235       module_need <cycle 4> [618]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       2/24          vlc_custom_create [284]
                0.00    0.00       2/4           make_path [700]
                0.00    0.00       2/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                                   2             EsOutSelect <cycle 4> [657]
[265]    0.0    0.00    0.00       2         EsSelect <cycle 4> [265]
                0.00    0.00       4/7           VarListSelect [241]
                0.00    0.00       2/12          LanguageSplit [271]
                0.00    0.00       2/2360        var_GetChecked [148]
                0.00    0.00       2/7692        EsIsSelected [511]
                0.00    0.00       2/4           input_SendEventEsSelect [698]
                0.00    0.00       2/2           input_SendEventTeletextSelect [813]
                                   2             EsCreateDecoder <cycle 4> [242]
-----------------------------------------------
                0.00    0.00       2/6           vout_ControlChangeZoom [356]
                0.00    0.00       2/6           vout_ControlChangeSampleAspectRatio [355]
                0.00    0.00       2/6           vout_ControlChangeCropRatio [354]
[266]    0.0    0.00    0.00       6         vout_control_PushPair [266]
                0.00    0.00       6/26          vout_control_Push [199]
-----------------------------------------------
                0.00    0.00       3/3           Create [163]
[267]    0.0    0.00    0.00       3         var_OptionParse [267]
                0.00    0.00       3/733         var_Set <cycle 5> [706]
                0.00    0.00       3/224         var_Create [155]
                0.00    0.00       3/3           config_GetType [716]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [162]
[268]    0.0    0.00    0.00       2         DeinterlaceCallback <cycle 5> [268]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       2/224         var_Create [155]
                0.00    0.00      10/2360        var_GetChecked [148]
                0.00    0.00       2/3           vlc_inhibit_Destroy [722]
                                   2             var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       1/1           vout_NewDisplay [270]
[269]    0.0    0.00    0.00       1         DisplayNew [269]
                0.00    0.00       1/1           VoutDisplayCreateRender [281]
                0.00    0.00       1/31235       module_need <cycle 4> [618]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       1/153114      mdate [70]
                0.00    0.00       1/1           vout_display_GetDefaultDisplaySize [1041]
                0.00    0.00       1/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       1/1           vout_OpenWrapper [229]
[270]    0.0    0.00    0.00       1         vout_NewDisplay [270]
                0.00    0.00       1/1           DisplayNew [269]
-----------------------------------------------
                0.00    0.00       2/12          EsSelect <cycle 4> [265]
                0.00    0.00       2/12          EsOutDel [332]
                0.00    0.00       2/12          EsOutAdd <cycle 4> [207]
                0.00    0.00       2/12          input_EsOutNew [343]
                0.00    0.00       4/12          EsOutControl <cycle 4> [115]
[271]    0.0    0.00    0.00      12         LanguageSplit [271]
                0.00    0.00       2/6           VarListDel [251]
                0.00    0.00       2/2           input_SendEventEsAdd [334]
                0.00    0.00       4/1003        var_Change [158]
                0.00    0.00       1/1           input_DecoderChangeDelay [472]
                0.00    0.00       4/133         vlc_gettext [568]
                0.00    0.00       2/5           input_SendEventEsDel [682]
-----------------------------------------------
                0.00    0.00       2/2           aout_FiltersDelete [236]
[272]    0.0    0.00    0.00       2         aout_FiltersPipelineDestroy [272]
                0.00    0.00       2/15          module_unneed [195]
                0.00    0.00       2/45          vlc_object_release [193]
-----------------------------------------------
                0.00    0.00       1/1           Thread [14]
[273]    0.0    0.00    0.00       1         ThreadStop [273]
                0.00    0.00       1/1           vout_CloseWrapper [305]
                0.00    0.00       1/1           filter_DeleteBlend [415]
                0.00    0.00       2/5           filter_chain_Delete [366]
                0.00    0.00       1/5           ThreadFlush [367]
                0.00    0.00       1/1           picture_fifo_Delete [473]
                0.00    0.00       1/1           vout_EndWrapper [1037]
-----------------------------------------------
                0.00    0.00       1/1           stream_AccessNew [258]
[274]    0.0    0.00    0.00       1         AStreamPrebufferStream [274]
                0.00    0.00       3/253         vlc_Log [152]
                0.00    0.00       1/493         AReadStream [142]
                0.00    0.00       4/153114      mdate [70]
                0.00    0.00       2/3094        vlc_object_alive [539]
-----------------------------------------------
                                                 <spontaneous>
[275]    0.0    0.00    0.00                 libvlc_media_player_set_equalizer [275]
                0.00    0.00       4/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/1           input_resource_HoldAout [456]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [198]
[276]    0.0    0.00    0.00       1         aout_OutputNew [276]
                0.00    0.00       1/51          var_AddCallback [183]
                0.00    0.00       7/1003        var_Change [158]
                0.00    0.00       1/2           aout_FormatPrint [335]
                0.00    0.00       1/224         var_Create [155]
                0.00    0.00       1/1           var_Type [462]
                0.00    0.00       1/2360        var_GetChecked [148]
                0.00    0.00       5/133         vlc_gettext [568]
                0.00    0.00       2/7           aout_FormatPrepare [647]
                0.00    0.00       1/12          aout_BitsPerSample [632]
                0.00    0.00       1/1           Start [942]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[277]    0.0    0.00    0.00       1         libvlc_media_player_set_media [277]
                0.00    0.00       1/2           release_input_thread [250]
                0.00    0.00       1/4           set_state [372]
                0.00    0.00       1/877         libvlc_event_send [151]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/5           libvlc_media_release [683]
                0.00    0.00       1/5           libvlc_media_retain [684]
-----------------------------------------------
                0.00    0.00       1/3           Create [163]
                0.00    0.00       1/3           EsOutProgramSelect [219]
                0.00    0.00       1/3           EsOutControl <cycle 4> [115]
[278]    0.0    0.00    0.00       3         input_SendEventMeta [278]
                0.00    0.00       3/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       3/17          vlc_event_send [239]
-----------------------------------------------
                0.00    0.00       7/27          libvlc_media_new_from_input_item [341]
                0.00    0.00      20/27          libvlc_media_player_new [172]
[279]    0.0    0.00    0.00      27         libvlc_event_manager_register_event_type [279]
                0.00    0.00      27/382619      vlc_mutex_lock [32]
                0.00    0.00      27/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           Init [182]
[280]    0.0    0.00    0.00       1         UpdatePtsDelay [280]
                0.00    0.00       3/4323        es_out_Control [107]
                0.00    0.00       3/2360        var_GetChecked [148]
-----------------------------------------------
                0.00    0.00       1/1           DisplayNew [269]
[281]    0.0    0.00    0.00       1         VoutDisplayCreateRender [281]
                0.00    0.00       1/1           filter_chain_AppendFilter [327]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/11          filter_chain_Reset [290]
                0.00    0.00       2/4           es_format_InitFromVideo [694]
                0.00    0.00       1/5           filter_chain_New [681]
-----------------------------------------------
                                   1             spu_Create <cycle 4> [368]
                                   1             spu_Attach <cycle 4> [235]
[282]    0.0    0.00    0.00       2         SpuRenderCreateAndLoadText <cycle 4> [282]
                0.00    0.00       4/224         var_Create [155]
                0.00    0.00       2/24          vlc_custom_create [284]
                0.00    0.00       4/28          es_format_Init [601]
                                   2             module_need <cycle 4> [618]
-----------------------------------------------
                                   4             WallPaperCallback <cycle 5> [767]
                0.00    0.00       1/733         aout_FiltersNew [215]
                0.00    0.00       1/733         aout_volume_New [333]
                0.00    0.00      18/733         vout_IntfReinit [210]
[283]    0.0    0.00    0.00      24         var_TriggerCallback <cycle 5> [283]
                0.00    0.00      24/382619      vlc_mutex_lock [32]
                0.00    0.00      24/446104      vlc_mutex_unlock [91]
                0.00    0.00      24/4112        tfind [537]
                                  48             TriggerCallback <cycle 5> [162]
-----------------------------------------------
                0.00    0.00       1/24          libvlc_media_player_new [172]
                0.00    0.00       1/24          access_New [326]
                0.00    0.00       1/24          ControlPause [299]
                0.00    0.00       1/24          Create [163]
                0.00    0.00       1/24          DisplayNew [269]
                0.00    0.00       1/24          vout_Request <cycle 4> [168]
                0.00    0.00       1/24          spu_Create <cycle 4> [368]
                0.00    0.00       1/24          aout_New [209]
                0.00    0.00       1/24          aout_volume_New [333]
                0.00    0.00       1/24          filter_NewBlend [471]
                0.00    0.00       1/24          filter_chain_AppendFilterInternal [328]
                0.00    0.00       2/24          CreateDecoder <cycle 4> [442]
                0.00    0.00       2/24          demux_New [264]
                0.00    0.00       2/24          SpuRenderCreateAndLoadScale <cycle 4> [443]
                0.00    0.00       2/24          SpuRenderCreateAndLoadText <cycle 4> [282]
                0.00    0.00       2/24          CreateFilter [312]
                0.00    0.00       3/24          stream_CommonNew [431]
[284]    0.0    0.00    0.00      24         vlc_custom_create [284]
                0.00    0.00      24/382619      vlc_mutex_lock [32]
                0.00    0.00      24/446104      vlc_mutex_unlock [91]
                0.00    0.00      24/9403        vlc_mutex_init [505]
                0.00    0.00      24/9379        vlc_cond_init [506]
                0.00    0.00      24/46          vlc_object_hold [586]
-----------------------------------------------
                0.00    0.00       4/4           TriggerCallback <cycle 5> [162]
[285]    0.0    0.00    0.00       4         AboveCallback [285]
                0.00    0.00       4/4           vout_ControlChangeWindowState [286]
-----------------------------------------------
                0.00    0.00       4/4           AboveCallback [285]
[286]    0.0    0.00    0.00       4         vout_ControlChangeWindowState [286]
                0.00    0.00       4/7           vout_control_PushInteger [254]
-----------------------------------------------
                0.00    0.00       2/4           DecoderThread [3]
                0.00    0.00       2/4           es_out_Control <cycle 4> [187]
[287]    0.0    0.00    0.00       4         input_DecoderStopWait [287]
                0.00    0.00       4/20196       vlc_cond_signal [75]
                0.00    0.00       4/382619      vlc_mutex_lock [32]
                0.00    0.00       4/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       4/4           finish_joinable_thread [289]
[288]    0.0    0.00    0.00       4         vlc_sem_post [288]
                0.00    0.00       4/20196       vlc_cond_signal [75]
                0.00    0.00       4/382619      vlc_mutex_lock [32]
                0.00    0.00       4/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                                                 <spontaneous>
[289]    0.0    0.00    0.00                 finish_joinable_thread [289]
                0.00    0.00       4/4           vlc_sem_post [288]
-----------------------------------------------
                0.00    0.00       1/11          VoutDisplayCreateRender [281]
                0.00    0.00       1/11          spu_Render [56]
                0.00    0.00       4/11          ThreadChangeFilters [342]
                0.00    0.00       5/11          filter_chain_Delete [366]
[290]    0.0    0.00    0.00      11         filter_chain_Reset [290]
                0.00    0.00       1/1           filter_chain_DeleteFilterInternal [291]
                0.00    0.00      10/36          es_format_Clean [591]
                0.00    0.00      10/25          es_format_Copy [604]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_Reset [290]
[291]    0.0    0.00    0.00       1         filter_chain_DeleteFilterInternal [291]
                0.00    0.00       1/15          module_unneed [195]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/1           FilterAllocationClean [902]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecDelete [211]
[292]    0.0    0.00    0.00       1         aout_volume_Delete [292]
                0.00    0.00       1/15          module_unneed [195]
                0.00    0.00       1/34          var_DelCallback [192]
                0.00    0.00       1/45          vlc_object_release [193]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersNew [215]
[293]    0.0    0.00    0.00       1         aout_FiltersPipelineCreate [293]
                0.00    0.00       1/1           TryFormat [375]
                0.00    0.00       1/1           aout_FormatsPrint [394]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/12          aout_BitsPerSample [632]
-----------------------------------------------
                0.00    0.00       2/2           stream_FilterChainNew [295]
[294]    0.0    0.00    0.00       2         stream_FilterNew [294]
                0.00    0.00       2/31235       module_need <cycle 4> [618]
                0.00    0.00       1/3           stream_CommonDelete [339]
                0.00    0.00       2/3           stream_CommonNew [431]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [197]
[295]    0.0    0.00    0.00       1         stream_FilterChainNew [295]
                0.00    0.00       2/2           stream_FilterNew [294]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[296]    0.0    0.00    0.00       1         libvlc_media_new_location [296]
                0.00    0.00       1/1           libvlc_media_new_from_input_item [341]
                0.00    0.00       1/1           input_item_NewExt [370]
                0.00    0.00       1/2           input_item_Release [815]
-----------------------------------------------
                0.00    0.00       1/1           InitTitle [252]
[297]    0.0    0.00    0.00       1         input_ControlVarNavigation [297]
                0.00    0.00       1/51          var_AddCallback [183]
                0.00    0.00       1/224         var_Create [155]
                0.00    0.00       1/13          var_Destroy [223]
                0.00    0.00       4/1003        var_Change [158]
                0.00    0.00       1/1           secstotimestr [1021]
-----------------------------------------------
                0.00    0.00       1/3           input_SendEventProgramAdd [389]
                0.00    0.00       2/3           input_SendEventEsAdd [334]
[298]    0.0    0.00    0.00       3         VarListAdd [298]
                0.00    0.00       3/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       3/1003        var_Change [158]
-----------------------------------------------
                0.00    0.00       2/2           Init [182]
[299]    0.0    0.00    0.00       2         ControlPause [299]
                0.00    0.00       1/31235       module_need <cycle 4> [618]
                0.00    0.00       1/4323        es_out_Control [107]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       3/1280        demux_Control [544]
                0.00    0.00       1/2           vlc_meta_Delete [868]
-----------------------------------------------
                                   1             StreamDelete <cycle 3> [316]
                0.00    0.00       1/1           demux_Delete [232]
[300]    0.0    0.00    0.00       2         stream_Delete <cycle 3> [300]
                0.00    0.00       1/1           AStreamDestroy [301]
                                   1             StreamDelete <cycle 3> [316]
-----------------------------------------------
                0.00    0.00       1/1           stream_Delete <cycle 3> [300]
[301]    0.0    0.00    0.00       1         AStreamDestroy [301]
                0.00    0.00       1/1           access_Delete [317]
                0.00    0.00       1/3           stream_CommonDelete [339]
-----------------------------------------------
                0.00    0.00       1/1           Init [182]
[302]    0.0    0.00    0.00       1         input_EsOutTimeshiftNew [302]
                0.00    0.00       2/224         var_Create [155]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       2/2360        var_GetChecked [148]
                0.00    0.00       1/5           vlc_mutex_init_recursive [685]
-----------------------------------------------
                0.00    0.00       1/1           InitTitle [252]
[303]    0.0    0.00    0.00       1         input_SendEventTitle [303]
                0.00    0.00       1/1           input_ControlVarTitle [344]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       1/1003        var_Change [158]
-----------------------------------------------
                                   7             input_Control <cycle 5> [649]
[304]    0.0    0.00    0.00       7         input_vaControl <cycle 5> [304]
                0.00    0.00       4/4           input_item_ReplaceInfos [325]
                0.00    0.00       2/2           input_resource_HoldVouts [433]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                                   4             input_SendEventMetaInfo <cycle 5> [365]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [273]
[305]    0.0    0.00    0.00       1         vout_CloseWrapper [305]
                0.00    0.00       1/1           vout_DeleteDisplay [306]
-----------------------------------------------
                0.00    0.00       1/1           vout_CloseWrapper [305]
[306]    0.0    0.00    0.00       1         vout_DeleteDisplay [306]
                0.00    0.00       1/15          module_unneed [195]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/5           filter_chain_Delete [366]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/19          libvlc_video_get_spu_count [397]
                0.00    0.00       1/19          libvlc_video_get_track_count [398]
                0.00    0.00       1/19          libvlc_audio_get_track_count [412]
                0.00    0.00       8/19          libvlc_media_player_get_length [237]
                0.00    0.00       8/19          libvlc_media_player_get_time [238]
[307]    0.0    0.00    0.00      19         libvlc_get_input_thread [307]
                0.00    0.00      19/382619      vlc_mutex_lock [32]
                0.00    0.00      18/446104      vlc_mutex_unlock [91]
                0.00    0.00      19/46          vlc_object_hold [586]
-----------------------------------------------
                0.00    0.00       1/4           End [191]
                0.00    0.00       1/4           MainLoop [25]
                0.00    0.00       2/4           Init [182]
[308]    0.0    0.00    0.00       4         input_ChangeState [308]
                0.00    0.00       3/3           input_SendEventState [329]
                0.00    0.00       3/3           input_item_SetErrorWhenReading [427]
-----------------------------------------------
                0.00    0.00      18/18          input_DecoderWait [202]
[309]    0.0    0.00    0.00      18         block_FifoWake [309]
                0.00    0.00      18/382619      vlc_mutex_lock [32]
                0.00    0.00      18/446104      vlc_mutex_unlock [91]
                0.00    0.00      18/26310       vlc_cond_broadcast [488]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::UnSelect() [311]
[310]    0.0    0.00    0.00       2         Del [310]
                0.00    0.00       2/2           CmdExecuteDel [331]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/153114      mdate [70]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/25284       TsStop [490]
-----------------------------------------------
                0.00    0.00       1/1           Close(vlc_object_t*) [224]
[311]    0.0    0.00    0.00       1         matroska_segment_c::UnSelect() [311]
                0.00    0.00       2/2           Del [310]
                0.00    0.00       1/2           event_thread_t::ResetPci() [16408]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16285]
-----------------------------------------------
                0.00    0.00       1/2           TryFormat [375]
                0.00    0.00       1/2           aout_FiltersNew [215]
[312]    0.0    0.00    0.00       2         CreateFilter [312]
                0.00    0.00       2/31235       module_need <cycle 4> [618]
                0.00    0.00       2/24          vlc_custom_create [284]
-----------------------------------------------
                0.00    0.00       3/3           vout_Flush [256]
[313]    0.0    0.00    0.00       3         vout_control_PushTime [313]
                0.00    0.00       3/26          vout_control_Push [199]
-----------------------------------------------
                0.00    0.00       1/3           vout_Close [227]
                0.00    0.00       1/3           vout_Request <cycle 4> [168]
                0.00    0.00       1/3           vout_Reset [338]
[314]    0.0    0.00    0.00       3         vout_control_PushVoid [314]
                0.00    0.00       3/26          vout_control_Push [199]
-----------------------------------------------
                0.00    0.00       2/2           Create [189]
[315]    0.0    0.00    0.00       2         GetFontSize [315]
                0.00    0.00       2/188         var_Inherit [154]
-----------------------------------------------
                                   1             stream_Delete <cycle 3> [300]
[316]    0.0    0.00    0.00       1         StreamDelete <cycle 3> [316]
                0.00    0.00       1/15          module_unneed [195]
                0.00    0.00       1/3           stream_CommonDelete [339]
                                   1             stream_Delete <cycle 3> [300]
-----------------------------------------------
                0.00    0.00       1/1           AStreamDestroy [301]
[317]    0.0    0.00    0.00       1         access_Delete [317]
                0.00    0.00       1/15          module_unneed [195]
                0.00    0.00       1/45          vlc_object_release [193]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [69]
[318]    0.0    0.00    0.00       1         InitAudioDec [318]
                0.00    0.00       1/1           ffmpeg_OpenCodec [319]
                0.00    0.00       1/1           vlc_av_frame_Release [1028]
                0.00    0.00       1/5967        SetupOutputFormat [529]
                0.00    0.00       1/7           date_Set [648]
                0.00    0.00       1/1           date_Init [967]
-----------------------------------------------
                0.00    0.00       1/1           InitAudioDec [318]
[319]    0.0    0.00    0.00       1         ffmpeg_OpenCodec [319]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       2/6           vlc_global_mutex [425]
                0.00    0.00       1/1           avcodec_open2 [963]
                0.00    0.00       1/2           av_dict_get [779]
                0.00    0.00       1/71716       av_freep [480]
                0.00    0.00       1/2           av_dict_free [778]
-----------------------------------------------
                                   2             EsOutControl <cycle 4> [115]
[320]    0.0    0.00    0.00       2         EsUnselect <cycle 4> [320]
                0.00    0.00       2/7           VarListSelect [241]
                0.00    0.00       2/2360        var_GetChecked [148]
                0.00    0.00       2/7692        EsIsSelected [511]
                0.00    0.00       2/4           input_SendEventEsSelect [698]
                                   2             es_out_Control <cycle 4> [187]
-----------------------------------------------
                0.00    0.00       1/4           input_Join [416]
                0.00    0.00       1/4           vout_Close [227]
                0.00    0.00       2/4           input_DecoderDelete [249]
[321]    0.0    0.00    0.00       4         vlc_join [321]
                0.00    0.00       4/4           vlc_sem_wait [322]
                0.00    0.00       4/4           vlc_sem_destroy [709]
                0.00    0.00       4/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       4/4           vlc_join [321]
[322]    0.0    0.00    0.00       4         vlc_sem_wait [322]
                0.00    0.00       2/70          vlc_cond_wait [173]
                0.00    0.00       4/382619      vlc_mutex_lock [32]
-----------------------------------------------
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16485]
[323]    0.0    0.00    0.00       1         matroska_segment_c::Select(long long) <cycle 4> [323]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [253]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/16555       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16285]
                                   3             es_out_Control(es_out_t*, int, ...) <cycle 4> [16284]
                                   2             Add <cycle 4> [422]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_player_new [172]
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [63]
[324]    0.0    0.00    0.00       2         input_resource_PutAout [324]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       4/4           input_vaControl <cycle 5> [304]
[325]    0.0    0.00    0.00       4         input_item_ReplaceInfos [325]
                0.00    0.00       4/17          vlc_event_send [239]
                0.00    0.00       4/382619      vlc_mutex_lock [32]
                0.00    0.00       4/446104      vlc_mutex_unlock [91]
                0.00    0.00       4/4           InputItemFindCat [693]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [197]
[326]    0.0    0.00    0.00       1         access_New [326]
                0.00    0.00       1/31235       module_need <cycle 4> [618]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       1/1           get_path [997]
-----------------------------------------------
                0.00    0.00       1/1           VoutDisplayCreateRender [281]
[327]    0.0    0.00    0.00       1         filter_chain_AppendFilter [327]
                0.00    0.00       1/1           filter_chain_AppendFilterInternal [328]
                0.00    0.00       1/2           UpdateBufferFunctions [766]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFilter [327]
[328]    0.0    0.00    0.00       1         filter_chain_AppendFilterInternal [328]
                0.00    0.00       1/31235       module_need <cycle 4> [618]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       2/25          es_format_Copy [604]
                0.00    0.00       1/1           FilterAllocationInit [903]
                0.00    0.00       1/1           module_get_name [1013]
-----------------------------------------------
                0.00    0.00       3/3           input_ChangeState [308]
[329]    0.0    0.00    0.00       3         input_SendEventState [329]
                0.00    0.00       2/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       3/1003        var_Change [158]
-----------------------------------------------
                0.00    0.00      15/15          vlc_module_load <cycle 4> [185]
[330]    0.0    0.00    0.00      15         vlc_object_set_name [330]
                0.00    0.00      15/382619      vlc_mutex_lock [32]
                0.00    0.00      15/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       2/2           Del [310]
[331]    0.0    0.00    0.00       2         CmdExecuteDel [331]
                0.00    0.00       2/2           EsOutDel [332]
-----------------------------------------------
                0.00    0.00       2/2           CmdExecuteDel [331]
[332]    0.0    0.00    0.00       2         EsOutDel [332]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       2/12          LanguageSplit [271]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/36          es_format_Clean [591]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [198]
[333]    0.0    0.00    0.00       1         aout_volume_New [333]
                0.00    0.00       1/51          var_AddCallback [183]
                0.00    0.00       1/733         var_TriggerCallback <cycle 5> [283]
                0.00    0.00       1/24          vlc_custom_create [284]
-----------------------------------------------
                0.00    0.00       2/2           LanguageSplit [271]
[334]    0.0    0.00    0.00       2         input_SendEventEsAdd [334]
                0.00    0.00       2/3           VarListAdd [298]
-----------------------------------------------
                0.00    0.00       1/2           aout_FiltersNew [215]
                0.00    0.00       1/2           aout_OutputNew [276]
[335]    0.0    0.00    0.00       2         aout_FormatPrint [335]
                0.00    0.00       2/253         vlc_Log [152]
                0.00    0.00       2/5           aout_FormatPrintChannels [678]
-----------------------------------------------
                0.00    0.00       2/2           generic_start <cycle 4> [68]
[336]    0.0    0.00    0.00       2         OpenScaler [336]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/224         var_Create [155]
                0.00    0.00       1/2360        var_GetChecked [148]
                0.00    0.00       2/5           GetParameters [677]
                0.00    0.00       1/1           Init [908]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[337]    0.0    0.00    0.00       1         CloseDecoder [337]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/1           avcodec_close [411]
                0.00    0.00       2/6           vlc_global_mutex [425]
                0.00    0.00       2/71922       av_free [479]
-----------------------------------------------
                0.00    0.00       1/1           DeleteDecoder <cycle 4> [63]
[338]    0.0    0.00    0.00       1         vout_Reset [338]
                0.00    0.00       1/5           vout_control_WaitEmpty [262]
                0.00    0.00       1/3           vout_control_PushVoid [314]
-----------------------------------------------
                0.00    0.00       1/3           AStreamDestroy [301]
                0.00    0.00       1/3           StreamDelete <cycle 3> [316]
                0.00    0.00       1/3           stream_FilterNew [294]
[339]    0.0    0.00    0.00       3         stream_CommonDelete [339]
                0.00    0.00       3/45          vlc_object_release [193]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [219]
[340]    0.0    0.00    0.00       1         input_SendEventProgramScrambled [340]
                0.00    0.00       2/733         var_SetChecked <cycle 5> [166]
                0.00    0.00       1/2360        var_GetChecked [148]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_new_location [296]
[341]    0.0    0.00    0.00       1         libvlc_media_new_from_input_item [341]
                0.00    0.00       7/27          libvlc_event_manager_register_event_type [279]
                0.00    0.00       5/5           vlc_event_attach [413]
                0.00    0.00       1/2           libvlc_event_manager_new [445]
                0.00    0.00       1/9379        vlc_cond_init [506]
                0.00    0.00       1/9403        vlc_mutex_init [505]
                0.00    0.00       1/2           input_item_Hold [814]
-----------------------------------------------
                0.00    0.00       2/2           Thread [14]
[342]    0.0    0.00    0.00       2         ThreadChangeFilters [342]
                0.00    0.00       4/11          filter_chain_Reset [290]
                0.00    0.00       2/8           VoutVideoFilterStaticNewPicture [384]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       4/4           filter_chain_GetFmtOut [695]
                0.00    0.00       2/2           config_ChainCreate [792]
                0.00    0.00       2/4           es_format_InitFromVideo [694]
                0.00    0.00       2/2           es_format_IsSimilar [797]
-----------------------------------------------
                0.00    0.00       1/1           Create [163]
[343]    0.0    0.00    0.00       1         input_EsOutNew [343]
                0.00    0.00       7/2360        var_GetChecked [148]
                0.00    0.00       2/12          LanguageSplit [271]
                0.00    0.00       1/5           vlc_mutex_init_recursive [685]
-----------------------------------------------
                0.00    0.00       1/1           input_SendEventTitle [303]
[344]    0.0    0.00    0.00       1         input_ControlVarTitle [344]
                0.00    0.00       2/13          var_Destroy [223]
                0.00    0.00       2/1003        var_Change [158]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
[345]    0.0    0.00    0.00       4         libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [345]
                0.00    0.00       4/190         libebml::IOCallback::readFully(void*, unsigned int) [169]
                0.00    0.00      24/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
[346]    0.0    0.00    0.00       4         libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [346]
                0.00    0.00       4/190         libebml::IOCallback::readFully(void*, unsigned int) [169]
                0.00    0.00      24/63794       libebml::EbmlElement::GetSize() const [16166]
                0.00    0.00       4/4           libebml::UTFstring::UpdateFromUTF8() [16307]
                0.00    0.00       4/4           libebml::UTFstring::SetUTF8(std::string const&) [16308]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [63]
                0.00    0.00       1/2           aout_update_format [190]
[347]    0.0    0.00    0.00       2         input_SendEventAout [347]
                0.00    0.00       2/733         var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       1/2           DeleteDecoder <cycle 4> [63]
                0.00    0.00       1/2           vout_new_buffer [29]
[348]    0.0    0.00    0.00       2         input_SendEventVout [348]
                0.00    0.00       2/733         var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       6/6           vlc_event_send [239]
[349]    0.0    0.00    0.00       6         input_item_meta_changed [349]
                0.00    0.00       6/877         libvlc_event_send [151]
-----------------------------------------------
                0.00    0.00       1/3           Create [163]
                0.00    0.00       2/3           EsOutProgramSelect [219]
[350]    0.0    0.00    0.00       3         input_item_SetMeta [350]
                0.00    0.00       3/17          vlc_event_send [239]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       3/446104      vlc_mutex_unlock [91]
                0.00    0.00       3/3           vlc_meta_Set [724]
                0.00    0.00       1/3           vlc_meta_New [723]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [162]
[351]    0.0    0.00    0.00       2         AspectCallback [351]
                0.00    0.00       2/2           vout_ControlChangeSampleAspectRatio [355]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [162]
[352]    0.0    0.00    0.00       2         CropCallback [352]
                0.00    0.00       2/2           vout_ControlChangeCropRatio [354]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [162]
[353]    0.0    0.00    0.00       2         ScaleCallback [353]
                0.00    0.00       2/2           vout_ControlChangeZoom [356]
-----------------------------------------------
                0.00    0.00       2/2           CropCallback [352]
[354]    0.0    0.00    0.00       2         vout_ControlChangeCropRatio [354]
                0.00    0.00       2/6           vout_control_PushPair [266]
-----------------------------------------------
                0.00    0.00       2/2           AspectCallback [351]
[355]    0.0    0.00    0.00       2         vout_ControlChangeSampleAspectRatio [355]
                0.00    0.00       2/6           vout_control_PushPair [266]
-----------------------------------------------
                0.00    0.00       2/2           ScaleCallback [353]
[356]    0.0    0.00    0.00       2         vout_ControlChangeZoom [356]
                0.00    0.00       2/6           vout_control_PushPair [266]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [162]
[357]    0.0    0.00    0.00       2         SubFilterCallback [357]
                0.00    0.00       2/2           vout_ControlChangeSubFilters [362]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [162]
[358]    0.0    0.00    0.00       2         SubMarginCallback [358]
                0.00    0.00       2/2           vout_ControlChangeSubMargin [363]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [162]
[359]    0.0    0.00    0.00       2         SubSourceCallback [359]
                0.00    0.00       2/2           vout_ControlChangeSubSources [364]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [162]
[360]    0.0    0.00    0.00       2         VideoFilterCallback [360]
                0.00    0.00       2/2           vout_ControlChangeFilters [361]
-----------------------------------------------
                0.00    0.00       2/2           VideoFilterCallback [360]
[361]    0.0    0.00    0.00       2         vout_ControlChangeFilters [361]
                0.00    0.00       2/7           vout_control_PushString [255]
-----------------------------------------------
                0.00    0.00       2/2           SubFilterCallback [357]
[362]    0.0    0.00    0.00       2         vout_ControlChangeSubFilters [362]
                0.00    0.00       2/7           vout_control_PushString [255]
-----------------------------------------------
                0.00    0.00       2/2           SubMarginCallback [358]
[363]    0.0    0.00    0.00       2         vout_ControlChangeSubMargin [363]
                0.00    0.00       2/7           vout_control_PushInteger [254]
-----------------------------------------------
                0.00    0.00       2/2           SubSourceCallback [359]
[364]    0.0    0.00    0.00       2         vout_ControlChangeSubSources [364]
                0.00    0.00       2/7           vout_control_PushString [255]
-----------------------------------------------
                                   4             input_vaControl <cycle 5> [304]
[365]    0.0    0.00    0.00       4         input_SendEventMetaInfo <cycle 5> [365]
                0.00    0.00       4/17          vlc_event_send [239]
                                   4             var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       1/5           vout_DeleteDisplay [306]
                0.00    0.00       2/5           ThreadStop [273]
                0.00    0.00       2/5           spu_Destroy [240]
[366]    0.0    0.00    0.00       5         filter_chain_Delete [366]
                0.00    0.00       5/11          filter_chain_Reset [290]
                0.00    0.00      10/36          es_format_Clean [591]
-----------------------------------------------
                0.00    0.00       1/5           ThreadStop [273]
                0.00    0.00       4/5           Thread [14]
[367]    0.0    0.00    0.00       5         ThreadFlush [367]
                0.00    0.00       5/8           VoutVideoFilterStaticNewPicture [384]
                0.00    0.00       5/6           picture_fifo_Flush [406]
                0.00    0.00       2/30111       picture_Release [486]
-----------------------------------------------
                                   1             vout_Request <cycle 4> [168]
[368]    0.0    0.00    0.00       1         spu_Create <cycle 4> [368]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       3/9403        vlc_mutex_init [505]
                0.00    0.00       2/5           filter_chain_New [681]
                                   2             SpuRenderCreateAndLoadScale <cycle 4> [443]
                                   1             SpuRenderCreateAndLoadText <cycle 4> [282]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
[369]    0.0    0.00    0.00       3         libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [369]
                0.00    0.00       3/190         libebml::IOCallback::readFully(void*, unsigned int) [169]
                0.00    0.00       9/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_new_location [296]
[370]    0.0    0.00    0.00       1         input_item_NewExt [370]
                0.00    0.00       1/1           input_item_NewWithType [371]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewExt [370]
[371]    0.0    0.00    0.00       1         input_item_NewWithType [371]
                0.00    0.00       8/8           vlc_event_manager_register_event_type [383]
                0.00    0.00       1/1           input_item_SetURI [455]
                0.00    0.00       1/9403        vlc_mutex_init [505]
                0.00    0.00       1/1           vlc_event_manager_init [1029]
-----------------------------------------------
                0.00    0.00       1/4           libvlc_media_player_set_media [277]
                0.00    0.00       1/4           libvlc_media_player_stop [213]
                0.00    0.00       2/4           input_event_changed <cycle 5> [145]
[372]    0.0    0.00    0.00       4         set_state [372]
                0.00    0.00       3/3           libvlc_media_set_state [407]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       3/446104      vlc_mutex_unlock [91]
                0.00    0.00       3/5           libvlc_media_retain [684]
                0.00    0.00       3/5           libvlc_media_release [683]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [133]
[373]    0.0    0.00    0.00       1         EbmlParser::Reset(demux_t*) [373]
                0.00    0.00       1/188         var_Inherit [154]
                0.00    0.00       1/16555       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16301]
                0.00    0.00       1/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16237]
-----------------------------------------------
                                   1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16518]
[374]    0.0    0.00    0.00       1         matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [374]
                0.00    0.00       1/5           EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [253]
                0.00    0.00       1/16555       vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) [128]
                0.00    0.00       1/5           EbmlParser::~EbmlParser() [16285]
                                   2             es_out_Control(es_out_t*, int, ...) <cycle 4> [16284]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersPipelineCreate [293]
[375]    0.0    0.00    0.00       1         TryFormat [375]
                0.00    0.00       1/2           CreateFilter [312]
                0.00    0.00       1/7           aout_FormatPrepare [647]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [250]
[376]    0.0    0.00    0.00       1         input_Close [376]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/1           input_Join [416]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [162]
[377]    0.0    0.00    0.00       1         ReplayGainCallback [377]
                0.00    0.00       1/188         var_Inherit [154]
-----------------------------------------------
                0.00    0.00       5/49692       AStreamControl [116]
                0.00    0.00   49687/49692       access_Control [380]
[378]    0.0    0.00    0.00   49692         FileControl [378]
                0.00    0.00       1/188         var_Inherit [154]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [200]
[379]    0.0    0.00    0.00       1         var_InheritURational [379]
                0.00    0.00       1/188         var_Inherit [154]
-----------------------------------------------
                0.00    0.00       1/49685       stream_AccessNew [258]
                0.00    0.00   16560/49685       AStreamControl [116]
                0.00    0.00   33124/49685       AStreamSeekStream [120]
[380]    0.0    0.00    0.00   49685         access_Control [380]
                0.00    0.00   49687/49692       FileControl [378]
-----------------------------------------------
                0.00    0.00       8/8           libvlc_event_attach [382]
[381]    0.0    0.00    0.00       8         event_attach [381]
                0.00    0.00       8/382619      vlc_mutex_lock [32]
                0.00    0.00       8/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       8/8           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[382]    0.0    0.00    0.00       8         libvlc_event_attach [382]
                0.00    0.00       8/8           event_attach [381]
-----------------------------------------------
                0.00    0.00       8/8           input_item_NewWithType [371]
[383]    0.0    0.00    0.00       8         vlc_event_manager_register_event_type [383]
                0.00    0.00       8/382619      vlc_mutex_lock [32]
                0.00    0.00       8/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/8           Thread [14]
                0.00    0.00       2/8           ThreadChangeFilters [342]
                0.00    0.00       5/8           ThreadFlush [367]
[384]    0.0    0.00    0.00       8         VoutVideoFilterStaticNewPicture [384]
                0.00    0.00       7/382619      vlc_mutex_lock [32]
                0.00    0.00       7/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/1           vout_control_Dead [464]
                0.00    0.00      14/14          filter_chain_VideoFlush [627]
                0.00    0.00       2/30111       picture_Release [486]
-----------------------------------------------
                0.00    0.00       1/1           AndroidLockSurface [39]
[385]    0.0    0.00    0.00       1         VoutDisplayEvent [385]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           Init [182]
[386]    0.0    0.00    0.00       1         subtitles_Detect [386]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/2360        var_GetChecked [148]
                0.00    0.00      16/16          vlc_readdir [625]
                0.00    0.00      13/13          subtitles_Filter [630]
                0.00    0.00       5/5           vlc_opendir [686]
                0.00    0.00       2/2           strcpy_strip_ext [829]
                0.00    0.00       2/2           strcpy_trim [830]
                0.00    0.00       1/4           make_path [700]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecNew [198]
[387]    0.0    0.00    0.00       1         aout_volume_SetFormat [387]
                0.00    0.00       1/31235       module_need <cycle 4> [618]
-----------------------------------------------
                0.00    0.00       1/2           Open [233]
                0.00    0.00       1/2           VoutValidateFormat [421]
[388]    0.0    0.00    0.00       2         video_format_FixRgb [388]
                0.00    0.00       2/27681       transform_GetBasicOps [74]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [216]
[389]    0.0    0.00    0.00       1         input_SendEventProgramAdd [389]
                0.00    0.00       1/3           VarListAdd [298]
-----------------------------------------------
                0.00    0.00       3/3           generic_start <cycle 4> [68]
[390]    0.0    0.00    0.00       3         Open [390]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       3/8           vlc_CPU [646]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[391]    0.0    0.00    0.00       1         FileOpen [391]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       1/1           vlc_open [1036]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[392]    0.0    0.00    0.00       1         Open [392]
                0.00    0.00       1/253         vlc_Log [152]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[393]    0.0    0.00    0.00       1         Open [393]
                0.00    0.00       1/253         vlc_Log [152]
-----------------------------------------------
                0.00    0.00       1/1           aout_FiltersPipelineCreate [293]
[394]    0.0    0.00    0.00       1         aout_FormatsPrint [394]
                0.00    0.00       1/253         vlc_Log [152]
                0.00    0.00       2/5           aout_FormatPrintChannels [678]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [200]
[395]    0.0    0.00    0.00       1         video_format_Print [395]
                0.00    0.00       1/253         vlc_Log [152]
-----------------------------------------------
                0.00    0.00       3/120         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00      51/120         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.00    0.00      66/120         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
[396]    0.0    0.00    0.00     120         EbmlParser::Up() [396]
                0.00    0.00       1/253         vlc_Log [152]
-----------------------------------------------
                                                 <spontaneous>
[397]    0.0    0.00    0.00                 libvlc_video_get_spu_count [397]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/1003        var_Change [158]
                0.00    0.00       1/19          libvlc_get_input_thread [307]
-----------------------------------------------
                                                 <spontaneous>
[398]    0.0    0.00    0.00                 libvlc_video_get_track_count [398]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/1003        var_Change [158]
                0.00    0.00       1/19          libvlc_get_input_thread [307]
-----------------------------------------------
                0.00    0.00       1/1           aout_DecDelete [211]
[399]    0.0    0.00    0.00       1         aout_OutputDelete [399]
                0.00    0.00       1/34          var_DelCallback [192]
                0.00    0.00       1/1           Stop [943]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [157]
[400]    0.0    0.00    0.00       2         libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [400]
                0.00    0.00       2/190         libebml::IOCallback::readFully(void*, unsigned int) [169]
                0.00    0.00       6/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       2/2           Create [189]
[401]    0.0    0.00    0.00       2         spu_get_attachments [401]
                0.00    0.00       1/733         input_Control <cycle 5> [649]
-----------------------------------------------
                0.00    0.00       1/1           Run [24]
[402]    0.0    0.00    0.00       1         input_SendEventDead [402]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [115]
[403]    0.0    0.00    0.00       1         input_SendEventMetaEpg [403]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[404]    0.0    0.00    0.00       1         libvlc_media_player_set_video_title_display [404]
                0.00    0.00       1/733         var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       2/6           DeleteDecoder <cycle 4> [63]
                0.00    0.00       2/6           DecoderFlush [263]
                0.00    0.00       2/6           block_FifoRelease [444]
[405]    0.0    0.00    0.00       6         block_FifoEmpty [405]
                0.00    0.00       6/382619      vlc_mutex_lock [32]
                0.00    0.00       6/446104      vlc_mutex_unlock [91]
                0.00    0.00       6/26310       vlc_cond_broadcast [488]
-----------------------------------------------
                0.00    0.00       1/6           picture_fifo_Delete [473]
                0.00    0.00       5/6           ThreadFlush [367]
[406]    0.0    0.00    0.00       6         picture_fifo_Flush [406]
                0.00    0.00       6/382619      vlc_mutex_lock [32]
                0.00    0.00       6/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       3/3           set_state [372]
[407]    0.0    0.00    0.00       3         libvlc_media_set_state [407]
                0.00    0.00       3/877         libvlc_event_send [151]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [250]
[408]    0.0    0.00    0.00       1         input_ControlPush [408]
                0.00    0.00       1/20196       vlc_cond_signal [75]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_RequestVout <cycle 4> [206]
[409]    0.0    0.00    0.00       1         vout_DisplayTitle [409]
                0.00    0.00       1/7           vout_control_PushString [255]
-----------------------------------------------
                0.00    0.00       1/1           input_resource_RequestVout <cycle 4> [206]
[410]    0.0    0.00    0.00       1         vout_FlushSubpictureChannel [410]
                0.00    0.00       1/7           vout_control_PushInteger [254]
-----------------------------------------------
                0.00    0.00       1/1           CloseDecoder [337]
[411]    0.0    0.00    0.00       1         avcodec_close [411]
                0.00    0.00       1/5966        av_frame_free [109]
                0.00    0.00       4/71716       av_freep [480]
                0.00    0.00       4/5           av_buffer_pool_uninit [679]
                0.00    0.00       1/2           avcodec_is_open [783]
                0.00    0.00       1/1           aac_decode_close [946]
                0.00    0.00       1/1           av_opt_free [955]
                0.00    0.00       1/2           av_codec_is_encoder [776]
-----------------------------------------------
                                                 <spontaneous>
[412]    0.0    0.00    0.00                 libvlc_audio_get_track_count [412]
                0.00    0.00       1/45          vlc_object_release [193]
                0.00    0.00       1/19          libvlc_get_input_thread [307]
-----------------------------------------------
                0.00    0.00       5/5           libvlc_media_new_from_input_item [341]
[413]    0.0    0.00    0.00       5         vlc_event_attach [413]
                0.00    0.00       5/382619      vlc_mutex_lock [32]
                0.00    0.00       5/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [115]
[414]    0.0    0.00    0.00       1         input_item_SetEpgOffline [414]
                0.00    0.00       1/17          vlc_event_send [239]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [273]
[415]    0.0    0.00    0.00       1         filter_DeleteBlend [415]
                0.00    0.00       1/45          vlc_object_release [193]
-----------------------------------------------
                0.00    0.00       1/1           input_Close [376]
[416]    0.0    0.00    0.00       1         input_Join [416]
                0.00    0.00       1/4           vlc_join [321]
-----------------------------------------------
                0.00    0.00       1/4           EsOutControl <cycle 4> [115]
                0.00    0.00       3/4           input_resource_RequestVout <cycle 4> [206]
[417]    0.0    0.00    0.00       4         input_item_GetMeta [417]
                0.00    0.00       4/382619      vlc_mutex_lock [32]
                0.00    0.00       4/446104      vlc_mutex_unlock [91]
                0.00    0.00       4/6           vlc_meta_Get [676]
-----------------------------------------------
                0.00    0.00       4/4           Thread [14]
[418]    0.0    0.00    0.00       4         vout_SetWindowState [418]
                0.00    0.00       4/382619      vlc_mutex_lock [32]
                0.00    0.00       4/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           input_SendEventLength [174]
[419]    0.0    0.00    0.00       1         input_item_SetDuration [419]
                0.00    0.00       1/17          vlc_event_send [239]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [115]
[420]    0.0    0.00    0.00       1         input_item_SetPreparsed [420]
                0.00    0.00       1/17          vlc_event_send [239]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/1           vlc_meta_GetStatus [1033]
                0.00    0.00       1/1           vlc_meta_SetStatus [1034]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [168]
[421]    0.0    0.00    0.00       1         VoutValidateFormat [421]
                0.00    0.00       1/2           video_format_FixRgb [388]
                0.00    0.00       1/6977        vlc_fourcc_GetCodec [514]
                0.00    0.00       1/70          vlc_ureduce [578]
-----------------------------------------------
                                   2             matroska_segment_c::Select(long long) <cycle 4> [323]
[422]    0.0    0.00    0.00       2         Add <cycle 4> [422]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/153114      mdate [70]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/25284       TsStop [490]
                                   2             EsOutAdd <cycle 4> [207]
-----------------------------------------------
                0.00    0.00       4/4           info_category_AddInfo [257]
[423]    0.0    0.00    0.00       4         input_item_UpdateTracksInfo [423]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       4/446104      vlc_mutex_unlock [91]
                0.00    0.00       3/25          es_format_Copy [604]
                0.00    0.00       2/36          es_format_Clean [591]
-----------------------------------------------
                0.00    0.00       1/1           release_input_thread [250]
[424]    0.0    0.00    0.00       1         input_Stop [424]
                0.00    0.00       1/1           ObjectKillChildrens [441]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       2/6           CloseDecoder [337]
                0.00    0.00       2/6           OpenDecoder [69]
                0.00    0.00       2/6           ffmpeg_OpenCodec [319]
[425]    0.0    0.00    0.00       6         vlc_global_mutex [425]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       3/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       3/3           libvlc_media_add_option_flag [429]
[426]    0.0    0.00    0.00       3         input_item_AddOption [426]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       3/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       3/3           input_ChangeState [308]
[427]    0.0    0.00    0.00       3         input_item_SetErrorWhenReading [427]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       3/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       3/3           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[428]    0.0    0.00    0.00       3         libvlc_media_add_option [428]
                0.00    0.00       3/3           libvlc_media_add_option_flag [429]
-----------------------------------------------
                0.00    0.00       3/3           libvlc_media_add_option [428]
[429]    0.0    0.00    0.00       3         libvlc_media_add_option_flag [429]
                0.00    0.00       3/3           input_item_AddOption [426]
-----------------------------------------------
                0.00    0.00       1/3           libvlc_media_player_new [172]
                0.00    0.00       2/3           libvlc_event_manager_new [445]
[430]    0.0    0.00    0.00       3         libvlc_retain [430]
                0.00    0.00       3/382619      vlc_mutex_lock [32]
                0.00    0.00       3/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/3           stream_AccessNew [258]
                0.00    0.00       2/3           stream_FilterNew [294]
[431]    0.0    0.00    0.00       3         stream_CommonNew [431]
                0.00    0.00       3/24          vlc_custom_create [284]
-----------------------------------------------
                0.00    0.00       1/1           vlc_event_send [239]
[432]    0.0    0.00    0.00       1         input_item_preparsed_changed [432]
                0.00    0.00       1/877         libvlc_event_send [151]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/26310       vlc_cond_broadcast [488]
-----------------------------------------------
                0.00    0.00       2/2           input_vaControl <cycle 5> [304]
[433]    0.0    0.00    0.00       2         input_resource_HoldVouts [433]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/46          vlc_object_hold [586]
-----------------------------------------------
                0.00    0.00       1/2           EsOutProgramAdd [216]
                0.00    0.00       1/2           EsOutControl <cycle 4> [115]
[434]    0.0    0.00    0.00       2         input_clock_SetJitter [434]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/2           Create [163]
                0.00    0.00       1/2           input_resource_RequestVout <cycle 4> [206]
[435]    0.0    0.00    0.00       2         input_item_GetName [435]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/2           End [191]
                0.00    0.00       1/2           Create [163]
[436]    0.0    0.00    0.00       2         input_resource_SetInput [436]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       2/2           Thread [14]
[437]    0.0    0.00    0.00       2         spu_ChangeFilters [437]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       2/2           Thread [14]
[438]    0.0    0.00    0.00       2         spu_ChangeMargin [438]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       2/2           Thread [14]
[439]    0.0    0.00    0.00       2         spu_ChangeSources [439]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       2/2           input_DecoderDelete [249]
[440]    0.0    0.00    0.00       2         vlc_cancel [440]
                0.00    0.00       2/382619      vlc_mutex_lock [32]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           input_Stop [424]
[441]    0.0    0.00    0.00       1         ObjectKillChildrens [441]
                0.00    0.00       1/1           vlc_list_children [463]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/1           vlc_list_release [1032]
-----------------------------------------------
                                   2             decoder_New <cycle 4> [793]
[442]    0.0    0.00    0.00       2         CreateDecoder <cycle 4> [442]
                0.00    0.00       2/24          vlc_custom_create [284]
                0.00    0.00       4/25          es_format_Copy [604]
                0.00    0.00       4/9379        vlc_cond_init [506]
                0.00    0.00       2/2           block_FifoNew [785]
                0.00    0.00       2/9403        vlc_mutex_init [505]
                0.00    0.00       2/28          es_format_Init [601]
                                   2             module_need <cycle 4> [618]
-----------------------------------------------
                                   2             spu_Create <cycle 4> [368]
[443]    0.0    0.00    0.00       2         SpuRenderCreateAndLoadScale <cycle 4> [443]
                0.00    0.00       2/24          vlc_custom_create [284]
                0.00    0.00       4/28          es_format_Init [601]
                                   2             module_need <cycle 4> [618]
-----------------------------------------------
                0.00    0.00       2/2           DeleteDecoder <cycle 4> [63]
[444]    0.0    0.00    0.00       2         block_FifoRelease [444]
                0.00    0.00       2/6           block_FifoEmpty [405]
                0.00    0.00       4/9352        vlc_cond_destroy [508]
                0.00    0.00       2/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_from_input_item [341]
                0.00    0.00       1/2           libvlc_media_player_new [172]
[445]    0.0    0.00    0.00       2         libvlc_event_manager_new [445]
                0.00    0.00       2/3           libvlc_retain [430]
                0.00    0.00       2/9403        vlc_mutex_init [505]
                0.00    0.00       2/5           vlc_mutex_init_recursive [685]
-----------------------------------------------
                0.00    0.00       1/2           input_ControlVarInit [188]
                0.00    0.00       1/2           FilterRelease [222]
[446]    0.0    0.00    0.00       2         var_Get [446]
                0.00    0.00       2/2360        var_GetChecked [148]
-----------------------------------------------
                0.00    0.00       1/1           vlc_event_send [239]
[447]    0.0    0.00    0.00       1         input_item_duration_changed [447]
                0.00    0.00       1/877         libvlc_event_send [151]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [162]
[448]    0.0    0.00    0.00       1         input_pausable_changed [448]
                0.00    0.00       1/877         libvlc_event_send [151]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [162]
[449]    0.0    0.00    0.00       1         input_scrambled_changed [449]
                0.00    0.00       1/877         libvlc_event_send [151]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [162]
[450]    0.0    0.00    0.00       1         input_seekable_changed [450]
                0.00    0.00       1/877         libvlc_event_send [151]
-----------------------------------------------
                0.00    0.00       1/1           OpenGeneric [453]
[451]    0.0    0.00    0.00       1         InitOmxCore [451]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[452]    0.0    0.00    0.00       1         OpenDecoder [452]
                0.00    0.00       1/1           OpenGeneric [453]
                0.00    0.00       1/1           GetOmxRole [905]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [452]
[453]    0.0    0.00    0.00       1         OpenGeneric [453]
                0.00    0.00       1/1           InitOmxCore [451]
-----------------------------------------------
                0.00    0.00       1/1           es_out_Control <cycle 4> [187]
[454]    0.0    0.00    0.00       1         input_clock_ChangeSystemOrigin [454]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewWithType [371]
[455]    0.0    0.00    0.00       1         input_item_SetURI [455]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/5           decode_URI [680]
                0.00    0.00       1/1           EnsureUTF8 [899]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_set_equalizer [275]
[456]    0.0    0.00    0.00       1         input_resource_HoldAout [456]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/46          vlc_object_hold [586]
-----------------------------------------------
                0.00    0.00       1/1           End [191]
[457]    0.0    0.00    0.00       1         input_resource_RequestSout [457]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_MediaList_expandMedia [466]
[458]    0.0    0.00    0.00       1         libvlc_media_player_get_media [458]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/5           libvlc_media_retain [684]
-----------------------------------------------
                0.00    0.00       1/1           Thread [14]
[459]    0.0    0.00    0.00       1         spu_ClearChannel [459]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           Create [163]
[460]    0.0    0.00    0.00       1         stats_NewInputStats [460]
                0.00    0.00       1/1           stats_ReinitInputStats [461]
                0.00    0.00       1/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       1/1           stats_NewInputStats [460]
[461]    0.0    0.00    0.00       1         stats_ReinitInputStats [461]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputNew [276]
[462]    0.0    0.00    0.00       1         var_Type [462]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/4112        tfind [537]
-----------------------------------------------
                0.00    0.00       1/1           ObjectKillChildrens [441]
[463]    0.0    0.00    0.00       1         vlc_list_children [463]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           VoutVideoFilterStaticNewPicture [384]
[464]    0.0    0.00    0.00       1         vout_control_Dead [464]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/26310       vlc_cond_broadcast [488]
-----------------------------------------------
                0.00    0.00       1/1           vout_Close [227]
[465]    0.0    0.00    0.00       1         vout_snapshot_End [465]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/26310       vlc_cond_broadcast [488]
-----------------------------------------------
                                                 <spontaneous>
[466]    0.0    0.00    0.00                 Java_org_videolan_libvlc_MediaList_expandMedia [466]
                0.00    0.00       1/1           libvlc_media_player_get_media [458]
                0.00    0.00       2/453         getLong [548]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[467]    0.0    0.00    0.00       1         ReadMeta(vlc_object_t*) [467]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       2/2           TagLib::FileRef::~FileRef() [16414]
                0.00    0.00       1/1           TagLib::FileRef::FileRef() [16535]
                0.00    0.00       1/1           TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16534]
                0.00    0.00       1/1           TagLib::FileRef::operator=(TagLib::FileRef const&) [16536]
                0.00    0.00       1/1           TagLib::FileRef::isNull() const [16564]
-----------------------------------------------
                0.00    0.00       1/1           TriggerCallback <cycle 5> [162]
[468]    0.0    0.00    0.00       1         EqualizerCallback [468]
                0.00    0.00       1/1           aout_ChangeFilterString [469]
-----------------------------------------------
                0.00    0.00       1/1           EqualizerCallback [468]
[469]    0.0    0.00    0.00       1         aout_ChangeFilterString [469]
                0.00    0.00       1/2360        var_GetChecked [148]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitInterlacingSupport [221]
[470]    0.0    0.00    0.00       1         DeinterlaceIsPresent [470]
                0.00    0.00       1/2360        var_GetChecked [148]
                0.00    0.00       1/3           vlc_inhibit_Destroy [722]
-----------------------------------------------
                0.00    0.00       1/1           ThreadDisplayPicture [17]
[471]    0.0    0.00    0.00       1         filter_NewBlend [471]
                0.00    0.00       1/24          vlc_custom_create [284]
                0.00    0.00       2/28          es_format_Init [601]
-----------------------------------------------
                0.00    0.00       1/1           LanguageSplit [271]
[472]    0.0    0.00    0.00       1         input_DecoderChangeDelay [472]
                0.00    0.00       1/382619      vlc_mutex_lock [32]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [273]
[473]    0.0    0.00    0.00       1         picture_fifo_Delete [473]
                0.00    0.00       1/6           picture_fifo_Flush [406]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                                                 <spontaneous>
[474]    0.0    0.00    0.00                 vlc_cleanup_lock [474]
                0.00    0.00       4/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                                                 <spontaneous>
[475]    0.0    0.00    0.00                 vlc_cleanup_lock [475]
                0.00    0.00       2/446104      vlc_mutex_unlock [91]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[476]    0.0    0.00    0.00       1         Close [476]
                0.00    0.00       1/446104      vlc_mutex_unlock [91]
                0.00    0.00       1/3           picture_pool_Delete [720]
-----------------------------------------------
[477]    0.0    0.00    0.00      11+6       <cycle 2 as a whole> [477]
                0.00    0.00      14             stream_Peek <cycle 2> [628]
                0.00    0.00       3             Peek <cycle 2> [714]
-----------------------------------------------
[478]    0.0    0.00    0.00     133+8       <cycle 6 as a whole> [478]
                0.00    0.00     137             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16361]
                0.00    0.00       1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16494]
                0.00    0.00       1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16491]
-----------------------------------------------
                0.00    0.00       1/71922       ff_yuv2rgb_c_init_tables [994]
                0.00    0.00       2/71922       CloseDecoder [337]
                0.00    0.00       2/71922       GetParameters [677]
                0.00    0.00       2/71922       sws_freeContext [832]
                0.00    0.00       2/71922       av_buffer_pool_uninit [679]
                0.00    0.00      16/71922       sws_getCachedContext [644]
                0.00    0.00     178/71922       ff_init_vlc_sparse [558]
                0.00    0.00   71719/71922       av_freep [480]
[479]    0.0    0.00    0.00   71922         av_free [479]
-----------------------------------------------
                0.00    0.00       1/71716       ffmpeg_OpenCodec [319]
                0.00    0.00       1/71716       avcodec_open2 [963]
                0.00    0.00       1/71716       ff_aac_sbr_ctx_close [970]
                0.00    0.00       1/71716       av_opt_free [955]
                0.00    0.00       1/71716       av_opt_set_dict [957]
                0.00    0.00       3/71716       av_buffer_pool_uninit [679]
                0.00    0.00       4/71716       avcodec_close [411]
                0.00    0.00       6/71716       ff_fft_end [663]
                0.00    0.00       6/71716       ff_mdct_end [666]
                0.00    0.00       8/71716       sws_getCachedContext [644]
                0.00    0.00      56/71716       sws_freeContext [832]
                0.00    0.00      69/71716       aac_decode_close [946]
                0.00    0.00    5960/71716       DecodeAudio [5]
                0.00    0.00    5968/71716       av_frame_alloc [530]
                0.00    0.00   23843/71716       av_buffer_unref [71]
                0.00    0.00   35788/71716       av_frame_unref [76]
[480]    0.0    0.00    0.00   71716         av_freep [480]
                0.00    0.00   71719/71922       av_free [479]
-----------------------------------------------
                0.00    0.00     137/69905       vlc_cond_wait [173]
                0.00    0.00   12873/69905       block_FifoGet [121]
                0.00    0.00   56895/69905       vlc_cond_timedwait [22]
[481]    0.0    0.00    0.00   69905         vlc_testcancel [481]
-----------------------------------------------
                0.00    0.00      44/33028       tdelete [645]
                0.00    0.00    1201/33028       tsearch [556]
                0.00    0.00   31783/33028       tfind [537]
[482]    0.0    0.00    0.00   33028         varcmp [482]
-----------------------------------------------
                0.00    0.00   32851/32851       stream_Read <cycle 1> [65]
[483]    0.0    0.00    0.00   32851         AStreamReadStream [483]
-----------------------------------------------
                               32849             stream_Read <cycle 1> [65]
[484]    0.0    0.00    0.00   32849         Read <cycle 1> [484]
                               32848             stream_Read <cycle 1> [65]
-----------------------------------------------
                0.00    0.00       1/30115       vlc_av_frame_Release [1028]
                0.00    0.00       1/30115       avcodec_alloc_context3 [959]
                0.00    0.00       1/30115       ff_yuv2rgb_c_init_tables [994]
                0.00    0.00       2/30115       av_buffer_alloc [774]
                0.00    0.00       6/30115       ff_mdct_init [667]
                0.00    0.00      12/30115       ff_fft_init [664]
                0.00    0.00      24/30115       sws_getCachedContext [644]
                0.00    0.00      24/30115       sws_init_context [834]
                0.00    0.00     178/30115       ff_init_vlc_sparse [558]
                0.00    0.00   29866/30115       av_mallocz [487]
[485]    0.0    0.00    0.00   30115         av_malloc [485]
-----------------------------------------------
                0.00    0.00       2/30111       VoutVideoFilterStaticNewPicture [384]
                0.00    0.00       2/30111       ThreadFlush [367]
                0.00    0.00       2/30111       vout_IsEmpty [247]
                0.00    0.00       4/30111       GetParameters [677]
                0.00    0.00      26/30111       picture_pool_Delete [720]
                0.00    0.00    2424/30111       vout_FixLeaks [126]
                0.00    0.00    6908/30111       ThreadDisplayPicture [17]
                0.00    0.00    6911/30111       Display [524]
                0.00    0.00    6911/30111       ThreadDisplayPreparePicture [57]
                0.00    0.00    6921/30111       NV12_RGBA_Filter [53]
[486]    0.0    0.00    0.00   30111         picture_Release [486]
                0.00    0.00   13810/13810       Destroy [495]
                0.00    0.00      30/30          PictureDestroy [594]
-----------------------------------------------
                0.00    0.00       1/29862       avcodec_get_context_defaults3 [962]
                0.00    0.00       1/29862       che_configure [966]
                0.00    0.00       1/29862       av_buffer_pool_init [951]
                0.00    0.00       2/29862       avcodec_open2 [963]
                0.00    0.00       2/29862       sws_alloc_context [831]
                0.00    0.00       2/29862       av_buffer_pool_get [78]
                0.00    0.00      16/29862       sws_getCachedContext [644]
                0.00    0.00      16/29862       sws_init_context [834]
                0.00    0.00    5967/29862       av_frame_alloc [530]
                0.00    0.00   23854/29862       av_buffer_create [504]
[487]    0.0    0.00    0.00   29862         av_mallocz [487]
                0.00    0.00   29866/30115       av_malloc [485]
-----------------------------------------------
                0.00    0.00       1/26310       input_item_preparsed_changed [432]
                0.00    0.00       1/26310       vout_control_Dead [464]
                0.00    0.00       1/26310       vout_snapshot_End [465]
                0.00    0.00       6/26310       block_FifoEmpty [405]
                0.00    0.00      18/26310       block_FifoWake [309]
                0.00    0.00     614/26310       TriggerCallback <cycle 5> [162]
                0.00    0.00   12807/26310       vout_control_Pop [34]
                0.00    0.00   12862/26310       block_FifoGet [121]
[488]    0.0    0.00    0.00   26310         vlc_cond_broadcast [488]
-----------------------------------------------
                0.00    0.00     321/26146       av_opt_free [955]
                0.00    0.00     377/26146       av_opt_set_defaults [715]
                0.00    0.00   25448/26146       av_opt_find2 [563]
[489]    0.0    0.00    0.00   26146         av_opt_next [489]
-----------------------------------------------
                0.00    0.00       2/25284       Del [310]
                0.00    0.00       2/25284       Add <cycle 4> [422]
                0.00    0.00   12426/25284       Control <cycle 4> [122]
                0.00    0.00   12854/25284       Send [55]
[490]    0.0    0.00    0.00   25284         TsStop [490]
-----------------------------------------------
                0.00    0.00       2/25228       DecoderBlockFlushNew [727]
                0.00    0.00       2/25228       EsOutControl <cycle 4> [115]
                0.00    0.00     418/25228       DoWork [81]
                0.00    0.00   11928/25228       DecodeAudio [5]
                0.00    0.00   12878/25228       MemToBlock(unsigned char*, unsigned int, unsigned int) [16174]
[491]    0.0    0.00    0.00   25228         block_Alloc [491]
                0.00    0.00   25223/25223       block_Init [493]
-----------------------------------------------
                0.00    0.00       1/25228       Flush [259]
                0.00    0.00       2/25228       DecoderThread [3]
                0.00    0.00     418/25228       DoWork [81]
                0.00    0.00    5965/25228       Play [36]
                0.00    0.00    6909/25228       DecodeVideo [19]
                0.00    0.00   11933/25228       DecodeAudio [5]
[492]    0.0    0.00    0.00   25228         block_generic_Release [492]
-----------------------------------------------
                0.00    0.00   25223/25223       block_Alloc [491]
[493]    0.0    0.00    0.00   25223         block_Init [493]
-----------------------------------------------
                0.00    0.00   17887/17887       DecodeAudio [5]
[494]    0.0    0.00    0.00   17887         date_Get [494]
-----------------------------------------------
                0.00    0.00   13810/13810       picture_Release [486]
[495]    0.0    0.00    0.00   13810         Destroy [495]
                0.00    0.00    6904/6904        AndroidUnlockSurface [525]
-----------------------------------------------
                0.00    0.00     844/13712       input_DecoderGetFifoSize [546]
                0.00    0.00   12868/13712       input_DecoderDecode [97]
[496]    0.0    0.00    0.00   13712         block_FifoSize [496]
-----------------------------------------------
                0.00    0.00       1/12747       Run [24]
                0.00    0.00      23/12747       vlc_object_release [193]
                0.00    0.00   12723/12747       DecoderThread [3]
[497]    0.0    0.00    0.00   12747         vlc_savecancel [497]
-----------------------------------------------
                                 427             CmdExecuteControl <cycle 4> [545]
                               12003             Control <cycle 4> [122]
[498]    0.0    0.00    0.00   12430         es_out_Control <cycle 4> [498]
                               12433             EsOutControl <cycle 4> [115]
-----------------------------------------------
                0.00    0.00       1/11929       avcodec_open2 [963]
                0.00    0.00    5963/11929       avcodec_default_get_buffer2 [42]
                0.00    0.00    5965/11929       ff_get_buffer [31]
[499]    0.0    0.00    0.00   11929         av_get_channel_layout_nb_channels [499]
-----------------------------------------------
                0.00    0.00       1/11929       av_samples_get_buffer_size [958]
                0.00    0.00    5963/11929       avcodec_default_get_buffer2 [42]
                0.00    0.00    5965/11929       DecodeAudio [5]
[500]    0.0    0.00    0.00   11929         av_sample_fmt_is_planar [500]
-----------------------------------------------
                0.00    0.00    5962/11928       avcodec_decode_audio4 [6]
                0.00    0.00    5966/11928       aac_decode_frame [7]
[501]    0.0    0.00    0.00   11928         av_packet_get_side_data [501]
-----------------------------------------------
                0.00    0.00   11927/11927       spectral_to_sample [41]
[502]    0.0    0.00    0.00   11927         imdct_and_windowing [502]
-----------------------------------------------
                0.00    0.00   11924/11924       av_buffer_unref [71]
[503]    0.0    0.00    0.00   11924         pool_release_buffer [503]
-----------------------------------------------
                0.00    0.00       2/11923       av_buffer_alloc [774]
                0.00    0.00   11921/11923       av_buffer_pool_get [78]
[504]    0.0    0.00    0.00   11923         av_buffer_create [504]
                0.00    0.00   23854/29862       av_mallocz [487]
-----------------------------------------------
                0.00    0.00       1/9403        Open [914]
                0.00    0.00       1/9403        Open(vlc_object_t*) <cycle 4> [129]
                0.00    0.00       1/9403        demux_sys_t::InitUi() [248]
                0.00    0.00       1/9403        libvlc_media_new_from_input_item [341]
                0.00    0.00       1/9403        input_item_NewWithType [371]
                0.00    0.00       1/9403        stats_NewInputStats [460]
                0.00    0.00       1/9403        DisplayNew [269]
                0.00    0.00       1/9403        picture_fifo_New [1014]
                0.00    0.00       1/9403        vlc_event_manager_init [1029]
                0.00    0.00       1/9403        input_clock_New [1004]
                0.00    0.00       1/9403        vout_control_Init [1040]
                0.00    0.00       1/9403        vout_snapshot_Init [1043]
                0.00    0.00       2/9403        libvlc_event_manager_new [445]
                0.00    0.00       2/9403        libvlc_media_player_new [172]
                0.00    0.00       2/9403        CreateDecoder <cycle 4> [442]
                0.00    0.00       2/9403        Create [163]
                0.00    0.00       2/9403        input_resource_New [1006]
                0.00    0.00       2/9403        block_FifoNew [785]
                0.00    0.00       3/9403        vout_Request <cycle 4> [168]
                0.00    0.00       3/9403        spu_Create <cycle 4> [368]
                0.00    0.00       3/9403        aout_New [209]
                0.00    0.00       4/9403        vlc_sem_init [710]
                0.00    0.00       4/9403        vlc_clone_attr [708]
                0.00    0.00      24/9403        vlc_custom_create [284]
                0.00    0.00    9338/9403        mwait [50]
[505]    0.0    0.00    0.00    9403         vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       1/9379        demux_sys_t::InitUi() [248]
                0.00    0.00       1/9379        libvlc_media_new_from_input_item [341]
                0.00    0.00       1/9379        Create [163]
                0.00    0.00       1/9379        vout_snapshot_Init [1043]
                0.00    0.00       2/9379        vout_control_Init [1040]
                0.00    0.00       4/9379        CreateDecoder <cycle 4> [442]
                0.00    0.00       4/9379        block_FifoNew [785]
                0.00    0.00       4/9379        vlc_sem_init [710]
                0.00    0.00      24/9379        vlc_custom_create [284]
                0.00    0.00    9337/9379        mwait [50]
[506]    0.0    0.00    0.00    9379         vlc_cond_init [506]
-----------------------------------------------
                0.00    0.00       1/9375        Close [886]
                0.00    0.00       1/9375        event_thread_t::~event_thread_t() [16508]
                0.00    0.00       1/9375        demux_sys_t::~demux_sys_t() [246]
                0.00    0.00       1/9375        vout_DeleteDisplay [306]
                0.00    0.00       1/9375        picture_fifo_Delete [473]
                0.00    0.00       1/9375        input_clock_Delete [1003]
                0.00    0.00       1/9375        EsOutDelete [900]
                0.00    0.00       1/9375        Destroy [897]
                0.00    0.00       1/9375        vout_control_Clean [1039]
                0.00    0.00       1/9375        vout_snapshot_Clean [1042]
                0.00    0.00       2/9375        DeleteDecoder <cycle 4> [63]
                0.00    0.00       2/9375        Destructor [898]
                0.00    0.00       2/9375        block_FifoRelease [444]
                0.00    0.00       3/9375        VoutDestructor [945]
                0.00    0.00       3/9375        spu_Destroy [240]
                0.00    0.00       3/9375        aout_Destructor [948]
                0.00    0.00       4/9375        vlc_sem_destroy [709]
                0.00    0.00       4/9375        vlc_join [321]
                0.00    0.00      23/9375        vlc_object_release [193]
                0.00    0.00    9319/9375        mwait [50]
[507]    0.0    0.00    0.00    9375         vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/9352        event_thread_t::~event_thread_t() [16508]
                0.00    0.00       1/9352        Destructor [898]
                0.00    0.00       1/9352        vout_snapshot_Clean [1042]
                0.00    0.00       2/9352        vout_control_Clean [1039]
                0.00    0.00       4/9352        DeleteDecoder <cycle 4> [63]
                0.00    0.00       4/9352        block_FifoRelease [444]
                0.00    0.00       4/9352        vlc_sem_destroy [709]
                0.00    0.00      23/9352        vlc_object_release [193]
                0.00    0.00    9312/9352        mwait [50]
[508]    0.0    0.00    0.00    9352         vlc_cond_destroy [508]
-----------------------------------------------
                0.00    0.00    8172/8172        module_provides [510]
[509]    0.0    0.00    0.00    8172         module_get_capability [509]
-----------------------------------------------
                0.00    0.00    8172/8172        module_list_cap [617]
[510]    0.0    0.00    0.00    8172         module_provides [510]
                0.00    0.00    8172/8172        module_get_capability [509]
-----------------------------------------------
                0.00    0.00       2/7692        EsSelect <cycle 4> [265]
                0.00    0.00       2/7692        EsUnselect <cycle 4> [320]
                0.00    0.00       4/7692        EsOutSelect <cycle 4> [657]
                0.00    0.00    7684/7692        EsOutControl <cycle 4> [115]
[511]    0.0    0.00    0.00    7692         EsIsSelected [511]
-----------------------------------------------
                0.00    0.00    6988/6988        Find [513]
[512]    0.0    0.00    0.00    6988         Lookup [512]
-----------------------------------------------
                                   4             Find [513]
                0.00    0.00       7/6985        vlc_fourcc_GetDescription [654]
                0.00    0.00    6978/6985        vlc_fourcc_GetCodec [514]
[513]    0.0    0.00    0.00    6985+4       Find [513]
                0.00    0.00    6988/6988        Lookup [512]
                                   4             Find [513]
-----------------------------------------------
                0.00    0.00       1/6977        GetOmxRole [905]
                0.00    0.00       1/6977        GetFfmpegCodec [904]
                0.00    0.00       1/6977        VoutValidateFormat [421]
                0.00    0.00       1/6977        vlc_fourcc_GetCodecFromString [1031]
                0.00    0.00       1/6977        vlc_fourcc_GetCodecAudio [1030]
                0.00    0.00       1/6977        EsOutAdd <cycle 4> [207]
                0.00    0.00       4/6977        es_format_IsSimilar [797]
                0.00    0.00      12/6977        aout_BitsPerSample [632]
                0.00    0.00      64/6977        video_format_Setup [581]
                0.00    0.00    6891/6977        GetVlcChromaSizes [526]
[514]    0.0    0.00    0.00    6977         vlc_fourcc_GetCodec [514]
                0.00    0.00    6978/6985        Find [513]
-----------------------------------------------
                0.00    0.00       2/6920        AndroidLockSurface [39]
                0.00    0.00    6918/6920        AndroidUnlockSurface [525]
[515]    0.0    0.00    0.00    6920         jni_UnlockAndroidSurface [515]
-----------------------------------------------
                0.00    0.00    6919/6919        NV12_RGBA_Filter [53]
[516]    0.0    0.00    0.00    6919         picture_CopyProperties [516]
-----------------------------------------------
                0.00    0.00    6919/6919        ThreadDisplayPicture [17]
[517]    0.0    0.00    0.00    6919         vout_UpdateDisplaySourceProperties [517]
-----------------------------------------------
                0.00    0.00       1/6917        vout_InitWrapper [1038]
                0.00    0.00    6916/6917        VideoBufferNew [54]
[518]    0.0    0.00    0.00    6917         Pool [518]
-----------------------------------------------
                0.00    0.00       1/6917        vout_InitWrapper [1038]
                0.00    0.00    6916/6917        ThreadDisplayPicture [17]
[519]    0.0    0.00    0.00    6917         vout_IsDisplayFiltered [519]
-----------------------------------------------
                0.00    0.00    6916/6916        vout_FilterDisplay [106]
[520]    0.0    0.00    0.00    6916         filter_chain_GetLength [520]
-----------------------------------------------
                0.00    0.00    6915/6915        AndroidLockSurface [39]
[521]    0.0    0.00    0.00    6915         jni_LockAndGetAndroidJavaSurface [521]
-----------------------------------------------
                0.00    0.00    6913/6913        spu_Render [56]
[522]    0.0    0.00    0.00    6913         filter_chain_SubSource [522]
-----------------------------------------------
                0.00    0.00      30/6912        picture_NewFromResource [596]
                0.00    0.00    6882/6912        vout_GetPicture [35]
[523]    0.0    0.00    0.00    6912         video_format_CopyCrop [523]
-----------------------------------------------
                0.00    0.00    6908/6908        ThreadDisplayPicture [17]
[524]    0.0    0.00    0.00    6908         Display [524]
                0.00    0.00    6911/30111       picture_Release [486]
-----------------------------------------------
                0.00    0.00    6904/6904        Destroy [495]
[525]    0.0    0.00    0.00    6904         AndroidUnlockSurface [525]
                0.00    0.00    6918/6920        jni_UnlockAndroidSurface [515]
-----------------------------------------------
                0.00    0.00    6892/6892        GetOutput [23]
[526]    0.0    0.00    0.00    6892         GetVlcChromaSizes [526]
                0.00    0.00    6891/6977        vlc_fourcc_GetCodec [514]
-----------------------------------------------
                0.00    0.00    6888/6888        DecoderDecodeVideo [16]
[527]    0.0    0.00    0.00    6888         vout_GetResetStatistic [527]
-----------------------------------------------
                0.00    0.00    6868/6868        vout_GetPicture [35]
[528]    0.0    0.00    0.00    6868         picture_Reset [528]
-----------------------------------------------
                0.00    0.00       1/5967        InitAudioDec [318]
                0.00    0.00    5966/5967        DecodeAudio [5]
[529]    0.0    0.00    0.00    5967         SetupOutputFormat [529]
                0.00    0.00       2/2           aout_CheckChannelExtraction [773]
                0.00    0.00       2/7           aout_FormatPrepare [647]
-----------------------------------------------
                0.00    0.00       1/5967        avcodec_open2 [963]
                0.00    0.00    5966/5967        DecodeAudio [5]
[530]    0.0    0.00    0.00    5967         av_frame_alloc [530]
                0.00    0.00    5968/71716       av_freep [480]
                0.00    0.00    5967/29862       av_mallocz [487]
-----------------------------------------------
                0.00    0.00    5966/5966        aout_volume_Amplify [533]
[531]    0.0    0.00    0.00    5966         FilterS16N [531]
-----------------------------------------------
                0.00    0.00    5965/5965        aac_decode_frame_int [8]
[532]    0.0    0.00    0.00    5965         get_che [532]
-----------------------------------------------
                0.00    0.00    5964/5964        aout_DecPlay [10]
[533]    0.0    0.00    0.00    5964         aout_volume_Amplify [533]
                0.00    0.00    5966/5966        FilterS16N [531]
-----------------------------------------------
                0.00    0.00    5964/5964        DecodeAudio [5]
[534]    0.0    0.00    0.00    5964         block_Realloc [534]
-----------------------------------------------
                0.00    0.00    5961/5961        DecodeAudio [5]
[535]    0.0    0.00    0.00    5961         date_Increment [535]
-----------------------------------------------
                0.00    0.00    5955/5955        DecoderDecodeAudio [4]
[536]    0.0    0.00    0.00    5955         aout_DecGetResetLost [536]
-----------------------------------------------
                0.00    0.00       1/4112        var_Type [462]
                0.00    0.00      13/4112        var_Destroy [223]
                0.00    0.00      24/4112        var_TriggerCallback <cycle 5> [283]
                0.00    0.00      34/4112        var_DelCallback [192]
                0.00    0.00      51/4112        var_AddCallback [183]
                0.00    0.00     626/4112        var_SetChecked <cycle 5> [166]
                0.00    0.00    1003/4112        var_Change [158]
                0.00    0.00    2360/4112        var_GetChecked [148]
[537]    0.0    0.00    0.00    4112         tfind [537]
                0.00    0.00   31783/33028       varcmp [482]
-----------------------------------------------
                0.00    0.00       4/3327        CheckValue [542]
                0.00    0.00       4/3327        var_Create [155]
                0.00    0.00     621/3327        var_SetChecked <cycle 5> [166]
                0.00    0.00     899/3327        var_Change [158]
                0.00    0.00    1799/3327        var_GetChecked [148]
[538]    0.0    0.00    0.00    3327         DupDummy [538]
-----------------------------------------------
                0.00    0.00       2/3094        AStreamPrebufferStream [274]
                0.00    0.00     492/3094        AStreamRefillStream [141]
                0.00    0.00    2600/3094        MainLoop [25]
[539]    0.0    0.00    0.00    3094         vlc_object_alive [539]
-----------------------------------------------
                0.00    0.00    2424/2424        vout_new_buffer [29]
[540]    0.0    0.00    0.00    2424         harmful_delay [540]
-----------------------------------------------
                0.00    0.00       4/1643        CheckValue [542]
                0.00    0.00     132/1643        Destroy [564]
                0.00    0.00     622/1643        var_SetChecked <cycle 5> [166]
                0.00    0.00     885/1643        var_Change [158]
[541]    0.0    0.00    0.00    1643         FreeDummy [541]
-----------------------------------------------
                0.00    0.00     626/1591        var_SetChecked <cycle 5> [166]
                0.00    0.00     965/1591        var_Change [158]
[542]    0.0    0.00    0.00    1591         CheckValue [542]
                0.00    0.00     381/383         CmpString [552]
                0.00    0.00      40/46          CmpInt [584]
                0.00    0.00      13/14          CmpFloat [626]
                0.00    0.00       4/114         FreeString [572]
                0.00    0.00       4/1643        FreeDummy [541]
                0.00    0.00       4/115         DupString [571]
                0.00    0.00       4/3327        DupDummy [538]
-----------------------------------------------
                0.00    0.00    1408/1408        ff_fft_init [664]
[543]    0.0    0.00    0.00    1408         split_radix_permutation [543]
-----------------------------------------------
                0.00    0.00       2/1280        Init [182]
                0.00    0.00       3/1280        ControlPause [299]
                0.00    0.00       5/1280        InputSourceInit [197]
                0.00    0.00    1270/1280        MainLoop [25]
[544]    0.0    0.00    0.00    1280         demux_Control [544]
                0.00    0.00    1282/1282        Control(demux_t*, int, std::__va_list) [16200]
-----------------------------------------------
                                 856             Control <cycle 4> [122]
[545]    0.0    0.00    0.00     856         CmdExecuteControl <cycle 4> [545]
                                 427             es_out_Control <cycle 4> [498]
-----------------------------------------------
                0.00    0.00     844/844         EsOutControl <cycle 4> [115]
[546]    0.0    0.00    0.00     844         input_DecoderGetFifoSize [546]
                0.00    0.00     844/13712       block_FifoSize [496]
-----------------------------------------------
                0.00    0.00     493/493         AReadStream [142]
[547]    0.0    0.00    0.00     493         FileRead [547]
-----------------------------------------------
                0.00    0.00       2/453         Java_org_videolan_libvlc_MediaList_expandMedia [466]
                0.00    0.00     451/453         getMediaPlayer [549]
[548]    0.0    0.00    0.00     453         getLong [548]
-----------------------------------------------
                0.00    0.00       1/451         Java_org_videolan_libvlc_LibVLC_stop [214]
                0.00    0.00       1/451         Java_org_videolan_libvlc_LibVLC_getAudioTracksCount [2198]
                0.00    0.00       1/451         Java_org_videolan_libvlc_LibVLC_getVideoTracksCount [2210]
                0.00    0.00       1/451         Java_org_videolan_libvlc_LibVLC_getSpuTracksCount [2207]
                0.00    0.00       8/451         Java_org_videolan_libvlc_LibVLC_getTime [2209]
                0.00    0.00       8/451         Java_org_videolan_libvlc_LibVLC_getLength [2200]
                0.00    0.00     431/451         Java_org_videolan_libvlc_LibVLC_isPlaying [178]
[549]    0.0    0.00    0.00     451         getMediaPlayer [549]
                0.00    0.00     451/453         getLong [548]
-----------------------------------------------
                0.00    0.00     429/429         libvlc_event_send [151]
[550]    0.0    0.00    0.00     429         vlc_event_callback [550]
-----------------------------------------------
                0.00    0.00     419/419         aout_DecPlay [10]
[551]    0.0    0.00    0.00     419         aout_FiltersAdjustResampling [551]
-----------------------------------------------
                0.00    0.00       2/383         var_Change [158]
                0.00    0.00     381/383         CheckValue [542]
[552]    0.0    0.00    0.00     383         CmpString [552]
-----------------------------------------------
                0.00    0.00       2/366         Destroy [729]
                0.00    0.00       2/366         destroy_size [796]
                0.00    0.00       2/366         ft_mem_qrealloc [612]
                0.00    0.00       2/366         af_autofitter_done [769]
                0.00    0.00       4/366         ft_glyphslot_done [806]
                0.00    0.00       4/366         FT_List_Finalize [614]
                0.00    0.00       4/366         FT_Done_Face [732]
                0.00    0.00       4/366         FT_Done_Library [735]
                0.00    0.00       4/366         tt_face_done [843]
                0.00    0.00       4/366         ps_hinter_done [823]
                0.00    0.00       6/366         destroy_face [795]
                0.00    0.00       8/366         destroy_charmaps [794]
                0.00    0.00       8/366         FT_Stroker_Done [754]
                0.00    0.00       8/366         TT_Done_Context [764]
                0.00    0.00       8/366         ps_mask_table_done [642]
                0.00    0.00      12/366         af_glyph_hints_done [772]
                0.00    0.00      14/366         sfnt_done_face [826]
                0.00    0.00      18/366         FT_Stream_ReleaseFrame [616]
                0.00    0.00      52/366         FT_Stream_ExitFrame [583]
                0.00    0.00      56/366         tt_face_free_name [845]
                0.00    0.00      64/366         FT_Remove_Module [589]
                0.00    0.00      80/366         FT_GlyphLoader_Reset [621]
[553]    0.0    0.00    0.00     366         ft_mem_free [553]
                0.00    0.00     172/172         ft_free [561]
-----------------------------------------------
                0.00    0.00     253/253         libvlc_logf [555]
[554]    0.0    0.00    0.00     253         debug_log [554]
-----------------------------------------------
                0.00    0.00     253/253         vlc_vaLog [153]
[555]    0.0    0.00    0.00     253         libvlc_logf [555]
                0.00    0.00     253/253         debug_log [554]
-----------------------------------------------
                0.00    0.00     224/224         var_Create [155]
[556]    0.0    0.00    0.00     224         tsearch [556]
                0.00    0.00    1201/33028       varcmp [482]
-----------------------------------------------
                                 337             build_table [557]
                0.00    0.00     178/178         ff_init_vlc_sparse [558]
[557]    0.0    0.00    0.00     178+337     build_table [557]
                                 337             build_table [557]
-----------------------------------------------
                0.00    0.00       1/178         wmavoice_init_static_data [1044]
                0.00    0.00       7/178         atrac3_init_static_data [950]
                0.00    0.00      10/178         ff_aac_sbr_init [972]
                0.00    0.00      10/178         ff_ps_init [987]
                0.00    0.00      12/178         aac_decode_init [947]
                0.00    0.00      16/178         ff_atrac3p_init_vlcs [974]
                0.00    0.00      17/178         qdm2_init_static_data [1020]
                0.00    0.00     105/178         build_canonical_huff [574]
[558]    0.0    0.00    0.00     178         ff_init_vlc_sparse [558]
                0.00    0.00     178/30115       av_malloc [485]
                0.00    0.00     178/178         build_table [557]
                0.00    0.00     178/71922       av_free [479]
-----------------------------------------------
                0.00    0.00       2/176         avcodec_open2 [963]
                0.00    0.00     174/176         avcodec_find_decoder [960]
[559]    0.0    0.00    0.00     176         av_codec_is_decoder [559]
-----------------------------------------------
                0.00    0.00     172/172         ft_mem_qalloc [562]
[560]    0.0    0.00    0.00     172         ft_alloc [560]
-----------------------------------------------
                0.00    0.00     172/172         ft_mem_free [553]
[561]    0.0    0.00    0.00     172         ft_free [561]
-----------------------------------------------
                0.00    0.00      56/172         FT_Stream_EnterFrame [582]
                0.00    0.00     116/172         ft_mem_alloc [569]
[562]    0.0    0.00    0.00     172         ft_mem_qalloc [562]
                0.00    0.00     172/172         ft_alloc [560]
-----------------------------------------------
                0.00    0.00       1/167         av_opt_set [956]
                0.00    0.00       2/167         av_opt_set_q [781]
                0.00    0.00      22/167         av_opt_set_double [611]
                0.00    0.00     142/167         av_opt_set_int [566]
[563]    0.0    0.00    0.00     167         av_opt_find2 [563]
                0.00    0.00   25448/26146       av_opt_next [489]
-----------------------------------------------
                0.00    0.00       8/158         var_Destroy [223]
                0.00    0.00      12/158         var_Create [155]
                0.00    0.00     138/158         tdestroy_recurse [653]
[564]    0.0    0.00    0.00     158         Destroy [564]
                0.00    0.00     132/1643        FreeDummy [541]
                0.00    0.00     101/114         FreeString [572]
-----------------------------------------------
                0.00    0.00       2/154         aout_New [209]
                0.00    0.00       2/154         vout_InitInterlacingSupport [221]
                0.00    0.00       3/154         config_GetType [716]
                0.00    0.00      15/154         config_GetFloat [212]
                0.00    0.00      45/154         config_GetPsz [186]
                0.00    0.00      87/154         config_GetInt [167]
[565]    0.0    0.00    0.00     154         config_FindConfig [565]
-----------------------------------------------
                0.00    0.00     142/142         av_opt_set_defaults [715]
[566]    0.0    0.00    0.00     142         av_opt_set_int [566]
                0.00    0.00     142/167         av_opt_find2 [563]
-----------------------------------------------
                0.00    0.00     138/138         tdestroy_recurse [653]
[567]    0.0    0.00    0.00     138         CleanupVar [567]
-----------------------------------------------
                0.00    0.00       4/133         LanguageSplit [271]
                0.00    0.00       5/133         aout_OutputNew [276]
                0.00    0.00       9/133         input_ControlVarInit [188]
                0.00    0.00      15/133         vout_InitInterlacingSupport [221]
                0.00    0.00      32/133         vout_IntfInit [180]
                0.00    0.00      32/133         aout_New [209]
                0.00    0.00      36/133         info_category_AddInfo [257]
[568]    0.0    0.00    0.00     133         vlc_gettext [568]
-----------------------------------------------
                0.00    0.00       2/116         FT_Stream_New [752]
                0.00    0.00       2/116         FT_Open_Face [745]
                0.00    0.00       2/116         FT_Stroker_New [755]
                0.00    0.00       2/116         TT_New_Context [765]
                0.00    0.00       2/116         sfnt_init_face [827]
                0.00    0.00       2/116         ft_black_new [804]
                0.00    0.00       4/116         FT_New_GlyphSlot [741]
                0.00    0.00       4/116         open_face [819]
                0.00    0.00       4/116         FT_New_Library [742]
                0.00    0.00       4/116         FT_New_Size [744]
                0.00    0.00       6/116         FT_CMap_New [658]
                0.00    0.00       6/116         gray_raster_new [672]
                0.00    0.00      16/116         FT_GlyphLoader_New [620]
                0.00    0.00      16/116         ft_mem_qrealloc [612]
                0.00    0.00      44/116         FT_Add_Module [588]
[569]    0.0    0.00    0.00     116         ft_mem_alloc [569]
                0.00    0.00     116/172         ft_mem_qalloc [562]
-----------------------------------------------
                0.00    0.00     116/116         MainLoop [25]
[570]    0.0    0.00    0.00     116         stats_ComputeInputStats [570]
-----------------------------------------------
                0.00    0.00       3/115         var_Create [155]
                0.00    0.00       4/115         CheckValue [542]
                0.00    0.00       5/115         var_SetChecked <cycle 5> [166]
                0.00    0.00      44/115         var_GetChecked [148]
                0.00    0.00      59/115         var_Change [158]
[571]    0.0    0.00    0.00     115         DupString [571]
-----------------------------------------------
                0.00    0.00       4/114         CheckValue [542]
                0.00    0.00       4/114         var_Change [158]
                0.00    0.00       5/114         var_SetChecked <cycle 5> [166]
                0.00    0.00     101/114         Destroy [564]
[572]    0.0    0.00    0.00     114         FreeString [572]
-----------------------------------------------
                0.00    0.00     112/112         tt_face_load_font_dir [851]
[573]    0.0    0.00    0.00     112         FT_Stream_GetULong [573]
-----------------------------------------------
                0.00    0.00     105/105         ff_atrac3p_init_vlcs [974]
[574]    0.0    0.00    0.00     105         build_canonical_huff [574]
                0.00    0.00     105/178         ff_init_vlc_sparse [558]
-----------------------------------------------
                0.00    0.00       2/102         tt_face_load_hhea [704]
                0.00    0.00       4/102         tt_face_load_maxp [857]
                0.00    0.00       4/102         tt_face_load_os2 [859]
                0.00    0.00       6/102         sfnt_load_face [828]
                0.00    0.00      30/102         tt_face_load_font_dir [851]
                0.00    0.00      56/102         tt_face_load_name [858]
[575]    0.0    0.00    0.00     102         FT_Stream_ReadFields [575]
                0.00    0.00      48/56          FT_Stream_EnterFrame [582]
                0.00    0.00      48/52          FT_Stream_ExitFrame [583]
-----------------------------------------------
                0.00    0.00       4/102         FT_Stream_ReadAt [692]
                0.00    0.00       6/102         FT_Stream_ReadULong [659]
                0.00    0.00      36/102         FT_Stream_Seek [590]
                0.00    0.00      56/102         FT_Stream_EnterFrame [582]
[576]    0.0    0.00    0.00     102         ft_ansi_stream_io [576]
-----------------------------------------------
                0.00    0.00      75/75          EnsureUTF8 [899]
[577]    0.0    0.00    0.00      75         vlc_towc [577]
-----------------------------------------------
                0.00    0.00       1/70          vout_new_buffer [29]
                0.00    0.00       1/70          VoutValidateFormat [421]
                0.00    0.00       1/70          ThreadStart [200]
                0.00    0.00       1/70          EsOutAdd <cycle 4> [207]
                0.00    0.00       2/70          vout_SetDisplayZoom [872]
                0.00    0.00      64/70          video_format_Setup [581]
[578]    0.0    0.00    0.00      70         vlc_ureduce [578]
-----------------------------------------------
                0.00    0.00      66/66          module_load <cycle 4> [580]
[579]    0.0    0.00    0.00      66         module_Map [579]
-----------------------------------------------
                                  66             vlc_module_load <cycle 4> [185]
[580]    0.0    0.00    0.00      66         module_load <cycle 4> [580]
                0.00    0.00      66/66          module_Map [579]
                                  66             generic_start <cycle 4> [68]
-----------------------------------------------
                0.00    0.00       4/64          picture_New [701]
                0.00    0.00      30/64          picture_Setup [597]
                0.00    0.00      30/64          picture_NewFromResource [596]
[581]    0.0    0.00    0.00      64         video_format_Setup [581]
                0.00    0.00      64/6977        vlc_fourcc_GetCodec [514]
                0.00    0.00      64/70          vlc_ureduce [578]
-----------------------------------------------
                0.00    0.00       2/56          tt_face_load_name [858]
                0.00    0.00       2/56          tt_face_load_font_dir [851]
                0.00    0.00       4/56          FT_Stream_ExtractFrame [690]
                0.00    0.00      48/56          FT_Stream_ReadFields [575]
[582]    0.0    0.00    0.00      56         FT_Stream_EnterFrame [582]
                0.00    0.00      56/172         ft_mem_qalloc [562]
                0.00    0.00      56/102         ft_ansi_stream_io [576]
-----------------------------------------------
                0.00    0.00       2/52          tt_face_load_name [858]
                0.00    0.00       2/52          tt_face_load_font_dir [851]
                0.00    0.00      48/52          FT_Stream_ReadFields [575]
[583]    0.0    0.00    0.00      52         FT_Stream_ExitFrame [583]
                0.00    0.00      52/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       6/46          var_Change [158]
                0.00    0.00      40/46          CheckValue [542]
[584]    0.0    0.00    0.00      46         CmpInt [584]
-----------------------------------------------
                0.00    0.00       1/46          module_get_name [1013]
                0.00    0.00      15/46          module_unneed [195]
                0.00    0.00      30/46          vlc_module_load <cycle 4> [185]
[585]    0.0    0.00    0.00      46         module_get_object [585]
-----------------------------------------------
                0.00    0.00       1/46          demux_GetParentInput [969]
                0.00    0.00       1/46          input_resource_HoldAout [456]
                0.00    0.00       1/46          input_resource_HoldVouts [433]
                0.00    0.00      19/46          libvlc_get_input_thread [307]
                0.00    0.00      24/46          vlc_custom_create [284]
[586]    0.0    0.00    0.00      46         vlc_object_hold [586]
-----------------------------------------------
                0.00    0.00       2/42          tt_face_load_cvt [849]
                0.00    0.00       2/42          tt_face_load_kern [856]
                0.00    0.00       2/42          tt_face_load_hmtx [855]
                0.00    0.00       2/42          tt_face_load_gasp [852]
                0.00    0.00       2/42          tt_face_load_pclt [860]
                0.00    0.00       2/42          tt_face_load_name [858]
                0.00    0.00       2/42          tt_face_load_post [861]
                0.00    0.00       2/42          tt_face_load_maxp [857]
                0.00    0.00       2/42          tt_face_load_cmap [848]
                0.00    0.00       2/42          tt_face_load_generic_header [853]
                0.00    0.00       2/42          tt_face_load_os2 [859]
                0.00    0.00       4/42          tt_face_load_hhea [704]
                0.00    0.00       6/42          tt_face_load_eblc [850]
                0.00    0.00      10/42          tt_face_init [847]
[587]    0.0    0.00    0.00      42         tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00      36/36          FT_Add_Default_Modules [731]
[588]    0.0    0.00    0.00      36         FT_Add_Module [588]
                0.00    0.00      44/116         ft_mem_alloc [569]
                0.00    0.00      14/16          FT_GlyphLoader_New [620]
                0.00    0.00       8/12          FT_List_Add [631]
                0.00    0.00       8/16          FT_Lookup_Renderer [623]
                0.00    0.00       6/6           ft_smooth_init [669]
                0.00    0.00       6/6           gray_raster_new [672]
                0.00    0.00       2/2           ft_raster1_init [809]
                0.00    0.00       2/2           ps_hinter_init [824]
                0.00    0.00       2/2           af_autofitter_init [770]
                0.00    0.00       2/2           T42_Driver_Init [762]
                0.00    0.00       2/2           cid_driver_init [790]
                0.00    0.00       2/2           cff_driver_init [787]
                0.00    0.00       2/2           T1_Driver_Init [760]
                0.00    0.00       2/2           tt_driver_init [841]
                0.00    0.00       2/2           ft_black_new [804]
-----------------------------------------------
                0.00    0.00      36/36          FT_Done_Library [735]
[589]    0.0    0.00    0.00      36         FT_Remove_Module [589]
                0.00    0.00      64/366         ft_mem_free [553]
                0.00    0.00      18/20          FT_List_Finalize [614]
                0.00    0.00      12/16          FT_GlyphLoader_Done [619]
                0.00    0.00       8/10          FT_List_Find [639]
                0.00    0.00       8/10          FT_List_Remove [640]
                0.00    0.00       8/16          FT_Lookup_Renderer [623]
                0.00    0.00       6/6           gray_raster_done [671]
                0.00    0.00       2/2           tt_driver_done [840]
                0.00    0.00       2/2           T1_Driver_Done [759]
                0.00    0.00       2/2           cff_driver_done [786]
                0.00    0.00       2/2           cid_driver_done [789]
                0.00    0.00       2/2           T42_Driver_Done [761]
                0.00    0.00       2/2           af_autofitter_done [769]
                0.00    0.00       2/2           ps_hinter_done [823]
                0.00    0.00       2/2           ft_black_done [803]
-----------------------------------------------
                0.00    0.00       2/36          tt_face_load_hmtx [855]
                0.00    0.00       2/36          tt_face_load_name [858]
                0.00    0.00       2/36          tt_face_load_post [861]
                0.00    0.00       2/36          tt_face_load_maxp [857]
                0.00    0.00       2/36          tt_face_load_hhea [704]
                0.00    0.00       2/36          sfnt_init_face [827]
                0.00    0.00       2/36          tt_face_load_cmap [848]
                0.00    0.00       2/36          tt_face_load_generic_header [853]
                0.00    0.00       2/36          tt_face_load_os2 [859]
                0.00    0.00       4/36          tt_face_get_name [633]
                0.00    0.00       6/36          tt_face_init [847]
                0.00    0.00       8/36          tt_face_load_font_dir [851]
[590]    0.0    0.00    0.00      36         FT_Stream_Seek [590]
                0.00    0.00      36/102         ft_ansi_stream_io [576]
-----------------------------------------------
                0.00    0.00       2/36          matroska_segment_c::~matroska_segment_c() [16526]
                0.00    0.00       2/36          input_item_UpdateTracksInfo [423]
                0.00    0.00       2/36          DecoderUpdateFormatLocked [728]
                0.00    0.00       2/36          EsOutDel [332]
                0.00    0.00       2/36          EsOutSend [59]
                0.00    0.00       6/36          DeleteDecoder <cycle 4> [63]
                0.00    0.00      10/36          filter_chain_Reset [290]
                0.00    0.00      10/36          filter_chain_Delete [366]
[591]    0.0    0.00    0.00      36         es_format_Clean [591]
-----------------------------------------------
                0.00    0.00       1/31          OpenDecoder [69]
                0.00    0.00      30/31          avcodec_register_all [83]
[592]    0.0    0.00    0.00      31         av_register_codec_parser [592]
-----------------------------------------------
                0.00    0.00       1/31          vout_new_buffer [29]
                0.00    0.00      30/31          picture_Setup [597]
[593]    0.0    0.00    0.00      31         vlc_fourcc_GetChromaDescription [593]
-----------------------------------------------
                0.00    0.00      30/30          picture_Release [486]
[594]    0.0    0.00    0.00      30         PictureDestroy [594]
-----------------------------------------------
                0.00    0.00       2/30          DeleteDecoder <cycle 4> [63]
                0.00    0.00      28/30          input_DecoderIsEmpty [194]
[595]    0.0    0.00    0.00      30         block_FifoCount [595]
-----------------------------------------------
                0.00    0.00       1/30          Open [233]
                0.00    0.00      29/30          picture_NewFromFormat [599]
[596]    0.0    0.00    0.00      30         picture_NewFromResource [596]
                0.00    0.00      30/64          video_format_Setup [581]
                0.00    0.00      30/30          picture_Setup [597]
                0.00    0.00      30/6912        video_format_CopyCrop [523]
                0.00    0.00      29/29          posix_memalign [600]
-----------------------------------------------
                0.00    0.00      30/30          picture_NewFromResource [596]
[597]    0.0    0.00    0.00      30         picture_Setup [597]
                0.00    0.00      30/64          video_format_Setup [581]
                0.00    0.00      30/31          vlc_fourcc_GetChromaDescription [593]
-----------------------------------------------
                0.00    0.00      30/30          std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::append(unsigned int, wchar_t) [23192]
[598]    0.0    0.00    0.00      30         wmemset [598]
-----------------------------------------------
                0.00    0.00       4/29          picture_New [701]
                0.00    0.00      25/29          picture_pool_NewFromFormat [1017]
[599]    0.0    0.00    0.00      29         picture_NewFromFormat [599]
                0.00    0.00      29/30          picture_NewFromResource [596]
-----------------------------------------------
                0.00    0.00      29/29          picture_NewFromResource [596]
[600]    0.0    0.00    0.00      29         posix_memalign [600]
-----------------------------------------------
                0.00    0.00       2/28          matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
                0.00    0.00       2/28          CreateDecoder <cycle 4> [442]
                0.00    0.00       2/28          filter_NewBlend [471]
                0.00    0.00       4/28          SpuRenderCreateAndLoadScale <cycle 4> [443]
                0.00    0.00       4/28          SpuRenderCreateAndLoadText <cycle 4> [282]
                0.00    0.00       4/28          es_format_InitFromVideo [694]
                0.00    0.00      10/28          filter_chain_New [681]
[601]    0.0    0.00    0.00      28         es_format_Init [601]
-----------------------------------------------
                0.00    0.00       4/28          tt_get_interface [862]
                0.00    0.00       4/28          cff_get_interface [788]
                0.00    0.00      20/28          ft_module_get_service [808]
[602]    0.0    0.00    0.00      28         ft_service_list_lookup [602]
-----------------------------------------------
                0.00    0.00       1/25          ff_yuv2rgb_c_init_tables [994]
                0.00    0.00       6/25          sws_setColorspaceDetails [837]
                0.00    0.00       6/25          ff_sws_init_output_funcs [801]
                0.00    0.00      12/25          sws_init_context [834]
[603]    0.0    0.00    0.00      25         av_pix_fmt_desc_get [603]
-----------------------------------------------
                0.00    0.00       2/25          DecoderUpdateFormatLocked [728]
                0.00    0.00       2/25          input_DecoderHasFormatChanged [124]
                0.00    0.00       2/25          filter_chain_AppendFilterInternal [328]
                0.00    0.00       2/25          EsOutAdd <cycle 4> [207]
                0.00    0.00       3/25          input_item_UpdateTracksInfo [423]
                0.00    0.00       4/25          CreateDecoder <cycle 4> [442]
                0.00    0.00      10/25          filter_chain_Reset [290]
[604]    0.0    0.00    0.00      25         es_format_Copy [604]
-----------------------------------------------
                0.00    0.00       7/25          module_find [651]
                0.00    0.00      18/25          vlc_module_load <cycle 4> [185]
[605]    0.0    0.00    0.00      25         module_list_free [605]
-----------------------------------------------
                0.00    0.00      25/25          Thread [14]
[606]    0.0    0.00    0.00      25         vout_control_cmd_Clean [606]
-----------------------------------------------
                0.00    0.00       4/25          std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::rfind(wchar_t const*, unsigned int, unsigned int) const [22598]
                0.00    0.00      21/25          TagLib::String::operator==(TagLib::String const&) const [16258]
[607]    0.0    0.00    0.00      25         wmemcmp [607]
-----------------------------------------------
                0.00    0.00      24/24          ff_fft_init [664]
[608]    0.0    0.00    0.00      24         ff_init_ff_cos_tabs [608]
-----------------------------------------------
                0.00    0.00      23/23          var_DestroyAll [610]
[609]    0.0    0.00    0.00      23         tdestroy [609]
-----------------------------------------------
                0.00    0.00      23/23          vlc_object_release [193]
[610]    0.0    0.00    0.00      23         var_DestroyAll [610]
                0.00    0.00      23/23          tdestroy [609]
                0.00    0.00       7/7           tdestroy_recurse [653]
-----------------------------------------------
                0.00    0.00      22/22          av_opt_set_defaults [715]
[611]    0.0    0.00    0.00      22         av_opt_set_double [611]
                0.00    0.00      22/167         av_opt_find2 [563]
-----------------------------------------------
                0.00    0.00      22/22          ft_mem_realloc [613]
[612]    0.0    0.00    0.00      22         ft_mem_qrealloc [612]
                0.00    0.00      16/116         ft_mem_alloc [569]
                0.00    0.00       4/4           ft_realloc [697]
                0.00    0.00       2/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       2/22          FT_GlyphLoader_CreateExtra [738]
                0.00    0.00       2/22          TT_New_Context [765]
                0.00    0.00       2/22          tt_face_load_name [858]
                0.00    0.00       2/22          tt_face_load_font_dir [851]
                0.00    0.00       4/22          tt_name_entry_ascii_from_utf16 [705]
                0.00    0.00       4/22          tt_face_get_name [633]
                0.00    0.00       6/22          FT_CMap_New [658]
[613]    0.0    0.00    0.00      22         ft_mem_realloc [613]
                0.00    0.00      22/22          ft_mem_qrealloc [612]
-----------------------------------------------
                0.00    0.00       2/20          destroy_face [795]
                0.00    0.00      18/20          FT_Remove_Module [589]
[614]    0.0    0.00    0.00      20         FT_List_Finalize [614]
                0.00    0.00       4/366         ft_mem_free [553]
                0.00    0.00       2/2           destroy_size [796]
-----------------------------------------------
                0.00    0.00      19/19          vlc_module_load <cycle 4> [185]
[615]    0.0    0.00    0.00      19         module_get_score [615]
-----------------------------------------------
                0.00    0.00       2/18          tt_face_free_eblc [844]
                0.00    0.00       8/18          tt_face_done [843]
                0.00    0.00       8/18          sfnt_done_face [826]
[616]    0.0    0.00    0.00      18         FT_Stream_ReleaseFrame [616]
                0.00    0.00      18/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00      18/18          vlc_module_load <cycle 4> [185]
[617]    0.0    0.00    0.00      18         module_list_cap [617]
                0.00    0.00    8172/8172        module_provides [510]
-----------------------------------------------
                                   2             CreateDecoder <cycle 4> [442]
                                   2             SpuRenderCreateAndLoadScale <cycle 4> [443]
                                   2             SpuRenderCreateAndLoadText <cycle 4> [282]
                0.00    0.00       1/31235       access_New [326]
                0.00    0.00       1/31235       ControlPause [299]
                0.00    0.00       1/31235       DisplayNew [269]
                0.00    0.00       1/31235       aout_New [209]
                0.00    0.00       1/31235       aout_volume_SetFormat [387]
                0.00    0.00       1/31235       filter_chain_AppendFilterInternal [328]
                0.00    0.00       2/31235       demux_New [264]
                0.00    0.00       2/31235       stream_FilterNew [294]
                0.00    0.00       2/31235       CreateFilter [312]
[618]    0.0    0.00    0.00      18         module_need <cycle 4> [618]
                                  18             vlc_module_load <cycle 4> [185]
-----------------------------------------------
                0.00    0.00       2/16          ft_glyphslot_done [806]
                0.00    0.00       2/16          af_autofitter_done [769]
                0.00    0.00      12/16          FT_Remove_Module [589]
[619]    0.0    0.00    0.00      16         FT_GlyphLoader_Done [619]
                0.00    0.00      16/16          FT_GlyphLoader_Rewind [622]
                0.00    0.00      16/16          FT_GlyphLoader_Reset [621]
-----------------------------------------------
                0.00    0.00       2/16          FT_New_GlyphSlot [741]
                0.00    0.00      14/16          FT_Add_Module [588]
[620]    0.0    0.00    0.00      16         FT_GlyphLoader_New [620]
                0.00    0.00      16/116         ft_mem_alloc [569]
-----------------------------------------------
                0.00    0.00      16/16          FT_GlyphLoader_Done [619]
[621]    0.0    0.00    0.00      16         FT_GlyphLoader_Reset [621]
                0.00    0.00      80/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00      16/16          FT_GlyphLoader_Done [619]
[622]    0.0    0.00    0.00      16         FT_GlyphLoader_Rewind [622]
-----------------------------------------------
                0.00    0.00       8/16          FT_Remove_Module [589]
                0.00    0.00       8/16          FT_Add_Module [588]
[623]    0.0    0.00    0.00      16         FT_Lookup_Renderer [623]
-----------------------------------------------
                0.00    0.00       8/16          ft_recompute_scaled_metrics [810]
                0.00    0.00       8/16          tt_size_reset [866]
[624]    0.0    0.00    0.00      16         FT_MulFix [624]
-----------------------------------------------
                0.00    0.00      16/16          subtitles_Detect [386]
[625]    0.0    0.00    0.00      16         vlc_readdir [625]
-----------------------------------------------
                0.00    0.00       1/14          var_Change [158]
                0.00    0.00      13/14          CheckValue [542]
[626]    0.0    0.00    0.00      14         CmpFloat [626]
-----------------------------------------------
                0.00    0.00      14/14          VoutVideoFilterStaticNewPicture [384]
[627]    0.0    0.00    0.00      14         filter_chain_VideoFlush [627]
-----------------------------------------------
                                   3             Peek <cycle 2> [714]
                0.00    0.00       1/11          RarProbe [940]
                0.00    0.00       1/11          OpenGzip [937]
                0.00    0.00       1/11          OpenBzip2 [920]
                0.00    0.00       1/11          OpenXZ [938]
                0.00    0.00       1/11          Open [913]
                0.00    0.00       1/11          StreamOpen [944]
                0.00    0.00       1/11          Open [915]
                0.00    0.00       1/11          Open(vlc_object_t*) <cycle 4> [129]
                0.00    0.00       1/11          dash::xml::DOMParser::isDash(stream_t*) [16529]
                0.00    0.00       2/11          demux_New [264]
[628]    0.0    0.00    0.00      14         stream_Peek <cycle 2> [628]
                0.00    0.00      11/11          AStreamPeekStream [635]
                                   3             Peek <cycle 2> [714]
-----------------------------------------------
                0.00    0.00       1/13          OpenDecoder [69]
                0.00    0.00       1/13          ff_fmt_convert_init_arm [981]
                0.00    0.00       1/13          ff_psdsp_init_arm [989]
                0.00    0.00       1/13          ff_sbrdsp_init_arm [991]
                0.00    0.00       1/13          ff_float_dsp_init_arm [977]
                0.00    0.00       2/13          sws_init_context [834]
                0.00    0.00       6/13          ff_fft_init_arm [665]
[629]    0.0    0.00    0.00      13         av_get_cpu_flags [629]
                0.00    0.00       1/1           ff_get_cpu_flags_arm [982]
-----------------------------------------------
                0.00    0.00      13/13          subtitles_Detect [386]
[630]    0.0    0.00    0.00      13         subtitles_Filter [630]
-----------------------------------------------
                0.00    0.00       2/12          FT_New_Size [744]
                0.00    0.00       2/12          FT_Open_Face [745]
                0.00    0.00       8/12          FT_Add_Module [588]
[631]    0.0    0.00    0.00      12         FT_List_Add [631]
-----------------------------------------------
                0.00    0.00       1/12          CreateResampler [893]
                0.00    0.00       1/12          aout_FiltersPipelineCreate [293]
                0.00    0.00       1/12          aout_FiltersNew [215]
                0.00    0.00       1/12          aout_OutputNew [276]
                0.00    0.00       1/12          info_category_AddInfo [257]
                0.00    0.00       7/12          aout_FormatPrepare [647]
[632]    0.0    0.00    0.00      12         aout_BitsPerSample [632]
                0.00    0.00      12/6977        vlc_fourcc_GetCodec [514]
-----------------------------------------------
                0.00    0.00      12/12          sfnt_load_face [828]
[633]    0.0    0.00    0.00      12         tt_face_get_name [633]
                0.00    0.00       4/4           tt_name_entry_ascii_from_utf16 [705]
                0.00    0.00       4/22          ft_mem_realloc [613]
                0.00    0.00       4/36          FT_Stream_Seek [590]
                0.00    0.00       4/4           FT_Stream_ReadAt [692]
                0.00    0.00       4/4           FT_Stream_Read [691]
-----------------------------------------------
                0.00    0.00      11/11          AStreamSeekStream [120]
[634]    0.0    0.00    0.00      11         ASeek [634]
                0.00    0.00      11/11          FileSeek [636]
-----------------------------------------------
                0.00    0.00      11/11          stream_Peek <cycle 2> [628]
[635]    0.0    0.00    0.00      11         AStreamPeekStream [635]
-----------------------------------------------
                0.00    0.00      11/11          ASeek [634]
[636]    0.0    0.00    0.00      11         FileSeek [636]
-----------------------------------------------
                0.00    0.00       4/10          FT_Request_Metrics [746]
                0.00    0.00       6/10          tt_size_reset [866]
[637]    0.0    0.00    0.00      10         FT_DivFix [637]
-----------------------------------------------
                0.00    0.00       2/10          tt_get_interface [862]
                0.00    0.00       2/10          cff_get_interface [788]
                0.00    0.00       2/10          T42_Driver_Init [762]
                0.00    0.00       4/10          FT_Get_Module_Interface [689]
[638]    0.0    0.00    0.00      10         FT_Get_Module [638]
-----------------------------------------------
                0.00    0.00       2/10          FT_Done_Face [732]
                0.00    0.00       8/10          FT_Remove_Module [589]
[639]    0.0    0.00    0.00      10         FT_List_Find [639]
-----------------------------------------------
                0.00    0.00       2/10          FT_Done_Face [732]
                0.00    0.00       8/10          FT_Remove_Module [589]
[640]    0.0    0.00    0.00      10         FT_List_Remove [640]
-----------------------------------------------
                0.00    0.00       2/8           tt_face_load_hmtx [855]
                0.00    0.00       2/8           tt_face_load_name [858]
                0.00    0.00       2/8           sfnt_init_face [827]
                0.00    0.00       2/8           tt_face_load_font_dir [851]
[641]    0.0    0.00    0.00       8         FT_Stream_Pos [641]
-----------------------------------------------
                0.00    0.00       8/8           ps_hinter_done [823]
[642]    0.0    0.00    0.00       8         ps_mask_table_done [642]
                0.00    0.00       8/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       8/8           vlc_CPU [646]
[643]    0.0    0.00    0.00       8         pthread_once [643]
-----------------------------------------------
                0.00    0.00       8/8           sws_init_context [834]
[644]    0.0    0.00    0.00       8         sws_getCachedContext [644]
                0.00    0.00      24/30115       av_malloc [485]
                0.00    0.00      16/29862       av_mallocz [487]
                0.00    0.00      16/71922       av_free [479]
                0.00    0.00       8/71716       av_freep [480]
-----------------------------------------------
                0.00    0.00       8/8           var_Destroy [223]
[645]    0.0    0.00    0.00       8         tdelete [645]
                0.00    0.00      44/33028       varcmp [482]
-----------------------------------------------
                0.00    0.00       1/8           Probe [939]
                0.00    0.00       1/8           OpenFilter [935]
                0.00    0.00       3/8           Open [713]
                0.00    0.00       3/8           Open [390]
[646]    0.0    0.00    0.00       8         vlc_CPU [646]
                0.00    0.00       8/8           pthread_once [643]
-----------------------------------------------
                0.00    0.00       1/7           Start [942]
                0.00    0.00       1/7           aout_update_format [190]
                0.00    0.00       1/7           TryFormat [375]
                0.00    0.00       2/7           SetupOutputFormat [529]
                0.00    0.00       2/7           aout_OutputNew [276]
[647]    0.0    0.00    0.00       7         aout_FormatPrepare [647]
                0.00    0.00       7/12          aout_BitsPerSample [632]
-----------------------------------------------
                0.00    0.00       1/7           InitAudioDec [318]
                0.00    0.00       6/7           DecodeAudio [5]
[648]    0.0    0.00    0.00       7         date_Set [648]
-----------------------------------------------
                                   2             input_event_changed <cycle 5> [145]
                0.00    0.00       1/733         spu_get_attachments [401]
                0.00    0.00       4/733         info_category_AddInfo [257]
[649]    0.0    0.00    0.00       7         input_Control <cycle 5> [649]
                                   7             input_vaControl <cycle 5> [304]
-----------------------------------------------
                0.00    0.00       1/7           OpenDecoder [925]
                0.00    0.00       1/7           OpenDecoder [928]
                0.00    0.00       1/7           OpenDecoder [930]
                0.00    0.00       4/7           aout_New [209]
[650]    0.0    0.00    0.00       7         module_exists [650]
                0.00    0.00       7/7           module_find [651]
-----------------------------------------------
                0.00    0.00       7/7           module_exists [650]
[651]    0.0    0.00    0.00       7         module_find [651]
                0.00    0.00       7/7           module_list_get [652]
                0.00    0.00       7/25          module_list_free [605]
-----------------------------------------------
                0.00    0.00       7/7           module_find [651]
[652]    0.0    0.00    0.00       7         module_list_get [652]
-----------------------------------------------
                                 131             tdestroy_recurse [653]
                0.00    0.00       7/7           var_DestroyAll [610]
[653]    0.0    0.00    0.00       7+131     tdestroy_recurse [653]
                0.00    0.00     138/158         Destroy [564]
                0.00    0.00     138/138         CleanupVar [567]
                                 131             tdestroy_recurse [653]
-----------------------------------------------
                0.00    0.00       1/7           GetVlcChromaFormat [906]
                0.00    0.00       1/7           GetFfmpegCodec [904]
                0.00    0.00       5/7           info_category_AddInfo [257]
[654]    0.0    0.00    0.00       7         vlc_fourcc_GetDescription [654]
                0.00    0.00       7/6985        Find [513]
-----------------------------------------------
                0.00    0.00       7/7           vlc_audio_replay_gain_MergeFromMeta [1027]
[655]    0.0    0.00    0.00       7         vlc_meta_GetExtra [655]
-----------------------------------------------
                0.00    0.00       6/6           transform_GetBasicOps [74]
[656]    0.0    0.00    0.00       6         BinaryLog [656]
-----------------------------------------------
                                   2             EsOutAdd <cycle 4> [207]
                                   4             EsOutControl <cycle 4> [115]
[657]    0.0    0.00    0.00       6         EsOutSelect <cycle 4> [657]
                0.00    0.00       4/7692        EsIsSelected [511]
                                   2             EsSelect <cycle 4> [265]
-----------------------------------------------
                0.00    0.00       6/6           tt_face_build_cmaps [842]
[658]    0.0    0.00    0.00       6         FT_CMap_New [658]
                0.00    0.00       6/116         ft_mem_alloc [569]
                0.00    0.00       6/22          ft_mem_realloc [613]
                0.00    0.00       4/4           tt_cmap4_init [702]
                0.00    0.00       2/2           tt_cmap_init [839]
-----------------------------------------------
                0.00    0.00       2/6           sfnt_init_face [827]
                0.00    0.00       4/6           tt_face_load_font_dir [851]
[659]    0.0    0.00    0.00       6         FT_Stream_ReadULong [659]
                0.00    0.00       6/102         ft_ansi_stream_io [576]
-----------------------------------------------
                0.00    0.00       6/6           GetParameters [677]
[660]    0.0    0.00    0.00       6         FixParameters [660]
-----------------------------------------------
                0.00    0.00       6/6           GetParameters [677]
[661]    0.0    0.00    0.00       6         GetFfmpegChroma [661]
-----------------------------------------------
                0.00    0.00       2/6           sws_setColorspaceDetails [837]
                0.00    0.00       4/6           sws_init_context [834]
[662]    0.0    0.00    0.00       6         av_get_bits_per_pixel [662]
-----------------------------------------------
                0.00    0.00       1/6           ff_aac_sbr_ctx_close [970]
                0.00    0.00       5/6           aac_decode_close [946]
[663]    0.0    0.00    0.00       6         ff_fft_end [663]
                0.00    0.00       6/71716       av_freep [480]
-----------------------------------------------
                0.00    0.00       6/6           ff_mdct_init [667]
[664]    0.0    0.00    0.00       6         ff_fft_init [664]
                0.00    0.00    1408/1408        split_radix_permutation [543]
                0.00    0.00      24/24          ff_init_ff_cos_tabs [608]
                0.00    0.00      12/30115       av_malloc [485]
                0.00    0.00       6/6           ff_fft_init_arm [665]
-----------------------------------------------
                0.00    0.00       6/6           ff_fft_init [664]
[665]    0.0    0.00    0.00       6         ff_fft_init_arm [665]
                0.00    0.00       6/13          av_get_cpu_flags [629]
-----------------------------------------------
                0.00    0.00       1/6           ff_aac_sbr_ctx_close [970]
                0.00    0.00       5/6           aac_decode_close [946]
[666]    0.0    0.00    0.00       6         ff_mdct_end [666]
                0.00    0.00       6/71716       av_freep [480]
-----------------------------------------------
                0.00    0.00       2/6           ff_aac_sbr_ctx_init [971]
                0.00    0.00       4/6           aac_decode_init [947]
[667]    0.0    0.00    0.00       6         ff_mdct_init [667]
                0.00    0.00       6/6           ff_fft_init [664]
                0.00    0.00       6/30115       av_malloc [485]
-----------------------------------------------
                0.00    0.00       6/6           destroy_charmaps [794]
[668]    0.0    0.00    0.00       6         ft_cmap_done_internal [668]
-----------------------------------------------
                0.00    0.00       6/6           FT_Add_Module [588]
[669]    0.0    0.00    0.00       6         ft_smooth_init [669]
                0.00    0.00       6/6           gray_raster_reset [673]
-----------------------------------------------
                0.00    0.00       6/6           tt_face_build_cmaps [842]
[670]    0.0    0.00    0.00       6         ft_validator_init [670]
-----------------------------------------------
                0.00    0.00       6/6           FT_Remove_Module [589]
[671]    0.0    0.00    0.00       6         gray_raster_done [671]
-----------------------------------------------
                0.00    0.00       6/6           FT_Add_Module [588]
[672]    0.0    0.00    0.00       6         gray_raster_new [672]
                0.00    0.00       6/116         ft_mem_alloc [569]
-----------------------------------------------
                0.00    0.00       6/6           ft_smooth_init [669]
[673]    0.0    0.00    0.00       6         gray_raster_reset [673]
-----------------------------------------------
                0.00    0.00       1/6           input_resource_RequestVout <cycle 4> [206]
                0.00    0.00       1/6           EsOutControl <cycle 4> [115]
                0.00    0.00       4/6           info_category_AddInfo [257]
[674]    0.0    0.00    0.00       6         input_GetItem [674]
-----------------------------------------------
                0.00    0.00       2/6           ft_module_get_service [808]
                0.00    0.00       2/6           tt_get_interface [862]
                0.00    0.00       2/6           cff_get_interface [788]
[675]    0.0    0.00    0.00       6         sfnt_get_interface [675]
-----------------------------------------------
                0.00    0.00       2/6           EsOutControl <cycle 4> [115]
                0.00    0.00       4/6           input_item_GetMeta [417]
[676]    0.0    0.00    0.00       6         vlc_meta_Get [676]
-----------------------------------------------
                0.00    0.00       1/5           CloseScaler [888]
                0.00    0.00       2/5           Init [908]
                0.00    0.00       2/5           OpenScaler [336]
[677]    0.0    0.00    0.00       5         GetParameters [677]
                0.00    0.00       6/6           GetFfmpegChroma [661]
                0.00    0.00       6/6           FixParameters [660]
                0.00    0.00       4/30111       picture_Release [486]
                0.00    0.00       2/71922       av_free [479]
                0.00    0.00       2/2           sws_freeContext [832]
-----------------------------------------------
                0.00    0.00       1/5           info_category_AddInfo [257]
                0.00    0.00       2/5           aout_FormatPrint [335]
                0.00    0.00       2/5           aout_FormatsPrint [394]
[678]    0.0    0.00    0.00       5         aout_FormatPrintChannels [678]
-----------------------------------------------
                0.00    0.00       1/5           avcodec_default_get_buffer2 [42]
                0.00    0.00       4/5           avcodec_close [411]
[679]    0.0    0.00    0.00       5         av_buffer_pool_uninit [679]
                0.00    0.00       3/71716       av_freep [480]
                0.00    0.00       2/71922       av_free [479]
                0.00    0.00       2/2           av_buffer_default_free [775]
-----------------------------------------------
                0.00    0.00       1/5           input_item_SetURI [455]
                0.00    0.00       4/5           make_path [700]
[680]    0.0    0.00    0.00       5         decode_URI [680]
-----------------------------------------------
                0.00    0.00       1/5           VoutDisplayCreateRender [281]
                0.00    0.00       2/5           ThreadStart [200]
                0.00    0.00       2/5           spu_Create <cycle 4> [368]
[681]    0.0    0.00    0.00       5         filter_chain_New [681]
                0.00    0.00      10/28          es_format_Init [601]
-----------------------------------------------
                0.00    0.00       2/5           LanguageSplit [271]
                0.00    0.00       3/5           EsOutProgramSelect [219]
[682]    0.0    0.00    0.00       5         input_SendEventEsDel [682]
-----------------------------------------------
                0.00    0.00       1/5           stopped_callback [12339]
                0.00    0.00       1/5           libvlc_media_player_set_media [277]
                0.00    0.00       3/5           set_state [372]
[683]    0.0    0.00    0.00       5         libvlc_media_release [683]
-----------------------------------------------
                0.00    0.00       1/5           libvlc_media_player_set_media [277]
                0.00    0.00       1/5           libvlc_media_player_get_media [458]
                0.00    0.00       3/5           set_state [372]
[684]    0.0    0.00    0.00       5         libvlc_media_retain [684]
-----------------------------------------------
                0.00    0.00       1/5           vlc_event_manager_init [1029]
                0.00    0.00       1/5           input_EsOutNew [343]
                0.00    0.00       1/5           input_EsOutTimeshiftNew [302]
                0.00    0.00       2/5           libvlc_event_manager_new [445]
[685]    0.0    0.00    0.00       5         vlc_mutex_init_recursive [685]
-----------------------------------------------
                0.00    0.00       5/5           subtitles_Detect [386]
[686]    0.0    0.00    0.00       5         vlc_opendir [686]
-----------------------------------------------
                0.00    0.00       4/4           vout_display_Control [711]
[687]    0.0    0.00    0.00       4         Control [687]
-----------------------------------------------
                0.00    0.00       4/4           Create [189]
[688]    0.0    0.00    0.00       4         Dummy_Select [688]
-----------------------------------------------
                0.00    0.00       2/4           tt_face_init [847]
                0.00    0.00       2/4           sfnt_init_face [827]
[689]    0.0    0.00    0.00       4         FT_Get_Module_Interface [689]
                0.00    0.00       4/10          FT_Get_Module [638]
-----------------------------------------------
                0.00    0.00       2/4           tt_face_init [847]
                0.00    0.00       2/4           tt_face_load_cmap [848]
[690]    0.0    0.00    0.00       4         FT_Stream_ExtractFrame [690]
                0.00    0.00       4/56          FT_Stream_EnterFrame [582]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [633]
[691]    0.0    0.00    0.00       4         FT_Stream_Read [691]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [633]
[692]    0.0    0.00    0.00       4         FT_Stream_ReadAt [692]
                0.00    0.00       4/102         ft_ansi_stream_io [576]
-----------------------------------------------
                0.00    0.00       4/4           input_item_ReplaceInfos [325]
[693]    0.0    0.00    0.00       4         InputItemFindCat [693]
-----------------------------------------------
                0.00    0.00       2/4           VoutDisplayCreateRender [281]
                0.00    0.00       2/4           ThreadChangeFilters [342]
[694]    0.0    0.00    0.00       4         es_format_InitFromVideo [694]
                0.00    0.00       4/28          es_format_Init [601]
-----------------------------------------------
                0.00    0.00       4/4           ThreadChangeFilters [342]
[695]    0.0    0.00    0.00       4         filter_chain_GetFmtOut [695]
-----------------------------------------------
                0.00    0.00       2/4           Create [189]
                0.00    0.00       2/4           open_face [819]
[696]    0.0    0.00    0.00       4         find_unicode_charmap [696]
-----------------------------------------------
                0.00    0.00       4/4           ft_mem_qrealloc [612]
[697]    0.0    0.00    0.00       4         ft_realloc [697]
-----------------------------------------------
                0.00    0.00       2/4           EsSelect <cycle 4> [265]
                0.00    0.00       2/4           EsUnselect <cycle 4> [320]
[698]    0.0    0.00    0.00       4         input_SendEventEsSelect [698]
-----------------------------------------------
                0.00    0.00       1/4           aac_decode_init [947]
                0.00    0.00       3/4           ff_ps_init [987]
[699]    0.0    0.00    0.00       4         make_filters_from_proto [699]
-----------------------------------------------
                0.00    0.00       1/4           get_path [997]
                0.00    0.00       1/4           subtitles_Detect [386]
                0.00    0.00       2/4           demux_New [264]
[700]    0.0    0.00    0.00       4         make_path [700]
                0.00    0.00       4/5           decode_URI [680]
-----------------------------------------------
                0.00    0.00       4/4           Init [908]
[701]    0.0    0.00    0.00       4         picture_New [701]
                0.00    0.00       4/64          video_format_Setup [581]
                0.00    0.00       4/29          picture_NewFromFormat [599]
-----------------------------------------------
                0.00    0.00       4/4           FT_CMap_New [658]
[702]    0.0    0.00    0.00       4         tt_cmap4_init [702]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_build_cmaps [842]
[703]    0.0    0.00    0.00       4         tt_cmap4_validate [703]
-----------------------------------------------
                0.00    0.00       4/4           sfnt_load_face [828]
[704]    0.0    0.00    0.00       4         tt_face_load_hhea [704]
                0.00    0.00       4/42          tt_face_goto_table [587]
                0.00    0.00       2/102         FT_Stream_ReadFields [575]
                0.00    0.00       2/36          FT_Stream_Seek [590]
-----------------------------------------------
                0.00    0.00       4/4           tt_face_get_name [633]
[705]    0.0    0.00    0.00       4         tt_name_entry_ascii_from_utf16 [705]
                0.00    0.00       4/22          ft_mem_realloc [613]
-----------------------------------------------
                                   1             var_Copy <cycle 5> [1026]
                0.00    0.00       3/733         var_OptionParse [267]
[706]    0.0    0.00    0.00       4         var_Set <cycle 5> [706]
                                   4             var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       1/4           input_Start [1002]
                0.00    0.00       1/4           vout_Request <cycle 4> [168]
                0.00    0.00       2/4           decoder_New <cycle 4> [793]
[707]    0.0    0.00    0.00       4         vlc_clone [707]
-----------------------------------------------
                0.00    0.00       1/4           input_Start [1002]
                0.00    0.00       1/4           vout_Request <cycle 4> [168]
                0.00    0.00       2/4           decoder_New <cycle 4> [793]
[708]    0.0    0.00    0.00       4         vlc_clone_attr [708]
                0.00    0.00       4/4           vlc_sem_init [710]
                0.00    0.00       4/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       4/4           vlc_join [321]
[709]    0.0    0.00    0.00       4         vlc_sem_destroy [709]
                0.00    0.00       4/9352        vlc_cond_destroy [508]
                0.00    0.00       4/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       4/4           vlc_clone_attr [708]
[710]    0.0    0.00    0.00       4         vlc_sem_init [710]
                0.00    0.00       4/9403        vlc_mutex_init [505]
                0.00    0.00       4/9379        vlc_cond_init [506]
-----------------------------------------------
                0.00    0.00       4/4           vout_ManageDisplay [108]
[711]    0.0    0.00    0.00       4         vout_display_Control [711]
                0.00    0.00       4/4           Control [687]
-----------------------------------------------
                0.00    0.00       1/3           picture_pool_Reserve [1019]
                0.00    0.00       2/3           picture_pool_NewExtended [822]
[712]    0.0    0.00    0.00       3         Create [712]
-----------------------------------------------
                0.00    0.00       3/3           generic_start <cycle 4> [68]
[713]    0.0    0.00    0.00       3         Open [713]
                0.00    0.00       3/8           vlc_CPU [646]
-----------------------------------------------
                                   3             stream_Peek <cycle 2> [628]
[714]    0.0    0.00    0.00       3         Peek <cycle 2> [714]
                                   3             stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/3           avcodec_get_context_defaults3 [962]
                0.00    0.00       2/3           sws_alloc_context [831]
[715]    0.0    0.00    0.00       3         av_opt_set_defaults [715]
                0.00    0.00     377/26146       av_opt_next [489]
                0.00    0.00     142/142         av_opt_set_int [566]
                0.00    0.00      22/22          av_opt_set_double [611]
                0.00    0.00       2/2           av_d2q [777]
                0.00    0.00       2/2           av_opt_set_q [781]
                0.00    0.00       1/1           av_opt_set [956]
-----------------------------------------------
                0.00    0.00       3/3           var_OptionParse [267]
[716]    0.0    0.00    0.00       3         config_GetType [716]
                0.00    0.00       3/154         config_FindConfig [565]
-----------------------------------------------
                0.00    0.00       3/3           OpenDecoder [220]
[717]    0.0    0.00    0.00       3         convert_omx_to_profile_idc [717]
-----------------------------------------------
                0.00    0.00       3/3           aac_decode_init [947]
[718]    0.0    0.00    0.00       3         ff_init_ff_sine_windows [718]
-----------------------------------------------
                0.00    0.00       3/3           aac_decode_init [947]
[719]    0.0    0.00    0.00       3         ff_sine_window_init [719]
-----------------------------------------------
                0.00    0.00       1/3           Close [476]
                0.00    0.00       2/3           vout_EndWrapper [1037]
[720]    0.0    0.00    0.00       3         picture_pool_Delete [720]
                0.00    0.00      26/30111       picture_Release [486]
-----------------------------------------------
                0.00    0.00       1/3           Init [908]
                0.00    0.00       2/3           es_format_IsSimilar [797]
[721]    0.0    0.00    0.00       3         video_format_IsSimilar [721]
-----------------------------------------------
                0.00    0.00       1/3           DeinterlaceIsPresent [470]
                0.00    0.00       2/3           DeinterlaceCallback <cycle 5> [268]
[722]    0.0    0.00    0.00       3         vlc_inhibit_Destroy [722]
-----------------------------------------------
                0.00    0.00       1/3           matroska_segment_c::InformationCreate() [16521]
                0.00    0.00       1/3           input_item_SetMeta [350]
                0.00    0.00       1/3           Init [182]
[723]    0.0    0.00    0.00       3         vlc_meta_New [723]
-----------------------------------------------
                0.00    0.00       3/3           input_item_SetMeta [350]
[724]    0.0    0.00    0.00       3         vlc_meta_Set [724]
-----------------------------------------------
                0.00    0.00       1/3           Create [163]
                0.00    0.00       1/3           vout_Request <cycle 4> [168]
                0.00    0.00       1/3           aout_New [209]
[725]    0.0    0.00    0.00       3         vlc_object_set_destructor [725]
-----------------------------------------------
                0.00    0.00       1/2           GetOutput [23]
                0.00    0.00       1/2           CloseDecoder [887]
[726]    0.0    0.00    0.00       2         ArchitectureSpecificCopyHooksDestroy [726]
-----------------------------------------------
                0.00    0.00       2/2           DecoderFlush [263]
[727]    0.0    0.00    0.00       2         DecoderBlockFlushNew [727]
                0.00    0.00       2/25228       block_Alloc [491]
-----------------------------------------------
                0.00    0.00       1/2           aout_update_format [190]
                0.00    0.00       1/2           vout_new_buffer [29]
[728]    0.0    0.00    0.00       2         DecoderUpdateFormatLocked [728]
                0.00    0.00       2/36          es_format_Clean [591]
                0.00    0.00       2/25          es_format_Copy [604]
-----------------------------------------------
                0.00    0.00       2/2           generic_stop [218]
[729]    0.0    0.00    0.00       2         Destroy [729]
                0.00    0.00       2/366         ft_mem_free [553]
                0.00    0.00       2/2           FT_Stroker_Done [754]
                0.00    0.00       2/2           FT_Done_Face [732]
                0.00    0.00       2/2           FT_Done_FreeType [733]
-----------------------------------------------
                0.00    0.00       2/2           EsOutAdd <cycle 4> [207]
[730]    0.0    0.00    0.00       2         EsOutProgramFind [730]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [739]
[731]    0.0    0.00    0.00       2         FT_Add_Default_Modules [731]
                0.00    0.00      36/36          FT_Add_Module [588]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [729]
[732]    0.0    0.00    0.00       2         FT_Done_Face [732]
                0.00    0.00       4/366         ft_mem_free [553]
                0.00    0.00       2/10          FT_List_Find [639]
                0.00    0.00       2/10          FT_List_Remove [640]
                0.00    0.00       2/2           destroy_face [795]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [729]
[733]    0.0    0.00    0.00       2         FT_Done_FreeType [733]
                0.00    0.00       2/2           FT_Done_Library [735]
                0.00    0.00       2/2           FT_Done_Memory [736]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [795]
[734]    0.0    0.00    0.00       2         FT_Done_GlyphSlot [734]
                0.00    0.00       2/2           ft_glyphslot_done [806]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_FreeType [733]
[735]    0.0    0.00    0.00       2         FT_Done_Library [735]
                0.00    0.00      36/36          FT_Remove_Module [589]
                0.00    0.00       4/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_FreeType [733]
[736]    0.0    0.00    0.00       2         FT_Done_Memory [736]
-----------------------------------------------
                0.00    0.00       2/2           FT_GlyphLoader_CreateExtra [738]
[737]    0.0    0.00    0.00       2         FT_GlyphLoader_Adjust_Points [737]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_GlyphSlot [741]
[738]    0.0    0.00    0.00       2         FT_GlyphLoader_CreateExtra [738]
                0.00    0.00       2/22          ft_mem_realloc [613]
                0.00    0.00       2/2           FT_GlyphLoader_Adjust_Points [737]
-----------------------------------------------
                0.00    0.00       2/2           Create [189]
[739]    0.0    0.00    0.00       2         FT_Init_FreeType [739]
                0.00    0.00       2/2           FT_New_Memory [743]
                0.00    0.00       2/2           FT_New_Library [742]
                0.00    0.00       2/2           FT_Add_Default_Modules [731]
-----------------------------------------------
                0.00    0.00       2/2           Create [189]
[740]    0.0    0.00    0.00       2         FT_New_Face [740]
                0.00    0.00       2/2           FT_Open_Face [745]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [745]
[741]    0.0    0.00    0.00       2         FT_New_GlyphSlot [741]
                0.00    0.00       4/116         ft_mem_alloc [569]
                0.00    0.00       2/2           FT_GlyphLoader_CreateExtra [738]
                0.00    0.00       2/2           tt_slot_init [867]
                0.00    0.00       2/16          FT_GlyphLoader_New [620]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [739]
[742]    0.0    0.00    0.00       2         FT_New_Library [742]
                0.00    0.00       4/116         ft_mem_alloc [569]
-----------------------------------------------
                0.00    0.00       2/2           FT_Init_FreeType [739]
[743]    0.0    0.00    0.00       2         FT_New_Memory [743]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [745]
[744]    0.0    0.00    0.00       2         FT_New_Size [744]
                0.00    0.00       4/116         ft_mem_alloc [569]
                0.00    0.00       2/2           tt_size_init [864]
                0.00    0.00       2/12          FT_List_Add [631]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_Face [740]
[745]    0.0    0.00    0.00       2         FT_Open_Face [745]
                0.00    0.00       2/2           FT_Stream_New [752]
                0.00    0.00       2/116         ft_mem_alloc [569]
                0.00    0.00       2/2           open_face [819]
                0.00    0.00       2/12          FT_List_Add [631]
                0.00    0.00       2/2           FT_New_GlyphSlot [741]
                0.00    0.00       2/2           FT_New_Size [744]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [865]
[746]    0.0    0.00    0.00       2         FT_Request_Metrics [746]
                0.00    0.00       4/10          FT_DivFix [637]
-----------------------------------------------
                0.00    0.00       2/2           FT_Set_Pixel_Sizes [749]
[747]    0.0    0.00    0.00       2         FT_Request_Size [747]
                0.00    0.00       2/2           tt_size_request [865]
-----------------------------------------------
                0.00    0.00       2/2           Create [189]
[748]    0.0    0.00    0.00       2         FT_Select_Charmap [748]
-----------------------------------------------
                0.00    0.00       2/2           Create [189]
[749]    0.0    0.00    0.00       2         FT_Set_Pixel_Sizes [749]
                0.00    0.00       2/2           FT_Request_Size [747]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_Free [751]
[750]    0.0    0.00    0.00       2         FT_Stream_Close [750]
                0.00    0.00       2/2           ft_ansi_stream_close [802]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [795]
[751]    0.0    0.00    0.00       2         FT_Stream_Free [751]
                0.00    0.00       2/2           FT_Stream_Close [750]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [745]
[752]    0.0    0.00    0.00       2         FT_Stream_New [752]
                0.00    0.00       2/116         ft_mem_alloc [569]
                0.00    0.00       2/2           FT_Stream_Open [753]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_New [752]
[753]    0.0    0.00    0.00       2         FT_Stream_Open [753]
-----------------------------------------------
                0.00    0.00       2/2           Destroy [729]
[754]    0.0    0.00    0.00       2         FT_Stroker_Done [754]
                0.00    0.00       8/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       2/2           Create [189]
[755]    0.0    0.00    0.00       2         FT_Stroker_New [755]
                0.00    0.00       2/116         ft_mem_alloc [569]
-----------------------------------------------
                0.00    0.00       2/2           TriggerCallback <cycle 5> [162]
[756]    0.0    0.00    0.00       2         FullscreenCallback [756]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[757]    0.0    0.00    0.00       2         Get_Interface [757]
-----------------------------------------------
                0.00    0.00       2/2           EsOutAdd <cycle 4> [207]
[758]    0.0    0.00    0.00       2         LanguageGetCode [758]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [589]
[759]    0.0    0.00    0.00       2         T1_Driver_Done [759]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[760]    0.0    0.00    0.00       2         T1_Driver_Init [760]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [589]
[761]    0.0    0.00    0.00       2         T42_Driver_Done [761]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[762]    0.0    0.00    0.00       2         T42_Driver_Init [762]
                0.00    0.00       2/10          FT_Get_Module [638]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[763]    0.0    0.00    0.00       2         T42_Get_Interface [763]
-----------------------------------------------
                0.00    0.00       2/2           tt_driver_done [840]
[764]    0.0    0.00    0.00       2         TT_Done_Context [764]
                0.00    0.00       8/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       2/2           tt_driver_init [841]
[765]    0.0    0.00    0.00       2         TT_New_Context [765]
                0.00    0.00       2/116         ft_mem_alloc [569]
                0.00    0.00       2/22          ft_mem_realloc [613]
-----------------------------------------------
                0.00    0.00       1/2           spu_Render [56]
                0.00    0.00       1/2           filter_chain_AppendFilter [327]
[766]    0.0    0.00    0.00       2         UpdateBufferFunctions [766]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [162]
[767]    0.0    0.00    0.00       2         WallPaperCallback <cycle 5> [767]
                                   4             var_TriggerCallback <cycle 5> [283]
-----------------------------------------------
                                   2             TriggerCallback <cycle 5> [162]
[768]    0.0    0.00    0.00       2         ZoomCallback <cycle 5> [768]
                                   2             var_SetChecked <cycle 5> [166]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [589]
[769]    0.0    0.00    0.00       2         af_autofitter_done [769]
                0.00    0.00       2/2           af_glyph_hints_done [772]
                0.00    0.00       2/366         ft_mem_free [553]
                0.00    0.00       2/16          FT_GlyphLoader_Done [619]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[770]    0.0    0.00    0.00       2         af_autofitter_init [770]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[771]    0.0    0.00    0.00       2         af_get_interface [771]
-----------------------------------------------
                0.00    0.00       2/2           af_autofitter_done [769]
[772]    0.0    0.00    0.00       2         af_glyph_hints_done [772]
                0.00    0.00      12/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       2/2           SetupOutputFormat [529]
[773]    0.0    0.00    0.00       2         aout_CheckChannelExtraction [773]
-----------------------------------------------
                0.00    0.00       2/2           av_buffer_pool_get [78]
[774]    0.0    0.00    0.00       2         av_buffer_alloc [774]
                0.00    0.00       2/30115       av_malloc [485]
                0.00    0.00       2/11923       av_buffer_create [504]
-----------------------------------------------
                0.00    0.00       2/2           av_buffer_pool_uninit [679]
[775]    0.0    0.00    0.00       2         av_buffer_default_free [775]
-----------------------------------------------
                0.00    0.00       1/2           avcodec_open2 [963]
                0.00    0.00       1/2           avcodec_close [411]
[776]    0.0    0.00    0.00       2         av_codec_is_encoder [776]
-----------------------------------------------
                0.00    0.00       2/2           av_opt_set_defaults [715]
[777]    0.0    0.00    0.00       2         av_d2q [777]
                0.00    0.00       2/2           av_reduce [782]
-----------------------------------------------
                0.00    0.00       1/2           ffmpeg_OpenCodec [319]
                0.00    0.00       1/2           av_opt_set_dict [957]
[778]    0.0    0.00    0.00       2         av_dict_free [778]
-----------------------------------------------
                0.00    0.00       1/2           ffmpeg_OpenCodec [319]
                0.00    0.00       1/2           av_opt_set_dict [957]
[779]    0.0    0.00    0.00       2         av_dict_get [779]
-----------------------------------------------
                0.00    0.00       2/2           av_reduce [782]
[780]    0.0    0.00    0.00       2         av_gcd [780]
-----------------------------------------------
                0.00    0.00       2/2           av_opt_set_defaults [715]
[781]    0.0    0.00    0.00       2         av_opt_set_q [781]
                0.00    0.00       2/167         av_opt_find2 [563]
-----------------------------------------------
                0.00    0.00       2/2           av_d2q [777]
[782]    0.0    0.00    0.00       2         av_reduce [782]
                0.00    0.00       2/2           av_gcd [780]
-----------------------------------------------
                0.00    0.00       1/2           avcodec_open2 [963]
                0.00    0.00       1/2           avcodec_close [411]
[783]    0.0    0.00    0.00       2         avcodec_is_open [783]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[784]    0.0    0.00    0.00       2         bdf_driver_requester [784]
-----------------------------------------------
                0.00    0.00       2/2           CreateDecoder <cycle 4> [442]
[785]    0.0    0.00    0.00       2         block_FifoNew [785]
                0.00    0.00       4/9379        vlc_cond_init [506]
                0.00    0.00       2/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [589]
[786]    0.0    0.00    0.00       2         cff_driver_done [786]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[787]    0.0    0.00    0.00       2         cff_driver_init [787]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[788]    0.0    0.00    0.00       2         cff_get_interface [788]
                0.00    0.00       4/28          ft_service_list_lookup [602]
                0.00    0.00       2/10          FT_Get_Module [638]
                0.00    0.00       2/6           sfnt_get_interface [675]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [589]
[789]    0.0    0.00    0.00       2         cid_driver_done [789]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[790]    0.0    0.00    0.00       2         cid_driver_init [790]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[791]    0.0    0.00    0.00       2         cid_get_interface [791]
-----------------------------------------------
                0.00    0.00       2/2           ThreadChangeFilters [342]
[792]    0.0    0.00    0.00       2         config_ChainCreate [792]
-----------------------------------------------
                                   2             input_DecoderNew <cycle 4> [812]
[793]    0.0    0.00    0.00       2         decoder_New <cycle 4> [793]
                0.00    0.00       2/4           vlc_clone_attr [708]
                0.00    0.00       2/4           vlc_clone [707]
                                   2             CreateDecoder <cycle 4> [442]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [795]
[794]    0.0    0.00    0.00       2         destroy_charmaps [794]
                0.00    0.00       8/366         ft_mem_free [553]
                0.00    0.00       6/6           ft_cmap_done_internal [668]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_Face [732]
[795]    0.0    0.00    0.00       2         destroy_face [795]
                0.00    0.00       6/366         ft_mem_free [553]
                0.00    0.00       2/2           FT_Done_GlyphSlot [734]
                0.00    0.00       2/20          FT_List_Finalize [614]
                0.00    0.00       2/2           destroy_charmaps [794]
                0.00    0.00       2/2           tt_face_done [843]
                0.00    0.00       2/2           FT_Stream_Free [751]
-----------------------------------------------
                0.00    0.00       2/2           FT_List_Finalize [614]
[796]    0.0    0.00    0.00       2         destroy_size [796]
                0.00    0.00       2/2           tt_size_done [863]
                0.00    0.00       2/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       2/2           ThreadChangeFilters [342]
[797]    0.0    0.00    0.00       2         es_format_IsSimilar [797]
                0.00    0.00       4/6977        vlc_fourcc_GetCodec [514]
                0.00    0.00       2/3           video_format_IsSimilar [721]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [834]
[798]    0.0    0.00    0.00       2         ff_getSwsFunc [798]
                0.00    0.00       2/2           ff_sws_init_output_funcs [801]
                0.00    0.00       2/2           ff_sws_init_input_funcs [800]
-----------------------------------------------
                0.00    0.00       2/2           aac_decode_init [947]
[799]    0.0    0.00    0.00       2         ff_kbd_window_init [799]
-----------------------------------------------
                0.00    0.00       2/2           ff_getSwsFunc [798]
[800]    0.0    0.00    0.00       2         ff_sws_init_input_funcs [800]
-----------------------------------------------
                0.00    0.00       2/2           ff_getSwsFunc [798]
[801]    0.0    0.00    0.00       2         ff_sws_init_output_funcs [801]
                0.00    0.00       6/25          av_pix_fmt_desc_get [603]
-----------------------------------------------
                0.00    0.00       2/2           FT_Stream_Close [750]
[802]    0.0    0.00    0.00       2         ft_ansi_stream_close [802]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [589]
[803]    0.0    0.00    0.00       2         ft_black_done [803]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[804]    0.0    0.00    0.00       2         ft_black_new [804]
                0.00    0.00       2/116         ft_mem_alloc [569]
-----------------------------------------------
                0.00    0.00       2/2           ft_raster1_init [809]
[805]    0.0    0.00    0.00       2         ft_black_reset [805]
-----------------------------------------------
                0.00    0.00       2/2           FT_Done_GlyphSlot [734]
[806]    0.0    0.00    0.00       2         ft_glyphslot_done [806]
                0.00    0.00       4/366         ft_mem_free [553]
                0.00    0.00       2/2           ft_glyphslot_free_bitmap [807]
                0.00    0.00       2/16          FT_GlyphLoader_Done [619]
-----------------------------------------------
                0.00    0.00       2/2           ft_glyphslot_done [806]
[807]    0.0    0.00    0.00       2         ft_glyphslot_free_bitmap [807]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_init_face [827]
[808]    0.0    0.00    0.00       2         ft_module_get_service [808]
                0.00    0.00      20/28          ft_service_list_lookup [602]
                0.00    0.00       2/2           tt_get_interface [862]
                0.00    0.00       2/2           psnames_get_service [825]
                0.00    0.00       2/2           af_get_interface [771]
                0.00    0.00       2/6           sfnt_get_interface [675]
                0.00    0.00       2/2           bdf_driver_requester [784]
                0.00    0.00       2/2           pcf_driver_requester [820]
                0.00    0.00       2/2           winfnt_get_service [873]
                0.00    0.00       2/2           T42_Get_Interface [763]
                0.00    0.00       2/2           pfr_get_service [821]
                0.00    0.00       2/2           cid_get_interface [791]
                0.00    0.00       2/2           cff_get_interface [788]
                0.00    0.00       2/2           Get_Interface [757]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[809]    0.0    0.00    0.00       2         ft_raster1_init [809]
                0.00    0.00       2/2           ft_black_reset [805]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [865]
[810]    0.0    0.00    0.00       2         ft_recompute_scaled_metrics [810]
                0.00    0.00       8/16          FT_MulFix [624]
-----------------------------------------------
                0.00    0.00       2/2           GetOutput [23]
[811]    0.0    0.00    0.00       2         get_android_opaque_mutex [811]
-----------------------------------------------
                                   2             EsCreateDecoder <cycle 4> [242]
[812]    0.0    0.00    0.00       2         input_DecoderNew <cycle 4> [812]
                                   2             decoder_New <cycle 4> [793]
-----------------------------------------------
                0.00    0.00       2/2           EsSelect <cycle 4> [265]
[813]    0.0    0.00    0.00       2         input_SendEventTeletextSelect [813]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_from_input_item [341]
                0.00    0.00       1/2           Create [163]
[814]    0.0    0.00    0.00       2         input_item_Hold [814]
-----------------------------------------------
                0.00    0.00       1/2           libvlc_media_new_location [296]
                0.00    0.00       1/2           Destructor [898]
[815]    0.0    0.00    0.00       2         input_item_Release [815]
-----------------------------------------------
                                   1             es_out_Control <cycle 4> [187]
                0.00    0.00       1/31235       input_resource_Terminate [225]
[816]    0.0    0.00    0.00       2         input_resource_TerminateVout <cycle 4> [816]
                                   2             input_resource_RequestVout <cycle 4> [206]
-----------------------------------------------
                0.00    0.00       2/2           AndroidLockSurface [39]
[817]    0.0    0.00    0.00       2         jni_SetAndroidSurfaceSize [817]
                0.00    0.00       2/2           jni_SetAndroidSurfaceSizeEnv [818]
-----------------------------------------------
                0.00    0.00       2/2           jni_SetAndroidSurfaceSize [817]
[818]    0.0    0.00    0.00       2         jni_SetAndroidSurfaceSizeEnv [818]
-----------------------------------------------
                0.00    0.00       2/2           FT_Open_Face [745]
[819]    0.0    0.00    0.00       2         open_face [819]
                0.00    0.00       4/116         ft_mem_alloc [569]
                0.00    0.00       2/2           tt_face_init [847]
                0.00    0.00       2/4           find_unicode_charmap [696]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[820]    0.0    0.00    0.00       2         pcf_driver_requester [820]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[821]    0.0    0.00    0.00       2         pfr_get_service [821]
-----------------------------------------------
                0.00    0.00       1/2           Open [233]
                0.00    0.00       1/2           picture_pool_New [1016]
[822]    0.0    0.00    0.00       2         picture_pool_NewExtended [822]
                0.00    0.00       2/3           Create [712]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [589]
[823]    0.0    0.00    0.00       2         ps_hinter_done [823]
                0.00    0.00       8/8           ps_mask_table_done [642]
                0.00    0.00       4/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[824]    0.0    0.00    0.00       2         ps_hinter_init [824]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[825]    0.0    0.00    0.00       2         psnames_get_service [825]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_done [843]
[826]    0.0    0.00    0.00       2         sfnt_done_face [826]
                0.00    0.00      14/366         ft_mem_free [553]
                0.00    0.00       8/18          FT_Stream_ReleaseFrame [616]
                0.00    0.00       2/2           tt_face_free_ps_names [846]
                0.00    0.00       2/2           tt_face_free_eblc [844]
                0.00    0.00       2/2           tt_face_free_name [845]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [847]
[827]    0.0    0.00    0.00       2         sfnt_init_face [827]
                0.00    0.00       2/2           ft_module_get_service [808]
                0.00    0.00       2/8           FT_Stream_Pos [641]
                0.00    0.00       2/6           FT_Stream_ReadULong [659]
                0.00    0.00       2/116         ft_mem_alloc [569]
                0.00    0.00       2/36          FT_Stream_Seek [590]
                0.00    0.00       2/2           tt_face_load_font_dir [851]
                0.00    0.00       2/4           FT_Get_Module_Interface [689]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [847]
[828]    0.0    0.00    0.00       2         sfnt_load_face [828]
                0.00    0.00      12/12          tt_face_get_name [633]
                0.00    0.00       6/102         FT_Stream_ReadFields [575]
                0.00    0.00       4/4           tt_face_load_hhea [704]
                0.00    0.00       2/2           tt_face_load_generic_header [853]
                0.00    0.00       2/2           tt_face_load_head [854]
                0.00    0.00       2/2           tt_face_load_maxp [857]
                0.00    0.00       2/2           tt_face_load_cmap [848]
                0.00    0.00       2/2           tt_face_load_name [858]
                0.00    0.00       2/2           tt_face_load_post [861]
                0.00    0.00       2/2           tt_face_load_eblc [850]
                0.00    0.00       2/2           tt_face_load_pclt [860]
                0.00    0.00       2/2           tt_face_load_gasp [852]
                0.00    0.00       2/2           tt_face_load_kern [856]
                0.00    0.00       2/2           tt_face_build_cmaps [842]
                0.00    0.00       2/2           tt_face_load_hmtx [855]
                0.00    0.00       2/2           tt_face_load_os2 [859]
-----------------------------------------------
                0.00    0.00       2/2           subtitles_Detect [386]
[829]    0.0    0.00    0.00       2         strcpy_strip_ext [829]
-----------------------------------------------
                0.00    0.00       2/2           subtitles_Detect [386]
[830]    0.0    0.00    0.00       2         strcpy_trim [830]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [833]
[831]    0.0    0.00    0.00       2         sws_alloc_context [831]
                0.00    0.00       2/29862       av_mallocz [487]
                0.00    0.00       2/3           av_opt_set_defaults [715]
-----------------------------------------------
                0.00    0.00       2/2           GetParameters [677]
[832]    0.0    0.00    0.00       2         sws_freeContext [832]
                0.00    0.00      56/71716       av_freep [480]
                0.00    0.00       2/71922       av_free [479]
-----------------------------------------------
                0.00    0.00       2/2           Init [908]
[833]    0.0    0.00    0.00       2         sws_getContext [833]
                0.00    0.00       2/2           sws_alloc_context [831]
                0.00    0.00       2/2           sws_setColorspaceDetails [837]
                0.00    0.00       2/2           sws_init_context [834]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [833]
[834]    0.0    0.00    0.00       2         sws_init_context [834]
                0.00    0.00      24/30115       av_malloc [485]
                0.00    0.00      16/29862       av_mallocz [487]
                0.00    0.00      12/25          av_pix_fmt_desc_get [603]
                0.00    0.00       8/8           sws_getCachedContext [644]
                0.00    0.00       4/6           av_get_bits_per_pixel [662]
                0.00    0.00       2/13          av_get_cpu_flags [629]
                0.00    0.00       2/2           sws_isSupportedInput [835]
                0.00    0.00       2/2           sws_isSupportedOutput [836]
                0.00    0.00       2/2           ff_getSwsFunc [798]
                0.00    0.00       1/1           sws_rgb2rgb_init [1024]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [834]
[835]    0.0    0.00    0.00       2         sws_isSupportedInput [835]
-----------------------------------------------
                0.00    0.00       2/2           sws_init_context [834]
[836]    0.0    0.00    0.00       2         sws_isSupportedOutput [836]
-----------------------------------------------
                0.00    0.00       2/2           sws_getContext [833]
[837]    0.0    0.00    0.00       2         sws_setColorspaceDetails [837]
                0.00    0.00       6/25          av_pix_fmt_desc_get [603]
                0.00    0.00       2/6           av_get_bits_per_pixel [662]
                0.00    0.00       1/1           ff_yuv2rgb_c_init_tables [994]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_build_cmaps [842]
[838]    0.0    0.00    0.00       2         tt_cmap6_validate [838]
-----------------------------------------------
                0.00    0.00       2/2           FT_CMap_New [658]
[839]    0.0    0.00    0.00       2         tt_cmap_init [839]
-----------------------------------------------
                0.00    0.00       2/2           FT_Remove_Module [589]
[840]    0.0    0.00    0.00       2         tt_driver_done [840]
                0.00    0.00       2/2           TT_Done_Context [764]
-----------------------------------------------
                0.00    0.00       2/2           FT_Add_Module [588]
[841]    0.0    0.00    0.00       2         tt_driver_init [841]
                0.00    0.00       2/2           TT_New_Context [765]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[842]    0.0    0.00    0.00       2         tt_face_build_cmaps [842]
                0.00    0.00       6/6           ft_validator_init [670]
                0.00    0.00       6/6           FT_CMap_New [658]
                0.00    0.00       4/4           tt_cmap4_validate [703]
                0.00    0.00       2/2           tt_cmap6_validate [838]
-----------------------------------------------
                0.00    0.00       2/2           destroy_face [795]
[843]    0.0    0.00    0.00       2         tt_face_done [843]
                0.00    0.00       8/18          FT_Stream_ReleaseFrame [616]
                0.00    0.00       4/366         ft_mem_free [553]
                0.00    0.00       2/2           sfnt_done_face [826]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [826]
[844]    0.0    0.00    0.00       2         tt_face_free_eblc [844]
                0.00    0.00       2/18          FT_Stream_ReleaseFrame [616]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [826]
[845]    0.0    0.00    0.00       2         tt_face_free_name [845]
                0.00    0.00      56/366         ft_mem_free [553]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_done_face [826]
[846]    0.0    0.00    0.00       2         tt_face_free_ps_names [846]
-----------------------------------------------
                0.00    0.00       2/2           open_face [819]
[847]    0.0    0.00    0.00       2         tt_face_init [847]
                0.00    0.00      10/42          tt_face_goto_table [587]
                0.00    0.00       6/36          FT_Stream_Seek [590]
                0.00    0.00       2/4           FT_Get_Module_Interface [689]
                0.00    0.00       2/2           sfnt_init_face [827]
                0.00    0.00       2/2           sfnt_load_face [828]
                0.00    0.00       2/2           tt_face_load_cvt [849]
                0.00    0.00       2/4           FT_Stream_ExtractFrame [690]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[848]    0.0    0.00    0.00       2         tt_face_load_cmap [848]
                0.00    0.00       2/36          FT_Stream_Seek [590]
                0.00    0.00       2/42          tt_face_goto_table [587]
                0.00    0.00       2/4           FT_Stream_ExtractFrame [690]
-----------------------------------------------
                0.00    0.00       2/2           tt_face_init [847]
[849]    0.0    0.00    0.00       2         tt_face_load_cvt [849]
                0.00    0.00       2/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[850]    0.0    0.00    0.00       2         tt_face_load_eblc [850]
                0.00    0.00       6/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_init_face [827]
[851]    0.0    0.00    0.00       2         tt_face_load_font_dir [851]
                0.00    0.00     112/112         FT_Stream_GetULong [573]
                0.00    0.00      30/102         FT_Stream_ReadFields [575]
                0.00    0.00       8/36          FT_Stream_Seek [590]
                0.00    0.00       4/6           FT_Stream_ReadULong [659]
                0.00    0.00       2/8           FT_Stream_Pos [641]
                0.00    0.00       2/22          ft_mem_realloc [613]
                0.00    0.00       2/56          FT_Stream_EnterFrame [582]
                0.00    0.00       2/52          FT_Stream_ExitFrame [583]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[852]    0.0    0.00    0.00       2         tt_face_load_gasp [852]
                0.00    0.00       2/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[853]    0.0    0.00    0.00       2         tt_face_load_generic_header [853]
                0.00    0.00       2/36          FT_Stream_Seek [590]
                0.00    0.00       2/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[854]    0.0    0.00    0.00       2         tt_face_load_head [854]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[855]    0.0    0.00    0.00       2         tt_face_load_hmtx [855]
                0.00    0.00       2/36          FT_Stream_Seek [590]
                0.00    0.00       2/42          tt_face_goto_table [587]
                0.00    0.00       2/8           FT_Stream_Pos [641]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[856]    0.0    0.00    0.00       2         tt_face_load_kern [856]
                0.00    0.00       2/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[857]    0.0    0.00    0.00       2         tt_face_load_maxp [857]
                0.00    0.00       4/102         FT_Stream_ReadFields [575]
                0.00    0.00       2/36          FT_Stream_Seek [590]
                0.00    0.00       2/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[858]    0.0    0.00    0.00       2         tt_face_load_name [858]
                0.00    0.00      56/102         FT_Stream_ReadFields [575]
                0.00    0.00       2/36          FT_Stream_Seek [590]
                0.00    0.00       2/42          tt_face_goto_table [587]
                0.00    0.00       2/8           FT_Stream_Pos [641]
                0.00    0.00       2/22          ft_mem_realloc [613]
                0.00    0.00       2/56          FT_Stream_EnterFrame [582]
                0.00    0.00       2/52          FT_Stream_ExitFrame [583]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[859]    0.0    0.00    0.00       2         tt_face_load_os2 [859]
                0.00    0.00       4/102         FT_Stream_ReadFields [575]
                0.00    0.00       2/36          FT_Stream_Seek [590]
                0.00    0.00       2/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[860]    0.0    0.00    0.00       2         tt_face_load_pclt [860]
                0.00    0.00       2/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           sfnt_load_face [828]
[861]    0.0    0.00    0.00       2         tt_face_load_post [861]
                0.00    0.00       2/36          FT_Stream_Seek [590]
                0.00    0.00       2/42          tt_face_goto_table [587]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[862]    0.0    0.00    0.00       2         tt_get_interface [862]
                0.00    0.00       4/28          ft_service_list_lookup [602]
                0.00    0.00       2/10          FT_Get_Module [638]
                0.00    0.00       2/6           sfnt_get_interface [675]
-----------------------------------------------
                0.00    0.00       2/2           destroy_size [796]
[863]    0.0    0.00    0.00       2         tt_size_done [863]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_Size [744]
[864]    0.0    0.00    0.00       2         tt_size_init [864]
-----------------------------------------------
                0.00    0.00       2/2           FT_Request_Size [747]
[865]    0.0    0.00    0.00       2         tt_size_request [865]
                0.00    0.00       2/2           ft_recompute_scaled_metrics [810]
                0.00    0.00       2/2           FT_Request_Metrics [746]
                0.00    0.00       2/2           tt_size_reset [866]
-----------------------------------------------
                0.00    0.00       2/2           tt_size_request [865]
[866]    0.0    0.00    0.00       2         tt_size_reset [866]
                0.00    0.00       8/16          FT_MulFix [624]
                0.00    0.00       6/10          FT_DivFix [637]
-----------------------------------------------
                0.00    0.00       2/2           FT_New_GlyphSlot [741]
[867]    0.0    0.00    0.00       2         tt_slot_init [867]
-----------------------------------------------
                0.00    0.00       1/2           demux_sys_t::~demux_sys_t() [246]
                0.00    0.00       1/2           ControlPause [299]
[868]    0.0    0.00    0.00       2         vlc_meta_Delete [868]
-----------------------------------------------
                0.00    0.00       1/2           Control(demux_t*, int, std::__va_list) [16200]
                0.00    0.00       1/2           EsOutControl <cycle 4> [115]
[869]    0.0    0.00    0.00       2         vlc_meta_Merge [869]
-----------------------------------------------
                0.00    0.00       2/2           Thread [14]
[870]    0.0    0.00    0.00       2         vout_SetDisplayAspect [870]
-----------------------------------------------
                0.00    0.00       2/2           Thread [14]
[871]    0.0    0.00    0.00       2         vout_SetDisplayCrop [871]
-----------------------------------------------
                0.00    0.00       2/2           Thread [14]
[872]    0.0    0.00    0.00       2         vout_SetDisplayZoom [872]
                0.00    0.00       2/70          vlc_ureduce [578]
-----------------------------------------------
                0.00    0.00       2/2           ft_module_get_service [808]
[873]    0.0    0.00    0.00       2         winfnt_get_service [873]
-----------------------------------------------
                0.00    0.00       1/2           std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::_Rep::_M_clone(std::allocator<wchar_t> const&, unsigned int) [23176]
                0.00    0.00       1/2           wchar_t* std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::_S_construct<wchar_t*>(wchar_t*, wchar_t*, std::allocator<wchar_t> const&, std::forward_iterator_tag) [23155]
[874]    0.0    0.00    0.00       2         wmemcpy [874]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[875]    0.0    0.00    0.00       1         Activate [875]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[876]    0.0    0.00    0.00       1         Activate [876]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[877]    0.0    0.00    0.00       1         Activate [877]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[878]    0.0    0.00    0.00       1         Activate [878]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[879]    0.0    0.00    0.00       1         Activate [879]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[880]    0.0    0.00    0.00       1         Activate [880]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[881]    0.0    0.00    0.00       1         Activate [881]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[882]    0.0    0.00    0.00       1         Activate [882]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput [23]
[883]    0.0    0.00    0.00       1         ArchitectureSpecificCopyHooks [883]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[884]    0.0    0.00    0.00       1         Close [884]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[885]    0.0    0.00    0.00       1         Close [885]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[886]    0.0    0.00    0.00       1         Close [886]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[887]    0.0    0.00    0.00       1         CloseDecoder [887]
                0.00    0.00       1/2           ArchitectureSpecificCopyHooksDestroy [726]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[888]    0.0    0.00    0.00       1         CloseScaler [888]
                0.00    0.00       1/5           GetParameters [677]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[889]    0.0    0.00    0.00       1         Create [889]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[890]    0.0    0.00    0.00       1         Create [890]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[891]    0.0    0.00    0.00       1         Create [891]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[892]    0.0    0.00    0.00       1         Create [892]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[893]    0.0    0.00    0.00       1         CreateResampler [893]
                0.00    0.00       1/12          aout_BitsPerSample [632]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[894]    0.0    0.00    0.00       1         DecoderOpen [894]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[895]    0.0    0.00    0.00       1         DecoderOpen [895]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[896]    0.0    0.00    0.00       1         DecoderOpen [896]
-----------------------------------------------
                0.00    0.00       1/1           End [191]
[897]    0.0    0.00    0.00       1         Destroy [897]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [193]
[898]    0.0    0.00    0.00       1         Destructor [898]
                0.00    0.00       2/9375        vlc_mutex_destroy [507]
                0.00    0.00       1/1           EsOutDelete [900]
                0.00    0.00       1/1           input_resource_Release [1007]
                0.00    0.00       1/2           input_item_Release [815]
                0.00    0.00       1/9352        vlc_cond_destroy [508]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetURI [455]
[899]    0.0    0.00    0.00       1         EnsureUTF8 [899]
                0.00    0.00      75/75          vlc_towc [577]
-----------------------------------------------
                0.00    0.00       1/1           Destructor [898]
[900]    0.0    0.00    0.00       1         EsOutDelete [900]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/1           generic_stop [218]
[901]    0.0    0.00    0.00       1         FileClose [901]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_DeleteFilterInternal [291]
[902]    0.0    0.00    0.00       1         FilterAllocationClean [902]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFilterInternal [328]
[903]    0.0    0.00    0.00       1         FilterAllocationInit [903]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [69]
[904]    0.0    0.00    0.00       1         GetFfmpegCodec [904]
                0.00    0.00       1/6977        vlc_fourcc_GetCodec [514]
                0.00    0.00       1/7           vlc_fourcc_GetDescription [654]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [452]
[905]    0.0    0.00    0.00       1         GetOmxRole [905]
                0.00    0.00       1/6977        vlc_fourcc_GetCodec [514]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput [23]
[906]    0.0    0.00    0.00       1         GetVlcChromaFormat [906]
                0.00    0.00       1/7           vlc_fourcc_GetDescription [654]
-----------------------------------------------
                0.00    0.00       1/1           GetOutput [23]
[907]    0.0    0.00    0.00       1         IgnoreOmxDecoderPadding [907]
-----------------------------------------------
                0.00    0.00       1/1           OpenScaler [336]
[908]    0.0    0.00    0.00       1         Init [908]
                0.00    0.00       4/4           picture_New [701]
                0.00    0.00       2/5           GetParameters [677]
                0.00    0.00       2/2           sws_getContext [833]
                0.00    0.00       1/3           video_format_IsSimilar [721]
-----------------------------------------------
                0.00    0.00       1/1           Open [233]
[909]    0.0    0.00    0.00       1         LoadNativeWindowAPI [909]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [197]
[910]    0.0    0.00    0.00       1         MRLSeekPoint [910]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[911]    0.0    0.00    0.00       1         Open [911]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[912]    0.0    0.00    0.00       1         Open [912]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[913]    0.0    0.00    0.00       1         Open [913]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[914]    0.0    0.00    0.00       1         Open [914]
                0.00    0.00       1/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[915]    0.0    0.00    0.00       1         Open [915]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[916]    0.0    0.00    0.00       1         Open [916]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[917]    0.0    0.00    0.00       1         Open [917]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[918]    0.0    0.00    0.00       1         Open [918]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[919]    0.0    0.00    0.00       1         Open [919]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[920]    0.0    0.00    0.00       1         OpenBzip2 [920]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[921]    0.0    0.00    0.00       1         OpenCommon [921]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[922]    0.0    0.00    0.00       1         OpenDecoder [922]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[923]    0.0    0.00    0.00       1         OpenDecoder [923]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[924]    0.0    0.00    0.00       1         OpenDecoder [924]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[925]    0.0    0.00    0.00       1         OpenDecoder [925]
                0.00    0.00       1/7           module_exists [650]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[926]    0.0    0.00    0.00       1         OpenDecoder [926]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[927]    0.0    0.00    0.00       1         OpenDecoder [927]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[928]    0.0    0.00    0.00       1         OpenDecoder [928]
                0.00    0.00       1/7           module_exists [650]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[929]    0.0    0.00    0.00       1         OpenDecoder [929]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[930]    0.0    0.00    0.00       1         OpenDecoder [930]
                0.00    0.00       1/7           module_exists [650]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[931]    0.0    0.00    0.00       1         OpenDecoder [931]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[932]    0.0    0.00    0.00       1         OpenDecoder [932]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[933]    0.0    0.00    0.00       1         OpenDecoder [933]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[934]    0.0    0.00    0.00       1         OpenFilter [934]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[935]    0.0    0.00    0.00       1         OpenFilter [935]
                0.00    0.00       1/8           vlc_CPU [646]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[936]    0.0    0.00    0.00       1         OpenFilter [936]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[937]    0.0    0.00    0.00       1         OpenGzip [937]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[938]    0.0    0.00    0.00       1         OpenXZ [938]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[939]    0.0    0.00    0.00       1         Probe [939]
                0.00    0.00       1/8           vlc_CPU [646]
-----------------------------------------------
                0.00    0.00       1/1           RarStreamOpen [941]
[940]    0.0    0.00    0.00       1         RarProbe [940]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[941]    0.0    0.00    0.00       1         RarStreamOpen [941]
                0.00    0.00       1/1           RarProbe [940]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputNew [276]
[942]    0.0    0.00    0.00       1         Start [942]
                0.00    0.00       1/1           aout_get_native_sample_rate [949]
                0.00    0.00       1/7           aout_FormatPrepare [647]
-----------------------------------------------
                0.00    0.00       1/1           aout_OutputDelete [399]
[943]    0.0    0.00    0.00       1         Stop [943]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[944]    0.0    0.00    0.00       1         StreamOpen [944]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [193]
[945]    0.0    0.00    0.00       1         VoutDestructor [945]
                0.00    0.00       3/9375        vlc_mutex_destroy [507]
                0.00    0.00       1/1           vout_control_Clean [1039]
                0.00    0.00       1/1           vout_snapshot_Clean [1042]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_close [411]
[946]    0.0    0.00    0.00       1         aac_decode_close [946]
                0.00    0.00      69/71716       av_freep [480]
                0.00    0.00       5/6           ff_fft_end [663]
                0.00    0.00       5/6           ff_mdct_end [666]
                0.00    0.00       1/1           ff_aac_sbr_ctx_close [970]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_open2 [963]
[947]    0.0    0.00    0.00       1         aac_decode_init [947]
                0.00    0.00      12/178         ff_init_vlc_sparse [558]
                0.00    0.00       4/6           ff_mdct_init [667]
                0.00    0.00       3/3           ff_sine_window_init [719]
                0.00    0.00       3/3           ff_init_ff_sine_windows [718]
                0.00    0.00       2/2           ff_kbd_window_init [799]
                0.00    0.00       1/1           decode_audio_specific_config [968]
                0.00    0.00       1/4           make_filters_from_proto [699]
                0.00    0.00       1/1           ff_ps_init [987]
                0.00    0.00       1/1           ff_aac_sbr_init [972]
                0.00    0.00       1/1           ff_fmt_convert_init_arm [981]
                0.00    0.00       1/1           ff_fmt_convert_init [980]
                0.00    0.00       1/1           ff_float_dsp_init_neon [978]
                0.00    0.00       1/1           ff_float_dsp_init_arm [977]
                0.00    0.00       1/1           avpriv_float_dsp_init [964]
                0.00    0.00       1/1           ff_aac_tableinit [973]
-----------------------------------------------
                0.00    0.00       1/1           vlc_object_release [193]
[948]    0.0    0.00    0.00       1         aout_Destructor [948]
                0.00    0.00       3/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/1           Start [942]
[949]    0.0    0.00    0.00       1         aout_get_native_sample_rate [949]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[950]    0.0    0.00    0.00       1         atrac3_init_static_data [950]
                0.00    0.00       7/178         ff_init_vlc_sparse [558]
                0.00    0.00       1/1           ff_atrac_generate_tables [975]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_default_get_buffer2 [42]
[951]    0.0    0.00    0.00       1         av_buffer_pool_init [951]
                0.00    0.00       1/29862       av_mallocz [487]
-----------------------------------------------
                0.00    0.00       1/1           ff_tak_init_crc [992]
[952]    0.0    0.00    0.00       1         av_crc_init [952]
-----------------------------------------------
                0.00    0.00       1/1           av_samples_get_buffer_size [958]
[953]    0.0    0.00    0.00       1         av_get_bytes_per_sample [953]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [69]
[954]    0.0    0.00    0.00       1         av_log_set_level [954]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_close [411]
[955]    0.0    0.00    0.00       1         av_opt_free [955]
                0.00    0.00     321/26146       av_opt_next [489]
                0.00    0.00       1/71716       av_freep [480]
-----------------------------------------------
                0.00    0.00       1/1           av_opt_set_defaults [715]
[956]    0.0    0.00    0.00       1         av_opt_set [956]
                0.00    0.00       1/167         av_opt_find2 [563]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_open2 [963]
[957]    0.0    0.00    0.00       1         av_opt_set_dict [957]
                0.00    0.00       1/2           av_dict_get [779]
                0.00    0.00       1/71716       av_freep [480]
                0.00    0.00       1/2           av_dict_free [778]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_default_get_buffer2 [42]
[958]    0.0    0.00    0.00       1         av_samples_get_buffer_size [958]
                0.00    0.00       1/1           av_get_bytes_per_sample [953]
                0.00    0.00       1/11929       av_sample_fmt_is_planar [500]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [69]
[959]    0.0    0.00    0.00       1         avcodec_alloc_context3 [959]
                0.00    0.00       1/30115       av_malloc [485]
                0.00    0.00       1/1           avcodec_get_context_defaults3 [962]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [69]
[960]    0.0    0.00    0.00       1         avcodec_find_decoder [960]
                0.00    0.00     174/176         av_codec_is_decoder [559]
-----------------------------------------------
                0.00    0.00       1/1           DecodeAudio [5]
[961]    0.0    0.00    0.00       1         avcodec_flush_buffers [961]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_alloc_context3 [959]
[962]    0.0    0.00    0.00       1         avcodec_get_context_defaults3 [962]
                0.00    0.00       1/3           av_opt_set_defaults [715]
                0.00    0.00       1/29862       av_mallocz [487]
-----------------------------------------------
                0.00    0.00       1/1           ffmpeg_OpenCodec [319]
[963]    0.0    0.00    0.00       1         avcodec_open2 [963]
                0.00    0.00       2/29862       av_mallocz [487]
                0.00    0.00       2/176         av_codec_is_decoder [559]
                0.00    0.00       1/2           avcodec_is_open [783]
                0.00    0.00       1/5967        av_frame_alloc [530]
                0.00    0.00       1/1           av_opt_set_dict [957]
                0.00    0.00       1/71716       av_freep [480]
                0.00    0.00       1/1           ff_thread_init [993]
                0.00    0.00       1/2           av_codec_is_encoder [776]
                0.00    0.00       1/1           aac_decode_init [947]
                0.00    0.00       1/11929       av_get_channel_layout_nb_channels [499]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[964]    0.0    0.00    0.00       1         avpriv_float_dsp_init [964]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [968]
[965]    0.0    0.00    0.00       1         avpriv_mpeg4audio_get_config [965]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [968]
[966]    0.0    0.00    0.00       1         che_configure [966]
                0.00    0.00       1/29862       av_mallocz [487]
                0.00    0.00       1/1           ff_sbrdsp_init_arm [991]
                0.00    0.00       1/1           ff_sbrdsp_init [990]
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [971]
-----------------------------------------------
                0.00    0.00       1/1           InitAudioDec [318]
[967]    0.0    0.00    0.00       1         date_Init [967]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[968]    0.0    0.00    0.00       1         decode_audio_specific_config [968]
                0.00    0.00       1/1           avpriv_mpeg4audio_get_config [965]
                0.00    0.00       1/1           sniff_channel_order [1023]
                0.00    0.00       1/1           che_configure [966]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::InitUi() [248]
[969]    0.0    0.00    0.00       1         demux_GetParentInput [969]
                0.00    0.00       1/46          vlc_object_hold [586]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_close [946]
[970]    0.0    0.00    0.00       1         ff_aac_sbr_ctx_close [970]
                0.00    0.00       1/71716       av_freep [480]
                0.00    0.00       1/6           ff_fft_end [663]
                0.00    0.00       1/6           ff_mdct_end [666]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [966]
[971]    0.0    0.00    0.00       1         ff_aac_sbr_ctx_init [971]
                0.00    0.00       2/6           ff_mdct_init [667]
                0.00    0.00       1/1           ff_psdsp_init_arm [989]
                0.00    0.00       1/1           ff_psdsp_init [988]
                0.00    0.00       1/1           ff_ps_ctx_init [986]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[972]    0.0    0.00    0.00       1         ff_aac_sbr_init [972]
                0.00    0.00      10/178         ff_init_vlc_sparse [558]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[973]    0.0    0.00    0.00       1         ff_aac_tableinit [973]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[974]    0.0    0.00    0.00       1         ff_atrac3p_init_vlcs [974]
                0.00    0.00     105/105         build_canonical_huff [574]
                0.00    0.00      16/178         ff_init_vlc_sparse [558]
-----------------------------------------------
                0.00    0.00       1/1           atrac3_init_static_data [950]
[975]    0.0    0.00    0.00       1         ff_atrac_generate_tables [975]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[976]    0.0    0.00    0.00       1         ff_dsputil_static_init [976]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[977]    0.0    0.00    0.00       1         ff_float_dsp_init_arm [977]
                0.00    0.00       1/13          av_get_cpu_flags [629]
                0.00    0.00       1/1           ff_float_dsp_init_vfp [979]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[978]    0.0    0.00    0.00       1         ff_float_dsp_init_neon [978]
-----------------------------------------------
                0.00    0.00       1/1           ff_float_dsp_init_arm [977]
[979]    0.0    0.00    0.00       1         ff_float_dsp_init_vfp [979]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[980]    0.0    0.00    0.00       1         ff_fmt_convert_init [980]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[981]    0.0    0.00    0.00       1         ff_fmt_convert_init_arm [981]
                0.00    0.00       1/13          av_get_cpu_flags [629]
-----------------------------------------------
                0.00    0.00       1/1           av_get_cpu_flags [629]
[982]    0.0    0.00    0.00       1         ff_get_cpu_flags_arm [982]
-----------------------------------------------
                0.00    0.00       1/1           jpeg2000_init_static_data [1009]
[983]    0.0    0.00    0.00       1         ff_jpeg2000_init_tier1_luts [983]
-----------------------------------------------
                0.00    0.00       1/1           qdm2_init_static_data [1020]
[984]    0.0    0.00    0.00       1         ff_mpa_synth_init_float [984]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[985]    0.0    0.00    0.00       1         ff_mqc_init_context_tables [985]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [971]
[986]    0.0    0.00    0.00       1         ff_ps_ctx_init [986]
-----------------------------------------------
                0.00    0.00       1/1           aac_decode_init [947]
[987]    0.0    0.00    0.00       1         ff_ps_init [987]
                0.00    0.00      10/178         ff_init_vlc_sparse [558]
                0.00    0.00       3/4           make_filters_from_proto [699]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [971]
[988]    0.0    0.00    0.00       1         ff_psdsp_init [988]
-----------------------------------------------
                0.00    0.00       1/1           ff_aac_sbr_ctx_init [971]
[989]    0.0    0.00    0.00       1         ff_psdsp_init_arm [989]
                0.00    0.00       1/13          av_get_cpu_flags [629]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [966]
[990]    0.0    0.00    0.00       1         ff_sbrdsp_init [990]
-----------------------------------------------
                0.00    0.00       1/1           che_configure [966]
[991]    0.0    0.00    0.00       1         ff_sbrdsp_init_arm [991]
                0.00    0.00       1/13          av_get_cpu_flags [629]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[992]    0.0    0.00    0.00       1         ff_tak_init_crc [992]
                0.00    0.00       1/1           av_crc_init [952]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_open2 [963]
[993]    0.0    0.00    0.00       1         ff_thread_init [993]
-----------------------------------------------
                0.00    0.00       1/1           sws_setColorspaceDetails [837]
[994]    0.0    0.00    0.00       1         ff_yuv2rgb_c_init_tables [994]
                0.00    0.00       1/71922       av_free [479]
                0.00    0.00       1/25          av_pix_fmt_desc_get [603]
                0.00    0.00       1/30115       av_malloc [485]
-----------------------------------------------
                0.00    0.00       1/1           spu_Render [56]
[995]    0.0    0.00    0.00       1         filter_chain_AppendFromString [995]
                0.00    0.00       1/1           filter_chain_AppendFromStringInternal [996]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFromString [995]
[996]    0.0    0.00    0.00       1         filter_chain_AppendFromStringInternal [996]
-----------------------------------------------
                0.00    0.00       1/1           access_New [326]
[997]    0.0    0.00    0.00       1         get_path [997]
                0.00    0.00       1/4           make_path [700]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [220]
[998]    0.0    0.00    0.00       1         h264_get_profile_level [998]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [219]
[999]    0.0    0.00    0.00       1         input_SendEventProgramSelect [999]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramSelect [219]
[1000]   0.0    0.00    0.00       1         input_SendEventTeletextDel [1000]
-----------------------------------------------
                0.00    0.00       1/1           InputSourceInit [197]
[1001]   0.0    0.00    0.00       1         input_SplitMRL [1001]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_play [161]
[1002]   0.0    0.00    0.00       1         input_Start [1002]
                0.00    0.00       1/4           vlc_clone_attr [708]
                0.00    0.00       1/4           vlc_clone [707]
-----------------------------------------------
                0.00    0.00       1/1           EsOutControl <cycle 4> [115]
[1003]   0.0    0.00    0.00       1         input_clock_Delete [1003]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/1           EsOutProgramAdd [216]
[1004]   0.0    0.00    0.00       1         input_clock_New [1004]
                0.00    0.00       1/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       1/1           Create [163]
[1005]   0.0    0.00    0.00       1         input_resource_Hold [1005]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_new [172]
[1006]   0.0    0.00    0.00       1         input_resource_New [1006]
                0.00    0.00       2/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       1/1           Destructor [898]
[1007]   0.0    0.00    0.00       1         input_resource_Release [1007]
-----------------------------------------------
                0.00    0.00       1/1           OpenDecoder [220]
[1008]   0.0    0.00    0.00       1         jni_IsVideoPlayerActivityCreated [1008]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[1009]   0.0    0.00    0.00       1         jpeg2000_init_static_data [1009]
                0.00    0.00       1/1           ff_jpeg2000_init_tier1_luts [983]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[1010]   0.0    0.00    0.00       1         libvlc_media_event_manager [1010]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[1011]   0.0    0.00    0.00       1         libvlc_media_player_event_manager [1011]
-----------------------------------------------
                0.00    0.00       1/1           stopped_callback [12339]
[1012]   0.0    0.00    0.00       1         libvlc_media_subitems [1012]
-----------------------------------------------
                0.00    0.00       1/1           filter_chain_AppendFilterInternal [328]
[1013]   0.0    0.00    0.00       1         module_get_name [1013]
                0.00    0.00       1/46          module_get_object [585]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [200]
[1014]   0.0    0.00    0.00       1         picture_fifo_New [1014]
                0.00    0.00       1/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [1038]
[1015]   0.0    0.00    0.00       1         picture_pool_GetSize [1015]
-----------------------------------------------
                0.00    0.00       1/1           picture_pool_NewFromFormat [1017]
[1016]   0.0    0.00    0.00       1         picture_pool_New [1016]
                0.00    0.00       1/2           picture_pool_NewExtended [822]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [1038]
[1017]   0.0    0.00    0.00       1         picture_pool_NewFromFormat [1017]
                0.00    0.00      25/29          picture_NewFromFormat [599]
                0.00    0.00       1/1           picture_pool_New [1016]
-----------------------------------------------
                0.00    0.00       1/1           Thread [14]
[1018]   0.0    0.00    0.00       1         picture_pool_NonEmpty [1018]
-----------------------------------------------
                0.00    0.00       1/1           vout_InitWrapper [1038]
[1019]   0.0    0.00    0.00       1         picture_pool_Reserve [1019]
                0.00    0.00       1/3           Create [712]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[1020]   0.0    0.00    0.00       1         qdm2_init_static_data [1020]
                0.00    0.00      17/178         ff_init_vlc_sparse [558]
                0.00    0.00       1/1           ff_mpa_synth_init_float [984]
-----------------------------------------------
                0.00    0.00       1/1           input_ControlVarNavigation [297]
[1021]   0.0    0.00    0.00       1         secstotimestr [1021]
-----------------------------------------------
                0.00    0.00       1/1           Java_org_videolan_libvlc_LibVLC_playMRL [170]
[1022]   0.0    0.00    0.00       1         setLong [1022]
-----------------------------------------------
                0.00    0.00       1/1           decode_audio_specific_config [968]
[1023]   0.0    0.00    0.00       1         sniff_channel_order [1023]
-----------------------------------------------
                0.00    0.00       1/1           sws_init_context [834]
[1024]   0.0    0.00    0.00       1         sws_rgb2rgb_init [1024]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[1025]   0.0    0.00    0.00       1         tak_init_static_data [1025]
-----------------------------------------------
                                   1             TriggerCallback <cycle 5> [162]
[1026]   0.0    0.00    0.00       1         var_Copy <cycle 5> [1026]
                                   1             var_Set <cycle 5> [706]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [207]
[1027]   0.0    0.00    0.00       1         vlc_audio_replay_gain_MergeFromMeta [1027]
                0.00    0.00       7/7           vlc_meta_GetExtra [655]
-----------------------------------------------
                0.00    0.00       1/1           InitAudioDec [318]
[1028]   0.0    0.00    0.00       1         vlc_av_frame_Release [1028]
                0.00    0.00       1/30115       av_malloc [485]
-----------------------------------------------
                0.00    0.00       1/1           input_item_NewWithType [371]
[1029]   0.0    0.00    0.00       1         vlc_event_manager_init [1029]
                0.00    0.00       1/9403        vlc_mutex_init [505]
                0.00    0.00       1/5           vlc_mutex_init_recursive [685]
-----------------------------------------------
                0.00    0.00       1/1           EsOutAdd <cycle 4> [207]
[1030]   0.0    0.00    0.00       1         vlc_fourcc_GetCodecAudio [1030]
                0.00    0.00       1/6977        vlc_fourcc_GetCodec [514]
-----------------------------------------------
                0.00    0.00       1/1           Open [233]
[1031]   0.0    0.00    0.00       1         vlc_fourcc_GetCodecFromString [1031]
                0.00    0.00       1/6977        vlc_fourcc_GetCodec [514]
-----------------------------------------------
                0.00    0.00       1/1           ObjectKillChildrens [441]
[1032]   0.0    0.00    0.00       1         vlc_list_release [1032]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetPreparsed [420]
[1033]   0.0    0.00    0.00       1         vlc_meta_GetStatus [1033]
-----------------------------------------------
                0.00    0.00       1/1           input_item_SetPreparsed [420]
[1034]   0.0    0.00    0.00       1         vlc_meta_SetStatus [1034]
-----------------------------------------------
                0.00    0.00       1/1           libvlc_media_player_new [172]
[1035]   0.0    0.00    0.00       1         vlc_object_create [1035]
-----------------------------------------------
                0.00    0.00       1/1           FileOpen [391]
[1036]   0.0    0.00    0.00       1         vlc_open [1036]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStop [273]
[1037]   0.0    0.00    0.00       1         vout_EndWrapper [1037]
                0.00    0.00       2/3           picture_pool_Delete [720]
-----------------------------------------------
                0.00    0.00       1/1           ThreadStart [200]
[1038]   0.0    0.00    0.00       1         vout_InitWrapper [1038]
                0.00    0.00       1/6917        vout_IsDisplayFiltered [519]
                0.00    0.00       1/6917        Pool [518]
                0.00    0.00       1/1           picture_pool_Reserve [1019]
                0.00    0.00       1/1           picture_pool_NewFromFormat [1017]
                0.00    0.00       1/1           picture_pool_GetSize [1015]
-----------------------------------------------
                0.00    0.00       1/1           VoutDestructor [945]
[1039]   0.0    0.00    0.00       1         vout_control_Clean [1039]
                0.00    0.00       2/9352        vlc_cond_destroy [508]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [168]
[1040]   0.0    0.00    0.00       1         vout_control_Init [1040]
                0.00    0.00       2/9379        vlc_cond_init [506]
                0.00    0.00       1/9403        vlc_mutex_init [505]
-----------------------------------------------
                0.00    0.00       1/1           DisplayNew [269]
[1041]   0.0    0.00    0.00       1         vout_display_GetDefaultDisplaySize [1041]
-----------------------------------------------
                0.00    0.00       1/1           VoutDestructor [945]
[1042]   0.0    0.00    0.00       1         vout_snapshot_Clean [1042]
                0.00    0.00       1/9352        vlc_cond_destroy [508]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/1           vout_Request <cycle 4> [168]
[1043]   0.0    0.00    0.00       1         vout_snapshot_Init [1043]
                0.00    0.00       1/9403        vlc_mutex_init [505]
                0.00    0.00       1/9379        vlc_cond_init [506]
-----------------------------------------------
                0.00    0.00       1/1           avcodec_register [82]
[1044]   0.0    0.00    0.00       1         wmavoice_init_static_data [1044]
                0.00    0.00       1/178         ff_init_vlc_sparse [558]
-----------------------------------------------
                0.00    0.00       1/63794       libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [16537]
                0.00    0.00       2/63794       libmatroska::KaxSegmentUID::ValidateSize() const [16447]
                0.00    0.00       2/63794       libebml::EbmlDate::ValidateSize() const [16478]
                0.00    0.00       3/63794       libebml::EbmlFloat::ValidateSize() const [16347]
                0.00    0.00       3/63794       libmatroska::KaxSeekID::ValidateSize() const [16340]
                0.00    0.00       4/63794       matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
                0.00    0.00       6/63794       libebml::EbmlBinary::ValidateSize() const [16282]
                0.00    0.00       6/63794       libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [400]
                0.00    0.00       9/63794       libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [369]
                0.00    0.00      10/63794       matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00      24/63794       libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [345]
                0.00    0.00      24/63794       libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [346]
                0.00    0.00     132/63794       matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
                0.00    0.00     210/63794       libebml::EbmlUInteger::ValidateSize() const [16203]
                0.00    0.00     946/63794       libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [171]
                0.00    0.00    7666/63794       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
                0.00    0.00    7740/63794       matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.00    0.00    7962/63794       libmatroska::KaxInternalBlock::ValidateSize() const [16188]
                0.00    0.00   15132/63794       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
                0.00    0.00   23912/63794       libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [111]
[16166   0.0    0.00    0.00   63794         libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00   38601/38601       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
[16167   0.0    0.00    0.00   38601         libmatroska::DataBuffer::Size() [16167]
-----------------------------------------------
                0.00    0.00      15/29792       libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00     783/29792       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
                0.00    0.00    4597/29792       libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16199]
                0.00    0.00   24397/29792       libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16168   0.0    0.00    0.00   29792         libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16168]
-----------------------------------------------
                0.00    0.00   25735/25735       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
[16169   0.0    0.00    0.00   25735         libmatroska::DataBuffer::Buffer() [16169]
-----------------------------------------------
                0.00    0.00       1/15382       virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16518]
                0.00    0.00       1/15382       virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16519]
                0.00    0.00   15380/15382       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [87]
[16170   0.0    0.00    0.00   15382         virtual_chapter_c::getSubChapterbyTimecode(long long) [16170]
-----------------------------------------------
                0.00    0.00       1/15381       virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16518]
                0.00    0.00       1/15381       virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16519]
                0.00    0.00   15379/15381       virtual_segment_c::UpdateCurrentToChapter(demux_t&) [87]
[16171   0.0    0.00    0.00   15381         virtual_edition_c::getChapterbyTimecode(long long) [16171]
-----------------------------------------------
                0.00    0.00    7685/15373       matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.00    0.00    7688/15373       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
[16172   0.0    0.00    0.00   15373         matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) [16172]
-----------------------------------------------
                0.00    0.00   13330/13330       libmatroska::KaxInternalBlock::ReleaseFrames() [16185]
[16173   0.0    0.00    0.00   13330         libmatroska::DataBuffer::~DataBuffer() [16173]
-----------------------------------------------
                0.00    0.00   12875/12875       BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) [49]
[16174   0.0    0.00    0.00   12875         MemToBlock(unsigned char*, unsigned int, unsigned int) [16174]
                0.00    0.00   12878/25228       block_Alloc [491]
-----------------------------------------------
                0.00    0.00   10286/10286       libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
[16175   0.0    0.00    0.00   10286         std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [16175]
-----------------------------------------------
                0.00    0.00      37/8887        libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16237]
                0.00    0.00     644/8887        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00    8206/8887        libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [137]
[16176   0.0    0.00    0.00    8887         libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16176]
-----------------------------------------------
                0.00    0.00       1/8678        libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16503]
                0.00    0.00       1/8678        libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16500]
                0.00    0.00       1/8678        libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16506]
                0.00    0.00       1/8678        libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16497]
                0.00    0.00       2/8678        demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
                0.00    0.00       2/8678        libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16430]
                0.00    0.00       2/8678        libebml::EDocType::~EDocType() [16433]
                0.00    0.00       2/8678        libebml::EDocTypeVersion::~EDocTypeVersion() [16427]
                0.00    0.00       2/8678        libebml::EMaxSizeLength::~EMaxSizeLength() [16424]
                0.00    0.00       2/8678        libebml::EMaxIdLength::~EMaxIdLength() [16418]
                0.00    0.00       2/8678        libebml::EReadVersion::~EReadVersion() [16421]
                0.00    0.00       2/8678        libebml::EVersion::~EVersion() [16436]
                0.00    0.00       2/8678        libmatroska::KaxAudioChannels::~KaxAudioChannels() [16370]
                0.00    0.00       2/8678        libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16388]
                0.00    0.00       2/8678        libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16379]
                0.00    0.00       2/8678        libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16364]
                0.00    0.00       2/8678        libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16373]
                0.00    0.00       2/8678        libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16394]
                0.00    0.00       2/8678        libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16400]
                0.00    0.00       2/8678        libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16376]
                0.00    0.00       2/8678        libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16382]
                0.00    0.00       2/8678        libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16385]
                0.00    0.00       2/8678        libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16391]
                0.00    0.00       2/8678        libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16397]
                0.00    0.00       2/8678        libmatroska::KaxDuration::~KaxDuration() [16353]
                0.00    0.00       2/8678        libmatroska::KaxDateUTC::~KaxDateUTC() [16350]
                0.00    0.00       3/8678        libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16329]
                0.00    0.00       3/8678        libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16332]
                0.00    0.00       4/8678        libmatroska::KaxTrackType::~KaxTrackType() [16295]
                0.00    0.00       4/8678        libmatroska::KaxTrackUID::~KaxTrackUID() [16292]
                0.00    0.00       4/8678        libmatroska::KaxTrackNumber::~KaxTrackNumber() [16298]
                0.00    0.00       4/8678        libmatroska::KaxCodecID::~KaxCodecID() [16289]
                0.00    0.00       6/8678        libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16277]
                0.00    0.00       6/8678        libmatroska::KaxSeekPosition::~KaxSeekPosition() [16274]
                0.00    0.00       6/8678        libmatroska::KaxWritingApp::~KaxWritingApp() [16271]
                0.00    0.00       6/8678        libmatroska::KaxMuxingApp::~KaxMuxingApp() [16268]
                0.00    0.00      33/8678        libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16249]
                0.00    0.00      66/8678        libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16228]
                0.00    0.00      66/8678        libmatroska::KaxCueTrack::~KaxCueTrack() [16225]
                0.00    0.00      66/8678        libmatroska::KaxCueTime::~KaxCueTime() [16222]
                0.00    0.00     104/8678        libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16219]
                0.00    0.00     136/8678        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00    8113/8678        libebml::EbmlBinary::~EbmlBinary() [16183]
[16177   0.0    0.00    0.00    8678         libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/8674        libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16437]
                0.00    0.00       2/8674        libmatroska::KaxDateUTC::KaxDateUTC() [16349]
                0.00    0.00       3/8674        libebml::EbmlString::EbmlString(std::string const&) [16336]
                0.00    0.00       4/8674        libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16306]
                0.00    0.00       4/8674        libebml::EbmlString::EbmlString() [16302]
                0.00    0.00      12/8674        libebml::EbmlUnicodeString::EbmlUnicodeString() [16262]
                0.00    0.00      39/8674        libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
                0.00    0.00     137/8674        libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
                0.00    0.00     361/8674        libebml::EbmlUInteger::EbmlUInteger() [16201]
                0.00    0.00    8110/8674        libebml::EbmlBinary::EbmlBinary() [16184]
[16178   0.0    0.00    0.00    8674         libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
-----------------------------------------------
                0.00    0.00     322/8333        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00    8011/8333        EbmlParser::Get(int) [94]
[16179   0.0    0.00    0.00    8333         libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [16179]
-----------------------------------------------
                                 123             libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00    8311/8311        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16180   0.0    0.00    0.00    8311+123     libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00    7956/7956        libmatroska::KaxSimpleBlock::Create() [16189]
                0.00    0.00     242/242         libebml::GetEbmlGlobal_Context() [16202]
                0.00    0.00     123/123         libmatroska::GetKaxGlobal_Context() [16215]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::Create() [16217]
                0.00    0.00      52/52          libmatroska::KaxCluster::Create() [16231]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Create() [16247]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::Create() [16226]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::Create() [16223]
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::Create() [16244]
                0.00    0.00      33/66          libmatroska::KaxCueTime::Create() [16220]
                0.00    0.00      33/33          libmatroska::KaxCuePoint::Create() [16241]
                0.00    0.00       4/4           libebml::EbmlVoid::Create() [16303]
                0.00    0.00       3/4           libmatroska::KaxInfo::Create() [16299]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::Create() [16272]
                0.00    0.00       3/6           libmatroska::KaxSeekID::Create() [16278]
                0.00    0.00       3/3           libmatroska::KaxSeek::Create() [16333]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::Create() [16398]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::Create() [16365]
                0.00    0.00       2/4           libmatroska::KaxCodecID::Create() [16287]
                0.00    0.00       2/4           libmatroska::KaxTrackType::Create() [16293]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::Create() [16290]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::Create() [16296]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::Create() [16359]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::Create() [16357]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::Create() [16348]
                0.00    0.00       2/2           libmatroska::KaxDuration::Create() [16351]
                0.00    0.00       2/6           libmatroska::KaxWritingApp::Create() [16269]
                0.00    0.00       2/6           libmatroska::KaxMuxingApp::Create() [16266]
                0.00    0.00       2/6           libmatroska::KaxTimecodeScale::Create() [16275]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::Create() [16354]
                0.00    0.00       1/2           libmatroska::KaxCues::Create() [16401]
                0.00    0.00       1/2           libmatroska::KaxTracks::Create() [16405]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::Create() [16368]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::Create() [16389]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::Create() [16489]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::Create() [16495]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::Create() [16501]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::Create() [16498]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::Create() [16386]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::Create() [16377]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::Create() [16492]
                0.00    0.00       1/3           libmatroska::KaxTrackMinCache::Create() [16327]
                0.00    0.00       1/3           libmatroska::KaxTrackFlagLacing::Create() [16330]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::Create() [16428]
                0.00    0.00       1/2           libebml::EDocTypeVersion::Create() [16425]
                0.00    0.00       1/2           libebml::EDocType::Create() [16431]
                0.00    0.00       1/2           libebml::EMaxSizeLength::Create() [16422]
                0.00    0.00       1/2           libebml::EMaxIdLength::Create() [16416]
                0.00    0.00       1/2           libebml::EReadVersion::Create() [16419]
                0.00    0.00       1/2           libebml::EVersion::Create() [16434]
                                 123             libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
-----------------------------------------------
                0.00    0.00     277/8243        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00    7966/8243        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
[16181   0.0    0.00    0.00    8243         libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [16181]
-----------------------------------------------
                0.00    0.00     554/8234        libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00    7680/8234        EbmlParser::Get(int) [94]
[16182   0.0    0.00    0.00    8234         libmatroska::KaxSimpleBlock::Generic() const [16182]
-----------------------------------------------
                0.00    0.00       2/8119        libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16367]
                0.00    0.00       3/8119        libmatroska::KaxSegmentUID::~KaxSegmentUID() [16326]
                0.00    0.00       4/8119        libebml::EbmlVoid::~EbmlVoid() [16305]
                0.00    0.00       6/8119        libmatroska::KaxSeekID::~KaxSeekID() [16280]
                0.00    0.00     137/8119        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00    7967/8119        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16186]
[16183   0.0    0.00    0.00    8119         libebml::EbmlBinary::~EbmlBinary() [16183]
                0.00    0.00    8113/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/8109        libmatroska::KaxSegmentUID::KaxSegmentUID() [16358]
                0.00    0.00       2/8109        libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16366]
                0.00    0.00       4/8109        libebml::EbmlVoid::EbmlVoid() [16304]
                0.00    0.00       6/8109        libmatroska::KaxSeekID::KaxSeekID() [16279]
                0.00    0.00     137/8109        libebml::EbmlCrc32::EbmlCrc32() [16211]
                0.00    0.00    7958/8109        libmatroska::KaxSimpleBlock::Create() [16189]
[16184   0.0    0.00    0.00    8109         libebml::EbmlBinary::EbmlBinary() [16184]
                0.00    0.00    8110/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
-----------------------------------------------
                0.00    0.00    7967/7967        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16186]
[16185   0.0    0.00    0.00    7967         libmatroska::KaxInternalBlock::ReleaseFrames() [16185]
                0.00    0.00   13330/13330       libmatroska::DataBuffer::~DataBuffer() [16173]
-----------------------------------------------
                0.00    0.00    7966/7966        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16187]
[16186   0.0    0.00    0.00    7966         libmatroska::KaxInternalBlock::~KaxInternalBlock() [16186]
                0.00    0.00    7967/7967        libmatroska::KaxInternalBlock::ReleaseFrames() [16185]
                0.00    0.00    7967/8119        libebml::EbmlBinary::~EbmlBinary() [16183]
-----------------------------------------------
                0.00    0.00     277/7964        libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00    7687/7964        EbmlParser::Get(int) [94]
[16187   0.0    0.00    0.00    7964         libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16187]
                0.00    0.00    7966/7966        libmatroska::KaxInternalBlock::~KaxInternalBlock() [16186]
-----------------------------------------------
                0.00    0.00    7960/7960        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16188   0.0    0.00    0.00    7960         libmatroska::KaxInternalBlock::ValidateSize() const [16188]
                0.00    0.00    7962/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00    7956/7956        libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16189   0.0    0.00    0.00    7956         libmatroska::KaxSimpleBlock::Create() [16189]
                0.00    0.00    7958/8109        libebml::EbmlBinary::EbmlBinary() [16184]
-----------------------------------------------
                0.00    0.00    7952/7952        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
[16190   0.0    0.00    0.00    7952         std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [16190]
-----------------------------------------------
                0.00    0.00      12/7938        libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
                0.00    0.00    7926/7938        EbmlParser::Get(int) [94]
[16191   0.0    0.00    0.00    7938         libebml::EbmlElement::IsDummy() const [16191]
-----------------------------------------------
                0.00    0.00    7842/7842        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
[16192   0.0    0.00    0.00    7842         EbmlParser::GetLevel() const [16192]
-----------------------------------------------
                0.00    0.00       1/7794        matroska_segment_c::ParseCluster(bool) [160]
                0.00    0.00    7793/7794        EbmlParser::Get(int) [94]
[16193   0.0    0.00    0.00    7794         libmatroska::KaxCluster::Generic() const [16193]
-----------------------------------------------
                0.00    0.00    7740/7740        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
[16194   0.0    0.00    0.00    7740         EbmlParser::IsTopPresent(libebml::EbmlElement*) const [16194]
-----------------------------------------------
                0.00    0.00       1/7681        matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16522]
                0.00    0.00       1/7681        matroska_segment_c::ParseCluster(bool) [160]
                0.00    0.00    7679/7681        libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16196]
[16195   0.0    0.00    0.00    7681         libmatroska::KaxCluster::GlobalTimecode() const [16195]
-----------------------------------------------
                0.00    0.00    7675/7675        libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16198]
[16196   0.0    0.00    0.00    7675         libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16196]
                0.00    0.00    7679/7681        libmatroska::KaxCluster::GlobalTimecode() const [16195]
-----------------------------------------------
                0.00    0.00    7675/7675        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
[16197   0.0    0.00    0.00    7675         libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [16197]
-----------------------------------------------
                0.00    0.00    7673/7673        matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
[16198   0.0    0.00    0.00    7673         libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [16198]
                0.00    0.00    7675/7675        libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [16196]
-----------------------------------------------
                0.00    0.00    4597/4597        libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [110]
[16199   0.0    0.00    0.00    4597         libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [16199]
                0.00    0.00    4597/29792       libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [16168]
-----------------------------------------------
                0.00    0.00    1282/1282        demux_Control [544]
[16200   0.0    0.00    0.00    1282         Control(demux_t*, int, std::__va_list) [16200]
                0.00    0.00       1/2           vlc_meta_Merge [869]
-----------------------------------------------
                0.00    0.00       1/361         libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16499]
                0.00    0.00       1/361         libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16502]
                0.00    0.00       2/361         libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16399]
                0.00    0.00       2/361         libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16378]
                0.00    0.00       2/361         libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16387]
                0.00    0.00       4/361         libmatroska::KaxTrackNumber::KaxTrackNumber() [16297]
                0.00    0.00       4/361         libmatroska::KaxTrackUID::KaxTrackUID() [16291]
                0.00    0.00       4/361         libmatroska::KaxTrackType::KaxTrackType() [16294]
                0.00    0.00       6/361         libmatroska::KaxSeekPosition::KaxSeekPosition() [16273]
                0.00    0.00      33/361         libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16248]
                0.00    0.00      66/361         libmatroska::KaxCueTime::KaxCueTime() [16221]
                0.00    0.00      66/361         libmatroska::KaxCueTrack::KaxCueTrack() [16224]
                0.00    0.00      66/361         libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16227]
                0.00    0.00     104/361         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16218]
[16201   0.0    0.00    0.00     361         libebml::EbmlUInteger::EbmlUInteger() [16201]
                0.00    0.00     361/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
-----------------------------------------------
                0.00    0.00     242/242         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16202   0.0    0.00    0.00     242         libebml::GetEbmlGlobal_Context() [16202]
-----------------------------------------------
                0.00    0.00     210/210         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16203   0.0    0.00    0.00     210         libebml::EbmlUInteger::ValidateSize() const [16203]
                0.00    0.00     210/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00     207/207         libebml::EbmlMaster::ProcessMandatory() [16207]
[16204   0.0    0.00    0.00     207         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16204]
                0.00    0.00     188/201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16205]
-----------------------------------------------
                0.00    0.00      13/201         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00     188/201         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16204]
[16205   0.0    0.00    0.00     201         std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [16205]
-----------------------------------------------
                0.00    0.00       3/152         libebml::EbmlString::EbmlString(std::string const&) [16336]
                0.00    0.00      12/152         libebml::EbmlUnicodeString::EbmlUnicodeString() [16262]
                0.00    0.00     137/152         libebml::EbmlCrc32::EbmlCrc32() [16211]
[16206   0.0    0.00    0.00     152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16206]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
[16207   0.0    0.00    0.00     137         libebml::EbmlMaster::ProcessMandatory() [16207]
                0.00    0.00     207/207         libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [16204]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::Create() [16217]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::Create() [16226]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::Create() [16223]
                0.00    0.00      33/66          libmatroska::KaxCueTime::Create() [16220]
                0.00    0.00       4/6           libmatroska::KaxWritingApp::Create() [16269]
                0.00    0.00       4/6           libmatroska::KaxMuxingApp::Create() [16266]
                0.00    0.00       4/6           libmatroska::KaxTimecodeScale::Create() [16275]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::Create() [16272]
                0.00    0.00       3/6           libmatroska::KaxSeekID::Create() [16278]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::Create() [16362]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::Create() [16371]
                0.00    0.00       2/4           libmatroska::KaxCodecID::Create() [16287]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::Create() [16392]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::Create() [16395]
                0.00    0.00       2/3           libmatroska::KaxTrackMinCache::Create() [16327]
                0.00    0.00       2/3           libmatroska::KaxTrackFlagLacing::Create() [16330]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::Create() [16374]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::Create() [16380]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::Create() [16383]
                0.00    0.00       2/4           libmatroska::KaxTrackType::Create() [16293]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::Create() [16290]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::Create() [16296]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::Create() [16368]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::Create() [16389]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::Create() [16386]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::Create() [16377]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::Create() [16504]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::Create() [16428]
                0.00    0.00       1/2           libebml::EDocTypeVersion::Create() [16425]
                0.00    0.00       1/2           libebml::EDocType::Create() [16431]
                0.00    0.00       1/2           libebml::EMaxSizeLength::Create() [16422]
                0.00    0.00       1/2           libebml::EMaxIdLength::Create() [16416]
                0.00    0.00       1/2           libebml::EReadVersion::Create() [16419]
                0.00    0.00       1/2           libebml::EVersion::Create() [16434]
-----------------------------------------------
                0.00    0.00       1/137         libebml::EbmlHead::EbmlHead() [16543]
                0.00    0.00       1/137         libmatroska::KaxSegment::KaxSegment() [16487]
                0.00    0.00       1/137         libmatroska::KaxTrackVideo::KaxTrackVideo() [16493]
                0.00    0.00       1/137         libmatroska::KaxTrackAudio::KaxTrackAudio() [16490]
                0.00    0.00       2/137         libmatroska::KaxSeekHead::KaxSeekHead() [16355]
                0.00    0.00       2/137         libmatroska::KaxTracks::KaxTracks() [16406]
                0.00    0.00       2/137         libmatroska::KaxCues::KaxCues() [16402]
                0.00    0.00       2/137         libmatroska::KaxTrackEntry::KaxTrackEntry() [16360]
                0.00    0.00       3/137         libmatroska::KaxSeek::KaxSeek() [16334]
                0.00    0.00       4/137         libmatroska::KaxInfo::KaxInfo() [16300]
                0.00    0.00      33/137         libmatroska::KaxCuePoint::KaxCuePoint() [16242]
                0.00    0.00      33/137         libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16245]
                0.00    0.00      52/137         libmatroska::KaxCluster::KaxCluster() [16232]
[16208   0.0    0.00    0.00     137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
                0.00    0.00     137/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
                0.00    0.00     137/137         libebml::EbmlCrc32::EbmlCrc32() [16211]
                0.00    0.00     137/137         libebml::EbmlMaster::ProcessMandatory() [16207]
-----------------------------------------------
                                   1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16491]
                                   1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16494]
                                   2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16361]
                0.00    0.00       1/133         libebml::EbmlHead::~EbmlHead() [16544]
                0.00    0.00       1/133         libmatroska::KaxSegment::~KaxSegment() [16488]
                0.00    0.00       2/133         libmatroska::KaxCues::~KaxCues() [16404]
                0.00    0.00       2/133         libmatroska::KaxSeekHead::~KaxSeekHead() [16356]
                0.00    0.00       2/133         libmatroska::KaxTracks::~KaxTracks() [16407]
                0.00    0.00       3/133         libmatroska::KaxSeek::~KaxSeek() [16335]
                0.00    0.00       4/133         libmatroska::KaxInfo::~KaxInfo() [16301]
                0.00    0.00      33/133         libmatroska::KaxCuePoint::~KaxCuePoint() [16243]
                0.00    0.00      33/133         libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16246]
                0.00    0.00      52/133         libmatroska::KaxCluster::~KaxCluster() [16233]
[16209   0.0    0.00    0.00     137         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00     277/7964        libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [16187]
                0.00    0.00     137/8119        libebml::EbmlBinary::~EbmlBinary() [16183]
                0.00    0.00     136/8678        libebml::EbmlElement::~EbmlElement() [16177]
                0.00    0.00      52/104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16219]
                0.00    0.00      33/66          libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16228]
                0.00    0.00      33/66          libmatroska::KaxCueTrack::~KaxCueTrack() [16225]
                0.00    0.00      33/66          libmatroska::KaxCueTime::~KaxCueTime() [16222]
                0.00    0.00       4/6           libmatroska::KaxWritingApp::~KaxWritingApp() [16271]
                0.00    0.00       4/6           libmatroska::KaxMuxingApp::~KaxMuxingApp() [16268]
                0.00    0.00       4/6           libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16277]
                0.00    0.00       3/6           libmatroska::KaxSeekPosition::~KaxSeekPosition() [16274]
                0.00    0.00       3/6           libmatroska::KaxSeekID::~KaxSeekID() [16280]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16400]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16367]
                0.00    0.00       2/4           libmatroska::KaxCodecID::~KaxCodecID() [16289]
                0.00    0.00       2/4           libmatroska::KaxTrackType::~KaxTrackType() [16295]
                0.00    0.00       2/4           libmatroska::KaxTrackUID::~KaxTrackUID() [16292]
                0.00    0.00       2/4           libmatroska::KaxTrackNumber::~KaxTrackNumber() [16298]
                0.00    0.00       2/3           libmatroska::KaxSegmentUID::~KaxSegmentUID() [16326]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::~KaxDateUTC() [16350]
                0.00    0.00       2/2           libmatroska::KaxDuration::~KaxDuration() [16353]
                0.00    0.00       1/2           libmatroska::KaxAudioChannels::~KaxAudioChannels() [16370]
                0.00    0.00       1/2           libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16391]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16497]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16503]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16500]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16388]
                0.00    0.00       1/2           libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16379]
                0.00    0.00       1/3           libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16329]
                0.00    0.00       1/3           libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16332]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16430]
                0.00    0.00       1/2           libebml::EDocTypeVersion::~EDocTypeVersion() [16427]
                0.00    0.00       1/2           libebml::EDocType::~EDocType() [16433]
                0.00    0.00       1/2           libebml::EMaxSizeLength::~EMaxSizeLength() [16424]
                0.00    0.00       1/2           libebml::EMaxIdLength::~EMaxIdLength() [16418]
                0.00    0.00       1/2           libebml::EReadVersion::~EReadVersion() [16421]
                0.00    0.00       1/2           libebml::EVersion::~EVersion() [16436]
                                   2             libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16361]
                                   1             libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16491]
                                   1             libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16494]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlCrc32::EbmlCrc32() [16211]
[16210   0.0    0.00    0.00     137         libebml::EbmlCrc32::ResetCRC() [16210]
-----------------------------------------------
                0.00    0.00     137/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
[16211   0.0    0.00    0.00     137         libebml::EbmlCrc32::EbmlCrc32() [16211]
                0.00    0.00     137/8109        libebml::EbmlBinary::EbmlBinary() [16184]
                0.00    0.00     137/137         libebml::EbmlCrc32::ResetCRC() [16210]
                0.00    0.00     137/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16206]
-----------------------------------------------
                0.00    0.00       5/137         libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00     132/137         libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16212   0.0    0.00    0.00     137         libebml::EbmlMaster::ValidateSize() const [16212]
-----------------------------------------------
                0.00    0.00     132/132         EbmlParser::Get(int) [94]
[16213   0.0    0.00    0.00     132         libmatroska::KaxCueTrackPositions::Generic() const [16213]
-----------------------------------------------
                0.00    0.00       1/127         matroska_segment_c::ParseCluster(bool) [160]
                0.00    0.00       1/127         matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
                0.00    0.00       1/127         demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
                0.00    0.00       3/127         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00       4/127         matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
                0.00    0.00      51/127         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.00    0.00      66/127         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
[16214   0.0    0.00    0.00     127         libebml::EbmlUInteger::operator unsigned long long() const [16214]
-----------------------------------------------
                0.00    0.00     123/123         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16215   0.0    0.00    0.00     123         libmatroska::GetKaxGlobal_Context() [16215]
-----------------------------------------------
                0.00    0.00       1/121         matroska_segment_c::Preload() [133]
                0.00    0.00       3/121         matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00      51/121         matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
                0.00    0.00      66/121         matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
[16216   0.0    0.00    0.00     121         EbmlParser::Down() [16216]
-----------------------------------------------
                0.00    0.00      52/104         libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00      52/104         libebml::EbmlMaster::ProcessMandatory() [16207]
[16217   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::Create() [16217]
                0.00    0.00     104/104         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16218]
-----------------------------------------------
                0.00    0.00     104/104         libmatroska::KaxClusterTimecode::Create() [16217]
[16218   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::KaxClusterTimecode() [16218]
                0.00    0.00     104/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       1/104         libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00      51/104         EbmlParser::Get(int) [94]
                0.00    0.00      52/104         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16219   0.0    0.00    0.00     104         libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [16219]
                0.00    0.00     104/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16207]
[16220   0.0    0.00    0.00      66         libmatroska::KaxCueTime::Create() [16220]
                0.00    0.00      66/66          libmatroska::KaxCueTime::KaxCueTime() [16221]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueTime::Create() [16220]
[16221   0.0    0.00    0.00      66         libmatroska::KaxCueTime::KaxCueTime() [16221]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [94]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16222   0.0    0.00    0.00      66         libmatroska::KaxCueTime::~KaxCueTime() [16222]
                0.00    0.00      66/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16207]
[16223   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::Create() [16223]
                0.00    0.00      66/66          libmatroska::KaxCueTrack::KaxCueTrack() [16224]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueTrack::Create() [16223]
[16224   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::KaxCueTrack() [16224]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [94]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16225   0.0    0.00    0.00      66         libmatroska::KaxCueTrack::~KaxCueTrack() [16225]
                0.00    0.00      66/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00      33/66          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00      33/66          libebml::EbmlMaster::ProcessMandatory() [16207]
[16226   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::Create() [16226]
                0.00    0.00      66/66          libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16227]
-----------------------------------------------
                0.00    0.00      66/66          libmatroska::KaxCueClusterPosition::Create() [16226]
[16227   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [16227]
                0.00    0.00      66/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00      33/66          EbmlParser::Get(int) [94]
                0.00    0.00      33/66          libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16228   0.0    0.00    0.00      66         libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [16228]
                0.00    0.00      66/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00      66/66          EbmlParser::Get(int) [94]
[16229   0.0    0.00    0.00      66         libmatroska::KaxCuePoint::Generic() const [16229]
-----------------------------------------------
                0.00    0.00       2/53          libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00      51/53          EbmlParser::Get(int) [94]
[16230   0.0    0.00    0.00      53         libmatroska::KaxClusterTimecode::Generic() const [16230]
-----------------------------------------------
                0.00    0.00      52/52          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16231   0.0    0.00    0.00      52         libmatroska::KaxCluster::Create() [16231]
                0.00    0.00      52/52          libmatroska::KaxCluster::KaxCluster() [16232]
-----------------------------------------------
                0.00    0.00      52/52          libmatroska::KaxCluster::Create() [16231]
[16232   0.0    0.00    0.00      52         libmatroska::KaxCluster::KaxCluster() [16232]
                0.00    0.00      52/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       1/52          EbmlParser::~EbmlParser() [16285]
                0.00    0.00      51/52          EbmlParser::Get(int) [94]
[16233   0.0    0.00    0.00      52         libmatroska::KaxCluster::~KaxCluster() [16233]
                0.00    0.00      52/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       8/41          matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
                0.00    0.00      33/41          matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
[16234   0.0    0.00    0.00      41         libebml::EbmlUInteger::operator unsigned short() const [16234]
-----------------------------------------------
                0.00    0.00       1/39          libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16505]
                0.00    0.00       2/39          libebml::EVersion::EVersion() [16435]
                0.00    0.00       2/39          libebml::EReadVersion::EReadVersion() [16420]
                0.00    0.00       2/39          libebml::EMaxIdLength::EMaxIdLength() [16417]
                0.00    0.00       2/39          libebml::EMaxSizeLength::EMaxSizeLength() [16423]
                0.00    0.00       2/39          libebml::EDocTypeVersion::EDocTypeVersion() [16426]
                0.00    0.00       2/39          libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16429]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16384]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16381]
                0.00    0.00       2/39          libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16375]
                0.00    0.00       2/39          libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16393]
                0.00    0.00       2/39          libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16372]
                0.00    0.00       2/39          libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16363]
                0.00    0.00       2/39          libmatroska::KaxAudioChannels::KaxAudioChannels() [16369]
                0.00    0.00       3/39          libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16331]
                0.00    0.00       3/39          libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16328]
                0.00    0.00       6/39          libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16276]
[16235   0.0    0.00    0.00      39         libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
                0.00    0.00      39/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
-----------------------------------------------
                0.00    0.00       1/37          TagLib::String::operator=(TagLib::String const&) [16532]
                0.00    0.00       1/37          TagLib::FileRef::operator=(TagLib::FileRef const&) [16536]
                0.00    0.00       2/37          TagLib::FileRef::~FileRef() [16414]
                0.00    0.00      33/37          TagLib::String::~String() [16251]
[16236   0.0    0.00    0.00      37         TagLib::RefCounter::deref() [16236]
-----------------------------------------------
                0.00    0.00       1/37          EbmlParser::Reset(demux_t*) [373]
                0.00    0.00       3/37          matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
                0.00    0.00      33/37          matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
[16237   0.0    0.00    0.00      37         libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16237]
                0.00    0.00      37/37          libmatroska::KaxSegment::operator libebml::EbmlId const&() const [16238]
                0.00    0.00      37/8887        libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [16176]
-----------------------------------------------
                0.00    0.00      37/37          libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [16237]
[16238   0.0    0.00    0.00      37         libmatroska::KaxSegment::operator libebml::EbmlId const&() const [16238]
-----------------------------------------------
                0.00    0.00       1/35          TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16531]
                0.00    0.00       1/35          TagLib::FileRef::FileRef() [16535]
                0.00    0.00       1/35          TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16534]
                0.00    0.00       2/35          TagLib::String::String() [16411]
                0.00    0.00      30/35          TagLib::String::String(char const*, TagLib::String::Type) [16257]
[16239   0.0    0.00    0.00      35         TagLib::RefCounter::RefCounter() [16239]
-----------------------------------------------
                0.00    0.00       2/35          TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16412]
                0.00    0.00      33/35          TagLib::String::StringPrivate::~StringPrivate() [16250]
[16240   0.0    0.00    0.00      35         TagLib::RefCounter::~RefCounter() [16240]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16241   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::Create() [16241]
                0.00    0.00      33/33          libmatroska::KaxCuePoint::KaxCuePoint() [16242]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCuePoint::Create() [16241]
[16242   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::KaxCuePoint() [16242]
                0.00    0.00      33/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       1/33          EbmlParser::~EbmlParser() [16285]
                0.00    0.00      32/33          EbmlParser::Get(int) [94]
[16243   0.0    0.00    0.00      33         libmatroska::KaxCuePoint::~KaxCuePoint() [16243]
                0.00    0.00      33/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16244   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::Create() [16244]
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16245]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCueTrackPositions::Create() [16244]
[16245   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [16245]
                0.00    0.00      33/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       1/33          EbmlParser::~EbmlParser() [16285]
                0.00    0.00      32/33          EbmlParser::Get(int) [94]
[16246   0.0    0.00    0.00      33         libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16246]
                0.00    0.00      33/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00      33/33          libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16247   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::Create() [16247]
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16248]
-----------------------------------------------
                0.00    0.00      33/33          libmatroska::KaxCueRelativePosition::Create() [16247]
[16248   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [16248]
                0.00    0.00      33/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [94]
[16249   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [16249]
                0.00    0.00      33/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/33          TagLib::String::operator=(TagLib::String const&) [16532]
                0.00    0.00      32/33          TagLib::String::~String() [16251]
[16250   0.0    0.00    0.00      33         TagLib::String::StringPrivate::~StringPrivate() [16250]
                0.00    0.00      33/35          TagLib::RefCounter::~RefCounter() [16240]
-----------------------------------------------
                0.00    0.00      33/33          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16251   0.0    0.00    0.00      33         TagLib::String::~String() [16251]
                0.00    0.00      33/37          TagLib::RefCounter::deref() [16236]
                0.00    0.00      32/33          TagLib::String::StringPrivate::~StringPrivate() [16250]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [94]
[16252   0.0    0.00    0.00      33         libmatroska::KaxCueTime::Generic() const [16252]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [94]
[16253   0.0    0.00    0.00      33         libmatroska::KaxCueTrack::Generic() const [16253]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [94]
[16254   0.0    0.00    0.00      33         libmatroska::KaxCueClusterPosition::Generic() const [16254]
-----------------------------------------------
                0.00    0.00      33/33          EbmlParser::Get(int) [94]
[16255   0.0    0.00    0.00      33         libmatroska::KaxCueRelativePosition::Generic() const [16255]
-----------------------------------------------
                0.00    0.00      30/30          TagLib::String::String(char const*, TagLib::String::Type) [16257]
[16256   0.0    0.00    0.00      30         TagLib::String::copyFromLatin1(char const*, unsigned int) [16256]
-----------------------------------------------
                0.00    0.00      30/30          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16257   0.0    0.00    0.00      30         TagLib::String::String(char const*, TagLib::String::Type) [16257]
                0.00    0.00      30/35          TagLib::RefCounter::RefCounter() [16239]
                0.00    0.00      30/30          TagLib::String::copyFromLatin1(char const*, unsigned int) [16256]
-----------------------------------------------
                0.00    0.00      28/28          TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16258   0.0    0.00    0.00      28         TagLib::String::operator==(TagLib::String const&) const [16258]
                0.00    0.00      21/25          wmemcmp [607]
-----------------------------------------------
                0.00    0.00       2/26          matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
                0.00    0.00      12/26          libmatroska::KaxWritingApp::~KaxWritingApp() [16271]
                0.00    0.00      12/26          libmatroska::KaxMuxingApp::~KaxMuxingApp() [16268]
[16259   0.0    0.00    0.00      26         libebml::UTFstring::~UTFstring() [16259]
-----------------------------------------------
                0.00    0.00      24/24          libebml::EbmlUnicodeString::EbmlUnicodeString() [16262]
[16260   0.0    0.00    0.00      24         libebml::UTFstring::UTFstring() [16260]
-----------------------------------------------
                0.00    0.00       1/18          matroska_segment_c::ParseCluster(bool) [160]
                0.00    0.00       1/18          matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [156]
                0.00    0.00       1/18          matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
                0.00    0.00       1/18          demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
                0.00    0.00       5/18          EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) [253]
                0.00    0.00       9/18          libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16261   0.0    0.00    0.00      18         libebml::EbmlMaster::GetSize() const [16261]
-----------------------------------------------
                0.00    0.00       6/12          libmatroska::KaxMuxingApp::KaxMuxingApp() [16267]
                0.00    0.00       6/12          libmatroska::KaxWritingApp::KaxWritingApp() [16270]
[16262   0.0    0.00    0.00      12         libebml::EbmlUnicodeString::EbmlUnicodeString() [16262]
                0.00    0.00      24/24          libebml::UTFstring::UTFstring() [16260]
                0.00    0.00      12/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
                0.00    0.00      12/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16206]
-----------------------------------------------
                0.00    0.00      10/10          EbmlParser::Get(int) [94]
[16263   0.0    0.00    0.00      10         libmatroska::KaxSegment::Generic() const [16263]
-----------------------------------------------
                0.00    0.00      10/10          EbmlParser::Get(int) [94]
[16264   0.0    0.00    0.00      10         libmatroska::KaxSeek::Generic() const [16264]
-----------------------------------------------
                0.00    0.00       8/8           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
[16265   0.0    0.00    0.00       8         libebml::EbmlUInteger::operator unsigned int() const [16265]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16207]
[16266   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::Create() [16266]
                0.00    0.00       6/6           libmatroska::KaxMuxingApp::KaxMuxingApp() [16267]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxMuxingApp::Create() [16266]
[16267   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::KaxMuxingApp() [16267]
                0.00    0.00       6/12          libebml::EbmlUnicodeString::EbmlUnicodeString() [16262]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16268   0.0    0.00    0.00       6         libmatroska::KaxMuxingApp::~KaxMuxingApp() [16268]
                0.00    0.00      12/26          libebml::UTFstring::~UTFstring() [16259]
                0.00    0.00       6/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16207]
[16269   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::Create() [16269]
                0.00    0.00       6/6           libmatroska::KaxWritingApp::KaxWritingApp() [16270]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxWritingApp::Create() [16269]
[16270   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::KaxWritingApp() [16270]
                0.00    0.00       6/12          libebml::EbmlUnicodeString::EbmlUnicodeString() [16262]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16271   0.0    0.00    0.00       6         libmatroska::KaxWritingApp::~KaxWritingApp() [16271]
                0.00    0.00      12/26          libebml::UTFstring::~UTFstring() [16259]
                0.00    0.00       6/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       3/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       3/6           libebml::EbmlMaster::ProcessMandatory() [16207]
[16272   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::Create() [16272]
                0.00    0.00       6/6           libmatroska::KaxSeekPosition::KaxSeekPosition() [16273]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxSeekPosition::Create() [16272]
[16273   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::KaxSeekPosition() [16273]
                0.00    0.00       6/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       3/6           EbmlParser::Get(int) [94]
                0.00    0.00       3/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16274   0.0    0.00    0.00       6         libmatroska::KaxSeekPosition::~KaxSeekPosition() [16274]
                0.00    0.00       6/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       4/6           libebml::EbmlMaster::ProcessMandatory() [16207]
[16275   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::Create() [16275]
                0.00    0.00       6/6           libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16276]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxTimecodeScale::Create() [16275]
[16276   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::KaxTimecodeScale() [16276]
                0.00    0.00       6/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       2/6           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       4/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16277   0.0    0.00    0.00       6         libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [16277]
                0.00    0.00       6/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       3/6           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       3/6           libebml::EbmlMaster::ProcessMandatory() [16207]
[16278   0.0    0.00    0.00       6         libmatroska::KaxSeekID::Create() [16278]
                0.00    0.00       6/6           libmatroska::KaxSeekID::KaxSeekID() [16279]
-----------------------------------------------
                0.00    0.00       6/6           libmatroska::KaxSeekID::Create() [16278]
[16279   0.0    0.00    0.00       6         libmatroska::KaxSeekID::KaxSeekID() [16279]
                0.00    0.00       6/8109        libebml::EbmlBinary::EbmlBinary() [16184]
-----------------------------------------------
                0.00    0.00       3/6           EbmlParser::Get(int) [94]
                0.00    0.00       3/6           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16280   0.0    0.00    0.00       6         libmatroska::KaxSeekID::~KaxSeekID() [16280]
                0.00    0.00       6/8119        libebml::EbmlBinary::~EbmlBinary() [16183]
-----------------------------------------------
                0.00    0.00       3/6           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00       3/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16281   0.0    0.00    0.00       6         libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [16281]
-----------------------------------------------
                0.00    0.00       6/6           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16282   0.0    0.00    0.00       6         libebml::EbmlBinary::ValidateSize() const [16282]
                0.00    0.00       6/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       1/6           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
                0.00    0.00       5/6           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
[16283   0.0    0.00    0.00       6         libebml::EbmlString::operator std::string const&() const [16283]
-----------------------------------------------
                                   2             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [374]
                                   3             matroska_segment_c::Select(long long) <cycle 4> [323]
[16284   0.0    0.00    0.00       5         es_out_Control(es_out_t*, int, ...) <cycle 4> [16284]
                                   5             Control <cycle 4> [122]
-----------------------------------------------
                0.00    0.00       1/5           matroska_segment_c::LoadCues(libmatroska::KaxCues*) [144]
                0.00    0.00       1/5           matroska_segment_c::Select(long long) <cycle 4> [323]
                0.00    0.00       1/5           matroska_segment_c::UnSelect() [311]
                0.00    0.00       1/5           matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [374]
                0.00    0.00       1/5           matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) [134]
[16285   0.0    0.00    0.00       5         EbmlParser::~EbmlParser() [16285]
                0.00    0.00       1/2           libmatroska::KaxCues::~KaxCues() [16403]
                0.00    0.00       1/52          libmatroska::KaxCluster::~KaxCluster() [16233]
                0.00    0.00       1/33          libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [16246]
                0.00    0.00       1/33          libmatroska::KaxCuePoint::~KaxCuePoint() [16243]
                0.00    0.00       1/4           libmatroska::KaxInfo::~KaxInfo() [16301]
-----------------------------------------------
                0.00    0.00       5/5           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
[16286   0.0    0.00    0.00       5         libebml::EbmlMaster::SetSizeInfinite(bool) [16286]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16207]
[16287   0.0    0.00    0.00       4         libmatroska::KaxCodecID::Create() [16287]
                0.00    0.00       4/4           libmatroska::KaxCodecID::KaxCodecID() [16288]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxCodecID::Create() [16287]
[16288   0.0    0.00    0.00       4         libmatroska::KaxCodecID::KaxCodecID() [16288]
                0.00    0.00       4/4           libebml::EbmlString::EbmlString() [16302]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16289   0.0    0.00    0.00       4         libmatroska::KaxCodecID::~KaxCodecID() [16289]
                0.00    0.00       4/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16207]
[16290   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::Create() [16290]
                0.00    0.00       4/4           libmatroska::KaxTrackUID::KaxTrackUID() [16291]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackUID::Create() [16290]
[16291   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::KaxTrackUID() [16291]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16292   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::~KaxTrackUID() [16292]
                0.00    0.00       4/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16207]
[16293   0.0    0.00    0.00       4         libmatroska::KaxTrackType::Create() [16293]
                0.00    0.00       4/4           libmatroska::KaxTrackType::KaxTrackType() [16294]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackType::Create() [16293]
[16294   0.0    0.00    0.00       4         libmatroska::KaxTrackType::KaxTrackType() [16294]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16295   0.0    0.00    0.00       4         libmatroska::KaxTrackType::~KaxTrackType() [16295]
                0.00    0.00       4/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       2/4           libebml::EbmlMaster::ProcessMandatory() [16207]
[16296   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::Create() [16296]
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::KaxTrackNumber() [16297]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxTrackNumber::Create() [16296]
[16297   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::KaxTrackNumber() [16297]
                0.00    0.00       4/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       2/4           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       2/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16298   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::~KaxTrackNumber() [16298]
                0.00    0.00       4/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/4           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00       3/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16299   0.0    0.00    0.00       4         libmatroska::KaxInfo::Create() [16299]
                0.00    0.00       4/4           libmatroska::KaxInfo::KaxInfo() [16300]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxInfo::Create() [16299]
[16300   0.0    0.00    0.00       4         libmatroska::KaxInfo::KaxInfo() [16300]
                0.00    0.00       4/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       1/4           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00       1/4           EbmlParser::~EbmlParser() [16285]
                0.00    0.00       1/4           EbmlParser::Reset(demux_t*) [373]
                0.00    0.00       1/4           EbmlParser::Get(int) [94]
[16301   0.0    0.00    0.00       4         libmatroska::KaxInfo::~KaxInfo() [16301]
                0.00    0.00       4/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       4/4           libmatroska::KaxCodecID::KaxCodecID() [16288]
[16302   0.0    0.00    0.00       4         libebml::EbmlString::EbmlString() [16302]
                0.00    0.00       4/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16303   0.0    0.00    0.00       4         libebml::EbmlVoid::Create() [16303]
                0.00    0.00       4/4           libebml::EbmlVoid::EbmlVoid() [16304]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlVoid::Create() [16303]
[16304   0.0    0.00    0.00       4         libebml::EbmlVoid::EbmlVoid() [16304]
                0.00    0.00       4/8109        libebml::EbmlBinary::EbmlBinary() [16184]
-----------------------------------------------
                0.00    0.00       4/4           EbmlParser::Get(int) [94]
[16305   0.0    0.00    0.00       4         libebml::EbmlVoid::~EbmlVoid() [16305]
                0.00    0.00       4/8119        libebml::EbmlBinary::~EbmlBinary() [16183]
-----------------------------------------------
                0.00    0.00       2/4           libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16396]
                0.00    0.00       2/4           libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16390]
[16306   0.0    0.00    0.00       4         libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16306]
                0.00    0.00       4/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [346]
[16307   0.0    0.00    0.00       4         libebml::UTFstring::UpdateFromUTF8() [16307]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [346]
[16308   0.0    0.00    0.00       4         libebml::UTFstring::SetUTF8(std::string const&) [16308]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16309   0.0    0.00    0.00       4         libmatroska::KaxCodecID::Generic() const [16309]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16310   0.0    0.00    0.00       4         libmatroska::KaxDateUTC::Generic() const [16310]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16311   0.0    0.00    0.00       4         libmatroska::KaxDuration::Generic() const [16311]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16312   0.0    0.00    0.00       4         libmatroska::KaxTrackUID::Generic() const [16312]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16313   0.0    0.00    0.00       4         libmatroska::KaxMuxingApp::Generic() const [16313]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16314   0.0    0.00    0.00       4         libmatroska::KaxTrackType::Generic() const [16314]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16315   0.0    0.00    0.00       4         libmatroska::KaxSegmentUID::Generic() const [16315]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16316   0.0    0.00    0.00       4         libmatroska::KaxTrackEntry::Generic() const [16316]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16317   0.0    0.00    0.00       4         libmatroska::KaxWritingApp::Generic() const [16317]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16318   0.0    0.00    0.00       4         libmatroska::KaxTrackNumber::Generic() const [16318]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16319   0.0    0.00    0.00       4         libmatroska::KaxCodecPrivate::Generic() const [16319]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16320   0.0    0.00    0.00       4         libmatroska::KaxTimecodeScale::Generic() const [16320]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16321   0.0    0.00    0.00       4         libmatroska::KaxTrackDefaultDuration::Generic() const [16321]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16322   0.0    0.00    0.00       4         libebml::EbmlString::ValidateSize() const [16322]
-----------------------------------------------
                0.00    0.00       4/4           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
[16323   0.0    0.00    0.00       4         libebml::EbmlUInteger::operator unsigned char() const [16323]
-----------------------------------------------
                0.00    0.00       4/4           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16324   0.0    0.00    0.00       4         libebml::EbmlUnicodeString::ValidateSize() const [16324]
-----------------------------------------------
                0.00    0.00       4/4           EbmlParser::Get(int) [94]
[16325   0.0    0.00    0.00       4         libebml::EbmlVoid::Generic() const [16325]
-----------------------------------------------
                0.00    0.00       1/3           matroska_segment_c::~matroska_segment_c() [16526]
                0.00    0.00       2/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16326   0.0    0.00    0.00       3         libmatroska::KaxSegmentUID::~KaxSegmentUID() [16326]
                0.00    0.00       3/8119        libebml::EbmlBinary::~EbmlBinary() [16183]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       2/3           libebml::EbmlMaster::ProcessMandatory() [16207]
[16327   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::Create() [16327]
                0.00    0.00       3/3           libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16328]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxTrackMinCache::Create() [16327]
[16328   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::KaxTrackMinCache() [16328]
                0.00    0.00       3/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       2/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16329   0.0    0.00    0.00       3         libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [16329]
                0.00    0.00       3/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       2/3           libebml::EbmlMaster::ProcessMandatory() [16207]
[16330   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::Create() [16330]
                0.00    0.00       3/3           libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16331]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxTrackFlagLacing::Create() [16330]
[16331   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [16331]
                0.00    0.00       3/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       2/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16332   0.0    0.00    0.00       3         libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [16332]
                0.00    0.00       3/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16333   0.0    0.00    0.00       3         libmatroska::KaxSeek::Create() [16333]
                0.00    0.00       3/3           libmatroska::KaxSeek::KaxSeek() [16334]
-----------------------------------------------
                0.00    0.00       3/3           libmatroska::KaxSeek::Create() [16333]
[16334   0.0    0.00    0.00       3         libmatroska::KaxSeek::KaxSeek() [16334]
                0.00    0.00       3/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [94]
[16335   0.0    0.00    0.00       3         libmatroska::KaxSeek::~KaxSeek() [16335]
                0.00    0.00       3/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       1/3           libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16496]
                0.00    0.00       2/3           libebml::EDocType::EDocType() [16432]
[16336   0.0    0.00    0.00       3         libebml::EbmlString::EbmlString(std::string const&) [16336]
                0.00    0.00       3/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
                0.00    0.00       3/152         libebml::EbmlElement::SetDefaultSize(unsigned long long) [16206]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [16537]
                0.00    0.00       1/3           libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16540]
                0.00    0.00       1/3           libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16541]
[16337   0.0    0.00    0.00       3         libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16337]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [94]
[16338   0.0    0.00    0.00       3         libmatroska::KaxSeekHead::Generic() const [16338]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [94]
[16339   0.0    0.00    0.00       3         libmatroska::KaxSeekPosition::Generic() const [16339]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16340   0.0    0.00    0.00       3         libmatroska::KaxSeekID::ValidateSize() const [16340]
                0.00    0.00       3/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       3/3           EbmlParser::Get(int) [94]
[16341   0.0    0.00    0.00       3         libmatroska::KaxSeekID::Generic() const [16341]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
[16342   0.0    0.00    0.00       3         libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16342]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
[16343   0.0    0.00    0.00       3         libebml::EReadVersion::operator libebml::EbmlId const&() const [16343]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
[16344   0.0    0.00    0.00       3         libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16344]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
[16345   0.0    0.00    0.00       3         libebml::EDocType::operator libebml::EbmlId const&() const [16345]
-----------------------------------------------
                0.00    0.00       1/3           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       2/3           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
[16346   0.0    0.00    0.00       3         libebml::EVersion::operator libebml::EbmlId const&() const [16346]
-----------------------------------------------
                0.00    0.00       3/3           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16347   0.0    0.00    0.00       3         libebml::EbmlFloat::ValidateSize() const [16347]
                0.00    0.00       3/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16348   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::Create() [16348]
                0.00    0.00       2/2           libmatroska::KaxDateUTC::KaxDateUTC() [16349]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDateUTC::Create() [16348]
[16349   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::KaxDateUTC() [16349]
                0.00    0.00       2/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16350   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::~KaxDateUTC() [16350]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16351   0.0    0.00    0.00       2         libmatroska::KaxDuration::Create() [16351]
                0.00    0.00       2/2           libmatroska::KaxDuration::KaxDuration() [16352]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDuration::Create() [16351]
[16352   0.0    0.00    0.00       2         libmatroska::KaxDuration::KaxDuration() [16352]
                0.00    0.00       2/2           libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16437]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16353   0.0    0.00    0.00       2         libmatroska::KaxDuration::~KaxDuration() [16353]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16354   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::Create() [16354]
                0.00    0.00       2/2           libmatroska::KaxSeekHead::KaxSeekHead() [16355]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSeekHead::Create() [16354]
[16355   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::KaxSeekHead() [16355]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       2/2           EbmlParser::Get(int) [94]
[16356   0.0    0.00    0.00       2         libmatroska::KaxSeekHead::~KaxSeekHead() [16356]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16357   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::Create() [16357]
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::KaxSegmentUID() [16358]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSegmentUID::Create() [16357]
[16358   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::KaxSegmentUID() [16358]
                0.00    0.00       2/8109        libebml::EbmlBinary::EbmlBinary() [16184]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16359   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::Create() [16359]
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::KaxTrackEntry() [16360]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackEntry::Create() [16359]
[16360   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::KaxTrackEntry() [16360]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                                   2             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16361   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::~KaxTrackEntry() <cycle 6> [16361]
                                   2             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16362   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::Create() [16362]
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16363]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxSeekPreRoll::Create() [16362]
[16363   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [16363]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16364   0.0    0.00    0.00       2         libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [16364]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16365   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::Create() [16365]
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16366]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCodecPrivate::Create() [16365]
[16366   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::KaxCodecPrivate() [16366]
                0.00    0.00       2/8109        libebml::EbmlBinary::EbmlBinary() [16184]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16367   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [16367]
                0.00    0.00       2/8119        libebml::EbmlBinary::~EbmlBinary() [16183]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16368   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::Create() [16368]
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::KaxAudioChannels() [16369]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxAudioChannels::Create() [16368]
[16369   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::KaxAudioChannels() [16369]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16370   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::~KaxAudioChannels() [16370]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16371   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::Create() [16371]
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16372]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCodecDecodeAll::Create() [16371]
[16372   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [16372]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16373   0.0    0.00    0.00       2         libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [16373]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16374   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::Create() [16374]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16375]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagForced::Create() [16374]
[16375   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [16375]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16376   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [16376]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16377   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::Create() [16377]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16378]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxVideoPixelWidth::Create() [16377]
[16378   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [16378]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16379   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [16379]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16380   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::Create() [16380]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16381]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagDefault::Create() [16380]
[16381   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [16381]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16382   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [16382]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16383   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::Create() [16383]
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16384]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackFlagEnabled::Create() [16383]
[16384   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [16384]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16385   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [16385]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16386   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::Create() [16386]
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16387]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxVideoPixelHeight::Create() [16386]
[16387   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [16387]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16388   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [16388]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16389   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::Create() [16389]
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16390]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxAudioSamplingFreq::Create() [16389]
[16390   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [16390]
                0.00    0.00       2/4           libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16306]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16391   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [16391]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16392   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::Create() [16392]
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16393]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxMaxBlockAdditionID::Create() [16392]
[16393   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [16393]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16394   0.0    0.00    0.00       2         libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [16394]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16395   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::Create() [16395]
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16396]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackTimecodeScale::Create() [16395]
[16396   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [16396]
                0.00    0.00       2/4           libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [16306]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16397   0.0    0.00    0.00       2         libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [16397]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16398   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::Create() [16398]
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16399]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTrackDefaultDuration::Create() [16398]
[16399   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [16399]
                0.00    0.00       2/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16400   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [16400]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16401   0.0    0.00    0.00       2         libmatroska::KaxCues::Create() [16401]
                0.00    0.00       2/2           libmatroska::KaxCues::KaxCues() [16402]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCues::Create() [16401]
[16402   0.0    0.00    0.00       2         libmatroska::KaxCues::KaxCues() [16402]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00       1/2           EbmlParser::~EbmlParser() [16285]
[16403   0.0    0.00    0.00       2         libmatroska::KaxCues::~KaxCues() [16403]
                0.00    0.00       2/2           libmatroska::KaxCues::~KaxCues() [16404]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxCues::~KaxCues() [16403]
[16404   0.0    0.00    0.00       2         libmatroska::KaxCues::~KaxCues() [16404]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16405   0.0    0.00    0.00       2         libmatroska::KaxTracks::Create() [16405]
                0.00    0.00       2/2           libmatroska::KaxTracks::KaxTracks() [16406]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxTracks::Create() [16405]
[16406   0.0    0.00    0.00       2         libmatroska::KaxTracks::KaxTracks() [16406]
                0.00    0.00       2/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) [135]
                0.00    0.00       1/2           EbmlParser::Get(int) [94]
[16407   0.0    0.00    0.00       2         libmatroska::KaxTracks::~KaxTracks() [16407]
                0.00    0.00       2/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::UnSelect() [311]
                0.00    0.00       1/2           event_thread_t::~event_thread_t() [16508]
[16408   0.0    0.00    0.00       2         event_thread_t::ResetPci() [16408]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
[16409   0.0    0.00    0.00       2         matroska_segment_c::TrackInit(mkv_track_t*) [16409]
                0.00    0.00       1/1           fill_extra_data(mkv_track_t*, unsigned int) [16481]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::String::operator=(TagLib::String const&) [16532]
                0.00    0.00       1/2           TagLib::FileRef::operator=(TagLib::FileRef const&) [16536]
[16410   0.0    0.00    0.00       2         TagLib::RefCounter::ref() [16410]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::String::upper() const [16561]
                0.00    0.00       1/2           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16411   0.0    0.00    0.00       2         TagLib::String::String() [16411]
                0.00    0.00       2/35          TagLib::RefCounter::RefCounter() [16239]
-----------------------------------------------
                0.00    0.00       1/2           TagLib::FileRef::~FileRef() [16414]
                0.00    0.00       1/2           TagLib::FileRef::operator=(TagLib::FileRef const&) [16536]
[16412   0.0    0.00    0.00       2         TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16412]
                0.00    0.00       2/35          TagLib::RefCounter::~RefCounter() [16240]
-----------------------------------------------
                0.00    0.00       2/2           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16413   0.0    0.00    0.00       2         TagLib::FileRef::~FileRef() [16413]
-----------------------------------------------
                0.00    0.00       2/2           ReadMeta(vlc_object_t*) [467]
[16414   0.0    0.00    0.00       2         TagLib::FileRef::~FileRef() [16414]
                0.00    0.00       2/37          TagLib::RefCounter::deref() [16236]
                0.00    0.00       1/2           TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16412]
-----------------------------------------------
                0.00    0.00       2/2           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16415   0.0    0.00    0.00       2         libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
                0.00    0.00       2/3           libebml::EDocType::operator libebml::EbmlId const&() const [16345]
                0.00    0.00       2/3           libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [16344]
                0.00    0.00       2/3           libebml::EMaxIdLength::operator libebml::EbmlId const&() const [16342]
                0.00    0.00       2/3           libebml::EReadVersion::operator libebml::EbmlId const&() const [16343]
                0.00    0.00       2/3           libebml::EVersion::operator libebml::EbmlId const&() const [16346]
                0.00    0.00       1/2           libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16475]
                0.00    0.00       1/2           libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16472]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16416   0.0    0.00    0.00       2         libebml::EMaxIdLength::Create() [16416]
                0.00    0.00       2/2           libebml::EMaxIdLength::EMaxIdLength() [16417]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EMaxIdLength::Create() [16416]
[16417   0.0    0.00    0.00       2         libebml::EMaxIdLength::EMaxIdLength() [16417]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16418   0.0    0.00    0.00       2         libebml::EMaxIdLength::~EMaxIdLength() [16418]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16419   0.0    0.00    0.00       2         libebml::EReadVersion::Create() [16419]
                0.00    0.00       2/2           libebml::EReadVersion::EReadVersion() [16420]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EReadVersion::Create() [16419]
[16420   0.0    0.00    0.00       2         libebml::EReadVersion::EReadVersion() [16420]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16421   0.0    0.00    0.00       2         libebml::EReadVersion::~EReadVersion() [16421]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16422   0.0    0.00    0.00       2         libebml::EMaxSizeLength::Create() [16422]
                0.00    0.00       2/2           libebml::EMaxSizeLength::EMaxSizeLength() [16423]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EMaxSizeLength::Create() [16422]
[16423   0.0    0.00    0.00       2         libebml::EMaxSizeLength::EMaxSizeLength() [16423]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16424   0.0    0.00    0.00       2         libebml::EMaxSizeLength::~EMaxSizeLength() [16424]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16425   0.0    0.00    0.00       2         libebml::EDocTypeVersion::Create() [16425]
                0.00    0.00       2/2           libebml::EDocTypeVersion::EDocTypeVersion() [16426]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocTypeVersion::Create() [16425]
[16426   0.0    0.00    0.00       2         libebml::EDocTypeVersion::EDocTypeVersion() [16426]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16427   0.0    0.00    0.00       2         libebml::EDocTypeVersion::~EDocTypeVersion() [16427]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16428   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::Create() [16428]
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16429]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocTypeReadVersion::Create() [16428]
[16429   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::EDocTypeReadVersion() [16429]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16430   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::~EDocTypeReadVersion() [16430]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16431   0.0    0.00    0.00       2         libebml::EDocType::Create() [16431]
                0.00    0.00       2/2           libebml::EDocType::EDocType() [16432]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EDocType::Create() [16431]
[16432   0.0    0.00    0.00       2         libebml::EDocType::EDocType() [16432]
                0.00    0.00       2/3           libebml::EbmlString::EbmlString(std::string const&) [16336]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16433   0.0    0.00    0.00       2         libebml::EDocType::~EDocType() [16433]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
                0.00    0.00       1/2           libebml::EbmlMaster::ProcessMandatory() [16207]
[16434   0.0    0.00    0.00       2         libebml::EVersion::Create() [16434]
                0.00    0.00       2/2           libebml::EVersion::EVersion() [16435]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EVersion::Create() [16434]
[16435   0.0    0.00    0.00       2         libebml::EVersion::EVersion() [16435]
                0.00    0.00       2/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16436   0.0    0.00    0.00       2         libebml::EVersion::~EVersion() [16436]
                0.00    0.00       2/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       2/2           libmatroska::KaxDuration::KaxDuration() [16352]
[16437   0.0    0.00    0.00       2         libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [16437]
                0.00    0.00       2/8674        libebml::EbmlElement::EbmlElement(unsigned long long, bool) [16178]
-----------------------------------------------
                0.00    0.00       2/2           libebml::UTFstring::operator=(wchar_t const*) [16440]
[16438   0.0    0.00    0.00       2         libebml::UTFstring::UpdateFromUCS2() [16438]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
[16439   0.0    0.00    0.00       2         libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16439]
                0.00    0.00       2/2           libebml::UTFstring::operator=(wchar_t const*) [16440]
-----------------------------------------------
                0.00    0.00       2/2           libebml::UTFstring::UTFstring(libebml::UTFstring const&) [16439]
[16440   0.0    0.00    0.00       2         libebml::UTFstring::operator=(wchar_t const*) [16440]
                0.00    0.00       2/2           libebml::UTFstring::UpdateFromUCS2() [16438]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16441   0.0    0.00    0.00       2         libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [16441]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16442   0.0    0.00    0.00       2         libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [16442]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16443   0.0    0.00    0.00       2         libmatroska::KaxDuration::operator libebml::EbmlId const&() const [16443]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16444   0.0    0.00    0.00       2         libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [16444]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16445   0.0    0.00    0.00       2         libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [16445]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16446   0.0    0.00    0.00       2         libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [16446]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16447   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::ValidateSize() const [16447]
                0.00    0.00       2/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16448   0.0    0.00    0.00       2         libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const [16448]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16449   0.0    0.00    0.00       2         libmatroska::KaxTrackAudio::Generic() const [16449]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16450   0.0    0.00    0.00       2         libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [16450]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16451   0.0    0.00    0.00       2         libmatroska::KaxTrackVideo::Generic() const [16451]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16452   0.0    0.00    0.00       2         libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [16452]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16453   0.0    0.00    0.00       2         libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [16453]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16454   0.0    0.00    0.00       2         libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [16454]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16455   0.0    0.00    0.00       2         libmatroska::KaxAudioChannels::Generic() const [16455]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16456   0.0    0.00    0.00       2         libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [16456]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16457   0.0    0.00    0.00       2         libmatroska::KaxTrackLanguage::Generic() const [16457]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16458   0.0    0.00    0.00       2         libmatroska::KaxTrackMinCache::Generic() const [16458]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16459   0.0    0.00    0.00       2         libmatroska::KaxTrackFlagLacing::Generic() const [16459]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16460   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelWidth::Generic() const [16460]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16461   0.0    0.00    0.00       2         libmatroska::KaxVideoPixelHeight::Generic() const [16461]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16462   0.0    0.00    0.00       2         libmatroska::KaxAudioSamplingFreq::Generic() const [16462]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16463   0.0    0.00    0.00       2         libmatroska::KaxVideoDisplayWidth::Generic() const [16463]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16464   0.0    0.00    0.00       2         libmatroska::KaxVideoDisplayHeight::Generic() const [16464]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16465   0.0    0.00    0.00       2         libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [16465]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
                0.00    0.00       1/2           EbmlParser::Get(int) [94]
[16466   0.0    0.00    0.00       2         libmatroska::KaxInfo::Generic() const [16466]
-----------------------------------------------
                0.00    0.00       1/2           matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) [156]
                0.00    0.00       1/2           EbmlParser::Get(int) [94]
[16467   0.0    0.00    0.00       2         libmatroska::KaxTracks::Generic() const [16467]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16468   0.0    0.00    0.00       2         libebml::EMaxIdLength::Generic() const [16468]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16469   0.0    0.00    0.00       2         libebml::EReadVersion::Generic() const [16469]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16470   0.0    0.00    0.00       2         libebml::EMaxSizeLength::Generic() const [16470]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16471   0.0    0.00    0.00       2         libebml::EDocTypeVersion::Generic() const [16471]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       1/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
[16472   0.0    0.00    0.00       2         libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [16472]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
[16473   0.0    0.00    0.00       2         libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [16473]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16474   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::Generic() const [16474]
-----------------------------------------------
                0.00    0.00       1/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
                0.00    0.00       1/2           libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [16415]
[16475   0.0    0.00    0.00       2         libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const [16475]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16476   0.0    0.00    0.00       2         libebml::EDocType::Generic() const [16476]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16477   0.0    0.00    0.00       2         libebml::EVersion::Generic() const [16477]
-----------------------------------------------
                0.00    0.00       2/2           libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [95]
[16478   0.0    0.00    0.00       2         libebml::EbmlDate::ValidateSize() const [16478]
                0.00    0.00       2/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       2/2           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
[16479   0.0    0.00    0.00       2         std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) [16479]
-----------------------------------------------
                0.00    0.00       2/2           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16480   0.0    0.00    0.00       2         std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) [16480]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::TrackInit(mkv_track_t*) [16409]
[16481   0.0    0.00    0.00       1         fill_extra_data(mkv_track_t*, unsigned int) [16481]
-----------------------------------------------
                0.00    0.00       1/1           generic_start <cycle 4> [68]
[16482   0.0    0.00    0.00       1         Open(vlc_object_t*) [16482]
                0.00    0.00       1/1           dash::xml::DOMParser::isDash(stream_t*) [16529]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [129]
[16483   0.0    0.00    0.00       1         demux_sys_t::FreeUnused() [16483]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [129]
[16484   0.0    0.00    0.00       1         demux_sys_t::PreloadLinked() [16484]
                0.00    0.00       1/1           demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16546]
                0.00    0.00       1/1           virtual_edition_c::GetMainName() [16512]
                0.00    0.00       1/1           virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16514]
                0.00    0.00       1/1           std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) [16567]
                0.00    0.00       1/1           std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) [16571]
-----------------------------------------------
                                   1             Open(vlc_object_t*) <cycle 4> [129]
[16485   0.0    0.00    0.00       1         demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16485]
                0.00    0.00       1/1           matroska_segment_c::InformationCreate() [16521]
                                   1             matroska_segment_c::Select(long long) <cycle 4> [323]
                                   1             virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16518]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
[16486   0.0    0.00    0.00       1         libmatroska::KaxSegment::Create() [16486]
                0.00    0.00       1/1           libmatroska::KaxSegment::KaxSegment() [16487]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxSegment::Create() [16486]
[16487   0.0    0.00    0.00       1         libmatroska::KaxSegment::KaxSegment() [16487]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16526]
[16488   0.0    0.00    0.00       1         libmatroska::KaxSegment::~KaxSegment() [16488]
                0.00    0.00       1/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16489   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::Create() [16489]
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::KaxTrackAudio() [16490]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackAudio::Create() [16489]
[16490   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::KaxTrackAudio() [16490]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16491   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::~KaxTrackAudio() <cycle 6> [16491]
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16492   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::Create() [16492]
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::KaxTrackVideo() [16493]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackVideo::Create() [16492]
[16493   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::KaxTrackVideo() [16493]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16494   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::~KaxTrackVideo() <cycle 6> [16494]
                                   1             libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16495   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::Create() [16495]
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16496]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxTrackLanguage::Create() [16495]
[16496   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::KaxTrackLanguage() [16496]
                0.00    0.00       1/3           libebml::EbmlString::EbmlString(std::string const&) [16336]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16497   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [16497]
                0.00    0.00       1/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16498   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::Create() [16498]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16499]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayWidth::Create() [16498]
[16499   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [16499]
                0.00    0.00       1/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16500   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [16500]
                0.00    0.00       1/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [16180]
[16501   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::Create() [16501]
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16502]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoDisplayHeight::Create() [16501]
[16502   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [16502]
                0.00    0.00       1/361         libebml::EbmlUInteger::EbmlUInteger() [16201]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
[16503   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [16503]
                0.00    0.00       1/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::ProcessMandatory() [16207]
[16504   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::Create() [16504]
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16505]
-----------------------------------------------
                0.00    0.00       1/1           libmatroska::KaxVideoFlagInterlaced::Create() [16504]
[16505   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [16505]
                0.00    0.00       1/39          libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [16235]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16506   0.0    0.00    0.00       1         libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [16506]
                0.00    0.00       1/8678        libebml::EbmlElement::~EbmlElement() [16177]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::CleanUi() [244]
[16507   0.0    0.00    0.00       1         event_thread_t::~event_thread_t() [16507]
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16508]
-----------------------------------------------
                0.00    0.00       1/1           event_thread_t::~event_thread_t() [16507]
[16508   0.0    0.00    0.00       1         event_thread_t::~event_thread_t() [16508]
                0.00    0.00       1/2           event_thread_t::ResetPci() [16408]
                0.00    0.00       1/9352        vlc_cond_destroy [508]
                0.00    0.00       1/9375        vlc_mutex_destroy [507]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16514]
[16509   0.0    0.00    0.00       1         virtual_chapter_c::PublishChapters(input_title_t&, int&, int) [16509]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16516]
[16510   0.0    0.00    0.00       1         virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) [16510]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::~virtual_edition_c() [16517]
[16511   0.0    0.00    0.00       1         virtual_chapter_c::~virtual_chapter_c() [16511]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16484]
[16512   0.0    0.00    0.00       1         virtual_edition_c::GetMainName() [16512]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16516]
[16513   0.0    0.00    0.00       1         virtual_edition_c::retimeChapters() [16513]
                0.00    0.00       1/1           virtual_edition_c::retimeSubChapters(virtual_chapter_c*) [16515]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16484]
[16514   0.0    0.00    0.00       1         virtual_edition_c::PublishChapters(input_title_t&, int&, int) [16514]
                0.00    0.00       1/1           virtual_chapter_c::PublishChapters(input_title_t&, int&, int) [16509]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::retimeChapters() [16513]
[16515   0.0    0.00    0.00       1         virtual_edition_c::retimeSubChapters(virtual_chapter_c*) [16515]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16519]
[16516   0.0    0.00    0.00       1         virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16516]
                0.00    0.00       1/1           virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) [16510]
                0.00    0.00       1/1           virtual_edition_c::retimeChapters() [16513]
                0.00    0.00       1/1           std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) [16569]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::~virtual_segment_c() [16520]
[16517   0.0    0.00    0.00       1         virtual_edition_c::~virtual_edition_c() [16517]
                0.00    0.00       1/1           virtual_chapter_c::~virtual_chapter_c() [16511]
-----------------------------------------------
                                   1             demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16485]
[16518   0.0    0.00    0.00       1         virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) <cycle 4> [16518]
                0.00    0.00       1/15382       virtual_chapter_c::getSubChapterbyTimecode(long long) [16170]
                0.00    0.00       1/15381       virtual_edition_c::getChapterbyTimecode(long long) [16171]
                                   1             matroska_segment_c::Seek(long long, long long, long long) <cycle 4> [374]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16546]
[16519   0.0    0.00    0.00       1         virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16519]
                0.00    0.00       1/15382       virtual_chapter_c::getSubChapterbyTimecode(long long) [16170]
                0.00    0.00       1/15381       virtual_edition_c::getChapterbyTimecode(long long) [16171]
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16516]
                0.00    0.00       1/1           std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) [16570]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [246]
[16520   0.0    0.00    0.00       1         virtual_segment_c::~virtual_segment_c() [16520]
                0.00    0.00       1/1           virtual_edition_c::~virtual_edition_c() [16517]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreparePlayback(virtual_segment_c*) <cycle 4> [16485]
[16521   0.0    0.00    0.00       1         matroska_segment_c::InformationCreate() [16521]
                0.00    0.00       1/3           vlc_meta_New [723]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) [61]
[16522   0.0    0.00    0.00       1         matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) [16522]
                0.00    0.00       1/7681        libmatroska::KaxCluster::GlobalTimecode() const [16195]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::Preload() [133]
[16523   0.0    0.00    0.00       1         matroska_segment_c::ComputeTrackPriority() [16523]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16524   0.0    0.00    0.00       1         matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) [16524]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [246]
[16525   0.0    0.00    0.00       1         matroska_segment_c::~matroska_segment_c() [16525]
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16526]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::~matroska_segment_c() [16525]
[16526   0.0    0.00    0.00       1         matroska_segment_c::~matroska_segment_c() [16526]
                0.00    0.00       2/36          es_format_Clean [591]
                0.00    0.00       1/1           libmatroska::KaxSegment::~KaxSegment() [16488]
                0.00    0.00       1/3           libmatroska::KaxSegmentUID::~KaxSegmentUID() [16326]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [129]
[16527   0.0    0.00    0.00       1         vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) [16527]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [246]
[16528   0.0    0.00    0.00       1         vlc_stream_io_callback::~vlc_stream_io_callback() [16528]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) [16482]
[16529   0.0    0.00    0.00       1         dash::xml::DOMParser::isDash(stream_t*) [16529]
                0.00    0.00       1/11          stream_Peek <cycle 2> [628]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16531]
[16530   0.0    0.00    0.00       1         TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [16530]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::String::substr(unsigned int, unsigned int) const [16562]
[16531   0.0    0.00    0.00       1         TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16531]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16239]
                0.00    0.00       1/1           TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [16530]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16532   0.0    0.00    0.00       1         TagLib::String::operator=(TagLib::String const&) [16532]
                0.00    0.00       1/37          TagLib::RefCounter::deref() [16236]
                0.00    0.00       1/33          TagLib::String::StringPrivate::~StringPrivate() [16250]
                0.00    0.00       1/2           TagLib::RefCounter::ref() [16410]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16534]
[16533   0.0    0.00    0.00       1         TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
                0.00    0.00      33/33          TagLib::String::~String() [16251]
                0.00    0.00      30/30          TagLib::String::String(char const*, TagLib::String::Type) [16257]
                0.00    0.00      28/28          TagLib::String::operator==(TagLib::String const&) const [16258]
                0.00    0.00       2/2           TagLib::FileRef::~FileRef() [16413]
                0.00    0.00       1/2           TagLib::String::String() [16411]
                0.00    0.00       1/1           TagLib::String::rfind(TagLib::String const&, int) const [16560]
                0.00    0.00       1/1           TagLib::String::substr(unsigned int, unsigned int) const [16562]
                0.00    0.00       1/1           TagLib::String::upper() const [16561]
                0.00    0.00       1/1           TagLib::String::operator=(TagLib::String const&) [16532]
                0.00    0.00       1/1           TagLib::String::isEmpty() const [16563]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [467]
[16534   0.0    0.00    0.00       1         TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [16534]
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16239]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [467]
[16535   0.0    0.00    0.00       1         TagLib::FileRef::FileRef() [16535]
                0.00    0.00       1/35          TagLib::RefCounter::RefCounter() [16239]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [467]
[16536   0.0    0.00    0.00       1         TagLib::FileRef::operator=(TagLib::FileRef const&) [16536]
                0.00    0.00       1/37          TagLib::RefCounter::deref() [16236]
                0.00    0.00       1/2           TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [16412]
                0.00    0.00       1/2           TagLib::RefCounter::ref() [16410]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16537   0.0    0.00    0.00       1         libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [16537]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16337]
                0.00    0.00       1/63794       libebml::EbmlElement::GetSize() const [16166]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [129]
[16538   0.0    0.00    0.00       1         libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [16538]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::~demux_sys_t() [246]
[16539   0.0    0.00    0.00       1         libebml::EbmlStream::~EbmlStream() [16539]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16540   0.0    0.00    0.00       1         libebml::EbmlString::EbmlString(libebml::EbmlString const&) [16540]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16337]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16541   0.0    0.00    0.00       1         libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [16541]
                0.00    0.00       1/3           libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [16337]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [208]
[16542   0.0    0.00    0.00       1         libebml::EbmlHead::Create() [16542]
                0.00    0.00       1/1           libebml::EbmlHead::EbmlHead() [16543]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlHead::Create() [16542]
[16543   0.0    0.00    0.00       1         libebml::EbmlHead::EbmlHead() [16543]
                0.00    0.00       1/137         libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [16208]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16544   0.0    0.00    0.00       1         libebml::EbmlHead::~EbmlHead() [16544]
                0.00    0.00       1/133         libebml::EbmlMaster::~EbmlMaster() <cycle 6> [16209]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) [150]
[16545   0.0    0.00    0.00       1         demux_sys_t::FindSegment(libebml::EbmlBinary const&) const [16545]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16484]
[16546   0.0    0.00    0.00       1         demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const [16546]
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16519]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16547   0.0    0.00    0.00       1         libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [16547]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16548   0.0    0.00    0.00       1         libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [16548]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16549   0.0    0.00    0.00       1         libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [16549]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16550   0.0    0.00    0.00       1         libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [16550]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16551   0.0    0.00    0.00       1         libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [16551]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16552   0.0    0.00    0.00       1         libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [16552]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16553   0.0    0.00    0.00       1         libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [16553]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16554   0.0    0.00    0.00       1         libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [16554]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16555   0.0    0.00    0.00       1         libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [16555]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16556   0.0    0.00    0.00       1         libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [16556]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16557   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [16557]
-----------------------------------------------
                0.00    0.00       1/1           libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [140]
[16558   0.0    0.00    0.00       1         libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [16558]
-----------------------------------------------
                0.00    0.00       1/1           EbmlParser::Get(int) [94]
[16559   0.0    0.00    0.00       1         libmatroska::KaxCues::Generic() const [16559]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16560   0.0    0.00    0.00       1         TagLib::String::rfind(TagLib::String const&, int) const [16560]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16561   0.0    0.00    0.00       1         TagLib::String::upper() const [16561]
                0.00    0.00       1/2           TagLib::String::String() [16411]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16562   0.0    0.00    0.00       1         TagLib::String::substr(unsigned int, unsigned int) const [16562]
                0.00    0.00       1/1           TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [16531]
-----------------------------------------------
                0.00    0.00       1/1           TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [16533]
[16563   0.0    0.00    0.00       1         TagLib::String::isEmpty() const [16563]
-----------------------------------------------
                0.00    0.00       1/1           ReadMeta(vlc_object_t*) [467]
[16564   0.0    0.00    0.00       1         TagLib::FileRef::isNull() const [16564]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) [159]
[16565   0.0    0.00    0.00       1         libebml::EbmlFloat::operator double() const [16565]
-----------------------------------------------
                0.00    0.00       1/1           matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) [196]
[16566   0.0    0.00    0.00       1         libebml::EbmlFloat::operator float() const [16566]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16484]
[16567   0.0    0.00    0.00       1         std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) [16567]
-----------------------------------------------
                0.00    0.00       1/1           Open(vlc_object_t*) <cycle 4> [129]
[16568   0.0    0.00    0.00       1         std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) [16568]
-----------------------------------------------
                0.00    0.00       1/1           virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16516]
[16569   0.0    0.00    0.00       1         std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) [16569]
-----------------------------------------------
                0.00    0.00       1/1           virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) [16519]
[16570   0.0    0.00    0.00       1         std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) [16570]
-----------------------------------------------
                0.00    0.00       1/1           demux_sys_t::PreloadLinked() [16484]
[16571   0.0    0.00    0.00       1         std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) [16571]
-----------------------------------------------

 This table describes the call tree of the program, and was sorted by
 the total amount of time spent in each function and its children.

 Each entry in this table consists of several lines.  The line with the
 index number at the left hand margin lists the current function.
 The lines above it list the functions that called this function,
 and the lines below it list the functions this one called.
 This line lists:
     index	A unique number given to each element of the table.
		Index numbers are sorted numerically.
		The index number is printed next to every function name so
		it is easier to look up where the function is in the table.

     % time	This is the percentage of the `total' time that was spent
		in this function and its children.  Note that due to
		different viewpoints, functions excluded by options, etc,
		these numbers will NOT add up to 100%.

     self	This is the total amount of time spent in this function.

     children	This is the total amount of time propagated into this
		function by its children.

     called	This is the number of times the function was called.
		If the function called itself recursively, the number
		only includes non-recursive calls, and is followed by
		a `+' and the number of recursive calls.

     name	The name of the current function.  The index number is
		printed after it.  If the function is a member of a
		cycle, the cycle number is printed between the
		function's name and the index number.


 For the function's parents, the fields have the following meanings:

     self	This is the amount of time that was propagated directly
		from the function into this parent.

     children	This is the amount of time that was propagated from
		the function's children into this parent.

     called	This is the number of times this parent called the
		function `/' the total number of times the function
		was called.  Recursive calls to the function are not
		included in the number after the `/'.

     name	This is the name of the parent.  The parent's index
		number is printed after it.  If the parent is a
		member of a cycle, the cycle number is printed between
		the name and the index number.

 If the parents of the function cannot be determined, the word
 `<spontaneous>' is printed in the `name' field, and all the other
 fields are blank.

 For the function's children, the fields have the following meanings:

     self	This is the amount of time that was propagated directly
		from the child into the function.

     children	This is the amount of time that was propagated from the
		child's children to the function.

     called	This is the number of times the function called
		this child `/' the total number of times the child
		was called.  Recursive calls by the child are not
		listed in the number after the `/'.

     name	This is the name of the child.  The child's index
		number is printed after it.  If the child is a
		member of a cycle, the cycle number is printed
		between the name and the index number.

 If there are any cycles (circles) in the call graph, there is an
 entry for the cycle-as-a-whole.  This entry shows who called the
 cycle (as parents) and the members of the cycle (as children.)
 The `+' recursive calls entry shows the number of function calls that
 were internal to the cycle, and the calls entry for each member shows,
 for that member, how many times it was called from other members of
 the cycle.



Index by function name

 [142] AReadStream (stream.c) [16513] virtual_edition_c::retimeChapters() (virtual_segment.cpp) [366] filter_chain_Delete
 [634] ASeek (stream.c)    [16514] virtual_edition_c::PublishChapters(input_title_t&, int&, int) (virtual_segment.cpp) [291] filter_chain_DeleteFilterInternal (filter_chain.c)
 [116] AStreamControl (stream.c) [16515] virtual_edition_c::retimeSubChapters(virtual_chapter_c*) (virtual_segment.cpp) [695] filter_chain_GetFmtOut
 [301] AStreamDestroy (stream.c) [16171] virtual_edition_c::getChapterbyTimecode(long long) (virtual_segment.cpp) [520] filter_chain_GetLength
 [635] AStreamPeekStream (stream.c) [16516] virtual_edition_c::virtual_edition_c(chapter_edition_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) (virtual_segment.cpp) [681] filter_chain_New
 [274] AStreamPrebufferStream (stream.c) [16517] virtual_edition_c::~virtual_edition_c() (virtual_segment.cpp) [290] filter_chain_Reset
  [66] AStreamReadNoSeekStream (stream.c) [87] virtual_segment_c::UpdateCurrentToChapter(demux_t&) (virtual_segment.cpp) [522] filter_chain_SubSource
 [483] AStreamReadStream (stream.c) [16518] virtual_segment_c::Seek(demux_t&, long long, long long, virtual_chapter_c*, long long) (virtual_segment.cpp) [51] filter_chain_VideoFilter
 [141] AStreamRefillStream (stream.c) [16519] virtual_segment_c::virtual_segment_c(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) (virtual_segment.cpp) [627] filter_chain_VideoFlush
 [120] AStreamSeekStream (stream.c) [16520] virtual_segment_c::~virtual_segment_c() (virtual_segment.cpp) [696] find_unicode_charmap (ftobjs.c)
 [285] AboveCallback (vout_intf.c) [156] matroska_segment_c::ParseTracks(libmatroska::KaxTracks*) (matroska_segment_parse.cpp) [560] ft_alloc (ftsystem.c)
 [875] Activate (yuy2_i422.c) [160] matroska_segment_c::ParseCluster(bool) (matroska_segment_parse.cpp) [802] ft_ansi_stream_close (ftsystem.c)
 [876] Activate (integer.c)  [134] matroska_segment_c::ParseSeekHead(libmatroska::KaxSeekHead*) (matroska_segment_parse.cpp) [576] ft_ansi_stream_io (ftsystem.c)
 [877] Activate (grey_yuv.c) [196] matroska_segment_c::ParseTrackEntry(libmatroska::KaxTrackEntry*) (matroska_segment_parse.cpp) [803] ft_black_done (ftraster.c)
 [878] Activate (i420_yuy2.c) [135] matroska_segment_c::LoadSeekHeadItem(libebml::EbmlCallbacks const&, long long) (matroska_segment.cpp) [804] ft_black_new (ftraster.c)
 [879] Activate (yuy2_i420.c) [16521] matroska_segment_c::InformationCreate() (matroska_segment.cpp) [805] ft_black_reset (ftraster.c)
 [880] Activate (i422_i420.c) [16522] matroska_segment_c::IndexAppendCluster(libmatroska::KaxCluster*) (matroska_segment.cpp) [668] ft_cmap_done_internal (ftobjs.c)
 [881] Activate (i422_yuy2.c) [16172] matroska_segment_c::BlockFindTrackIndex(unsigned int*, libmatroska::KaxBlock const*, libmatroska::KaxSimpleBlock const*) (matroska_segment.cpp) [561] ft_free (ftsystem.c)
 [882] Activate (i420_rgb.c) [16523] matroska_segment_c::ComputeTrackPriority() (matroska_segment.cpp) [806] ft_glyphslot_done (ftobjs.c)
 [422] Add (es_out_timeshift.c) [374] matroska_segment_c::Seek(long long, long long, long long) (matroska_segment.cpp) [807] ft_glyphslot_free_bitmap
  [39] AndroidLockSurface (surface.c) [323] matroska_segment_c::Select(long long) (matroska_segment.cpp) [569] ft_mem_alloc
 [525] AndroidUnlockSurface (surface.c) [133] matroska_segment_c::Preload() (matroska_segment.cpp) [553] ft_mem_free
 [883] ArchitectureSpecificCopyHooks (utils.c) [61] matroska_segment_c::BlockGet(libmatroska::KaxBlock*&, libmatroska::KaxSimpleBlock*&, bool*, bool*, long long*) (matroska_segment.cpp) [562] ft_mem_qalloc
 [726] ArchitectureSpecificCopyHooksDestroy (utils.c) [144] matroska_segment_c::LoadCues(libmatroska::KaxCues*) (matroska_segment.cpp) [612] ft_mem_qrealloc
 [351] AspectCallback (vout_intf.c) [311] matroska_segment_c::UnSelect() (matroska_segment.cpp) [613] ft_mem_realloc
 [656] BinaryLog (es_format.c) [159] matroska_segment_c::ParseInfo(libmatroska::KaxInfo*) (matroska_segment_parse.cpp) [808] ft_module_get_service
 [542] CheckValue (variables.c) [16409] matroska_segment_c::TrackInit(mkv_track_t*) (matroska_segment_parse.cpp) [809] ft_raster1_init (ftrend1.c)
 [567] CleanupVar (variables.c) [16524] matroska_segment_c::matroska_segment_c(demux_sys_t&, libebml::EbmlStream&) (matroska_segment.cpp) [697] ft_realloc (ftsystem.c)
 [884] Close (yuvp.c)      [16525] matroska_segment_c::~matroska_segment_c() (matroska_segment.cpp) [810] ft_recompute_scaled_metrics (ftobjs.c)
 [885] Close (record.c)    [16526] matroska_segment_c::~matroska_segment_c() (matroska_segment.cpp) [602] ft_service_list_lookup
 [886] Close (opensles_android.c) [138] vlc_stream_io_callback::getFilePointer() (stream_io_callback.cpp) [669] ft_smooth_init (ftsmooth.c)
 [476] Close (surface.c)     [128] vlc_stream_io_callback::setFilePointer(long long, libebml::seek_mode) (stream_io_callback.cpp) [670] ft_validator_init
 [887] CloseDecoder (android_mediacodec.c) [67] vlc_stream_io_callback::read(void*, unsigned int) (stream_io_callback.cpp) [68] generic_start (modules.c)
 [337] CloseDecoder (avcodec.c) [16527] vlc_stream_io_callback::vlc_stream_io_callback(stream_t*, bool) (stream_io_callback.cpp) [218] generic_stop (modules.c)
 [888] CloseScaler (swscale.c) [16528] vlc_stream_io_callback::~vlc_stream_io_callback() (stream_io_callback.hpp) [548] getLong
 [545] CmdExecuteControl (es_out_timeshift.c) [16529] dash::xml::DOMParser::isDash(stream_t*) (DOMParser.cpp) [549] getMediaPlayer
 [331] CmdExecuteDel (es_out_timeshift.c) [16410] TagLib::RefCounter::ref() [811] get_android_opaque_mutex (android_opaque.c)
  [58] CmdExecuteSend (es_out_timeshift.c) [16236] TagLib::RefCounter::deref() [532] get_che (aacdec.c)
 [626] CmpFloat (variables.c) [16239] TagLib::RefCounter::RefCounter() [997] get_path (access.c)
 [584] CmpInt (variables.c) [16240] TagLib::RefCounter::~RefCounter() [671] gray_raster_done (ftgrays.c)
 [552] CmpString (variables.c) [16250] TagLib::String::StringPrivate::~StringPrivate() [672] gray_raster_new (ftgrays.c)
 [117] Control (record.c)  [16530] TagLib::String::copyFromUTF16(wchar_t const*, unsigned int, TagLib::String::Type) [673] gray_raster_reset (ftgrays.c)
 [687] Control (surface.c) [16256] TagLib::String::copyFromLatin1(char const*, unsigned int) [998] h264_get_profile_level (utils.c)
 [122] Control (es_out_timeshift.c) [16257] TagLib::String::String(char const*, TagLib::String::Type) [540] harmful_delay (vlc_threads.h)
 [299] ControlPause (input.c) [16411] TagLib::String::String() [502] imdct_and_windowing (aacdec.c)
  [80] CopyOmxPicture (utils.c) [16531] TagLib::String::String(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&, TagLib::String::Type) [257] info_category_AddInfo (info.h)
 [889] Create (libass.c)   [16251] TagLib::String::~String() [308] input_ChangeState (input.c)
 [890] Create (float.c)    [16532] TagLib::String::operator=(TagLib::String const&) [376] input_Close
 [189] Create (freetype.c) [16412] TagLib::FileRef::FileRefPrivate::~FileRefPrivate() [184] input_ConfigVarInit (var.c)
 [891] Create (ugly.c)     [16533] TagLib::FileRef::create(char const*, bool, TagLib::AudioProperties::ReadStyle) [649] input_Control
 [892] Create (dolby.c)    [16534] TagLib::FileRef::FileRef(char const*, bool, TagLib::AudioProperties::ReadStyle) [408] input_ControlPush (input.c)
 [163] Create (input.c)    [16535] TagLib::FileRef::FileRef() [188] input_ControlVarInit (var.c)
 [712] Create (picture_pool.c) [16413] TagLib::FileRef::~FileRef() [297] input_ControlVarNavigation (var.c)
 [442] CreateDecoder (decoder.c) [16414] TagLib::FileRef::~FileRef() [201] input_ControlVarStop (var.c)
 [312] CreateFilter (filters.c) [16536] TagLib::FileRef::operator=(TagLib::FileRef const&) [344] input_ControlVarTitle (var.c)
 [893] CreateResampler (ugly.c) [111] libebml::EbmlBinary::ReadData(libebml::IOCallback&, libebml::ScopeMode) [164] input_Create
 [352] CropCallback (vout_intf.c) [16537] libebml::EbmlBinary::EbmlBinary(libebml::EbmlBinary const&) [472] input_DecoderChangeDelay (decoder.c)
   [5] DecodeAudio (audio.c) [16184] libebml::EbmlBinary::EbmlBinary() [97] input_DecoderDecode
  [19] DecodeVideo (android_mediacodec.c) [16183] libebml::EbmlBinary::~EbmlBinary() [249] input_DecoderDelete
 [727] DecoderBlockFlushNew (decoder.c) [16204] libebml::EbmlMaster::PushElement(libebml::EbmlElement&) [546] input_DecoderGetFifoSize (decoder.c)
   [4] DecoderDecodeAudio (decoder.c) [16415] libebml::EbmlMaster::FindFirstElt(libebml::EbmlCallbacks const&, bool) [124] input_DecoderHasFormatChanged (decoder.c)
  [16] DecoderDecodeVideo (decoder.c) [16286] libebml::EbmlMaster::SetSizeInfinite(bool) [125] input_DecoderIsCcPresent (decoder.c)
 [114] DecoderFixTs (decoder.c) [16207] libebml::EbmlMaster::ProcessMandatory() [194] input_DecoderIsEmpty (decoder.c)
 [263] DecoderFlush (decoder.c) [140] libebml::EbmlMaster::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [812] input_DecoderNew (decoder.c)
 [894] DecoderOpen (spudec.c) [16208] libebml::EbmlMaster::EbmlMaster(libebml::EbmlSemanticContext const&, bool) [243] input_DecoderStartWait (decoder.c)
 [895] DecoderOpen (araw.c) [16209] libebml::EbmlMaster::~EbmlMaster() [287] input_DecoderStopWait (decoder.c)
 [896] DecoderOpen (g711.c) [16281] libebml::EbmlStream::FindNextID(libebml::EbmlCallbacks const&, unsigned long long) [202] input_DecoderWait (decoder.c)
   [3] DecoderThread (decoder.c) [16179] libebml::EbmlStream::FindNextElement(libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [343] input_EsOutNew (es_out.c)
 [728] DecoderUpdateFormatLocked (decoder.c) [16538] libebml::EbmlStream::EbmlStream(libebml::IOCallback&) [302] input_EsOutTimeshiftNew (es_out_timeshift.c)
 [268] DeinterlaceCallback (interlacing.c) [16539] libebml::EbmlStream::~EbmlStream() [674] input_GetItem
 [470] DeinterlaceIsPresent (interlacing.c) [345] libebml::EbmlString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [416] input_Join (input.c)
 [310] Del (es_out_timeshift.c) [16540] libebml::EbmlString::EbmlString(libebml::EbmlString const&) [347] input_SendEventAout (event.c)
  [63] DeleteDecoder (decoder.c) [16336] libebml::EbmlString::EbmlString(std::string const&) [228] input_SendEventCache (event.c)
 [729] Destroy (freetype.c) [16302] libebml::EbmlString::EbmlString() [402] input_SendEventDead (event.c)
 [495] Destroy (picture_pool.c) [169] libebml::IOCallback::readFully(void*, unsigned int) [334] input_SendEventEsAdd (event.c)
 [564] Destroy (variables.c) [208] libebml::EbmlElement::FindNextID(libebml::IOCallback&, libebml::EbmlCallbacks const&, unsigned long long) [682] input_SendEventEsDel (event.c)
 [897] Destroy (es_out_timeshift.c) [16206] libebml::EbmlElement::SetDefaultSize(unsigned long long) (EbmlElement.h) [698] input_SendEventEsSelect (event.c)
 [898] Destructor (input.c)   [95] libebml::EbmlElement::FindNextElement(libebml::IOCallback&, libebml::EbmlSemanticContext const&, int&, unsigned long long, bool, unsigned int) [174] input_SendEventLength (event.c)
 [524] Display (surface.c) [16180] libebml::EbmlElement::CreateElementUsingContext(libebml::EbmlId const&, libebml::EbmlSemanticContext const&, int&, bool, bool, unsigned int) [278] input_SendEventMeta (event.c)
 [269] DisplayNew (display.c) [157] libebml::EbmlElement::Read(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, int&, libebml::EbmlElement*&, bool, libebml::ScopeMode) [403] input_SendEventMetaEpg (event.c)
  [81] DoWork (ugly.c)       [137] libebml::EbmlElement::SkipData(libebml::EbmlStream&, libebml::EbmlSemanticContext const&, libebml::EbmlElement*, bool) [365] input_SendEventMetaInfo (event.c)
 [688] Dummy_Select (platform_fonts.c) [16337] libebml::EbmlElement::EbmlElement(libebml::EbmlElement const&) [143] input_SendEventPosition (event.c)
 [538] DupDummy (variables.c) [16178] libebml::EbmlElement::EbmlElement(unsigned long long, bool) [389] input_SendEventProgramAdd (event.c)
 [571] DupString (variables.c) [16177] libebml::EbmlElement::~EbmlElement() [340] input_SendEventProgramScrambled (event.c)
 [191] End (input.c)       [16416] libebml::EMaxIdLength::Create() [999] input_SendEventProgramSelect (event.c)
 [899] EnsureUTF8          [16417] libebml::EMaxIdLength::EMaxIdLength() [329] input_SendEventState (event.c)
 [468] EqualizerCallback (filters.c) [16418] libebml::EMaxIdLength::~EMaxIdLength() [165] input_SendEventStatistics (event.c)
 [242] EsCreateDecoder (es_out.c) [16419] libebml::EReadVersion::Create() [1000] input_SendEventTeletextDel (event.c)
 [511] EsIsSelected (es_out.c) [16420] libebml::EReadVersion::EReadVersion() [813] input_SendEventTeletextSelect (event.c)
 [207] EsOutAdd (es_out.c) [16421] libebml::EReadVersion::~EReadVersion() [303] input_SendEventTitle (event.c)
 [115] EsOutControl (es_out.c) [171] libebml::EbmlUInteger::ReadData(libebml::IOCallback&, libebml::ScopeMode) [348] input_SendEventVout (event.c)
 [332] EsOutDel (es_out.c) [16541] libebml::EbmlUInteger::EbmlUInteger(libebml::EbmlUInteger const&) [1001] input_SplitMRL (input.c)
 [900] EsOutDelete (es_out.c) [16201] libebml::EbmlUInteger::EbmlUInteger() [1002] input_Start
 [216] EsOutProgramAdd (es_out.c) [16235] libebml::EbmlUInteger::EbmlUInteger(unsigned long long) [424] input_Stop
 [730] EsOutProgramFind (es_out.c) [16422] libebml::EMaxSizeLength::Create() [454] input_clock_ChangeSystemOrigin (clock.c)
 [219] EsOutProgramSelect (es_out.c) [16423] libebml::EMaxSizeLength::EMaxSizeLength() [113] input_clock_ConvertTS (clock.c)
 [657] EsOutSelect (es_out.c) [16424] libebml::EMaxSizeLength::~EMaxSizeLength() [1003] input_clock_Delete (clock.c)
  [59] EsOutSend (es_out.c) [16176] libebml::CodedSizeLength(unsigned long long, unsigned int, bool) [175] input_clock_GetState (clock.c)
 [265] EsSelect (es_out.c) [16425] libebml::EDocTypeVersion::Create() [146] input_clock_GetWakeup (clock.c)
 [320] EsUnselect (es_out.c) [16426] libebml::EDocTypeVersion::EDocTypeVersion() [1004] input_clock_New (clock.c)
 [731] FT_Add_Default_Modules [16427] libebml::EDocTypeVersion::~EDocTypeVersion() [434] input_clock_SetJitter (clock.c)
 [588] FT_Add_Module         [346] libebml::EbmlUnicodeString::ReadData(libebml::IOCallback&, libebml::ScopeMode) [179] input_clock_Update (clock.c)
 [658] FT_CMap_New         [16262] libebml::EbmlUnicodeString::EbmlUnicodeString() [145] input_event_changed (media_player.c)
 [637] FT_DivFix           [16168] libebml::ReadCodedSizeValue(unsigned char const*, unsigned int&, unsigned long long&) [426] input_item_AddOption
 [732] FT_Done_Face        [16428] libebml::EDocTypeReadVersion::Create() [417] input_item_GetMeta
 [733] FT_Done_FreeType    [16429] libebml::EDocTypeReadVersion::EDocTypeReadVersion() [435] input_item_GetName
 [734] FT_Done_GlyphSlot   [16430] libebml::EDocTypeReadVersion::~EDocTypeReadVersion() (EbmlSubHead.h) [814] input_item_Hold
 [735] FT_Done_Library     [16202] libebml::GetEbmlGlobal_Context() [370] input_item_NewExt
 [736] FT_Done_Memory      [16199] libebml::ReadCodedSizeSignedValue(unsigned char const*, unsigned int&, unsigned long long&) [371] input_item_NewWithType
 [638] FT_Get_Module       [16431] libebml::EDocType::Create() [815] input_item_Release
 [689] FT_Get_Module_Interface [16432] libebml::EDocType::EDocType() [325] input_item_ReplaceInfos
 [737] FT_GlyphLoader_Adjust_Points (ftgloadr.c) [16433] libebml::EDocType::~EDocType() (EbmlSubHead.h) [419] input_item_SetDuration
 [738] FT_GlyphLoader_CreateExtra [16434] libebml::EVersion::Create() [414] input_item_SetEpgOffline (item.c)
 [619] FT_GlyphLoader_Done [16435] libebml::EVersion::EVersion() [427] input_item_SetErrorWhenReading (item.c)
 [620] FT_GlyphLoader_New  [16436] libebml::EVersion::~EVersion() [350] input_item_SetMeta
 [621] FT_GlyphLoader_Reset  [400] libebml::EbmlDate::ReadData(libebml::IOCallback&, libebml::ScopeMode) [420] input_item_SetPreparsed (item.c)
 [622] FT_GlyphLoader_Rewind [16542] libebml::EbmlHead::Create() [455] input_item_SetURI
 [739] FT_Init_FreeType    [16543] libebml::EbmlHead::EbmlHead() [423] input_item_UpdateTracksInfo (item.c)
 [631] FT_List_Add         [16544] libebml::EbmlHead::~EbmlHead() [447] input_item_duration_changed (media.c)
 [614] FT_List_Finalize    [16303] libebml::EbmlVoid::Create() [349] input_item_meta_changed (media.c)
 [639] FT_List_Find        [16304] libebml::EbmlVoid::EbmlVoid() [432] input_item_preparsed_changed (media.c)
 [640] FT_List_Remove      [16305] libebml::EbmlVoid::~EbmlVoid() [448] input_pausable_changed (media_player.c)
 [623] FT_Lookup_Renderer  [16210] libebml::EbmlCrc32::ResetCRC() [204] input_resource_GetAout
 [624] FT_MulFix           [16211] libebml::EbmlCrc32::EbmlCrc32() [1005] input_resource_Hold (resource.c)
 [740] FT_New_Face           [369] libebml::EbmlFloat::ReadData(libebml::IOCallback&, libebml::ScopeMode) [456] input_resource_HoldAout
 [741] FT_New_GlyphSlot    [16437] libebml::EbmlFloat::EbmlFloat(libebml::EbmlFloat::Precision) [433] input_resource_HoldVouts (resource.c)
 [742] FT_New_Library      [16306] libebml::EbmlFloat::EbmlFloat(double, libebml::EbmlFloat::Precision) [1006] input_resource_New
 [743] FT_New_Memory       [16438] libebml::UTFstring::UpdateFromUCS2() [324] input_resource_PutAout
 [744] FT_New_Size         [16307] libebml::UTFstring::UpdateFromUTF8() [1007] input_resource_Release
 [745] FT_Open_Face        [16308] libebml::UTFstring::SetUTF8(std::string const&) [457] input_resource_RequestSout (resource.c)
 [589] FT_Remove_Module    [16439] libebml::UTFstring::UTFstring(libebml::UTFstring const&) [206] input_resource_RequestVout (resource.c)
 [746] FT_Request_Metrics  [16260] libebml::UTFstring::UTFstring() [230] input_resource_ResetAout
 [747] FT_Request_Size     [16259] libebml::UTFstring::~UTFstring() [436] input_resource_SetInput (resource.c)
 [748] FT_Select_Charmap   [16440] libebml::UTFstring::operator=(wchar_t const*) [225] input_resource_Terminate
 [749] FT_Set_Pixel_Sizes  [16194] EbmlParser::IsTopPresent(libebml::EbmlElement*) const (Ebml_parser.cpp) [816] input_resource_TerminateVout
 [750] FT_Stream_Close     [16192] EbmlParser::GetLevel() const (Ebml_parser.cpp) [449] input_scrambled_changed (media_player.c)
 [582] FT_Stream_EnterFrame [16545] demux_sys_t::FindSegment(libebml::EbmlBinary const&) const (demux.cpp) [450] input_seekable_changed (media_player.c)
 [583] FT_Stream_ExitFrame [16546] demux_sys_t::VirtualFromSegments(std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*) const (demux.cpp) [304] input_vaControl
 [690] FT_Stream_ExtractFrame [16195] libmatroska::KaxCluster::GlobalTimecode() const [1008] jni_IsVideoPlayerActivityCreated
 [751] FT_Stream_Free      [16193] libmatroska::KaxCluster::Generic() const [521] jni_LockAndGetAndroidJavaSurface
 [573] FT_Stream_GetULong  [16309] libmatroska::KaxCodecID::Generic() const [817] jni_SetAndroidSurfaceSize
 [752] FT_Stream_New       [16441] libmatroska::KaxCodecID::operator libebml::EbmlId const&() const [818] jni_SetAndroidSurfaceSizeEnv
 [753] FT_Stream_Open      [16252] libmatroska::KaxCueTime::Generic() const [515] jni_UnlockAndroidSurface
 [641] FT_Stream_Pos       [16310] libmatroska::KaxDateUTC::Generic() const [1009] jpeg2000_init_static_data (jpeg2000dec.c)
 [691] FT_Stream_Read      [16442] libmatroska::KaxDateUTC::operator libebml::EbmlId const&() const [382] libvlc_event_attach
 [692] FT_Stream_ReadAt    [16237] libmatroska::KaxSegment::GetGlobalPosition(unsigned long long) const [445] libvlc_event_manager_new (event.c)
 [575] FT_Stream_ReadFields [16263] libmatroska::KaxSegment::Generic() const [279] libvlc_event_manager_register_event_type (event.c)
 [659] FT_Stream_ReadULong [16238] libmatroska::KaxSegment::operator libebml::EbmlId const&() const [151] libvlc_event_send (event.c)
 [616] FT_Stream_ReleaseFrame [16229] libmatroska::KaxCuePoint::Generic() const [307] libvlc_get_input_thread (media_player.c)
 [590] FT_Stream_Seek      [16253] libmatroska::KaxCueTrack::Generic() const [555] libvlc_logf (log.c)
 [754] FT_Stroker_Done     [16311] libmatroska::KaxDuration::Generic() const [428] libvlc_media_add_option
 [755] FT_Stroker_New      [16443] libmatroska::KaxDuration::operator libebml::EbmlId const&() const [429] libvlc_media_add_option_flag
 [901] FileClose (file.c)  [16338] libmatroska::KaxSeekHead::Generic() const [1010] libvlc_media_event_manager
 [378] FileControl (file.c) [16312] libmatroska::KaxTrackUID::Generic() const [341] libvlc_media_new_from_input_item (media.c)
 [391] FileOpen (file.c)   [16444] libmatroska::KaxTrackUID::operator libebml::EbmlId const&() const [296] libvlc_media_new_location
 [547] FileRead (file.c)   [16313] libmatroska::KaxMuxingApp::Generic() const [1011] libvlc_media_player_event_manager
 [636] FileSeek (file.c)   [16445] libmatroska::KaxMuxingApp::operator libebml::EbmlId const&() const [458] libvlc_media_player_get_media
 [902] FilterAllocationClean (display.c) [16314] libmatroska::KaxTrackType::Generic() const [176] libvlc_media_player_get_state
 [903] FilterAllocationInit (display.c) [16446] libmatroska::KaxTrackType::operator libebml::EbmlId const&() const [177] libvlc_media_player_is_playing
  [52] FilterChainVideoFilter (filter_chain.c) [16447] libmatroska::KaxSegmentUID::ValidateSize() const (KaxSemantic.h) [172] libvlc_media_player_new
 [222] FilterRelease (vout_subpictures.c) [16315] libmatroska::KaxSegmentUID::Generic() const (KaxSemantic.h) [277] libvlc_media_player_set_media
 [531] FilterS16N (integer.c) [16448] libmatroska::KaxSegmentUID::operator libebml::EbmlId const&() const (KaxSemantic.h) [404] libvlc_media_player_set_video_title_display
 [513] Find (fourcc.c)     [16449] libmatroska::KaxTrackAudio::Generic() const [213] libvlc_media_player_stop
 [660] FixParameters (swscale.c) [16547] libmatroska::KaxTrackAudio::operator libebml::EbmlId const&() const [683] libvlc_media_release
  [13] Fl32toS16 (format.c) [16316] libmatroska::KaxTrackEntry::Generic() const [684] libvlc_media_retain
 [259] Flush (opensles_android.c) [16450] libmatroska::KaxTrackEntry::operator libebml::EbmlId const&() const [407] libvlc_media_set_state (media.c)
 [541] FreeDummy (variables.c) [16451] libmatroska::KaxTrackVideo::Generic() const [1012] libvlc_media_subitems
 [572] FreeString (variables.c) [16548] libmatroska::KaxTrackVideo::operator libebml::EbmlId const&() const [430] libvlc_retain
 [756] FullscreenCallback (vout_intf.c) [16317] libmatroska::KaxWritingApp::Generic() const [1] loop_col (nv12_rgb.S)
 [661] GetFfmpegChroma (chroma.c) [16452] libmatroska::KaxWritingApp::operator libebml::EbmlId const&() const [45] loop_row (nv12_rgb.S)
 [904] GetFfmpegCodec (fourcc.c) [16182] libmatroska::KaxSimpleBlock::Generic() const [699] make_filters_from_proto (aacps_tablegen.h)
 [315] GetFontSize (freetype.c) [16181] libmatroska::KaxSimpleBlock::operator libebml::EbmlId const&() const [700] make_path
 [905] GetOmxRole (utils.c) [16318] libmatroska::KaxTrackNumber::Generic() const [70] mdate
  [23] GetOutput (android_mediacodec.c) [16453] libmatroska::KaxTrackNumber::operator libebml::EbmlId const&() const [579] module_Map (bank.c)
 [677] GetParameters (swscale.c) [16319] libmatroska::KaxCodecPrivate::Generic() const [650] module_exists
 [906] GetVlcChromaFormat (utils.c) [16454] libmatroska::KaxCodecPrivate::operator libebml::EbmlId const&() const [651] module_find
 [526] GetVlcChromaSizes (utils.c) [16339] libmatroska::KaxSeekPosition::Generic() const [509] module_get_capability
 [757] Get_Interface (t1driver.c) [16455] libmatroska::KaxAudioChannels::Generic() const [1013] module_get_name
 [907] IgnoreOmxDecoderPadding (utils.c) [16549] libmatroska::KaxAudioChannels::operator libebml::EbmlId const&() const [585] module_get_object
 [908] Init (swscale.c)    [16188] libmatroska::KaxInternalBlock::ValidateSize() const [615] module_get_score
 [182] Init (input.c)      [16320] libmatroska::KaxTimecodeScale::Generic() const [617] module_list_cap (bank.c)
 [318] InitAudioDec (audio.c) [16456] libmatroska::KaxTimecodeScale::operator libebml::EbmlId const&() const [605] module_list_free
 [451] InitOmxCore (omxil_core.c) [16457] libmatroska::KaxTrackLanguage::Generic() const [652] module_list_get
 [252] InitTitle (input.c) [16550] libmatroska::KaxTrackLanguage::operator libebml::EbmlId const&() const [580] module_load (modules.c)
 [203] InputDelCallbacks (var.c) [16458] libmatroska::KaxTrackMinCache::Generic() const [618] module_need
 [693] InputItemFindCat (item.c) [16551] libmatroska::KaxTrackMinCache::operator libebml::EbmlId const&() const [510] module_provides
 [231] InputSourceClean (input.c) [16230] libmatroska::KaxClusterTimecode::Generic() const [195] module_unneed
 [197] InputSourceInit (input.c) [16552] libmatroska::KaxClusterTimecode::operator libebml::EbmlId const&() const [103] msleep
 [758] LanguageGetCode (es_out.c) [16459] libmatroska::KaxTrackFlagLacing::Generic() const [50] mwait
 [271] LanguageSplit (es_out.c) [16553] libmatroska::KaxTrackFlagLacing::operator libebml::EbmlId const&() const [819] open_face (ftobjs.c)
 [909] LoadNativeWindowAPI (utils.c) [16460] libmatroska::KaxVideoPixelWidth::Generic() const [820] pcf_driver_requester (pcfdrivr.c)
 [512] Lookup (fourcc.c)   [16554] libmatroska::KaxVideoPixelWidth::operator libebml::EbmlId const&() const [821] pfr_get_service (pfrdrivr.c)
 [910] MRLSeekPoint (input.c) [16461] libmatroska::KaxVideoPixelHeight::Generic() const [516] picture_CopyProperties
  [25] MainLoop (input.c)  [16555] libmatroska::KaxVideoPixelHeight::operator libebml::EbmlId const&() const [73] picture_Hold
  [53] NV12_RGBA_Filter (yuv_rgb.c) [16462] libmatroska::KaxAudioSamplingFreq::Generic() const [701] picture_New
 [441] ObjectKillChildrens (objects.c) [16556] libmatroska::KaxAudioSamplingFreq::operator libebml::EbmlId const&() const [599] picture_NewFromFormat
 [392] Open (yuvp.c)       [16213] libmatroska::KaxCueTrackPositions::Generic() const [596] picture_NewFromResource
 [911] Open (record.c)     [16463] libmatroska::KaxVideoDisplayWidth::Generic() const [486] picture_Release
 [912] Open (dvbsub.c)     [16557] libmatroska::KaxVideoDisplayWidth::operator libebml::EbmlId const&() const [528] picture_Reset
 [713] Open (chroma_yuv.c) [16254] libmatroska::KaxCueClusterPosition::Generic() const [597] picture_Setup
 [390] Open (yuv_rgb.c)    [16464] libmatroska::KaxVideoDisplayHeight::Generic() const [473] picture_fifo_Delete
 [913] Open (httplive.c)   [16558] libmatroska::KaxVideoDisplayHeight::operator libebml::EbmlId const&() const [406] picture_fifo_Flush
 [914] Open (opensles_android.c) [16255] libmatroska::KaxCueRelativePosition::Generic() const [1014] picture_fifo_New
 [915] Open (smooth.c)     [16321] libmatroska::KaxTrackDefaultDuration::Generic() const [127] picture_fifo_Peek
 [916] Open (aes3.c)       [16465] libmatroska::KaxTrackDefaultDuration::operator libebml::EbmlId const&() const [131] picture_fifo_Pop
 [917] Open (vdr.c)        [16559] libmatroska::KaxCues::Generic() const [132] picture_fifo_Push
 [918] Open (cdg.c)        [16466] libmatroska::KaxInfo::Generic() const [720] picture_pool_Delete
 [233] Open (surface.c)    [16264] libmatroska::KaxSeek::Generic() const [30] picture_pool_Get
 [919] Open (opaque.c)     [16340] libmatroska::KaxSeekID::ValidateSize() const [1015] picture_pool_GetSize
 [393] Open (format.c)     [16341] libmatroska::KaxSeekID::Generic() const [1016] picture_pool_New
 [920] OpenBzip2 (decomp.c) [16467] libmatroska::KaxTracks::Generic() const [822] picture_pool_NewExtended
 [921] OpenCommon (lpcm.c) [16560] TagLib::String::rfind(TagLib::String const&, int) const [1017] picture_pool_NewFromFormat
 [922] OpenDecoder (jpeg.c) [16561] TagLib::String::upper() const [1018] picture_pool_NonEmpty
 [923] OpenDecoder (flac.c) [16562] TagLib::String::substr(unsigned int, unsigned int) const [1019] picture_pool_Reserve
 [924] OpenDecoder (png.c) [16563] TagLib::String::isEmpty() const [503] pool_release_buffer (buffer.c)
 [925] OpenDecoder (mpeg_audio.c) [16258] TagLib::String::operator==(TagLib::String const&) const [600] posix_memalign (posix_memalign.c)
 [220] OpenDecoder (android_mediacodec.c) [16564] TagLib::FileRef::isNull() const [86] profCount (prof.c)
 [452] OpenDecoder (omxil.c) [16282] libebml::EbmlBinary::ValidateSize() const (EbmlBinary.h) [823] ps_hinter_done (pshmod.c)
 [926] OpenDecoder (lpcm.c) [16212] libebml::EbmlMaster::ValidateSize() const [824] ps_hinter_init (pshmod.c)
 [927] OpenDecoder (theora.c) [16261] libebml::EbmlMaster::GetSize() const [642] ps_mask_table_done (pshrec.c)
  [69] OpenDecoder (avcodec.c) [16322] libebml::EbmlString::ValidateSize() const (EbmlString.h) [825] psnames_get_service (psmodule.c)
 [928] OpenDecoder (a52.c) [16283] libebml::EbmlString::operator std::string const&() const [643] pthread_once
 [929] OpenDecoder (opus.c) [16166] libebml::EbmlElement::GetSize() const (EbmlElement.h) [1020] qdm2_init_static_data (qdm2.c)
 [930] OpenDecoder (dts.c) [16191] libebml::EbmlElement::IsDummy() const (EbmlElement.h) [250] release_input_thread (media_player.c)
 [931] OpenDecoder (vorbis.c) [16468] libebml::EMaxIdLength::Generic() const [1021] secstotimestr
 [932] OpenDecoder (aes3.c) [16342] libebml::EMaxIdLength::operator libebml::EbmlId const&() const [1022] setLong
 [933] OpenDecoder (speex.c) [16469] libebml::EReadVersion::Generic() const [372] set_state (media_player.c)
 [934] OpenFilter (scale.c) [16343] libebml::EReadVersion::operator libebml::EbmlId const&() const [826] sfnt_done_face (sfobjs.c)
 [935] OpenFilter (simple_channel_mixer.c) [16203] libebml::EbmlUInteger::ValidateSize() const (EbmlUInteger.h) [675] sfnt_get_interface (sfdriver.c)
 [936] OpenFilter (simple.c) [16323] libebml::EbmlUInteger::operator unsigned char() const [827] sfnt_init_face (sfobjs.c)
 [453] OpenGeneric (omxil.c) [16265] libebml::EbmlUInteger::operator unsigned int() const [828] sfnt_load_face (sfobjs.c)
 [937] OpenGzip (decomp.c) [16234] libebml::EbmlUInteger::operator unsigned short() const [1023] sniff_channel_order (aacdec.c)
 [336] OpenScaler (swscale.c) [16214] libebml::EbmlUInteger::operator unsigned long long() const [41] spectral_to_sample (aacdec.c)
 [938] OpenXZ (decomp.c)   [16470] libebml::EMaxSizeLength::Generic() const [543] split_radix_permutation (fft_template.c)
 [714] Peek (record.c)     [16344] libebml::EMaxSizeLength::operator libebml::EbmlId const&() const [235] spu_Attach (vout_subpictures.c)
 [594] PictureDestroy (picture.c) [16471] libebml::EDocTypeVersion::Generic() const [437] spu_ChangeFilters
  [36] Play (opensles_android.c) [16472] libebml::EDocTypeVersion::operator libebml::EbmlId const&() const [438] spu_ChangeMargin (vout_subpictures.c)
 [518] Pool (surface.c)    [16324] libebml::EbmlUnicodeString::ValidateSize() const [439] spu_ChangeSources
 [939] Probe (volume.c)    [16473] libebml::EbmlUnicodeString::operator libebml::UTFstring const&() const [459] spu_ClearChannel
 [940] RarProbe (rar.c)    [16474] libebml::EDocTypeReadVersion::Generic() const (EbmlSubHead.h) [368] spu_Create
 [941] RarStreamOpen (stream.c) [16475] libebml::EDocTypeReadVersion::operator libebml::EbmlId const&() const (EbmlSubHead.h) [240] spu_Destroy
 [484] Read (record.c)     [16476] libebml::EDocType::Generic() const (EbmlSubHead.h) [56] spu_Render
 [377] ReplayGainCallback (volume.c) [16345] libebml::EDocType::operator libebml::EbmlId const&() const (EbmlSubHead.h) [401] spu_get_attachments (vout_subpictures.c)
  [24] Run (input.c)       [16477] libebml::EVersion::Generic() const [570] stats_ComputeInputStats (stats.c)
 [353] ScaleCallback (vout_intf.c) [16346] libebml::EVersion::operator libebml::EbmlId const&() const [460] stats_NewInputStats (stats.c)
  [55] Send (es_out_timeshift.c) [16478] libebml::EbmlDate::ValidateSize() const [461] stats_ReinitInputStats (stats.c)
 [529] SetupOutputFormat (audio.c) [16325] libebml::EbmlVoid::Generic() const [72] stats_Update (stats.c)
 [443] SpuRenderCreateAndLoadScale (vout_subpictures.c) [16347] libebml::EbmlFloat::ValidateSize() const [829] strcpy_strip_ext (subtitles.c)
 [282] SpuRenderCreateAndLoadText (vout_subpictures.c) [16565] libebml::EbmlFloat::operator double() const [830] strcpy_trim (subtitles.c)
 [942] Start (opensles_android.c) [16566] libebml::EbmlFloat::operator float() const [258] stream_AccessNew (stream.c)
 [943] Stop (opensles_android.c) [16479] std::vector<mkv_track_t*, std::allocator<mkv_track_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<mkv_track_t**, std::vector<mkv_track_t*, std::allocator<mkv_track_t*> > >, mkv_track_t* const&) (vector.tcc) [339] stream_CommonDelete (stream.c)
 [316] StreamDelete (stream_filter.c) [16567] std::vector<input_title_t*, std::allocator<input_title_t*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<input_title_t**, std::vector<input_title_t*, std::allocator<input_title_t*> > >, input_title_t* const&) (vector.tcc) [431] stream_CommonNew (stream.c)
 [944] StreamOpen (zipstream.c) [16568] std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_stream_c**, std::vector<matroska_stream_c*, std::allocator<matroska_stream_c*> > >, matroska_stream_c* const&) (vector.tcc) [119] stream_Control
 [357] SubFilterCallback (vout_intf.c) [16569] std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_chapter_c**, std::vector<virtual_chapter_c*, std::allocator<virtual_chapter_c*> > >, virtual_chapter_c* const&) (vector.tcc) [300] stream_Delete
 [358] SubMarginCallback (vout_intf.c) [16570] std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_edition_c**, std::vector<virtual_edition_c*, std::allocator<virtual_edition_c*> > >, virtual_edition_c* const&) (vector.tcc) [295] stream_FilterChainNew (stream_filter.c)
 [359] SubSourceCallback (vout_intf.c) [16571] std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<virtual_segment_c**, std::vector<virtual_segment_c*, std::allocator<virtual_segment_c*> > >, virtual_segment_c* const&) (vector.tcc) [294] stream_FilterNew
 [759] T1_Driver_Done (t1objs.c) [16480] std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<matroska_segment_c**, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> > >, matroska_segment_c* const&) (vector.tcc) [628] stream_Peek
 [760] T1_Driver_Init (t1objs.c) [16175] std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libmatroska::DataBuffer**, std::vector<libmatroska::DataBuffer*, std::allocator<libmatroska::DataBuffer*> > >, libmatroska::DataBuffer* const&) [65] stream_Read
 [761] T42_Driver_Done (t42objs.c) [16205] std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> >::_M_insert_aux(__gnu_cxx::__normal_iterator<libebml::EbmlElement**, std::vector<libebml::EbmlElement*, std::allocator<libebml::EbmlElement*> > >, libebml::EbmlElement* const&) [118] stream_vaControl
 [762] T42_Driver_Init (t42objs.c) [16190] std::vector<int, std::allocator<int> >::_M_fill_insert(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, unsigned int, int const&) [386] subtitles_Detect (subtitles.c)
 [763] T42_Get_Interface (t42drivr.c) [88] __aeabi_idiv  [630] subtitles_Filter (subtitles.c)
 [764] TT_Done_Context (ttinterp.c) [89] __aeabi_uidiv   [831] sws_alloc_context
 [765] TT_New_Context         [90] __aeabi_uidivmod      [832] sws_freeContext
  [14] Thread (video_output.c) [46] __divdi3             [644] sws_getCachedContext
 [342] ThreadChangeFilters (video_output.c) [47] __emutls_get_address [833] sws_getContext
  [17] ThreadDisplayPicture (video_output.c) [48] __gnu_mcount_nc [834] sws_init_context
  [57] ThreadDisplayPreparePicture (video_output.c) [946] aac_decode_close (aacdec.c) [835] sws_isSupportedInput
 [367] ThreadFlush (video_output.c) [7] aac_decode_frame (aacdec.c) [836] sws_isSupportedOutput
 [200] ThreadStart (video_output.c) [8] aac_decode_frame_int (aacdec.c) [1024] sws_rgb2rgb_init
 [273] ThreadStop (video_output.c) [947] aac_decode_init (aacdec.c) [837] sws_setColorspaceDetails
  [62] TimeGet (opensles_android.c) [380] access_Control (vlc_access.h) [1025] tak_init_static_data (takdec.c)
 [162] TriggerCallback (variables.c) [317] access_Delete (access.c) [645] tdelete (tdestroy.c)
 [375] TryFormat (filters.c) [326] access_New (access.c) [609] tdestroy (tdestroy.c)
 [490] TsStop (es_out_timeshift.c) [769] af_autofitter_done (afmodule.c) [653] tdestroy_recurse (tdestroy.c)
 [766] UpdateBufferFunctions (filter_chain.c) [770] af_autofitter_init (afmodule.c) [537] tfind (tdestroy.c)
 [280] UpdatePtsDelay (input.c) [771] af_get_interface (afmodule.c) [74] transform_GetBasicOps (es_format.c)
 [298] VarListAdd (event.c)  [772] af_glyph_hints_done (afhints.c) [556] tsearch (tdestroy.c)
 [251] VarListDel (event.c)  [632] aout_BitsPerSample    [702] tt_cmap4_init (ttcmap.c)
 [241] VarListSelect (event.c) [469] aout_ChangeFilterString (common.c) [703] tt_cmap4_validate (ttcmap.c)
  [54] VideoBufferNew (display.c) [20] aout_ChannelExtract [838] tt_cmap6_validate (ttcmap.c)
 [360] VideoFilterCallback (vout_intf.c) [773] aout_CheckChannelExtraction [839] tt_cmap_init (ttcmap.c)
 [945] VoutDestructor (video_output.c) [211] aout_DecDelete (dec.c) [840] tt_driver_done (ttobjs.c)
 [281] VoutDisplayCreateRender (display.c) [226] aout_DecFlush (dec.c) [841] tt_driver_init (ttobjs.c)
 [385] VoutDisplayEvent (display.c) [536] aout_DecGetResetLost (dec.c) [842] tt_face_build_cmaps (ttcmap.c)
 [421] VoutValidateFormat (video_output.c) [205] aout_DecIsEmpty (dec.c) [843] tt_face_done (ttobjs.c)
 [384] VoutVideoFilterStaticNewPicture (video_output.c) [198] aout_DecNew (dec.c) [844] tt_face_free_eblc (ttsbit.c)
 [767] WallPaperCallback (vout_intf.c) [10] aout_DecPlay (dec.c) [845] tt_face_free_name (ttload.c)
 [768] ZoomCallback (vout_intf.c) [234] aout_Destroy (output.c) [846] tt_face_free_ps_names (ttpost.c)
 [16174] MemToBlock(unsigned char*, unsigned int, unsigned int) (util.cpp) [948] aout_Destructor (output.c) [633] tt_face_get_name (sfobjs.c)
  [49] BlockDecode(demux_t*, libmatroska::KaxBlock*, libmatroska::KaxSimpleBlock*, long long, long long, bool) (mkv.cpp) [551] aout_FiltersAdjustResampling [587] tt_face_goto_table (ttload.c)
  [98] es_out_Control(es_out_t*, int, ...) (vlc_es_out.h) [236] aout_FiltersDelete [847] tt_face_init (ttobjs.c)
 [16284] es_out_Control(es_out_t*, int, ...) (vlc_es_out.h) [215] aout_FiltersNew [848] tt_face_load_cmap (ttload.c)
 [16481] fill_extra_data(mkv_track_t*, unsigned int) (matroska_segment_parse.cpp) [293] aout_FiltersPipelineCreate (filters.c) [849] tt_face_load_cvt (ttpload.c)
 [129] Open(vlc_object_t*) (mkv.cpp) [272] aout_FiltersPipelineDestroy (filters.c) [850] tt_face_load_eblc (ttsbit.c)
 [16482] Open(vlc_object_t*) (dash.cpp) [12] aout_FiltersPlay [851] tt_face_load_font_dir (ttload.c)
 [224] Close(vlc_object_t*) (mkv.cpp) [647] aout_FormatPrepare [852] tt_face_load_gasp (ttload.c)
  [26] Demux(demux_t*) (mkv.cpp) [335] aout_FormatPrint  [853] tt_face_load_generic_header (ttload.c)
 [16200] Control(demux_t*, int, std::__va_list) (mkv.cpp) [678] aout_FormatPrintChannels [854] tt_face_load_head (ttload.c)
 [467] ReadMeta(vlc_object_t*) (taglib.cpp) [394] aout_FormatsPrint (common.c) [704] tt_face_load_hhea (ttmtx.c)
 [396] EbmlParser::Up() (Ebml_parser.cpp) [27] aout_Interleave [855] tt_face_load_hmtx (ttmtx.c)
  [94] EbmlParser::Get(int) (Ebml_parser.cpp) [209] aout_New (output.c) [856] tt_face_load_kern (ttkern.c)
 [16216] EbmlParser::Down() (Ebml_parser.cpp) [399] aout_OutputDelete (output.c) [857] tt_face_load_maxp (ttload.c)
 [373] EbmlParser::Reset(demux_t*) (Ebml_parser.cpp) [260] aout_OutputFlush (output.c) [858] tt_face_load_name (ttload.c)
 [253] EbmlParser::EbmlParser(libebml::EbmlStream*, libebml::EbmlElement*, demux_t*) (Ebml_parser.cpp) [136] aout_OutputLock (output.c) [859] tt_face_load_os2 (ttload.c)
 [16285] EbmlParser::~EbmlParser() (Ebml_parser.cpp) [276] aout_OutputNew (output.c) [860] tt_face_load_pclt (ttload.c)
 [16483] demux_sys_t::FreeUnused() (demux.cpp) [37] aout_OutputPlay (output.c) [861] tt_face_load_post (ttload.c)
 [16484] demux_sys_t::PreloadLinked() (demux.cpp) [38] aout_OutputTimeGet (output.c) [862] tt_get_interface (ttdriver.c)
 [16485] demux_sys_t::PreparePlayback(virtual_segment_c*) (demux.cpp) [60] aout_OutputUnlock (output.c) [705] tt_name_entry_ascii_from_utf16 (sfobjs.c)
 [150] demux_sys_t::AnalyseAllSegmentsFound(demux_t*, libebml::EbmlStream*, bool) (demux.cpp) [949] aout_get_native_sample_rate [863] tt_size_done (ttobjs.c)
 [248] demux_sys_t::InitUi() (demux.cpp) [190] aout_update_format (decoder.c) [864] tt_size_init (ttobjs.c)
 [244] demux_sys_t::CleanUi() (demux.cpp) [533] aout_volume_Amplify (volume.c) [865] tt_size_request (ttdriver.c)
 [245] demux_sys_t::~demux_sys_t() (demux.cpp) [292] aout_volume_Delete (volume.c) [866] tt_size_reset (ttobjs.c)
 [246] demux_sys_t::~demux_sys_t() (demux.cpp) [333] aout_volume_New (volume.c) [867] tt_slot_init (ttobjs.c)
 [16167] libmatroska::DataBuffer::Size() [387] aout_volume_SetFormat (volume.c) [183] var_AddCallback
 [16169] libmatroska::DataBuffer::Buffer() [44] apply_ltp (aacdec.c) [158] var_Change
 [16173] libmatroska::DataBuffer::~DataBuffer() [950] atrac3_init_static_data (atrac3.c) [1026] var_Copy (output.c)
 [16196] libmatroska::KaxCluster::GetBlockGlobalTimecode(short) [774] av_buffer_alloc [155] var_Create
 [16231] libmatroska::KaxCluster::Create() [504] av_buffer_create [192] var_DelCallback
 [16232] libmatroska::KaxCluster::KaxCluster() [775] av_buffer_default_free [223] var_Destroy
 [16233] libmatroska::KaxCluster::~KaxCluster() [78] av_buffer_pool_get [610] var_DestroyAll (variables.c)
 [16287] libmatroska::KaxCodecID::Create() [951] av_buffer_pool_init [446] var_Get
 [16288] libmatroska::KaxCodecID::KaxCodecID() [679] av_buffer_pool_uninit [148] var_GetChecked
 [16289] libmatroska::KaxCodecID::~KaxCodecID() [71] av_buffer_unref [154] var_Inherit
 [16220] libmatroska::KaxCueTime::Create() [559] av_codec_is_decoder [379] var_InheritURational
 [16221] libmatroska::KaxCueTime::KaxCueTime() [776] av_codec_is_encoder [267] var_OptionParse (variables.c)
 [16222] libmatroska::KaxCueTime::~KaxCueTime() [952] av_crc_init [706] var_Set
 [16348] libmatroska::KaxDateUTC::Create() [777] av_d2q  [166] var_SetChecked
 [16349] libmatroska::KaxDateUTC::KaxDateUTC() [778] av_dict_free [283] var_TriggerCallback
 [16350] libmatroska::KaxDateUTC::~KaxDateUTC() [779] av_dict_get [462] var_Type
 [16486] libmatroska::KaxSegment::Create() [530] av_frame_alloc [482] varcmp (variables.c)
 [16487] libmatroska::KaxSegment::KaxSegment() [109] av_frame_free [92] video_format_ApplyRotation
 [16488] libmatroska::KaxSegment::~KaxSegment() [76] av_frame_unref [523] video_format_CopyCrop
 [16241] libmatroska::KaxCuePoint::Create() [479] av_free [388] video_format_FixRgb
 [16242] libmatroska::KaxCuePoint::KaxCuePoint() [480] av_freep [101] video_format_GetTransform
 [16243] libmatroska::KaxCuePoint::~KaxCuePoint() [780] av_gcd [721] video_format_IsSimilar
 [16223] libmatroska::KaxCueTrack::Create() [662] av_get_bits_per_pixel [395] video_format_Print
 [16224] libmatroska::KaxCueTrack::KaxCueTrack() [953] av_get_bytes_per_sample [581] video_format_Setup
 [16225] libmatroska::KaxCueTrack::~KaxCueTrack() [499] av_get_channel_layout_nb_channels [100] video_format_TransformBy
 [16351] libmatroska::KaxDuration::Create() [629] av_get_cpu_flags [93] video_format_TransformTo
 [16352] libmatroska::KaxDuration::KaxDuration() [43] av_init_packet [646] vlc_CPU
 [16353] libmatroska::KaxDuration::~KaxDuration() [954] av_log_set_level [152] vlc_Log
 [16354] libmatroska::KaxSeekHead::Create() [485] av_malloc [1027] vlc_audio_replay_gain_MergeFromMeta (meta.c)
 [16355] libmatroska::KaxSeekHead::KaxSeekHead() [487] av_mallocz [1028] vlc_av_frame_Release (audio.c)
 [16356] libmatroska::KaxSeekHead::~KaxSeekHead() [563] av_opt_find2 [440] vlc_cancel
 [16290] libmatroska::KaxTrackUID::Create() [955] av_opt_free [707] vlc_clone
 [16291] libmatroska::KaxTrackUID::KaxTrackUID() [489] av_opt_next [708] vlc_clone_attr (thread.c)
 [16292] libmatroska::KaxTrackUID::~KaxTrackUID() [956] av_opt_set [488] vlc_cond_broadcast
 [16266] libmatroska::KaxMuxingApp::Create() [715] av_opt_set_defaults [508] vlc_cond_destroy
 [16267] libmatroska::KaxMuxingApp::KaxMuxingApp() [957] av_opt_set_dict [506] vlc_cond_init
 [16268] libmatroska::KaxMuxingApp::~KaxMuxingApp() [611] av_opt_set_double [75] vlc_cond_signal
 [16293] libmatroska::KaxTrackType::Create() [566] av_opt_set_int [22] vlc_cond_timedwait
 [16294] libmatroska::KaxTrackType::KaxTrackType() [781] av_opt_set_q [173] vlc_cond_wait
 [16295] libmatroska::KaxTrackType::~KaxTrackType() [501] av_packet_get_side_data [284] vlc_custom_create (objects.c)
 [16357] libmatroska::KaxSegmentUID::Create() [603] av_pix_fmt_desc_get [413] vlc_event_attach
 [16358] libmatroska::KaxSegmentUID::KaxSegmentUID() [782] av_reduce [550] vlc_event_callback (libvlcjni.c)
 [16326] libmatroska::KaxSegmentUID::~KaxSegmentUID() (KaxSemantic.h) [592] av_register_codec_parser [1029] vlc_event_manager_init
 [16489] libmatroska::KaxTrackAudio::Create() [500] av_sample_fmt_is_planar [383] vlc_event_manager_register_event_type
 [16490] libmatroska::KaxTrackAudio::KaxTrackAudio() [958] av_samples_get_buffer_size [239] vlc_event_send
 [16491] libmatroska::KaxTrackAudio::~KaxTrackAudio() [959] avcodec_alloc_context3 [593] vlc_fourcc_GetChromaDescription
 [16359] libmatroska::KaxTrackEntry::Create() [411] avcodec_close [514] vlc_fourcc_GetCodec
 [16360] libmatroska::KaxTrackEntry::KaxTrackEntry() [6] avcodec_decode_audio4 [1030] vlc_fourcc_GetCodecAudio
 [16361] libmatroska::KaxTrackEntry::~KaxTrackEntry() [42] avcodec_default_get_buffer2 [1031] vlc_fourcc_GetCodecFromString
 [16492] libmatroska::KaxTrackVideo::Create() [960] avcodec_find_decoder [654] vlc_fourcc_GetDescription
 [16493] libmatroska::KaxTrackVideo::KaxTrackVideo() [961] avcodec_flush_buffers [79] vlc_fourcc_IsYUV
 [16494] libmatroska::KaxTrackVideo::~KaxTrackVideo() [962] avcodec_get_context_defaults3 [568] vlc_gettext
 [16269] libmatroska::KaxWritingApp::Create() [783] avcodec_is_open [425] vlc_global_mutex
 [16270] libmatroska::KaxWritingApp::KaxWritingApp() [963] avcodec_open2 [722] vlc_inhibit_Destroy (inhibit.c)
 [16271] libmatroska::KaxWritingApp::~KaxWritingApp() [82] avcodec_register [321] vlc_join
 [16362] libmatroska::KaxSeekPreRoll::Create() [83] avcodec_register_all [463] vlc_list_children
 [16363] libmatroska::KaxSeekPreRoll::KaxSeekPreRoll() [964] avpriv_float_dsp_init [1032] vlc_list_release
 [16364] libmatroska::KaxSeekPreRoll::~KaxSeekPreRoll() [965] avpriv_mpeg4audio_get_config [868] vlc_meta_Delete
 [16189] libmatroska::KaxSimpleBlock::Create() [784] bdf_driver_requester (bdfdrivr.c) [676] vlc_meta_Get
 [16197] libmatroska::KaxSimpleBlock::SetParent(libmatroska::KaxCluster&) [491] block_Alloc [655] vlc_meta_GetExtra
 [16187] libmatroska::KaxSimpleBlock::~KaxSimpleBlock() [595] block_FifoCount [1033] vlc_meta_GetStatus
 [16296] libmatroska::KaxTrackNumber::Create() [405] block_FifoEmpty [869] vlc_meta_Merge
 [16297] libmatroska::KaxTrackNumber::KaxTrackNumber() [121] block_FifoGet [723] vlc_meta_New
 [16298] libmatroska::KaxTrackNumber::~KaxTrackNumber() [785] block_FifoNew [724] vlc_meta_Set
 [16365] libmatroska::KaxCodecPrivate::Create() [96] block_FifoPut [1034] vlc_meta_SetStatus
 [16366] libmatroska::KaxCodecPrivate::KaxCodecPrivate() [444] block_FifoRelease [185] vlc_module_load
 [16367] libmatroska::KaxCodecPrivate::~KaxCodecPrivate() [496] block_FifoSize (block.c) [217] vlc_module_unload
 [16272] libmatroska::KaxSeekPosition::Create() [309] block_FifoWake [507] vlc_mutex_destroy
 [16273] libmatroska::KaxSeekPosition::KaxSeekPosition() [493] block_Init [505] vlc_mutex_init
 [16274] libmatroska::KaxSeekPosition::~KaxSeekPosition() [534] block_Realloc [685] vlc_mutex_init_recursive
 [16368] libmatroska::KaxAudioChannels::Create() [492] block_generic_Release (block.c) [32] vlc_mutex_lock
 [16369] libmatroska::KaxAudioChannels::KaxAudioChannels() [574] build_canonical_huff (atrac3plus.c) [40] vlc_mutex_trylock
 [16370] libmatroska::KaxAudioChannels::~KaxAudioChannels() [557] build_table (bitstream.c) [91] vlc_mutex_unlock
 [16185] libmatroska::KaxInternalBlock::ReleaseFrames() [786] cff_driver_done (cffobjs.c) [539] vlc_object_alive
 [110] libmatroska::KaxInternalBlock::ReadData(libebml::IOCallback&, libebml::ScopeMode) [787] cff_driver_init (cffobjs.c) [1035] vlc_object_create
 [16198] libmatroska::KaxInternalBlock::SetParent(libmatroska::KaxCluster&) [788] cff_get_interface (cffdrivr.c) [586] vlc_object_hold
 [16186] libmatroska::KaxInternalBlock::~KaxInternalBlock() [966] che_configure (aacdec.c) [193] vlc_object_release
 [16275] libmatroska::KaxTimecodeScale::Create() [789] cid_driver_done (cidobjs.c) [725] vlc_object_set_destructor (objects.c)
 [16276] libmatroska::KaxTimecodeScale::KaxTimecodeScale() [790] cid_driver_init (cidobjs.c) [330] vlc_object_set_name (objects.c)
 [16277] libmatroska::KaxTimecodeScale::~KaxTimecodeScale() [791] cid_get_interface (cidriver.c) [1036] vlc_open
 [16495] libmatroska::KaxTrackLanguage::Create() [792] config_ChainCreate [686] vlc_opendir
 [16496] libmatroska::KaxTrackLanguage::KaxTrackLanguage() [565] config_FindConfig [625] vlc_readdir
 [16497] libmatroska::KaxTrackLanguage::~KaxTrackLanguage() [212] config_GetFloat [77] vlc_restorecancel
 [16327] libmatroska::KaxTrackMinCache::Create() [167] config_GetInt [181] vlc_rwlock_rdlock
 [16328] libmatroska::KaxTrackMinCache::KaxTrackMinCache() [186] config_GetPsz [147] vlc_rwlock_unlock
 [16329] libmatroska::KaxTrackMinCache::~KaxTrackMinCache() [716] config_GetType [497] vlc_savecancel
 [16371] libmatroska::KaxCodecDecodeAll::Create() [717] convert_omx_to_profile_idc (utils.c) [709] vlc_sem_destroy
 [16372] libmatroska::KaxCodecDecodeAll::KaxCodecDecodeAll() [494] date_Get [710] vlc_sem_init
 [16373] libmatroska::KaxCodecDecodeAll::~KaxCodecDecodeAll() [535] date_Increment [288] vlc_sem_post
 [16217] libmatroska::KaxClusterTimecode::Create() [967] date_Init [322] vlc_sem_wait
 [16218] libmatroska::KaxClusterTimecode::KaxClusterTimecode() [648] date_Set [481] vlc_testcancel
 [16219] libmatroska::KaxClusterTimecode::~KaxClusterTimecode() [554] debug_log [577] vlc_towc (unicode.c)
 [16374] libmatroska::KaxTrackFlagForced::Create() [680] decode_URI [578] vlc_ureduce
 [16375] libmatroska::KaxTrackFlagForced::KaxTrackFlagForced() [968] decode_audio_specific_config (aacdec.c) [153] vlc_vaLog
 [16376] libmatroska::KaxTrackFlagForced::~KaxTrackFlagForced() [9] decode_cpe (aacdec.c) [123] vout_AreDisplayPicturesInvalid
 [16330] libmatroska::KaxTrackFlagLacing::Create() [11] decode_ics_info (aacdec.c) [227] vout_Close
 [16331] libmatroska::KaxTrackFlagLacing::KaxTrackFlagLacing() [793] decoder_New (decoder.c) [305] vout_CloseWrapper (vout_wrapper.c)
 [16332] libmatroska::KaxTrackFlagLacing::~KaxTrackFlagLacing() [28] decoder_NewPicture [354] vout_ControlChangeCropRatio (video_output.c)
 [16377] libmatroska::KaxVideoPixelWidth::Create() [544] demux_Control (demux.h) [361] vout_ControlChangeFilters (video_output.c)
 [16378] libmatroska::KaxVideoPixelWidth::KaxVideoPixelWidth() [232] demux_Delete (demux.c) [355] vout_ControlChangeSampleAspectRatio (video_output.c)
 [16379] libmatroska::KaxVideoPixelWidth::~KaxVideoPixelWidth() [969] demux_GetParentInput [362] vout_ControlChangeSubFilters (video_output.c)
 [16380] libmatroska::KaxTrackFlagDefault::Create() [264] demux_New (demux.c) [363] vout_ControlChangeSubMargin (video_output.c)
 [16381] libmatroska::KaxTrackFlagDefault::KaxTrackFlagDefault() [794] destroy_charmaps (ftobjs.c) [364] vout_ControlChangeSubSources (video_output.c)
 [16382] libmatroska::KaxTrackFlagDefault::~KaxTrackFlagDefault() [795] destroy_face (ftobjs.c) [286] vout_ControlChangeWindowState (video_output.c)
 [16383] libmatroska::KaxTrackFlagEnabled::Create() [796] destroy_size (ftobjs.c) [356] vout_ControlChangeZoom (video_output.c)
 [16384] libmatroska::KaxTrackFlagEnabled::KaxTrackFlagEnabled() [591] es_format_Clean [306] vout_DeleteDisplay
 [16385] libmatroska::KaxTrackFlagEnabled::~KaxTrackFlagEnabled() [604] es_format_Copy [409] vout_DisplayTitle (video_output.c)
 [16386] libmatroska::KaxVideoPixelHeight::Create() [601] es_format_Init [1037] vout_EndWrapper (vout_wrapper.c)
 [16387] libmatroska::KaxVideoPixelHeight::KaxVideoPixelHeight() [694] es_format_InitFromVideo [106] vout_FilterDisplay
 [16388] libmatroska::KaxVideoPixelHeight::~KaxVideoPixelHeight() [797] es_format_IsSimilar [126] vout_FixLeaks (video_output.c)
 [16215] libmatroska::GetKaxGlobal_Context() [107] es_out_Control (vlc_es_out.h) [256] vout_Flush (video_output.c)
 [16389] libmatroska::KaxAudioSamplingFreq::Create() [187] es_out_Control (vlc_es_out.h) [410] vout_FlushSubpictureChannel
 [16390] libmatroska::KaxAudioSamplingFreq::KaxAudioSamplingFreq() [498] es_out_Control (vlc_es_out.h) [35] vout_GetPicture
 [16391] libmatroska::KaxAudioSamplingFreq::~KaxAudioSamplingFreq() [381] event_attach (event.c) [527] vout_GetResetStatistic (video_output.c)
 [16244] libmatroska::KaxCueTrackPositions::Create() [970] ff_aac_sbr_ctx_close [221] vout_InitInterlacingSupport (interlacing.c)
 [16245] libmatroska::KaxCueTrackPositions::KaxCueTrackPositions() [971] ff_aac_sbr_ctx_init [1038] vout_InitWrapper (vout_wrapper.c)
 [16246] libmatroska::KaxCueTrackPositions::~KaxCueTrackPositions() [972] ff_aac_sbr_init [180] vout_IntfInit (vout_intf.c)
 [16498] libmatroska::KaxVideoDisplayWidth::Create() [973] ff_aac_tableinit [210] vout_IntfReinit (vout_intf.c)
 [16499] libmatroska::KaxVideoDisplayWidth::KaxVideoDisplayWidth() [974] ff_atrac3p_init_vlcs [519] vout_IsDisplayFiltered
 [16500] libmatroska::KaxVideoDisplayWidth::~KaxVideoDisplayWidth() [975] ff_atrac_generate_tables [247] vout_IsEmpty (video_output.c)
 [16226] libmatroska::KaxCueClusterPosition::Create() [976] ff_dsputil_static_init [108] vout_ManageDisplay
 [16227] libmatroska::KaxCueClusterPosition::KaxCueClusterPosition() [663] ff_fft_end [102] vout_ManageWrapper (vout_wrapper.c)
 [16228] libmatroska::KaxCueClusterPosition::~KaxCueClusterPosition() [664] ff_fft_init [270] vout_NewDisplay
 [16392] libmatroska::KaxMaxBlockAdditionID::Create() [665] ff_fft_init_arm [229] vout_OpenWrapper (vout_wrapper.c)
 [16393] libmatroska::KaxMaxBlockAdditionID::KaxMaxBlockAdditionID() [977] ff_float_dsp_init_arm [99] vout_PutPicture
 [16394] libmatroska::KaxMaxBlockAdditionID::~KaxMaxBlockAdditionID() [978] ff_float_dsp_init_neon [168] vout_Request
 [16395] libmatroska::KaxTrackTimecodeScale::Create() [979] ff_float_dsp_init_vfp [338] vout_Reset (video_output.c)
 [16396] libmatroska::KaxTrackTimecodeScale::KaxTrackTimecodeScale() [980] ff_fmt_convert_init [870] vout_SetDisplayAspect
 [16397] libmatroska::KaxTrackTimecodeScale::~KaxTrackTimecodeScale() [981] ff_fmt_convert_init_arm [871] vout_SetDisplayCrop
 [16501] libmatroska::KaxVideoDisplayHeight::Create() [798] ff_getSwsFunc [872] vout_SetDisplayZoom
 [16502] libmatroska::KaxVideoDisplayHeight::KaxVideoDisplayHeight() [31] ff_get_buffer [130] vout_SetInterlacingState (interlacing.c)
 [16503] libmatroska::KaxVideoDisplayHeight::~KaxVideoDisplayHeight() [982] ff_get_cpu_flags_arm [418] vout_SetWindowState
 [16247] libmatroska::KaxCueRelativePosition::Create() [15] ff_imdct_half_neon [517] vout_UpdateDisplaySourceProperties (display.c)
 [16248] libmatroska::KaxCueRelativePosition::KaxCueRelativePosition() [608] ff_init_ff_cos_tabs [1039] vout_control_Clean (control.c)
 [16249] libmatroska::KaxCueRelativePosition::~KaxCueRelativePosition() [718] ff_init_ff_sine_windows [464] vout_control_Dead (control.c)
 [16504] libmatroska::KaxVideoFlagInterlaced::Create() [558] ff_init_vlc_sparse [1040] vout_control_Init (control.c)
 [16505] libmatroska::KaxVideoFlagInterlaced::KaxVideoFlagInterlaced() [983] ff_jpeg2000_init_tier1_luts [34] vout_control_Pop (control.c)
 [16506] libmatroska::KaxVideoFlagInterlaced::~KaxVideoFlagInterlaced() [799] ff_kbd_window_init [199] vout_control_Push (control.c)
 [16398] libmatroska::KaxTrackDefaultDuration::Create() [666] ff_mdct_end [254] vout_control_PushInteger (control.c)
 [16399] libmatroska::KaxTrackDefaultDuration::KaxTrackDefaultDuration() [667] ff_mdct_init [266] vout_control_PushPair (control.c)
 [16400] libmatroska::KaxTrackDefaultDuration::~KaxTrackDefaultDuration() [984] ff_mpa_synth_init_float [255] vout_control_PushString (control.c)
 [16401] libmatroska::KaxCues::Create() [985] ff_mqc_init_context_tables [313] vout_control_PushTime (control.c)
 [16402] libmatroska::KaxCues::KaxCues() [986] ff_ps_ctx_init [314] vout_control_PushVoid (control.c)
 [16403] libmatroska::KaxCues::~KaxCues() [987] ff_ps_init [262] vout_control_WaitEmpty (control.c)
 [16404] libmatroska::KaxCues::~KaxCues() [988] ff_psdsp_init [104] vout_control_Wake (control.c)
 [16299] libmatroska::KaxInfo::Create() [989] ff_psdsp_init_arm [606] vout_control_cmd_Clean (control.c)
 [16300] libmatroska::KaxInfo::KaxInfo() [990] ff_sbrdsp_init [711] vout_display_Control (display.c)
 [16301] libmatroska::KaxInfo::~KaxInfo() [991] ff_sbrdsp_init_arm [1041] vout_display_GetDefaultDisplaySize
 [16333] libmatroska::KaxSeek::Create() [719] ff_sine_window_init [29] vout_new_buffer (decoder.c)
 [16334] libmatroska::KaxSeek::KaxSeek() [800] ff_sws_init_input_funcs [1042] vout_snapshot_Clean (snapshot.c)
 [16335] libmatroska::KaxSeek::~KaxSeek() [801] ff_sws_init_output_funcs [465] vout_snapshot_End (snapshot.c)
 [16278] libmatroska::KaxSeekID::Create() [992] ff_tak_init_crc [1043] vout_snapshot_Init (snapshot.c)
 [16279] libmatroska::KaxSeekID::KaxSeekID() [993] ff_thread_init [112] vout_snapshot_IsRequested (snapshot.c)
 [16280] libmatroska::KaxSeekID::~KaxSeekID() [21] ff_vector_fmul_window_neon [873] winfnt_get_service (winfnt.c)
 [16405] libmatroska::KaxTracks::Create() [994] ff_yuv2rgb_c_init_tables [1044] wmavoice_init_static_data (wmavoice.c)
 [16406] libmatroska::KaxTracks::KaxTracks() [319] ffmpeg_OpenCodec (avcodec.c) [607] wmemcmp
 [16407] libmatroska::KaxTracks::~KaxTracks() [84] fft512_neon (fft_neon.S) [874] wmemcpy
 [16408] event_thread_t::ResetPci() (demux.cpp) [85] fft8_neon (fft_neon.S) [598] wmemset
 [16507] event_thread_t::~event_thread_t() (demux.cpp) [18] fft_pass_neon (fft_neon.S) [64] <cycle 1>
 [16508] event_thread_t::~event_thread_t() (demux.cpp) [415] filter_DeleteBlend [477] <cycle 2>
 [16509] virtual_chapter_c::PublishChapters(input_title_t&, int&, int) (virtual_segment.cpp) [471] filter_NewBlend [261] <cycle 3>
 [16510] virtual_chapter_c::CreateVirtualChapter(chapter_item_c*, matroska_segment_c*, std::vector<matroska_segment_c*, std::allocator<matroska_segment_c*> >*, long long*, bool) (virtual_segment.cpp) [327] filter_chain_AppendFilter [33] <cycle 4>
 [16170] virtual_chapter_c::getSubChapterbyTimecode(long long) (virtual_segment.cpp) [328] filter_chain_AppendFilterInternal (filter_chain.c) [139] <cycle 5>
 [16511] virtual_chapter_c::~virtual_chapter_c() (virtual_segment.cpp) [995] filter_chain_AppendFromString [478] <cycle 6>
 [16512] virtual_edition_c::GetMainName() (virtual_segment.cpp) [996] filter_chain_AppendFromStringInternal (filter_chain.c)


More information about the Android mailing list