diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-01-06 16:59:49 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-07 00:31:23 +0100 |
commit | 587545c9e07950c8985ac3bf5bfd2c434f49a410 (patch) | |
tree | d55b18a1ddaf2d19aa7584bec10a1ea0836d5cb0 /libavcodec/nvenc.h | |
parent | 9ef4b6699b77d2b6a89f477340be040fa7329572 (diff) | |
download | ffmpeg-587545c9e07950c8985ac3bf5bfd2c434f49a410.tar.gz |
lavc/nvenc: switch to the new FIFO API
Diffstat (limited to 'libavcodec/nvenc.h')
-rw-r--r-- | libavcodec/nvenc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/nvenc.h b/libavcodec/nvenc.h index b42a156c56..9eb129952e 100644 --- a/libavcodec/nvenc.h +++ b/libavcodec/nvenc.h @@ -168,10 +168,10 @@ typedef struct NvencContext int nb_surfaces; NvencSurface *surfaces; - AVFifoBuffer *unused_surface_queue; - AVFifoBuffer *output_surface_queue; - AVFifoBuffer *output_surface_ready_queue; - AVFifoBuffer *timestamp_list; + AVFifo *unused_surface_queue; + AVFifo *output_surface_queue; + AVFifo *output_surface_ready_queue; + AVFifo *timestamp_list; NV_ENC_SEI_PAYLOAD *sei_data; int sei_data_size; |