avcodec/nvdec: fix return value on error
This commit is contained in:
parent
538de4354d
commit
8bcf5840ea
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue