From 41ed7ab45fc693f7d7fc35664c0233f4c32d69bb Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Wed, 27 Apr 2016 13:45:23 -0400 Subject: cosmetics: Fix spelling mistakes Signed-off-by: Diego Biurrun --- libavcodec/nvenc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/nvenc.c') diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c index 4d17f989e6..54f030baf5 100644 --- a/libavcodec/nvenc.c +++ b/libavcodec/nvenc.c @@ -295,7 +295,7 @@ static int nvenc_check_capabilities(AVCodecContext *avctx) ret = nvenc_check_cap(avctx, NV_ENC_CAPS_NUM_MAX_BFRAMES); if (ret < avctx->max_b_frames) { - av_log(avctx, AV_LOG_VERBOSE, "Max b-frames %d exceed %d\n", + av_log(avctx, AV_LOG_VERBOSE, "Max B-frames %d exceed %d\n", avctx->max_b_frames, ret); return AVERROR(ENOSYS); @@ -715,8 +715,8 @@ static int nvenc_setup_encoder(AVCodecContext *avctx) if (avctx->max_b_frames > 0) { /* 0 is intra-only, * 1 is I/P only, - * 2 is one B Frame, - * 3 two B frames, and so on. */ + * 2 is one B-Frame, + * 3 two B-frames, and so on. */ ctx->config.frameIntervalP = avctx->max_b_frames + 1; } else if (avctx->max_b_frames == 0) { ctx->config.frameIntervalP = 1; @@ -804,7 +804,7 @@ static int nvenc_alloc_surface(AVCodecContext *avctx, int idx) out_buffer.version = NV_ENC_CREATE_BITSTREAM_BUFFER_VER; /* 1MB is large enough to hold most output frames. - * NVENC increases this automaticaly if it's not enough. */ + * NVENC increases this automatically if it is not enough. */ out_buffer.size = BITSTREAM_BUFFER_SIZE; out_buffer.memoryHeap = NV_ENC_MEMORY_HEAP_SYSMEM_UNCACHED; -- cgit v1.2.3