Home
last modified time | relevance | path

Searched refs:next_buffer (Results 1 – 14 of 14) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/audio/psp/
DSDL_pspaudio.c97 this->hidden->next_buffer = 0; in PSPAUDIO_OpenDevice()
103 Uint8 *mixbuf = this->hidden->mixbufs[this->hidden->next_buffer]; in PSPAUDIO_PlayDevice()
111 this->hidden->next_buffer = (this->hidden->next_buffer + 1) % NUM_BUFFERS; in PSPAUDIO_PlayDevice()
121 return this->hidden->mixbufs[this->hidden->next_buffer]; in PSPAUDIO_GetDeviceBuf()
DSDL_pspaudio.h40 int next_buffer; member
/third_party/flutter/skia/third_party/externals/sdl/src/audio/winmm/
DSDL_winmm.c125 wavebuf[this->hidden->next_buffer].lpData); in WINMM_GetDeviceBuf()
133 &this->hidden->wavebuf[this->hidden->next_buffer], in WINMM_PlayDevice()
135 this->hidden->next_buffer = (this->hidden->next_buffer + 1) % NUM_BUFFERS; in WINMM_PlayDevice()
141 const int nextbuf = this->hidden->next_buffer; in WINMM_CaptureFromDevice()
161 this->hidden->next_buffer = (nextbuf + 1) % NUM_BUFFERS; in WINMM_CaptureFromDevice()
170 const int nextbuf = this->hidden->next_buffer; in WINMM_FlushCapture()
175 this->hidden->next_buffer = (nextbuf + 1) % NUM_BUFFERS; in WINMM_FlushCapture()
DSDL_winmm.h40 int next_buffer; member
/third_party/mesa3d/src/gallium/frontends/nine/
Dswapchain9.c987 int next_buffer = -1; in NineSwapChain9_Present() local
989 while (next_buffer == -1) { in NineSwapChain9_Present()
995 next_buffer = i; in NineSwapChain9_Present()
999 if (next_buffer == -1) { in NineSwapChain9_Present()
1006 if (This->tasks[next_buffer]) in NineSwapChain9_Present()
1007 _mesa_threadpool_wait_for_task(This->pool, &(This->tasks[next_buffer])); in NineSwapChain9_Present()
1008 assert(!*This->pending_presentation[next_buffer] && !This->tasks[next_buffer]); in NineSwapChain9_Present()
1009 This->tasks[next_buffer] = This->tasks[0]; in NineSwapChain9_Present()
1011 pending_presentation_temp = This->pending_presentation[next_buffer]; in NineSwapChain9_Present()
1012 This->pending_presentation[next_buffer] = This->pending_presentation[0]; in NineSwapChain9_Present()
[all …]
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgstglimagesink.c1191 gst_buffer_replace (&glimage_sink->next_buffer, NULL); in gst_glimage_sink_query()
1289 gst_buffer_replace (&glimage_sink->next_buffer, NULL); in gst_glimage_sink_change_state()
1647 GstBuffer *in_buffer, *next_buffer, *old_buffer; in prepare_next_buffer() local
1691 &next_buffer) != GST_FLOW_OK) in prepare_next_buffer()
1702 if (next_buffer == NULL) { in prepare_next_buffer()
1708 next_buffer = in_buffer; in prepare_next_buffer()
1715 gst_buffer_unref (next_buffer); in prepare_next_buffer()
1721 next_buffer); in prepare_next_buffer()
1723 sync_meta = gst_buffer_get_gl_sync_meta (next_buffer); in prepare_next_buffer()
1732 if (!gst_video_frame_map (&gl_frame, info, next_buffer, in prepare_next_buffer()
[all …]
Dcaopengllayersink.h62 GstBuffer *next_buffer; member
Dgstglimagesink.h91 GstBuffer *next_buffer; member
Dcaopengllayersink.m422 gst_buffer_replace (&ca_sink->next_buffer, NULL);
506 gst_buffer_replace (&ca_sink->next_buffer, NULL);
665 old_buffer = ca_sink->next_buffer;
666 ca_sink->next_buffer = gst_buffer_ref (buf);
710 ca_sink->stored_buffer = gst_buffer_ref (ca_sink->next_buffer);
/third_party/gstreamer/gstreamer/libs/gst/check/
Dgstcheck.c967 GstBuffer *next_buffer = GST_BUFFER (buffer_in->data); in gst_check_element_push_buffer_list() local
969 fail_unless (GST_IS_BUFFER (next_buffer), in gst_check_element_push_buffer_list()
972 buffer_in = g_list_remove (buffer_in, next_buffer); in gst_check_element_push_buffer_list()
974 fail_unless (gst_pad_push (src_pad, next_buffer) == last_flow_return, in gst_check_element_push_buffer_list()
977 fail_unless (gst_pad_push (src_pad, next_buffer) == GST_FLOW_OK, in gst_check_element_push_buffer_list()
/third_party/mesa3d/src/gallium/drivers/r600/
Dradeon_uvd.c198 static void next_buffer(struct ruvd_decoder *dec) in next_buffer() function
1021 next_buffer(dec); in ruvd_end_frame()
1149 next_buffer(dec); in ruvd_create_decoder()
/third_party/mesa3d/src/gallium/drivers/radeon/
Dradeon_uvd.c185 static void next_buffer(struct ruvd_decoder *dec) in next_buffer() function
1202 next_buffer(dec); in ruvd_end_frame()
1354 next_buffer(dec); in si_common_uvd_create_decoder()
Dradeon_vcn_dec.c1943 static void next_buffer(struct radeon_decoder *dec) in next_buffer() function
2312 next_buffer(dec); in radeon_dec_end_frame()
2507 next_buffer(dec); in radeon_create_decoder()
/third_party/gstreamer/gstplugins_base/
DChangeLog9053 We were setting buffer.duration = next_buffer.pts - buffer.pts which
103155 eliminating next_buffer. Simplifies the logic by relying solely