[FFmpeg-cvslog] avcodec/nvdec: reset bitstream_len/nb_slices when resetting bitstream pointer

Timo Rothenpieler git at videolan.org
Sat Mar 30 01:32:42 EET 2024


ffmpeg | branch: release/4.1 | Timo Rothenpieler <timo at rothenpieler.org> | Sat Mar 30 00:12:03 2024 +0100| [835453fbd8a91cb1ebdb750efcf2a33bdb4801b7] | committer: Timo Rothenpieler

avcodec/nvdec: reset bitstream_len/nb_slices when resetting bitstream pointer

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

 libavcodec/nvdec.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/nvdec.c b/libavcodec/nvdec.c
index 0426c9b319..d0e3cd3df6 100644
--- a/libavcodec/nvdec.c
+++ b/libavcodec/nvdec.c
@@ -539,6 +539,8 @@ int ff_nvdec_simple_end_frame(AVCodecContext *avctx)
     NVDECContext *ctx = avctx->internal->hwaccel_priv_data;
     int ret = ff_nvdec_end_frame(avctx);
     ctx->bitstream = NULL;
+    ctx->bitstream_len = 0;
+    ctx->nb_slices = 0;
     return ret;
 }
 



More information about the ffmpeg-cvslog mailing list