diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2023-05-11 19:24:55 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2023-05-11 19:24:55 +0200 |
commit | 869c06886dfdbc5d4734bb8f4ee85f36b2f3aa2b (patch) | |
tree | dd64c2f47388835b07b90e7a905ec61ac7993e4e | |
parent | 21696f6122a91b1ae936db3c5f30138725331603 (diff) | |
download | ffmpeg-869c06886dfdbc5d4734bb8f4ee85f36b2f3aa2b.tar.gz |
avfilter/vf_yadif_cuda: fix build
Identical patches were sent by Leo Izen and Devin Heitmueller.
-rw-r--r-- | libavfilter/vf_yadif_cuda.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_yadif_cuda.c b/libavfilter/vf_yadif_cuda.c index f3f0b56768..73f04126c5 100644 --- a/libavfilter/vf_yadif_cuda.c +++ b/libavfilter/vf_yadif_cuda.c @@ -205,7 +205,7 @@ static av_cold void deint_cuda_uninit(AVFilterContext *ctx) av_frame_free(&y->prev); av_frame_free(&y->cur); av_frame_free(&y->next); - ff_cc_fifo_freep(&y->cc_fifo); + ff_ccfifo_freep(&y->cc_fifo); av_buffer_unref(&s->device_ref); s->hwctx = NULL; @@ -295,7 +295,7 @@ static int config_output(AVFilterLink *link) else link->frame_rate = ctx->inputs[0]->frame_rate; - if (!(s->cc_fifo = ff_cc_fifo_alloc(link->frame_rate, ctx))) { + if (!(y->cc_fifo = ff_ccfifo_alloc(link->frame_rate, ctx))) { av_log(ctx, AV_LOG_ERROR, "Failure to setup CC FIFO queue\n"); ret = AVERROR(ENOMEM); goto exit; |