You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-05-16 08:38:24 +02:00
avcodec/nvenc: Fix typoed nv_status checks
Thanks to Wyatt Aaron for pointing this out Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
3c912391dd
commit
b63c9a9990
+2
-2
@@ -822,7 +822,7 @@ static av_cold int nvenc_encode_init(AVCodecContext *avctx)
|
||||
}
|
||||
|
||||
nv_status = p_nvenc->nvEncCreateInputBuffer(ctx->nvencoder, &allocSurf);
|
||||
if (nv_status = NV_ENC_SUCCESS){
|
||||
if (nv_status != NV_ENC_SUCCESS) {
|
||||
av_log(avctx, AV_LOG_FATAL, "CreateInputBuffer failed\n");
|
||||
res = AVERROR_EXTERNAL;
|
||||
goto error;
|
||||
@@ -840,7 +840,7 @@ static av_cold int nvenc_encode_init(AVCodecContext *avctx)
|
||||
allocOut.memoryHeap = NV_ENC_MEMORY_HEAP_SYSMEM_CACHED;
|
||||
|
||||
nv_status = p_nvenc->nvEncCreateBitstreamBuffer(ctx->nvencoder, &allocOut);
|
||||
if (nv_status = NV_ENC_SUCCESS) {
|
||||
if (nv_status != NV_ENC_SUCCESS) {
|
||||
av_log(avctx, AV_LOG_FATAL, "CreateBitstreamBuffer failed\n");
|
||||
ctx->output_surfaces[surfaceCount++].output_surface = NULL;
|
||||
res = AVERROR_EXTERNAL;
|
||||
|
||||
Reference in New Issue
Block a user