Lines Matching defs:streaming

180     int streaming;
657 if (c->streaming && os->availability_time_offset)
661 if (c->streaming && os->availability_time_offset && !final)
1400 if (c->lhls && !c->streaming) {
1401 av_log(s, AV_LOG_WARNING, "Enabling streaming as LHLS is enabled\n");
1402 c->streaming = 1;
1410 if (c->ldash && !c->streaming) {
1411 av_log(s, AV_LOG_WARNING, "Enabling streaming as LDash is enabled\n");
1412 c->streaming = 1;
1415 if (c->target_latency && !c->streaming) {
1416 av_log(s, AV_LOG_WARNING, "Target latency option will be ignored as streaming is not enabled\n");
1425 if (c->global_sidx && c->streaming) {
1426 av_log(s, AV_LOG_WARNING, "Global SIDX option will be ignored as streaming is enabled\n");
1429 if (c->frag_type == FRAG_TYPE_NONE && c->streaming) {
1430 av_log(s, AV_LOG_VERBOSE, "Changing frag_type from none to every_frame as streaming is enabled\n");
1445 if (c->write_prft && !c->streaming) {
1446 av_log(s, AV_LOG_WARNING, "Producer Reference Time element option will be ignored as streaming is not enabled\n");
1534 if (c->streaming) {
1537 c->streaming = 0;
1619 os->frag_type = c->streaming ? FRAG_TYPE_EVERY_FRAME : FRAG_TYPE_NONE;
1628 os->frag_type = c->streaming ? FRAG_TYPE_EVERY_FRAME : FRAG_TYPE_NONE;
1635 if (c->streaming)
2037 // In streaming mode the manifest is written at the beginning
2039 if (!c->streaming || final)
2268 // in streaming mode, the segments are available for playing
2271 if (c->streaming) {
2281 //write out the data immediately in streaming mode
2282 if (c->streaming && os->segment_type == SEGMENT_TYPE_MP4) {
2386 { "streaming", "Enable/Disable streaming mode of output. Each frame will be moof fragment", OFFSET(streaming), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
2390 { "global_sidx", "Write global SIDX atom. Applicable only for single file, mp4 output, non-streaming mode", OFFSET(global_sidx), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },