]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/nvenc: Fix typoed nv_status checks
authorTimo Rothenpieler <timo@rothenpieler.org>
Wed, 1 Apr 2015 07:46:50 +0000 (09:46 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 1 Apr 2015 09:55:26 +0000 (11:55 +0200)
Thanks to Wyatt Aaron for pointing this out

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/nvenc.c

index 78b52530a0d8df05ed6866e008dfcda2e83646bc..b015f881b836eabd02b60bd653b70883309e683c 100644 (file)
@@ -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;