]> git.sesse.net Git - ffmpeg/blob - libavcodec/nvenc_h264.c
avcodec/nvenc: convert profile parsing to AVOptions
[ffmpeg] / libavcodec / nvenc_h264.c
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include "libavutil/internal.h"
20
21 #include "avcodec.h"
22 #include "internal.h"
23
24 #include "nvenc.h"
25
26 #define OFFSET(x) offsetof(NvencContext, x)
27 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
28 static const AVOption options[] = {
29     { "preset",   "Set the encoding preset",              OFFSET(preset),      AV_OPT_TYPE_INT,    { .i64 = PRESET_MEDIUM }, PRESET_DEFAULT, PRESET_LOSSLESS_HP, VE, "preset" },
30     { "default",    "",                                   0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_DEFAULT }, 0, 0, VE, "preset" },
31     { "slow",       "hq 2 passes",                        0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_SLOW }, 0, 0, VE, "preset" },
32     { "medium",     "hq 1 pass",                          0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_MEDIUM }, 0, 0, VE, "preset" },
33     { "fast",       "hp 1 pass",                          0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_FAST }, 0, 0, VE, "preset" },
34     { "hp",         "",                                   0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_HP }, 0, 0, VE, "preset" },
35     { "hq",         "",                                   0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_HQ }, 0, 0, VE, "preset" },
36     { "bd",         "",                                   0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_BD }, 0, 0, VE, "preset" },
37     { "ll",         "low latency",                        0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_LOW_LATENCY_DEFAULT }, 0, 0, VE, "preset" },
38     { "llhq",       "low latency hq",                     0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_LOW_LATENCY_HQ }, 0, 0, VE, "preset" },
39     { "llhp",       "low latency hp",                     0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_LOW_LATENCY_HP }, 0, 0, VE, "preset" },
40     { "lossless",   NULL,                                 0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_LOSSLESS_DEFAULT }, 0, 0, VE, "preset" },
41     { "losslesshp", NULL,                                 0,                   AV_OPT_TYPE_CONST,  { .i64 = PRESET_LOSSLESS_HP }, 0, 0, VE, "preset" },
42     { "profile",  "Set the encoding profile",             OFFSET(profile),     AV_OPT_TYPE_INT,    { .i64 = NV_ENC_H264_PROFILE_MAIN }, NV_ENC_H264_PROFILE_BASELINE, NV_ENC_H264_PROFILE_HIGH_444P, VE, "profile" },
43     { "baseline", "",                                     0,                   AV_OPT_TYPE_CONST,  { .i64 = NV_ENC_H264_PROFILE_BASELINE },            0, 0, VE, "profile" },
44     { "main",     "",                                     0,                   AV_OPT_TYPE_CONST,  { .i64 = NV_ENC_H264_PROFILE_MAIN },                0, 0, VE, "profile" },
45     { "high",     "",                                     0,                   AV_OPT_TYPE_CONST,  { .i64 = NV_ENC_H264_PROFILE_HIGH },                0, 0, VE, "profile" },
46     { "high444p", "",                                     0,                   AV_OPT_TYPE_CONST,  { .i64 = NV_ENC_H264_PROFILE_HIGH_444P },            0, 0, VE, "profile" },
47     { "level", "Set the encoding level restriction (auto, 1.0, 1.0b, 1.1, 1.2, ..., 4.2, 5.0, 5.1)", OFFSET(level), AV_OPT_TYPE_STRING, { .str = "auto" }, 0, 0, VE },
48     { "cbr", "Use cbr encoding mode", OFFSET(cbr), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE },
49     { "2pass", "Use 2pass encoding mode", OFFSET(twopass), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
50     { "gpu", "Selects which NVENC capable GPU to use. First GPU is 0, second is 1, and so on.", OFFSET(gpu), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
51     { "delay", "Delays frame output by the given amount of frames.", OFFSET(buffer_delay), AV_OPT_TYPE_INT, { .i64 = INT_MAX }, 0, INT_MAX, VE },
52     { NULL }
53 };
54
55 static const AVCodecDefault defaults[] = {
56     { "b", "2M" },
57     { "qmin", "-1" },
58     { "qmax", "-1" },
59     { "qdiff", "-1" },
60     { "qblur", "-1" },
61     { "qcomp", "-1" },
62     { "g", "250" },
63     { "bf", "0" },
64     { NULL },
65 };
66
67 #if CONFIG_NVENC_ENCODER
68 static const AVClass nvenc_class = {
69     .class_name = "nvenc",
70     .item_name = av_default_item_name,
71     .option = options,
72     .version = LIBAVUTIL_VERSION_INT,
73 };
74
75 AVCodec ff_nvenc_encoder = {
76     .name           = "nvenc",
77     .long_name      = NULL_IF_CONFIG_SMALL("NVIDIA NVENC h264 encoder"),
78     .type           = AVMEDIA_TYPE_VIDEO,
79     .id             = AV_CODEC_ID_H264,
80     .init           = ff_nvenc_encode_init,
81     .encode2        = ff_nvenc_encode_frame,
82     .close          = ff_nvenc_encode_close,
83     .priv_data_size = sizeof(NvencContext),
84     .priv_class     = &nvenc_class,
85     .defaults       = defaults,
86     .capabilities   = AV_CODEC_CAP_DELAY,
87     .pix_fmts       = ff_nvenc_pix_fmts,
88 };
89 #endif
90
91 /* Add an alias for nvenc_h264 */
92 #if CONFIG_NVENC_H264_ENCODER
93 static const AVClass nvenc_h264_class = {
94     .class_name = "nvenc_h264",
95     .item_name = av_default_item_name,
96     .option = options,
97     .version = LIBAVUTIL_VERSION_INT,
98 };
99
100 AVCodec ff_nvenc_h264_encoder = {
101     .name           = "nvenc_h264",
102     .long_name      = NULL_IF_CONFIG_SMALL("NVIDIA NVENC h264 encoder"),
103     .type           = AVMEDIA_TYPE_VIDEO,
104     .id             = AV_CODEC_ID_H264,
105     .init           = ff_nvenc_encode_init,
106     .encode2        = ff_nvenc_encode_frame,
107     .close          = ff_nvenc_encode_close,
108     .priv_data_size = sizeof(NvencContext),
109     .priv_class     = &nvenc_h264_class,
110     .defaults       = defaults,
111     .capabilities   = AV_CODEC_CAP_DELAY,
112     .pix_fmts       = ff_nvenc_pix_fmts,
113 };
114 #endif