Home
last modified time | relevance | path

Searched refs:is_streamed (Results 1 – 25 of 25) sorted by relevance

/third_party/ffmpeg/libavformat/
Dteeproto.c129 h->is_streamed = 0; in tee_open()
131 h->is_streamed |= c->child[i].url_context->is_streamed; in tee_open()
Dasfenc.c202 int is_streamed; member
428 if (asf->is_streamed) { in asf_write_header1()
448 avio_wl32(pb, (asf->is_streamed || !(pb->seekable & AVIO_SEEKABLE_NORMAL)) ? 3 : 2); /* ??? */ in asf_write_header1()
504 …avio_wl32(pb, (!asf->is_streamed && (pb->seekable & AVIO_SEEKABLE_NORMAL)) << 1); /* flags - seeka… in asf_write_header1()
583 if (!asf->is_streamed && s->nb_chapters) { in asf_write_header1()
717 if (asf->is_streamed) { in asf_write_header1()
788 asf->is_streamed = 1; in asf_write_stream_header()
847 if (asf->is_streamed) in flush_packet()
1051 if ((!asf->is_streamed) && (flags & AV_PKT_FLAG_KEY)) { in asf_write_packet()
1093 if (!asf->is_streamed && asf->next_start_sec) { in asf_write_trailer()
[all …]
Dfile.c234 h->is_streamed = !fstat(fd, &st) && S_ISFIFO(st.st_mode); in file_open()
238 if (!h->is_streamed && flags & AVIO_FLAG_WRITE) in file_open()
242 h->is_streamed = !c->seekable; in file_open()
397 h->is_streamed = 1; in pipe_open()
Dcrypto.c161 if (c->hd->is_streamed) in crypto_open2()
162 h->is_streamed = c->hd->is_streamed; in crypto_open2()
176 h->is_streamed = 1; in crypto_open2()
Dhttp.c688 h->is_streamed = 0; in http_open()
690 h->is_streamed = 1; in http_open()
839 h->is_streamed = 0; /* we _can_ in fact seek */ in parse_content_range()
1186 h->is_streamed = 0; in process_line()
1359 h->is_streamed = 1; /* we can in fact _not_ seek */ in http_read_header()
1690 uint64_t target = h->is_streamed ? 0 : s->off; in http_read_stream()
1695 if (h->is_streamed && !s->reconnect_streamed) in http_read_stream()
1926 if (s->off && h->is_streamed) in http_seek_internal()
2055 h->is_streamed = 0; in http_proxy_open()
2057 h->is_streamed = 1; in http_proxy_open()
Dgopher.c86 h->is_streamed = 1; in gopher_open()
Davio.c105 uc->is_streamed = 0; /* default = not streamed */ in url_alloc_for_protocol()
221 if (!uc->is_streamed && ffurl_seek(uc, 0, SEEK_SET) < 0) in ffurl_connect()
222 uc->is_streamed = 1; in ffurl_connect()
Dftp.c761 h->is_streamed = 1; in ftp_open()
765 h->is_streamed = 1; in ftp_open()
802 if (h->is_streamed) in ftp_seek()
856 if (read <= 0 && !h->is_streamed) { in ftp_read()
Dsrtpproto.c88 h->is_streamed = 1; in srtp_open()
Durl.h44 int is_streamed; /**< true if streamed (no seek possible), default = false */ member
Dlibzmq.c85 h->is_streamed = 1; in zmq_proto_open()
Dasync.c269 h->is_streamed = c->inner->is_streamed; in async_open()
Dhlsproto.c193 h->is_streamed = 1; in hls_open()
Dsctp.c270 h->is_streamed = 1; in sctp_open()
Dtcp.c206 h->is_streamed = 1; in tcp_open()
Dlibamqp.c75 h->is_streamed = 1; in amqp_proto_open()
Dlibrtmp.c190 s->is_streamed = 1; in rtmp_open()
Dmmsh.c221 mmsh->request_seq = h->is_streamed = 1; in mmsh_open_internal()
Dmmst.c518 h->is_streamed = 1; in mms_open()
Drtpproto.c375 h->is_streamed = 1; in rtp_open()
Daviobuf.c967 if (!(h->flags & AVIO_FLAG_WRITE) && h->is_streamed) { in ffio_fdopen()
996 (*s)->seekable = h->is_streamed ? 0 : AVIO_SEEKABLE_NORMAL; in ffio_fdopen()
Dlibsrt.c505 h->is_streamed = 1; in libsrt_setup()
Dudp.c657 h->is_streamed = 1; in udp_open()
Drtmpproto.c2883 s->is_streamed = 1; in rtmp_open()
/third_party/ffmpeg/doc/
DAPIchanges2938 AVIOContext.is_streamed and url_is_streamed()