summaryrefslogtreecommitdiff
path: root/libavcodec/nvenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/nvenc.c')
-rw-r--r--libavcodec/nvenc.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c
index a078043110..d74960563d 100644
--- a/libavcodec/nvenc.c
+++ b/libavcodec/nvenc.c
@@ -708,16 +708,7 @@ static av_cold int nvenc_setup_hevc_config(AVCodecContext *avctx)
hevc->level = ctx->level;
- if (ctx->tier) {
- if (!strcmp(ctx->tier, "main")) {
- hevc->tier = NV_ENC_TIER_HEVC_MAIN;
- } else if (!strcmp(ctx->tier, "high")) {
- hevc->tier = NV_ENC_TIER_HEVC_HIGH;
- } else {
- av_log(avctx, AV_LOG_FATAL, "Tier \"%s\" is unknown! Supported tiers: main, high\n", ctx->tier);
- return AVERROR(EINVAL);
- }
- }
+ hevc->tier = ctx->tier;
return 0;
}