Searched refs:timestamp_list (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | amfenc.c | 122 ctx->timestamp_list = av_fifo_alloc2(avctx->max_b_frames + 16, sizeof(int64_t), in amf_load_library() 124 if (!ctx->timestamp_list) { in amf_load_library() 408 av_fifo_freep2(&ctx->timestamp_list); in ff_amf_encode_close() 472 AMF_RETURN_IF_FALSE(ctx, av_fifo_read(ctx->timestamp_list, ×tamp, 1) >= 0, in amf_copy_buffer() 473 AVERROR_UNKNOWN, "timestamp_list is empty\n"); in amf_copy_buffer() 478 size_t can_read = av_fifo_can_read(ctx->timestamp_list); in amf_copy_buffer() 481 "timestamp_list is empty while max_b_frames = %d\n", avctx->max_b_frames); in amf_copy_buffer() 482 av_fifo_peek(ctx->timestamp_list, ×tamp_last, 1, can_read - 1); in amf_copy_buffer() 699 ret = av_fifo_write(ctx->timestamp_list, &pts, 1); in ff_amf_receive_packet() 740 ret = av_fifo_write(ctx->timestamp_list, in ff_amf_receive_packet() [all...] |
H A D | amfenc.h | 75 AVFifo *timestamp_list; member
|
H A D | nvenc.h | 174 AVFifo *timestamp_list; member
|
H A D | nvenc.c | 1597 ctx->timestamp_list = av_fifo_alloc2(ctx->nb_surfaces, sizeof(int64_t), 0); in nvenc_setup_surfaces() 1598 if (!ctx->timestamp_list) in nvenc_setup_surfaces() 1681 av_fifo_freep2(&ctx->timestamp_list); in ff_nvenc_encode_close() 2033 pkt->dts = timestamp_queue_dequeue(ctx->timestamp_list); in nvenc_set_timestamp() 2153 timestamp_queue_dequeue(ctx->timestamp_list); in process_output_surface() 2457 timestamp_queue_enqueue(ctx->timestamp_list, frame->pts); in nvenc_send_frame() 2525 av_fifo_reset2(ctx->timestamp_list); in ff_nvenc_encode_flush()
|
Completed in 6 milliseconds