mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 21:45:10 +00:00
avcodec/nvdec: fix return value on error
This commit is contained in:
parent
538de4354d
commit
8bcf5840ea
@ -414,8 +414,10 @@ int ff_nvdec_start_frame(AVCodecContext *avctx, AVFrame *frame)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
cf->decoder_ref = av_buffer_ref(ctx->decoder_ref);
|
||||
if (!cf->decoder_ref)
|
||||
if (!cf->decoder_ref) {
|
||||
ret = AVERROR(ENOMEM);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
cf->idx_ref = av_buffer_pool_get(ctx->decoder_pool);
|
||||
if (!cf->idx_ref) {
|
||||
|
Loading…
Reference in New Issue
Block a user