Home | History | Annotate | Download | only in mkvmuxer

Lines Matching refs:cue

387       CuePoint* const cue = cue_entries_[i];
388 delete cue;
394 bool Cues::AddCue(CuePoint* cue) {
395 if (!cue)
421 cue->set_output_block_number(output_block_number_);
422 cue_entries_[cue_entries_size_++] = cue;
450 const CuePoint* const cue = GetCueByIndex(i);
452 if (!cue)
455 size += cue->Size();
466 const CuePoint* const cue = GetCueByIndex(i);
468 if (!cue->Write(writer))
3119 // New size of the cue is computed as follows
3121 // Let b = Increase in Cue Point's size due to this iteration
3189 // Recompute cue positions and seek entries.
3386 CuePoint* const cue = new (std::nothrow) CuePoint(); // NOLINT
3387 if (!cue)
3390 cue->set_time(timestamp / segment_info_.timecode_scale());
3391 cue->set_block_number(cluster->blocks_added());
3392 cue->set_cluster_pos(cluster->position_for_cues());
3393 cue->set_track(track);
3394 if (!cues_.AddCue(cue)) {
3395 delete cue;