Home
last modified time | relevance | path

Searched refs:timestamp_list (Results 1 – 7 of 7) sorted by relevance

/third_party/grpc/test/core/util/
Dreconnect_server.h26 typedef struct timestamp_list { struct
28 struct timestamp_list* next; argument
29 } timestamp_list; typedef
33 timestamp_list* head;
34 timestamp_list* tail;
Dreconnect_server.cc38 timestamp_list* head = server->head; in pretty_print_backoffs()
66 timestamp_list* new_tail; in on_connect()
85 new_tail = static_cast<timestamp_list*>(gpr_malloc(sizeof(timestamp_list))); in on_connect()
115 timestamp_list* new_head = server->head; in reconnect_server_clear_timestamps()
/third_party/ffmpeg/libavcodec/
Damfenc.c121 ctx->timestamp_list = av_fifo_alloc((avctx->max_b_frames + 16) * sizeof(int64_t)); in amf_load_library()
122 if (!ctx->timestamp_list) { in amf_load_library()
406 av_fifo_freep(&ctx->timestamp_list); in ff_amf_encode_close()
438 if (av_fifo_space(ctx->timestamp_list) < sizeof(timestamp)) { in timestamp_queue_enqueue()
439 if (av_fifo_grow(ctx->timestamp_list, sizeof(timestamp)) < 0) { in timestamp_queue_enqueue()
443 av_fifo_generic_write(ctx->timestamp_list, &timestamp, sizeof(timestamp), NULL); in timestamp_queue_enqueue()
482 …AMF_RETURN_IF_FALSE(ctx, av_fifo_size(ctx->timestamp_list) > 0, AVERROR_UNKNOWN, "timestamp_list i… in amf_copy_buffer()
484 av_fifo_generic_read(ctx->timestamp_list, &timestamp, sizeof(timestamp), NULL); in amf_copy_buffer()
489 AMF_RETURN_IF_FALSE(ctx, av_fifo_size(ctx->timestamp_list) > 0, AVERROR_UNKNOWN, in amf_copy_buffer()
492 ctx->timestamp_list, in amf_copy_buffer()
[all …]
Damfenc.h75 AVFifoBuffer *timestamp_list; member
Dnvenc.h167 AVFifoBuffer *timestamp_list; member
Dnvenc.c1491 ctx->timestamp_list = av_fifo_alloc(ctx->nb_surfaces * sizeof(int64_t)); in nvenc_setup_surfaces()
1492 if (!ctx->timestamp_list) in nvenc_setup_surfaces()
1575 av_fifo_freep(&ctx->timestamp_list); in ff_nvenc_encode_close()
1926 pkt->dts = timestamp_queue_dequeue(ctx->timestamp_list); in nvenc_set_timestamp()
2052 timestamp_queue_dequeue(ctx->timestamp_list); in process_output_surface()
2284 timestamp_queue_enqueue(ctx->timestamp_list, frame->pts); in nvenc_send_frame()
2354 av_fifo_reset(ctx->timestamp_list); in ff_nvenc_encode_flush()
/third_party/grpc/test/cpp/interop/
Dreconnect_interop_server.cc128 for (timestamp_list* cur = tcp_server_.head; cur && cur->next; in Verify()