PR #7 opened by Anton Kesy (antonkesy) URL: https://code.ffmpeg.org/FFmpeg/nv-codec-headers/pulls/7 Patch URL: https://code.ffmpeg.org/FFmpeg/nv-codec-headers/pulls/7.patch
Fixes 2 small typos in the doc comments >From f400b18768db84ec65b8b0bdad91d833665775cc Mon Sep 17 00:00:00 2001 From: Anton Kesy <[email protected]> Date: Sun, 13 Sep 2026 18:11:26 +0200 Subject: [PATCH] Fix typos --- include/ffnvcodec/nvEncodeAPI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ffnvcodec/nvEncodeAPI.h b/include/ffnvcodec/nvEncodeAPI.h index f059ac0..425022e 100644 --- a/include/ffnvcodec/nvEncodeAPI.h +++ b/include/ffnvcodec/nvEncodeAPI.h @@ -667,7 +667,7 @@ typedef enum _NVENCSTATUS * This indicates encode driver requires more output buffers to write an output * bitstream. If this error is returned from ::NvEncRestoreEncoderState() API, this * is not a fatal error. If the client is encoding with B frames then, - * ::NvEncRestoreEncoderState() API might be requiring the extra output buffer for accomodating overlay frame output in a separate buffer, for AV1 codec. + * ::NvEncRestoreEncoderState() API might be requiring the extra output buffer for accommodating overlay frame output in a separate buffer, for AV1 codec. * In this case, client must call NvEncRestoreEncoderState() API again with NV_ENC_RESTORE_ENCODER_STATE_PARAMS::outputBitstream as input along with * the parameters in the previous call. When operating in asynchronous mode of encoding, client must also specify NV_ENC_RESTORE_ENCODER_STATE_PARAMS::completionEvent. */ @@ -3086,7 +3086,7 @@ NVENCSTATUS NVENCAPI NvEncGetEncodeProfileGUIDCount (void* en * The function returns an array of supported profile GUIDs for a particular * codec GUID. The client must allocate an array where the NvEncodeAPI interface * can populate the profile GUIDs. The client can determine the array size using - * ::NvEncGetEncodeProfileGUIDCount() API. The client must also validiate that the + * ::NvEncGetEncodeProfileGUIDCount() API. The client must also validate that the * NvEncodeAPI interface supports the GUID the client wants to pass as \p encodeGUID * parameter. * -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
