Home
last modified time | relevance | path

Searched refs:read_position (Results 1 – 11 of 11) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/gs/
Dgstgssrc.cpp86 guint64 read_position; member
213 src->read_position = 0; in gst_gs_src_init()
230 src->read_position = 0; in gst_gs_src_finalize()
439 if (G_UNLIKELY(offset != (guint64)-1 && src->read_position != offset)) { in gst_gs_src_fill()
441 src->read_position = offset; in gst_gs_src_fill()
469 src->read_position += ret; in gst_gs_src_fill()
520 src->read_position = 0; in gst_gs_src_start()
567 src->read_position = 0; in gst_gs_src_stop()
/third_party/gstreamer/gstplugins_bad/ext/curl/
Dgstcurlhttpsrc.c734 source->read_position = 0; in gst_curl_http_src_init()
921 if (src->request_position == src->read_position) { in gst_curl_http_src_handle_seek()
954 src->request_position, src->read_position); in gst_curl_http_src_handle_seek()
1276 s->read_position = s->request_position; in gst_curl_http_src_create_easy_handle()
1778 src->read_position = (guint64)-1; in gst_curl_http_src_do_seek()
1811 src->read_position = (guint64)-1; in gst_curl_http_src_do_seek()
2259 if (src->read_position != (guint64)-1 && bytes_read > (G_MAXUINT64 - src->read_position)) {
2261 if (bytes_read > (G_MAXUINT64 - src->read_position)) {
2264 bytes_read, src->read_position);
2270 …new_position = (src->read_position == (guint64)-1) ? bytes_read : (src->read_position + bytes_read…
[all …]
Dgstcurlhttpsrc.h176 guint64 read_position; /* Current position. */ member
/third_party/gstreamer/gstreamer/plugins/elements/
Dgstfilesrc.c321 if (G_UNLIKELY (offset != -1 && src->read_position != offset)) { in gst_file_src_fill()
328 src->read_position = offset; in gst_file_src_fill()
359 src->read_position += ret; in gst_file_src_fill()
511 src->read_position = 0; in gst_file_src_start()
Dgstfilesrc.h61 guint64 read_position; /* position of fd */ member
/third_party/gstreamer/gstplugins_bad/ext/neon/
Dgstneonhttpsrc.h73 gint64 read_position; member
Dgstneonhttpsrc.c615 src->read_position = 0; in gst_neonhttp_src_stop()
663 if (src->read_position == segment->start) in gst_neonhttp_src_do_seek()
674 src->read_position = segment->start; in gst_neonhttp_src_do_seek()
978 GST_BUFFER_OFFSET (outbuf) = src->read_position; in gst_neonhttp_src_request_dispatch()
996 src->read_position += read; in gst_neonhttp_src_request_dispatch()
/third_party/gstreamer/gstplugins_good/ext/soup/
Dgstsouphttpsrc.h88 guint64 read_position; /* Current position. */ member
Dgstsouphttpsrc.c567 src->read_position = 0; in gst_soup_http_src_reset()
990 src->read_position = offset; in gst_soup_http_src_add_range_header()
2287 src->read_position = src->request_position; in gst_soup_http_src_do_request()
2371 new_position = src->read_position + bytes_read; in gst_soup_http_src_update_position()
2372 if (G_LIKELY (src->request_position == src->read_position)) in gst_soup_http_src_update_position()
2374 src->read_position = new_position; in gst_soup_http_src_update_position()
2537 if (src->have_size && src->read_position < src->content_size) { in gst_soup_http_src_read_buffer()
2609 if (src->request_position != src->read_position && src->input_stream) { in gst_soup_http_src_create()
2844 if (src->read_position == segment->start && in gst_soup_http_src_do_seek()
2845 src->request_position == src->read_position && in gst_soup_http_src_do_seek()
/third_party/gstreamer/gstplugins_good/
DChangeLog22488 the read_position to the requested one.
29354 souphttpsrc: reset read_position when reading fails
29357 * 'read_position' is where we are
29359 changes 'request_position' but not 'read_position'.
29365 Changing the 'read_position' to -1 makes it explicitly different from
/third_party/gstreamer/gstreamer/
DChangeLog112748 plugins/elements/gstfilesrc.c: Update src->read_position after a seek when not using mmap.
112751 Update src->read_position after a seek when not using mmap.