[FFmpeg-devel] [PATCH] avcodec/nvenc_hevc: add ff_nvenc_encode_flush() for .flush

lance.lmwang at gmail.com lance.lmwang at gmail.com
Wed Aug 26 15:57:12 EEST 2020


From: Limin Wang <lance.lmwang at gmail.com>

for the .capabilities have AV_CODEC_CAP_ENCODER_FLUSH, so it's better to add it.

Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
---
 libavcodec/nvenc_hevc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c
index 074975f..a1e2463 100644
--- a/libavcodec/nvenc_hevc.c
+++ b/libavcodec/nvenc_hevc.c
@@ -202,6 +202,7 @@ AVCodec ff_nvenc_hevc_encoder = {
     .init           = nvenc_old_init,
     .receive_packet = ff_nvenc_receive_packet,
     .close          = ff_nvenc_encode_close,
+    .flush          = ff_nvenc_encode_flush,
     .priv_data_size = sizeof(NvencContext),
     .priv_class     = &nvenc_hevc_class,
     .defaults       = defaults,
-- 
1.8.3.1



More information about the ffmpeg-devel mailing list