Lines Matching refs:entry
63 /* Level 1 elements we create a SeekHead entry for:
855 // 21 bytes max for a Seek entry, 6 bytes max for the SeekHead ID
888 mkv_seekhead_entry *entry = &seekhead->entries[i];
893 put_ebml_length(dyn_cp, ebml_id_size(entry->elementid), 0);
894 put_ebml_id(dyn_cp, entry->elementid);
896 put_ebml_uint(dyn_cp, MATROSKA_ID_SEEKPOSITION, entry->segmentpos);
949 for (mkv_cuepoint *entry = cues->entries, *end = entry + cues->num_entries;
950 entry < end;) {
951 uint64_t pts = entry->pts;
963 int idx = entry->stream_idx;
971 put_ebml_uint(cuepoint, MATROSKA_ID_CUECLUSTERPOSITION , entry->cluster_pos + offset);
972 put_ebml_uint(cuepoint, MATROSKA_ID_CUERELATIVEPOSITION, entry->relative_pos);
973 if (entry->duration > 0)
974 put_ebml_uint(cuepoint, MATROSKA_ID_CUEDURATION , entry->duration);
976 } while (++entry < end && entry->pts == pts);