[FFmpeg-devel] [PATCH 3/3] avcodec/nvdec: Increase frame pool size to help deinterlacing

Timo Rothenpieler timo at rothenpieler.org
Thu Nov 1 21:32:06 EET 2018


On 26.10.2018 17:56, Philip Langdale wrote:
> With the cuda yadif filter in use, the number of mapped decoder
> frames could increase by two, as the filter holds on to additional
> frames.
> 
> Signed-off-by: Philip Langdale <philipl at overt.org>
> ---
>   libavcodec/nvdec.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavcodec/nvdec.c b/libavcodec/nvdec.c
> index 4dd6b1acf3..8e91c36084 100644
> --- a/libavcodec/nvdec.c
> +++ b/libavcodec/nvdec.c
> @@ -601,7 +601,7 @@ int ff_nvdec_frame_params(AVCodecContext *avctx,
>       frames_ctx->format            = AV_PIX_FMT_CUDA;
>       frames_ctx->width             = (avctx->coded_width + 1) & ~1;
>       frames_ctx->height            = (avctx->coded_height + 1) & ~1;
> -    frames_ctx->initial_pool_size = dpb_size;
> +    frames_ctx->initial_pool_size = dpb_size + 2;

A small comment here as to where that magic +2 is coming from and it's GTM.

-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 4538 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20181101/d2443494/attachment.bin>


More information about the ffmpeg-devel mailing list