Searched refs:last_buf (Results 1 – 9 of 9) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | mlpdec.c | 30 const uint8_t *buf, *last_buf = p->buf, *end = p->buf + p->buf_size; in mlp_thd_probe() local 37 if (last_buf + size == buf) { in mlp_thd_probe() 41 last_buf = buf; in mlp_thd_probe() 43 } else if (buf - last_buf == size) { in mlp_thd_probe()
|
/third_party/gstreamer/gstplugins_good/gst/isomp4/ |
D | gstqtmux.c | 710 gst_buffer_replace (&qtpad->last_buf, NULL); in gst_qt_mux_pad_reset() 5145 GstBuffer *last_buf = NULL; in gst_qt_mux_add_buffer() local 5182 last_buf = pad->last_buf; in gst_qt_mux_add_buffer() 5183 pad->last_buf = buf; in gst_qt_mux_add_buffer() 5185 if (last_buf == NULL) { in gst_qt_mux_add_buffer() 5199 if (!GST_BUFFER_PTS_IS_VALID (last_buf)) in gst_qt_mux_add_buffer() 5204 if (GST_BUFFER_PTS_IS_VALID (last_buf)) { in gst_qt_mux_add_buffer() 5205 pad->first_ts = GST_BUFFER_PTS (last_buf); in gst_qt_mux_add_buffer() 5206 } else if (GST_BUFFER_DTS_IS_VALID (last_buf)) { in gst_qt_mux_add_buffer() 5207 pad->first_ts = GST_BUFFER_DTS (last_buf); in gst_qt_mux_add_buffer() [all …]
|
D | gstqtmux.h | 126 GstBuffer *last_buf; member
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | videocrop.c | 168 GstBuffer *last_buf; member 178 gst_buffer_replace (&ctx->last_buf, buf); in handoff_cb() 226 ctx->last_buf = NULL; in videocrop_test_cropping_init_context_full() 245 gst_buffer_replace (&ctx->last_buf, NULL); in videocrop_test_cropping_deinit_context() 275 func (ctx->last_buf, ctx->last_caps); in videocrop_test_cropping() 544 fail_unless (ctx.last_buf != NULL); in GST_START_TEST() 547 fail_unless (gen_buf == ctx.last_buf); in GST_START_TEST()
|
/third_party/toybox/toys/pending/ |
D | syslogd.c | 411 …char *temp, *buffer = (toybuf +2048), *last_buf = (toybuf + 3072); //these two buffs are of 1K each in syslogd_main() local 542 if (!memcmp(last_buf, buffer, len)) break; in syslogd_main() 544 memcpy(last_buf, buffer, len); in syslogd_main()
|
/third_party/ffmpeg/libavcodec/ |
D | mpegaudiodec_template.c | 76 uint8_t last_buf[LAST_BUF_SIZE]; member 1304 memcpy(s->last_buf + s->last_buf_size, ptr, s->extrasize); in mp_decode_layer3() 1306 init_get_bits(&s->gb, s->last_buf, (s->last_buf_size + s->extrasize) * 8); in mp_decode_layer3() 1492 memmove(s->last_buf, s->gb.buffer + (get_bits_count(&s->gb) >> 3), i); in mp_decode_frame() 1510 memcpy(s->last_buf + s->last_buf_size, s->gb.buffer + buf_size - HEADER_SIZE - i, i); in mp_decode_frame()
|
/third_party/gstreamer/gstplugins_bad/sys/kms/ |
D | gstkmssink.c | 1738 GstBuffer *dumb_buf, *last_buf; in gst_kms_sink_drain() local 1750 last_buf = self->last_buffer; in gst_kms_sink_drain() 1755 gst_buffer_unref (last_buf); in gst_kms_sink_drain()
|
/third_party/python/Lib/test/ |
D | test_urllib2.py | 1318 self.last_buf = self.connection.buf 1344 request = handler.last_buf
|
/third_party/gstreamer/gstplugins_good/ |
D | ChangeLog | 25694 qtmux: Don't forget to update pad->last_buf 25695 buf is the current pad->last_buf value. If ever it gets copied/unreffed, 25696 we need to make sure to write back the new pointer to the last_buf 26045 qtmux: Select the best pad based on the cached last_buf if any 26046 last_buf is the one we're going to write next, not buf. As such we 26050 storing the first last_buf. 28343 buffer and no others are coming next. This is wrong, last_buf is the
|