Home | History | Annotate | Download | only in libvpx

Lines Matching refs:mkvparser

16 #include "third_party/libwebm/mkvparser.hpp"
23 mkvparser::MkvReader *const reader =
24 reinterpret_cast<mkvparser::MkvReader*>(webm_ctx->reader);
28 mkvparser::Segment *const segment =
29 reinterpret_cast<mkvparser::Segment*>(webm_ctx->segment);
47 mkvparser::Segment *const segment =
48 reinterpret_cast<mkvparser::Segment*>(webm_ctx->segment);
49 const mkvparser::Cluster *const cluster = segment->GetFirst();
63 mkvparser::MkvReader *const reader = new mkvparser::MkvReader(vpx_ctx->file);
66 mkvparser::EBMLHeader header;
73 mkvparser::Segment* segment;
74 if (mkvparser::Segment::CreateInstance(reader, pos, segment)) {
84 const mkvparser::Tracks *const tracks = segment->GetTracks();
85 const mkvparser::VideoTrack* video_track = NULL;
87 const mkvparser::Track* const track = tracks->GetTrackByIndex(i);
88 if (track->GetType() == mkvparser::Track::kVideo) {
89 video_track = static_cast<const mkvparser::VideoTrack*>(track);
123 mkvparser::Segment *const segment =
124 reinterpret_cast<mkvparser::Segment*>(webm_ctx->segment);
125 const mkvparser::Cluster* cluster =
126 reinterpret_cast<const mkvparser::Cluster*>(webm_ctx->cluster);
127 const mkvparser::Block *block =
128 reinterpret_cast<const mkvparser::Block*>(webm_ctx->block);
129 const mkvparser::BlockEntry *block_entry =
130 reinterpret_cast<const mkvparser::BlockEntry*>(webm_ctx->block_entry);
171 const mkvparser::Block::Frame& frame =
186 mkvparser::MkvReader *const reader =
187 reinterpret_cast<mkvparser::MkvReader*>(webm_ctx->reader);