Lines Matching defs:flags
451 if (!(s->flags & AVFMT_FLAG_CUSTOM_IO))
1833 int flags, AVDictionary **opts)
1887 pls->ctx->flags = AVFMT_FLAG_CUSTOM_IO;
2238 static int dash_seek(AVFormatContext *s, struct representation *pls, int64_t seek_pos_msec, int flags, int dry_run)
2255 return av_seek_frame(pls->ctx, -1, seek_pos_msec * 1000, flags);
2302 static int dash_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
2308 flags & AVSEEK_FLAG_BACKWARD ?
2310 if ((flags & AVSEEK_FLAG_BYTE) || c->is_live)
2316 ret = dash_seek(s, c->videos[i], seek_pos_msec, flags, !c->videos[i]->ctx);
2320 ret = dash_seek(s, c->audios[i], seek_pos_msec, flags, !c->audios[i]->ctx);
2324 ret = dash_seek(s, c->subtitles[i], seek_pos_msec, flags, !c->subtitles[i]->ctx);
2356 { "cenc_decryption_key", "Media decryption key (hex)", OFFSET(cenc_decryption_key), AV_OPT_TYPE_STRING, {.str = NULL}, INT_MIN, INT_MAX, .flags = FLAGS },
2378 .flags = AVFMT_NO_BYTE_SEEK,