summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2017-02-17 12:40:40 +0100
committerDiego Biurrun <diego@biurrun.de>2017-02-20 09:50:03 +0100
commit00b160af117b782292619c98effce6c8273792e5 (patch)
treeebc580b218d146e3b02fa35f5819c5ec5678ccf8
parent42cf7f91f1e9dabf494ff469d8f67ac8b33b0f63 (diff)
nvenc: Fix nvec vs. nvenc typo
-rw-r--r--libavcodec/nvenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c
index 90b9d1a62a..30da83a08c 100644
--- a/libavcodec/nvenc.c
+++ b/libavcodec/nvenc.c
@@ -479,7 +479,7 @@ typedef struct GUIDTuple {
#define PRESET(name, ...) PRESET_ALIAS(name, name, __VA_ARGS__)
-static int nvec_map_preset(NVENCContext *ctx)
+static int nvenc_map_preset(NVENCContext *ctx)
{
GUIDTuple presets[] = {
PRESET(DEFAULT),
@@ -882,7 +882,7 @@ static int nvenc_setup_encoder(AVCodecContext *avctx)
ctx->params.encodeConfig = &ctx->config;
- nvec_map_preset(ctx);
+ nvenc_map_preset(ctx);
preset_cfg.version = NV_ENC_PRESET_CONFIG_VER;
preset_cfg.presetCfg.version = NV_ENC_CONFIG_VER;