Lines Matching defs:index
182 static char *avi_stream2fourcc(char *tag, int index, enum AVMediaType type)
184 tag[0] = '0' + index / 10;
185 tag[1] = '0' + index % 10;
243 /* Starting to lay out AVI OpenDML master index.
249 avio_w8(pb, 0); /* bIndexSubType (0 == frame index) */
309 /* guess master index size based on bitrate and duration */
606 /* Updating one entry in the AVI OpenDML master index */
618 avpriv_request_sample(s, "OpenDML index duration for audio packets with partial frames");
660 /* Writing AVI OpenDML leaf index chunk */
666 avio_w8(pb, 0); /* bIndexSubType (0 == frame index) */
993 { "reserve_index_space", "reserve space (in bytes) at the beginning of the file for each stream index", OFFSET(reserve_index_space), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, ENC },