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

Limin Wang git at videolan.org
Thu Sep 3 16:31:03 EEST 2020


ffmpeg | branch: master | Limin Wang <lance.lmwang at gmail.com> | Fri Aug 21 19:22:32 2020 +0800| [4cfe8123ea13aa94a61409dc27fa27e521e2340e] | committer: Limin Wang

avcodec/nvenc_hevc: add ff_nvenc_encode_flush() for .flush

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>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4cfe8123ea13aa94a61409dc27fa27e521e2340e
---

 libavcodec/nvenc_hevc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/nvenc_hevc.c b/libavcodec/nvenc_hevc.c
index 074975f78a..a1e2463944 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,



More information about the ffmpeg-cvslog mailing list