/third_party/ffmpeg/doc/ |
H A D | texi2pod.pl | 32 $chapter = ""; 119 /^\@chapter\s+([A-Za-z ]+)/ and do { 120 # close old chapter 121 $chapters{$chapter_name} .= postprocess($chapter) if ($chapter_name); 123 # start new chapter 126 $chapter = ""; 132 # close old chapter 133 $chapters{$chapter_name} .= postprocess($chapter) if ($chapter_name); 321 $chapter =~ s/$//; 335 $chapter [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | demux_utils.c | 46 AVChapter *chapter = NULL; in avpriv_new_chapter() local 59 chapter = s->chapters[i]; in avpriv_new_chapter() 60 if (!chapter) in avpriv_new_chapter() 64 if (!chapter) { in avpriv_new_chapter() 65 chapter = av_mallocz(sizeof(*chapter)); in avpriv_new_chapter() 66 if (!chapter) in avpriv_new_chapter() 68 ret = av_dynarray_add_nofree(&s->chapters, &s->nb_chapters, chapter); in avpriv_new_chapter() 70 av_free(chapter); in avpriv_new_chapter() 74 av_dict_set(&chapter in avpriv_new_chapter() [all...] |
H A D | bluray.c | 40 int chapter; member 48 {"chapter", "", OFFSET(chapter), AV_OPT_TYPE_INT, { .i64=1 }, 1, 0xfffe, AV_OPT_FLAG_DECODING_PARAM }, 182 /* select chapter */ in bluray_open() 183 if (bd->chapter > 1) { in bluray_open() 184 bd_seek_chapter(bd->bd, bd->chapter - 1); in bluray_open()
|
H A D | oggparsevorbis.c | 45 AVChapter *chapter = NULL; in ogm_chapter() local 60 chapter = as->chapters[i]; in ogm_chapter() 63 if (!chapter) in ogm_chapter() 66 av_dict_set(&chapter->metadata, "title", val, 0); in ogm_chapter()
|
H A D | nut.h | 101 ChapterContext *chapter; member
|
H A D | id3v2.c | 1262 AVChapter *chapter; in ff_id3v2_parse_chapters() local 1268 chapter = avpriv_new_chapter(s, i++, time_base, chap->start, in ff_id3v2_parse_chapters() 1270 if (!chapter) in ff_id3v2_parse_chapters() 1273 if ((ret = av_dict_copy(&chapter->metadata, chap->meta, 0)) < 0) in ff_id3v2_parse_chapters()
|
H A D | nutenc.c | 600 put_tt(nut, nut->chapter[id].time_base, bc, ch->start); // chapter_start in write_chapter() 737 nut->chapter = av_calloc(s->nb_chapters, sizeof(*nut->chapter)); in nut_write_header() 740 if (!nut->stream || !nut->chapter || !nut->time_base) in nut_write_header() 782 nut->chapter[i].time_base = &nut->time_base[j]; in nut_write_header() 1234 av_freep(&nut->chapter); in nut_write_deinit()
|
H A D | concatdec.c | 455 [DIR_CHAPTER ] = { "chapter", "idd", 0 }, 466 AVChapter *chapter = NULL; in concat_parse_script() local 629 chapter = avpriv_new_chapter(avf, arg_int[0], AV_TIME_BASE_Q, in concat_parse_script() 631 if (!chapter) in concat_parse_script()
|
H A D | nutdec.c | 514 AVChapter *chapter = NULL; in decode_info_header() local 530 chapter = avpriv_new_chapter(s, chapter_id, in decode_info_header() 534 if (!chapter) { in decode_info_header() 535 av_log(s, AV_LOG_ERROR, "Could not create chapter.\n"); in decode_info_header() 538 metadata = &chapter->metadata; in decode_info_header()
|
H A D | matroskadec.c | 305 AVChapter *chapter; member 1852 MatroskaChapter *chapter = matroska->chapters.elem; in matroska_convert_tags() local 1855 if (chapter[j].uid == tags[i].target.chapteruid && in matroska_convert_tags() 1856 chapter[j].chapter) { in matroska_convert_tags() 1858 &chapter[j].chapter->metadata, NULL); in matroska_convert_tags() 1864 "The tags at index %d refer to a non-existent chapter " in matroska_convert_tags() 3142 chapters[i].chapter = in matroska_read_header()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/ |
H A D | chunked.js | 42 // scroll to the first <a> linking to a chapter 43 function scrollChapter(element, chapter) { 45 if(element.children[i].nodeName == "A" && element.children[i].href.indexOf(chapter) >= 0) { 50 if(scrollChapter(element.children[i], chapter)) 132 // get the chapter name from the current URL 137 // Scroll the sidebar to the appropriate chapter
|
/third_party/lz4/contrib/gen_manual/ |
H A D | gen_manual.cpp | 108 int linenum, chapter = 1; in main() local 222 sout << "<a name=\"Chapter" << chapter << "\"></a><h2>" << comments[0] << "</h2><pre>"; in main() 224 chapter++; in main()
|
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | _packager.py | 46 #a list of all ES5 test chapter directories 180 for chapter in TEST_SUITE_SECTIONS: 181 chapterName = chapter.rsplit(os.path.sep, 1)[1] 182 print "Generating test cases for ES5 chapter:", chapterName 188 #create an array for tests in a chapter 190 sourceFiles = getAllJSFiles(chapter) 287 #add the name of the chapter test to our complete list 297 #we now have the list of files for each chapter
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 272 % (\thissection) refers to the chapter (section) in effect at the top 289 % \topmark doesn't work for the very first chapter (after the title 291 % the mark with the chapter defs, unless the user sneaks in, e.g., 293 % first @chapter. 1933 % section, chapter, etc., sizes following suit. This is for the GNU 3374 % @evenheadingmarks top \thischapter <- chapter at the top of a page 3375 % @evenheadingmarks bottom \thischapter <- chapter at the bottom of a page 3424 % chapter name on inside top of right hand pages, document 3437 % For single-sided printing, chapter title goes across top left of page, 4885 % It does not print any chapter headin [all...] |
/third_party/ffmpeg/fftools/ |
H A D | ffprobe.c | 226 [SECTION_ID_CHAPTER] = { SECTION_ID_CHAPTER, "chapter", 0, { SECTION_ID_CHAPTER_TAGS, -1 } }, 3216 AVChapter *chapter = fmt_ctx->chapters[i]; in show_chapters() local 3219 print_int("id", chapter->id); in show_chapters() 3220 print_q ("time_base", chapter->time_base, '/'); in show_chapters() 3221 print_int("start", chapter->start); in show_chapters() 3222 print_time("start_time", chapter->start, &chapter->time_base); in show_chapters() 3223 print_int("end", chapter->end); in show_chapters() 3224 print_time("end_time", chapter->end, &chapter in show_chapters() [all...] |