Lines Matching refs:chapters
389 EbmlList chapters;
667 { MATROSKA_ID_CHAPTERATOM, EBML_NEST, 0, sizeof(MatroskaChapter), offsetof(MatroskaDemuxContext, chapters), { .n = matroska_chapter_entry } },
1852 MatroskaChapter *chapter = matroska->chapters.elem;
1854 for (j = 0; j < matroska->chapters.nb_elem; j++) {
3012 EbmlList *chapters_list = &matroska->chapters;
3014 MatroskaChapter *chapters;
3138 chapters = chapters_list->elem;
3140 if (chapters[i].start != AV_NOPTS_VALUE && chapters[i].uid &&
3141 (max_start == 0 || chapters[i].start > max_start)) {
3142 chapters[i].chapter =
3143 avpriv_new_chapter(s, chapters[i].uid,
3145 chapters[i].start, chapters[i].end,
3146 chapters[i].title);
3147 max_start = chapters[i].start;