]> git.sesse.net Git - ffmpeg/blob - libavcodec/nvenc.c
avcodec/nvenc: use alias to provide deprecated profiles
[ffmpeg] / libavcodec / nvenc.c
1 /*
2  * H.264/HEVC hardware encoding using nvidia nvenc
3  * Copyright (c) 2016 Timo Rothenpieler <timo@rothenpieler.org>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23
24 #include "nvenc.h"
25 #include "hevc_sei.h"
26
27 #include "libavutil/hwcontext_cuda.h"
28 #include "libavutil/hwcontext.h"
29 #include "libavutil/cuda_check.h"
30 #include "libavutil/imgutils.h"
31 #include "libavutil/avassert.h"
32 #include "libavutil/mem.h"
33 #include "libavutil/pixdesc.h"
34 #include "atsc_a53.h"
35 #include "encode.h"
36 #include "internal.h"
37 #include "packet_internal.h"
38
39 #define CHECK_CU(x) FF_CUDA_CHECK_DL(avctx, dl_fn->cuda_dl, x)
40
41 #define NVENC_CAP 0x30
42 #define IS_CBR(rc) (rc == NV_ENC_PARAMS_RC_CBR ||             \
43                     rc == NV_ENC_PARAMS_RC_CBR_LOWDELAY_HQ || \
44                     rc == NV_ENC_PARAMS_RC_CBR_HQ)
45
46 #ifdef NVENC_HAVE_NEW_PRESETS
47 #define IS_SDK10_PRESET(p) ((p) >= PRESET_P1 && (p) <= PRESET_P7)
48 #else
49 #define IS_SDK10_PRESET(p) 0
50 #endif
51
52 const enum AVPixelFormat ff_nvenc_pix_fmts[] = {
53     AV_PIX_FMT_YUV420P,
54     AV_PIX_FMT_NV12,
55     AV_PIX_FMT_P010,
56     AV_PIX_FMT_YUV444P,
57     AV_PIX_FMT_P016,      // Truncated to 10bits
58     AV_PIX_FMT_YUV444P16, // Truncated to 10bits
59     AV_PIX_FMT_0RGB32,
60     AV_PIX_FMT_0BGR32,
61     AV_PIX_FMT_CUDA,
62 #if CONFIG_D3D11VA
63     AV_PIX_FMT_D3D11,
64 #endif
65     AV_PIX_FMT_NONE
66 };
67
68 const AVCodecHWConfigInternal *ff_nvenc_hw_configs[] = {
69     HW_CONFIG_ENCODER_FRAMES(CUDA,  CUDA),
70     HW_CONFIG_ENCODER_DEVICE(NONE,  CUDA),
71 #if CONFIG_D3D11VA
72     HW_CONFIG_ENCODER_FRAMES(D3D11, D3D11VA),
73     HW_CONFIG_ENCODER_DEVICE(NONE,  D3D11VA),
74 #endif
75     NULL,
76 };
77
78 #define IS_10BIT(pix_fmt)  (pix_fmt == AV_PIX_FMT_P010    || \
79                             pix_fmt == AV_PIX_FMT_P016    || \
80                             pix_fmt == AV_PIX_FMT_YUV444P16)
81
82 #define IS_YUV444(pix_fmt) (pix_fmt == AV_PIX_FMT_YUV444P || \
83                             pix_fmt == AV_PIX_FMT_YUV444P16)
84
85 static const struct {
86     NVENCSTATUS nverr;
87     int         averr;
88     const char *desc;
89 } nvenc_errors[] = {
90     { NV_ENC_SUCCESS,                      0,                "success"                  },
91     { NV_ENC_ERR_NO_ENCODE_DEVICE,         AVERROR(ENOENT),  "no encode device"         },
92     { NV_ENC_ERR_UNSUPPORTED_DEVICE,       AVERROR(ENOSYS),  "unsupported device"       },
93     { NV_ENC_ERR_INVALID_ENCODERDEVICE,    AVERROR(EINVAL),  "invalid encoder device"   },
94     { NV_ENC_ERR_INVALID_DEVICE,           AVERROR(EINVAL),  "invalid device"           },
95     { NV_ENC_ERR_DEVICE_NOT_EXIST,         AVERROR(EIO),     "device does not exist"    },
96     { NV_ENC_ERR_INVALID_PTR,              AVERROR(EFAULT),  "invalid ptr"              },
97     { NV_ENC_ERR_INVALID_EVENT,            AVERROR(EINVAL),  "invalid event"            },
98     { NV_ENC_ERR_INVALID_PARAM,            AVERROR(EINVAL),  "invalid param"            },
99     { NV_ENC_ERR_INVALID_CALL,             AVERROR(EINVAL),  "invalid call"             },
100     { NV_ENC_ERR_OUT_OF_MEMORY,            AVERROR(ENOMEM),  "out of memory"            },
101     { NV_ENC_ERR_ENCODER_NOT_INITIALIZED,  AVERROR(EINVAL),  "encoder not initialized"  },
102     { NV_ENC_ERR_UNSUPPORTED_PARAM,        AVERROR(ENOSYS),  "unsupported param"        },
103     { NV_ENC_ERR_LOCK_BUSY,                AVERROR(EAGAIN),  "lock busy"                },
104     { NV_ENC_ERR_NOT_ENOUGH_BUFFER,        AVERROR_BUFFER_TOO_SMALL, "not enough buffer"},
105     { NV_ENC_ERR_INVALID_VERSION,          AVERROR(EINVAL),  "invalid version"          },
106     { NV_ENC_ERR_MAP_FAILED,               AVERROR(EIO),     "map failed"               },
107     { NV_ENC_ERR_NEED_MORE_INPUT,          AVERROR(EAGAIN),  "need more input"          },
108     { NV_ENC_ERR_ENCODER_BUSY,             AVERROR(EAGAIN),  "encoder busy"             },
109     { NV_ENC_ERR_EVENT_NOT_REGISTERD,      AVERROR(EBADF),   "event not registered"     },
110     { NV_ENC_ERR_GENERIC,                  AVERROR_UNKNOWN,  "generic error"            },
111     { NV_ENC_ERR_INCOMPATIBLE_CLIENT_KEY,  AVERROR(EINVAL),  "incompatible client key"  },
112     { NV_ENC_ERR_UNIMPLEMENTED,            AVERROR(ENOSYS),  "unimplemented"            },
113     { NV_ENC_ERR_RESOURCE_REGISTER_FAILED, AVERROR(EIO),     "resource register failed" },
114     { NV_ENC_ERR_RESOURCE_NOT_REGISTERED,  AVERROR(EBADF),   "resource not registered"  },
115     { NV_ENC_ERR_RESOURCE_NOT_MAPPED,      AVERROR(EBADF),   "resource not mapped"      },
116 };
117
118 static int nvenc_map_error(NVENCSTATUS err, const char **desc)
119 {
120     int i;
121     for (i = 0; i < FF_ARRAY_ELEMS(nvenc_errors); i++) {
122         if (nvenc_errors[i].nverr == err) {
123             if (desc)
124                 *desc = nvenc_errors[i].desc;
125             return nvenc_errors[i].averr;
126         }
127     }
128     if (desc)
129         *desc = "unknown error";
130     return AVERROR_UNKNOWN;
131 }
132
133 static int nvenc_print_error(AVCodecContext *avctx, NVENCSTATUS err,
134                              const char *error_string)
135 {
136     const char *desc;
137     const char *details = "(no details)";
138     int ret = nvenc_map_error(err, &desc);
139
140 #ifdef NVENC_HAVE_GETLASTERRORSTRING
141     NvencContext *ctx = avctx->priv_data;
142     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &ctx->nvenc_dload_funcs.nvenc_funcs;
143
144     if (p_nvenc && ctx->nvencoder)
145         details = p_nvenc->nvEncGetLastErrorString(ctx->nvencoder);
146 #endif
147
148     av_log(avctx, AV_LOG_ERROR, "%s: %s (%d): %s\n", error_string, desc, err, details);
149
150     return ret;
151 }
152
153 static void nvenc_print_driver_requirement(AVCodecContext *avctx, int level)
154 {
155 #if NVENCAPI_CHECK_VERSION(11, 1)
156     const char *minver = "(unknown)";
157 #elif NVENCAPI_CHECK_VERSION(11, 0)
158 # if defined(_WIN32) || defined(__CYGWIN__)
159     const char *minver = "456.71";
160 # else
161     const char *minver = "455.28";
162 # endif
163 #elif NVENCAPI_CHECK_VERSION(10, 0)
164 # if defined(_WIN32) || defined(__CYGWIN__)
165     const char *minver = "450.51";
166 # else
167     const char *minver = "445.87";
168 # endif
169 #elif NVENCAPI_CHECK_VERSION(9, 1)
170 # if defined(_WIN32) || defined(__CYGWIN__)
171     const char *minver = "436.15";
172 # else
173     const char *minver = "435.21";
174 # endif
175 #elif NVENCAPI_CHECK_VERSION(9, 0)
176 # if defined(_WIN32) || defined(__CYGWIN__)
177     const char *minver = "418.81";
178 # else
179     const char *minver = "418.30";
180 # endif
181 #elif NVENCAPI_CHECK_VERSION(8, 2)
182 # if defined(_WIN32) || defined(__CYGWIN__)
183     const char *minver = "397.93";
184 # else
185     const char *minver = "396.24";
186 #endif
187 #elif NVENCAPI_CHECK_VERSION(8, 1)
188 # if defined(_WIN32) || defined(__CYGWIN__)
189     const char *minver = "390.77";
190 # else
191     const char *minver = "390.25";
192 # endif
193 #else
194 # if defined(_WIN32) || defined(__CYGWIN__)
195     const char *minver = "378.66";
196 # else
197     const char *minver = "378.13";
198 # endif
199 #endif
200     av_log(avctx, level, "The minimum required Nvidia driver for nvenc is %s or newer\n", minver);
201 }
202
203 static av_cold int nvenc_load_libraries(AVCodecContext *avctx)
204 {
205     NvencContext *ctx            = avctx->priv_data;
206     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
207     NVENCSTATUS err;
208     uint32_t nvenc_max_ver;
209     int ret;
210
211     ret = cuda_load_functions(&dl_fn->cuda_dl, avctx);
212     if (ret < 0)
213         return ret;
214
215     ret = nvenc_load_functions(&dl_fn->nvenc_dl, avctx);
216     if (ret < 0) {
217         nvenc_print_driver_requirement(avctx, AV_LOG_ERROR);
218         return ret;
219     }
220
221     err = dl_fn->nvenc_dl->NvEncodeAPIGetMaxSupportedVersion(&nvenc_max_ver);
222     if (err != NV_ENC_SUCCESS)
223         return nvenc_print_error(avctx, err, "Failed to query nvenc max version");
224
225     av_log(avctx, AV_LOG_VERBOSE, "Loaded Nvenc version %d.%d\n", nvenc_max_ver >> 4, nvenc_max_ver & 0xf);
226
227     if ((NVENCAPI_MAJOR_VERSION << 4 | NVENCAPI_MINOR_VERSION) > nvenc_max_ver) {
228         av_log(avctx, AV_LOG_ERROR, "Driver does not support the required nvenc API version. "
229                "Required: %d.%d Found: %d.%d\n",
230                NVENCAPI_MAJOR_VERSION, NVENCAPI_MINOR_VERSION,
231                nvenc_max_ver >> 4, nvenc_max_ver & 0xf);
232         nvenc_print_driver_requirement(avctx, AV_LOG_ERROR);
233         return AVERROR(ENOSYS);
234     }
235
236     dl_fn->nvenc_funcs.version = NV_ENCODE_API_FUNCTION_LIST_VER;
237
238     err = dl_fn->nvenc_dl->NvEncodeAPICreateInstance(&dl_fn->nvenc_funcs);
239     if (err != NV_ENC_SUCCESS)
240         return nvenc_print_error(avctx, err, "Failed to create nvenc instance");
241
242     av_log(avctx, AV_LOG_VERBOSE, "Nvenc initialized successfully\n");
243
244     return 0;
245 }
246
247 static int nvenc_push_context(AVCodecContext *avctx)
248 {
249     NvencContext *ctx            = avctx->priv_data;
250     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
251
252     if (ctx->d3d11_device)
253         return 0;
254
255     return CHECK_CU(dl_fn->cuda_dl->cuCtxPushCurrent(ctx->cu_context));
256 }
257
258 static int nvenc_pop_context(AVCodecContext *avctx)
259 {
260     NvencContext *ctx            = avctx->priv_data;
261     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
262     CUcontext dummy;
263
264     if (ctx->d3d11_device)
265         return 0;
266
267     return CHECK_CU(dl_fn->cuda_dl->cuCtxPopCurrent(&dummy));
268 }
269
270 static av_cold int nvenc_open_session(AVCodecContext *avctx)
271 {
272     NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS params = { 0 };
273     NvencContext *ctx = avctx->priv_data;
274     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &ctx->nvenc_dload_funcs.nvenc_funcs;
275     NVENCSTATUS ret;
276
277     params.version    = NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS_VER;
278     params.apiVersion = NVENCAPI_VERSION;
279     if (ctx->d3d11_device) {
280         params.device     = ctx->d3d11_device;
281         params.deviceType = NV_ENC_DEVICE_TYPE_DIRECTX;
282     } else {
283         params.device     = ctx->cu_context;
284         params.deviceType = NV_ENC_DEVICE_TYPE_CUDA;
285     }
286
287     ret = p_nvenc->nvEncOpenEncodeSessionEx(&params, &ctx->nvencoder);
288     if (ret != NV_ENC_SUCCESS) {
289         ctx->nvencoder = NULL;
290         return nvenc_print_error(avctx, ret, "OpenEncodeSessionEx failed");
291     }
292
293     return 0;
294 }
295
296 static int nvenc_check_codec_support(AVCodecContext *avctx)
297 {
298     NvencContext *ctx                    = avctx->priv_data;
299     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &ctx->nvenc_dload_funcs.nvenc_funcs;
300     int i, ret, count = 0;
301     GUID *guids = NULL;
302
303     ret = p_nvenc->nvEncGetEncodeGUIDCount(ctx->nvencoder, &count);
304
305     if (ret != NV_ENC_SUCCESS || !count)
306         return AVERROR(ENOSYS);
307
308     guids = av_malloc(count * sizeof(GUID));
309     if (!guids)
310         return AVERROR(ENOMEM);
311
312     ret = p_nvenc->nvEncGetEncodeGUIDs(ctx->nvencoder, guids, count, &count);
313     if (ret != NV_ENC_SUCCESS) {
314         ret = AVERROR(ENOSYS);
315         goto fail;
316     }
317
318     ret = AVERROR(ENOSYS);
319     for (i = 0; i < count; i++) {
320         if (!memcmp(&guids[i], &ctx->init_encode_params.encodeGUID, sizeof(*guids))) {
321             ret = 0;
322             break;
323         }
324     }
325
326 fail:
327     av_free(guids);
328
329     return ret;
330 }
331
332 static int nvenc_check_cap(AVCodecContext *avctx, NV_ENC_CAPS cap)
333 {
334     NvencContext *ctx = avctx->priv_data;
335     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &ctx->nvenc_dload_funcs.nvenc_funcs;
336     NV_ENC_CAPS_PARAM params        = { 0 };
337     int ret, val = 0;
338
339     params.version     = NV_ENC_CAPS_PARAM_VER;
340     params.capsToQuery = cap;
341
342     ret = p_nvenc->nvEncGetEncodeCaps(ctx->nvencoder, ctx->init_encode_params.encodeGUID, &params, &val);
343
344     if (ret == NV_ENC_SUCCESS)
345         return val;
346     return 0;
347 }
348
349 static int nvenc_check_capabilities(AVCodecContext *avctx)
350 {
351     NvencContext *ctx = avctx->priv_data;
352     int ret;
353
354     ret = nvenc_check_codec_support(avctx);
355     if (ret < 0) {
356         av_log(avctx, AV_LOG_WARNING, "Codec not supported\n");
357         return ret;
358     }
359
360     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_YUV444_ENCODE);
361     if (IS_YUV444(ctx->data_pix_fmt) && ret <= 0) {
362         av_log(avctx, AV_LOG_WARNING, "YUV444P not supported\n");
363         return AVERROR(ENOSYS);
364     }
365
366     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_LOSSLESS_ENCODE);
367     if (ctx->preset >= PRESET_LOSSLESS_DEFAULT && ret <= 0) {
368         av_log(avctx, AV_LOG_WARNING, "Lossless encoding not supported\n");
369         return AVERROR(ENOSYS);
370     }
371
372     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_WIDTH_MAX);
373     if (ret < avctx->width) {
374         av_log(avctx, AV_LOG_WARNING, "Width %d exceeds %d\n",
375                avctx->width, ret);
376         return AVERROR(ENOSYS);
377     }
378
379     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_HEIGHT_MAX);
380     if (ret < avctx->height) {
381         av_log(avctx, AV_LOG_WARNING, "Height %d exceeds %d\n",
382                avctx->height, ret);
383         return AVERROR(ENOSYS);
384     }
385
386     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_NUM_MAX_BFRAMES);
387     if (ret < avctx->max_b_frames) {
388         av_log(avctx, AV_LOG_WARNING, "Max B-frames %d exceed %d\n",
389                avctx->max_b_frames, ret);
390
391         return AVERROR(ENOSYS);
392     }
393
394     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_FIELD_ENCODING);
395     if (ret < 1 && avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT) {
396         av_log(avctx, AV_LOG_WARNING,
397                "Interlaced encoding is not supported. Supported level: %d\n",
398                ret);
399         return AVERROR(ENOSYS);
400     }
401
402     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_10BIT_ENCODE);
403     if (IS_10BIT(ctx->data_pix_fmt) && ret <= 0) {
404         av_log(avctx, AV_LOG_WARNING, "10 bit encode not supported\n");
405         return AVERROR(ENOSYS);
406     }
407
408     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_LOOKAHEAD);
409     if (ctx->rc_lookahead > 0 && ret <= 0) {
410         av_log(avctx, AV_LOG_WARNING, "RC lookahead not supported\n");
411         return AVERROR(ENOSYS);
412     }
413
414     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_TEMPORAL_AQ);
415     if (ctx->temporal_aq > 0 && ret <= 0) {
416         av_log(avctx, AV_LOG_WARNING, "Temporal AQ not supported\n");
417         return AVERROR(ENOSYS);
418     }
419
420     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_WEIGHTED_PREDICTION);
421     if (ctx->weighted_pred > 0 && ret <= 0) {
422         av_log (avctx, AV_LOG_WARNING, "Weighted Prediction not supported\n");
423         return AVERROR(ENOSYS);
424     }
425
426     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_CABAC);
427     if (ctx->coder == NV_ENC_H264_ENTROPY_CODING_MODE_CABAC && ret <= 0) {
428         av_log(avctx, AV_LOG_WARNING, "CABAC entropy coding not supported\n");
429         return AVERROR(ENOSYS);
430     }
431
432 #ifdef NVENC_HAVE_BFRAME_REF_MODE
433     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_BFRAME_REF_MODE);
434     if (ctx->b_ref_mode == NV_ENC_BFRAME_REF_MODE_EACH && ret != 1 && ret != 3) {
435         av_log(avctx, AV_LOG_WARNING, "Each B frame as reference is not supported\n");
436         return AVERROR(ENOSYS);
437     } else if (ctx->b_ref_mode != NV_ENC_BFRAME_REF_MODE_DISABLED && ret == 0) {
438         av_log(avctx, AV_LOG_WARNING, "B frames as references are not supported\n");
439         return AVERROR(ENOSYS);
440     }
441 #else
442     if (ctx->b_ref_mode != 0) {
443         av_log(avctx, AV_LOG_WARNING, "B frames as references need SDK 8.1 at build time\n");
444         return AVERROR(ENOSYS);
445     }
446 #endif
447
448 #ifdef NVENC_HAVE_MULTIPLE_REF_FRAMES
449     ret = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_MULTIPLE_REF_FRAMES);
450     if(avctx->refs != NV_ENC_NUM_REF_FRAMES_AUTOSELECT && ret <= 0) {
451         av_log(avctx, AV_LOG_WARNING, "Multiple reference frames are not supported by the device\n");
452         return AVERROR(ENOSYS);
453     }
454 #else
455     if(avctx->refs != 0) {
456         av_log(avctx, AV_LOG_WARNING, "Multiple reference frames need SDK 9.1 at build time\n");
457         return AVERROR(ENOSYS);
458     }
459 #endif
460
461     ctx->support_dyn_bitrate = nvenc_check_cap(avctx, NV_ENC_CAPS_SUPPORT_DYN_BITRATE_CHANGE);
462
463     return 0;
464 }
465
466 static av_cold int nvenc_check_device(AVCodecContext *avctx, int idx)
467 {
468     NvencContext *ctx = avctx->priv_data;
469     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
470     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
471     char name[128] = { 0};
472     int major, minor, ret;
473     CUdevice cu_device;
474     int loglevel = AV_LOG_VERBOSE;
475
476     if (ctx->device == LIST_DEVICES)
477         loglevel = AV_LOG_INFO;
478
479     ret = CHECK_CU(dl_fn->cuda_dl->cuDeviceGet(&cu_device, idx));
480     if (ret < 0)
481         return ret;
482
483     ret = CHECK_CU(dl_fn->cuda_dl->cuDeviceGetName(name, sizeof(name), cu_device));
484     if (ret < 0)
485         return ret;
486
487     ret = CHECK_CU(dl_fn->cuda_dl->cuDeviceComputeCapability(&major, &minor, cu_device));
488     if (ret < 0)
489         return ret;
490
491     av_log(avctx, loglevel, "[ GPU #%d - < %s > has Compute SM %d.%d ]\n", idx, name, major, minor);
492     if (((major << 4) | minor) < NVENC_CAP) {
493         av_log(avctx, loglevel, "does not support NVENC\n");
494         goto fail;
495     }
496
497     if (ctx->device != idx && ctx->device != ANY_DEVICE)
498         return -1;
499
500     ret = CHECK_CU(dl_fn->cuda_dl->cuCtxCreate(&ctx->cu_context_internal, 0, cu_device));
501     if (ret < 0)
502         goto fail;
503
504     ctx->cu_context = ctx->cu_context_internal;
505     ctx->cu_stream = NULL;
506
507     if ((ret = nvenc_pop_context(avctx)) < 0)
508         goto fail2;
509
510     if ((ret = nvenc_open_session(avctx)) < 0)
511         goto fail2;
512
513     if ((ret = nvenc_check_capabilities(avctx)) < 0)
514         goto fail3;
515
516     av_log(avctx, loglevel, "supports NVENC\n");
517
518     dl_fn->nvenc_device_count++;
519
520     if (ctx->device == idx || ctx->device == ANY_DEVICE)
521         return 0;
522
523 fail3:
524     if ((ret = nvenc_push_context(avctx)) < 0)
525         return ret;
526
527     p_nvenc->nvEncDestroyEncoder(ctx->nvencoder);
528     ctx->nvencoder = NULL;
529
530     if ((ret = nvenc_pop_context(avctx)) < 0)
531         return ret;
532
533 fail2:
534     CHECK_CU(dl_fn->cuda_dl->cuCtxDestroy(ctx->cu_context_internal));
535     ctx->cu_context_internal = NULL;
536
537 fail:
538     return AVERROR(ENOSYS);
539 }
540
541 static av_cold int nvenc_setup_device(AVCodecContext *avctx)
542 {
543     NvencContext *ctx            = avctx->priv_data;
544     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
545
546     switch (avctx->codec->id) {
547     case AV_CODEC_ID_H264:
548         ctx->init_encode_params.encodeGUID = NV_ENC_CODEC_H264_GUID;
549         break;
550     case AV_CODEC_ID_HEVC:
551         ctx->init_encode_params.encodeGUID = NV_ENC_CODEC_HEVC_GUID;
552         break;
553     default:
554         return AVERROR_BUG;
555     }
556
557     if (avctx->pix_fmt == AV_PIX_FMT_CUDA || avctx->pix_fmt == AV_PIX_FMT_D3D11 || avctx->hw_frames_ctx || avctx->hw_device_ctx) {
558         AVHWFramesContext   *frames_ctx;
559         AVHWDeviceContext   *hwdev_ctx;
560         AVCUDADeviceContext *cuda_device_hwctx = NULL;
561 #if CONFIG_D3D11VA
562         AVD3D11VADeviceContext *d3d11_device_hwctx = NULL;
563 #endif
564         int ret;
565
566         if (avctx->hw_frames_ctx) {
567             frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
568             if (frames_ctx->format == AV_PIX_FMT_CUDA)
569                 cuda_device_hwctx = frames_ctx->device_ctx->hwctx;
570 #if CONFIG_D3D11VA
571             else if (frames_ctx->format == AV_PIX_FMT_D3D11)
572                 d3d11_device_hwctx = frames_ctx->device_ctx->hwctx;
573 #endif
574             else
575                 return AVERROR(EINVAL);
576         } else if (avctx->hw_device_ctx) {
577             hwdev_ctx = (AVHWDeviceContext*)avctx->hw_device_ctx->data;
578             if (hwdev_ctx->type == AV_HWDEVICE_TYPE_CUDA)
579                 cuda_device_hwctx = hwdev_ctx->hwctx;
580 #if CONFIG_D3D11VA
581             else if (hwdev_ctx->type == AV_HWDEVICE_TYPE_D3D11VA)
582                 d3d11_device_hwctx = hwdev_ctx->hwctx;
583 #endif
584             else
585                 return AVERROR(EINVAL);
586         } else {
587             return AVERROR(EINVAL);
588         }
589
590         if (cuda_device_hwctx) {
591             ctx->cu_context = cuda_device_hwctx->cuda_ctx;
592             ctx->cu_stream = cuda_device_hwctx->stream;
593         }
594 #if CONFIG_D3D11VA
595         else if (d3d11_device_hwctx) {
596             ctx->d3d11_device = d3d11_device_hwctx->device;
597             ID3D11Device_AddRef(ctx->d3d11_device);
598         }
599 #endif
600
601         ret = nvenc_open_session(avctx);
602         if (ret < 0)
603             return ret;
604
605         ret = nvenc_check_capabilities(avctx);
606         if (ret < 0) {
607             av_log(avctx, AV_LOG_FATAL, "Provided device doesn't support required NVENC features\n");
608             return ret;
609         }
610     } else {
611         int i, nb_devices = 0;
612
613         if (CHECK_CU(dl_fn->cuda_dl->cuInit(0)) < 0)
614             return AVERROR_UNKNOWN;
615
616         if (CHECK_CU(dl_fn->cuda_dl->cuDeviceGetCount(&nb_devices)) < 0)
617             return AVERROR_UNKNOWN;
618
619         if (!nb_devices) {
620             av_log(avctx, AV_LOG_FATAL, "No CUDA capable devices found\n");
621                 return AVERROR_EXTERNAL;
622         }
623
624         av_log(avctx, AV_LOG_VERBOSE, "%d CUDA capable devices found\n", nb_devices);
625
626         dl_fn->nvenc_device_count = 0;
627         for (i = 0; i < nb_devices; ++i) {
628             if ((nvenc_check_device(avctx, i)) >= 0 && ctx->device != LIST_DEVICES)
629                 return 0;
630         }
631
632         if (ctx->device == LIST_DEVICES)
633             return AVERROR_EXIT;
634
635         if (!dl_fn->nvenc_device_count) {
636             av_log(avctx, AV_LOG_FATAL, "No capable devices found\n");
637             return AVERROR_EXTERNAL;
638         }
639
640         av_log(avctx, AV_LOG_FATAL, "Requested GPU %d, but only %d GPUs are available!\n", ctx->device, nb_devices);
641         return AVERROR(EINVAL);
642     }
643
644     return 0;
645 }
646
647 typedef struct GUIDTuple {
648     const GUID guid;
649     int flags;
650 } GUIDTuple;
651
652 #define PRESET_ALIAS(alias, name, ...) \
653     [PRESET_ ## alias] = { NV_ENC_PRESET_ ## name ## _GUID, __VA_ARGS__ }
654
655 #define PRESET(name, ...) PRESET_ALIAS(name, name, __VA_ARGS__)
656
657 static void nvenc_map_preset(NvencContext *ctx)
658 {
659     GUIDTuple presets[] = {
660 #ifdef NVENC_HAVE_NEW_PRESETS
661         PRESET(P1),
662         PRESET(P2),
663         PRESET(P3),
664         PRESET(P4),
665         PRESET(P5),
666         PRESET(P6),
667         PRESET(P7),
668         PRESET_ALIAS(SLOW,   P7, NVENC_TWO_PASSES),
669         PRESET_ALIAS(MEDIUM, P4, NVENC_ONE_PASS),
670         PRESET_ALIAS(FAST,   P1, NVENC_ONE_PASS),
671         // Compat aliases
672         PRESET_ALIAS(DEFAULT,             P4, NVENC_DEPRECATED_PRESET),
673         PRESET_ALIAS(HP,                  P1, NVENC_DEPRECATED_PRESET),
674         PRESET_ALIAS(HQ,                  P7, NVENC_DEPRECATED_PRESET),
675         PRESET_ALIAS(BD,                  P5, NVENC_DEPRECATED_PRESET),
676         PRESET_ALIAS(LOW_LATENCY_DEFAULT, P4, NVENC_DEPRECATED_PRESET | NVENC_LOWLATENCY),
677         PRESET_ALIAS(LOW_LATENCY_HP,      P1, NVENC_DEPRECATED_PRESET | NVENC_LOWLATENCY),
678         PRESET_ALIAS(LOW_LATENCY_HQ,      P7, NVENC_DEPRECATED_PRESET | NVENC_LOWLATENCY),
679         PRESET_ALIAS(LOSSLESS_DEFAULT,    P4, NVENC_DEPRECATED_PRESET | NVENC_LOSSLESS),
680         PRESET_ALIAS(LOSSLESS_HP,         P1, NVENC_DEPRECATED_PRESET | NVENC_LOSSLESS),
681 #else
682         PRESET(DEFAULT),
683         PRESET(HP),
684         PRESET(HQ),
685         PRESET(BD),
686         PRESET_ALIAS(SLOW,   HQ,    NVENC_TWO_PASSES),
687         PRESET_ALIAS(MEDIUM, HQ,    NVENC_ONE_PASS),
688         PRESET_ALIAS(FAST,   HP,    NVENC_ONE_PASS),
689         PRESET(LOW_LATENCY_DEFAULT, NVENC_LOWLATENCY),
690         PRESET(LOW_LATENCY_HP,      NVENC_LOWLATENCY),
691         PRESET(LOW_LATENCY_HQ,      NVENC_LOWLATENCY),
692         PRESET(LOSSLESS_DEFAULT,    NVENC_LOSSLESS),
693         PRESET(LOSSLESS_HP,         NVENC_LOSSLESS),
694 #endif
695     };
696
697     GUIDTuple *t = &presets[ctx->preset];
698
699     ctx->init_encode_params.presetGUID = t->guid;
700     ctx->flags = t->flags;
701 }
702
703 #undef PRESET
704 #undef PRESET_ALIAS
705
706 static av_cold void set_constqp(AVCodecContext *avctx)
707 {
708     NvencContext *ctx = avctx->priv_data;
709     NV_ENC_RC_PARAMS *rc = &ctx->encode_config.rcParams;
710
711     rc->rateControlMode = NV_ENC_PARAMS_RC_CONSTQP;
712
713     if (ctx->init_qp_p >= 0) {
714         rc->constQP.qpInterP = ctx->init_qp_p;
715         if (ctx->init_qp_i >= 0 && ctx->init_qp_b >= 0) {
716             rc->constQP.qpIntra = ctx->init_qp_i;
717             rc->constQP.qpInterB = ctx->init_qp_b;
718         } else if (avctx->i_quant_factor != 0.0 && avctx->b_quant_factor != 0.0) {
719             rc->constQP.qpIntra = av_clip(
720                 rc->constQP.qpInterP * fabs(avctx->i_quant_factor) + avctx->i_quant_offset + 0.5, 0, 51);
721             rc->constQP.qpInterB = av_clip(
722                 rc->constQP.qpInterP * fabs(avctx->b_quant_factor) + avctx->b_quant_offset + 0.5, 0, 51);
723         } else {
724             rc->constQP.qpIntra = rc->constQP.qpInterP;
725             rc->constQP.qpInterB = rc->constQP.qpInterP;
726         }
727     } else if (ctx->cqp >= 0) {
728         rc->constQP.qpInterP = rc->constQP.qpInterB = rc->constQP.qpIntra = ctx->cqp;
729         if (avctx->b_quant_factor != 0.0)
730             rc->constQP.qpInterB = av_clip(ctx->cqp * fabs(avctx->b_quant_factor) + avctx->b_quant_offset + 0.5, 0, 51);
731         if (avctx->i_quant_factor != 0.0)
732             rc->constQP.qpIntra = av_clip(ctx->cqp * fabs(avctx->i_quant_factor) + avctx->i_quant_offset + 0.5, 0, 51);
733     }
734
735     avctx->qmin = -1;
736     avctx->qmax = -1;
737 }
738
739 static av_cold void set_vbr(AVCodecContext *avctx)
740 {
741     NvencContext *ctx = avctx->priv_data;
742     NV_ENC_RC_PARAMS *rc = &ctx->encode_config.rcParams;
743     int qp_inter_p;
744
745     if (avctx->qmin >= 0 && avctx->qmax >= 0) {
746         rc->enableMinQP = 1;
747         rc->enableMaxQP = 1;
748
749         rc->minQP.qpInterB = avctx->qmin;
750         rc->minQP.qpInterP = avctx->qmin;
751         rc->minQP.qpIntra  = avctx->qmin;
752
753         rc->maxQP.qpInterB = avctx->qmax;
754         rc->maxQP.qpInterP = avctx->qmax;
755         rc->maxQP.qpIntra = avctx->qmax;
756
757         qp_inter_p = (avctx->qmax + 3 * avctx->qmin) / 4; // biased towards Qmin
758     } else if (avctx->qmin >= 0) {
759         rc->enableMinQP = 1;
760
761         rc->minQP.qpInterB = avctx->qmin;
762         rc->minQP.qpInterP = avctx->qmin;
763         rc->minQP.qpIntra = avctx->qmin;
764
765         qp_inter_p = avctx->qmin;
766     } else {
767         qp_inter_p = 26; // default to 26
768     }
769
770     rc->enableInitialRCQP = 1;
771
772     if (ctx->init_qp_p < 0) {
773         rc->initialRCQP.qpInterP  = qp_inter_p;
774     } else {
775         rc->initialRCQP.qpInterP = ctx->init_qp_p;
776     }
777
778     if (ctx->init_qp_i < 0) {
779         if (avctx->i_quant_factor != 0.0 && avctx->b_quant_factor != 0.0) {
780             rc->initialRCQP.qpIntra = av_clip(
781                 rc->initialRCQP.qpInterP * fabs(avctx->i_quant_factor) + avctx->i_quant_offset + 0.5, 0, 51);
782         } else {
783             rc->initialRCQP.qpIntra = rc->initialRCQP.qpInterP;
784         }
785     } else {
786         rc->initialRCQP.qpIntra = ctx->init_qp_i;
787     }
788
789     if (ctx->init_qp_b < 0) {
790         if (avctx->i_quant_factor != 0.0 && avctx->b_quant_factor != 0.0) {
791             rc->initialRCQP.qpInterB = av_clip(
792                 rc->initialRCQP.qpInterP * fabs(avctx->b_quant_factor) + avctx->b_quant_offset + 0.5, 0, 51);
793         } else {
794             rc->initialRCQP.qpInterB = rc->initialRCQP.qpInterP;
795         }
796     } else {
797         rc->initialRCQP.qpInterB = ctx->init_qp_b;
798     }
799 }
800
801 static av_cold void set_lossless(AVCodecContext *avctx)
802 {
803     NvencContext *ctx = avctx->priv_data;
804     NV_ENC_RC_PARAMS *rc = &ctx->encode_config.rcParams;
805
806     rc->rateControlMode = NV_ENC_PARAMS_RC_CONSTQP;
807     rc->constQP.qpInterB = 0;
808     rc->constQP.qpInterP = 0;
809     rc->constQP.qpIntra  = 0;
810
811     avctx->qmin = -1;
812     avctx->qmax = -1;
813 }
814
815 static void nvenc_override_rate_control(AVCodecContext *avctx)
816 {
817     NvencContext *ctx    = avctx->priv_data;
818     NV_ENC_RC_PARAMS *rc = &ctx->encode_config.rcParams;
819
820     switch (ctx->rc) {
821     case NV_ENC_PARAMS_RC_CONSTQP:
822         set_constqp(avctx);
823         return;
824     case NV_ENC_PARAMS_RC_VBR_MINQP:
825         if (avctx->qmin < 0) {
826             av_log(avctx, AV_LOG_WARNING,
827                    "The variable bitrate rate-control requires "
828                    "the 'qmin' option set.\n");
829             set_vbr(avctx);
830             return;
831         }
832         /* fall through */
833     case NV_ENC_PARAMS_RC_VBR_HQ:
834     case NV_ENC_PARAMS_RC_VBR:
835         set_vbr(avctx);
836         break;
837     case NV_ENC_PARAMS_RC_CBR:
838     case NV_ENC_PARAMS_RC_CBR_HQ:
839     case NV_ENC_PARAMS_RC_CBR_LOWDELAY_HQ:
840         break;
841     }
842
843     rc->rateControlMode = ctx->rc;
844 }
845
846 static av_cold int nvenc_recalc_surfaces(AVCodecContext *avctx)
847 {
848     NvencContext *ctx = avctx->priv_data;
849     // default minimum of 4 surfaces
850     // multiply by 2 for number of NVENCs on gpu (hardcode to 2)
851     // another multiply by 2 to avoid blocking next PBB group
852     int nb_surfaces = FFMAX(4, ctx->encode_config.frameIntervalP * 2 * 2);
853
854     // lookahead enabled
855     if (ctx->rc_lookahead > 0) {
856         // +1 is to account for lkd_bound calculation later
857         // +4 is to allow sufficient pipelining with lookahead
858         nb_surfaces = FFMAX(1, FFMAX(nb_surfaces, ctx->rc_lookahead + ctx->encode_config.frameIntervalP + 1 + 4));
859         if (nb_surfaces > ctx->nb_surfaces && ctx->nb_surfaces > 0)
860         {
861             av_log(avctx, AV_LOG_WARNING,
862                    "Defined rc_lookahead requires more surfaces, "
863                    "increasing used surfaces %d -> %d\n", ctx->nb_surfaces, nb_surfaces);
864         }
865         ctx->nb_surfaces = FFMAX(nb_surfaces, ctx->nb_surfaces);
866     } else {
867         if (ctx->encode_config.frameIntervalP > 1 && ctx->nb_surfaces < nb_surfaces && ctx->nb_surfaces > 0)
868         {
869             av_log(avctx, AV_LOG_WARNING,
870                    "Defined b-frame requires more surfaces, "
871                    "increasing used surfaces %d -> %d\n", ctx->nb_surfaces, nb_surfaces);
872             ctx->nb_surfaces = FFMAX(ctx->nb_surfaces, nb_surfaces);
873         }
874         else if (ctx->nb_surfaces <= 0)
875             ctx->nb_surfaces = nb_surfaces;
876         // otherwise use user specified value
877     }
878
879     ctx->nb_surfaces = FFMAX(1, FFMIN(MAX_REGISTERED_FRAMES, ctx->nb_surfaces));
880     ctx->async_depth = FFMIN(ctx->async_depth, ctx->nb_surfaces - 1);
881
882     return 0;
883 }
884
885 static av_cold void nvenc_setup_rate_control(AVCodecContext *avctx)
886 {
887     NvencContext *ctx = avctx->priv_data;
888
889     if (avctx->global_quality > 0)
890         av_log(avctx, AV_LOG_WARNING, "Using global_quality with nvenc is deprecated. Use qp instead.\n");
891
892     if (ctx->cqp < 0 && avctx->global_quality > 0)
893         ctx->cqp = avctx->global_quality;
894
895     if (avctx->bit_rate > 0) {
896         ctx->encode_config.rcParams.averageBitRate = avctx->bit_rate;
897     } else if (ctx->encode_config.rcParams.averageBitRate > 0) {
898         ctx->encode_config.rcParams.maxBitRate = ctx->encode_config.rcParams.averageBitRate;
899     }
900
901     if (avctx->rc_max_rate > 0)
902         ctx->encode_config.rcParams.maxBitRate = avctx->rc_max_rate;
903
904 #ifdef NVENC_HAVE_MULTIPASS
905     ctx->encode_config.rcParams.multiPass = ctx->multipass;
906     if (ctx->encode_config.rcParams.multiPass != NV_ENC_MULTI_PASS_DISABLED)
907         ctx->flags |= NVENC_TWO_PASSES;
908 #endif
909
910     if (ctx->rc < 0) {
911         if (ctx->flags & NVENC_ONE_PASS)
912             ctx->twopass = 0;
913         if (ctx->flags & NVENC_TWO_PASSES)
914             ctx->twopass = 1;
915
916         if (ctx->twopass < 0)
917             ctx->twopass = (ctx->flags & NVENC_LOWLATENCY) != 0;
918
919         if (ctx->cbr) {
920             if (ctx->twopass) {
921                 ctx->rc = NV_ENC_PARAMS_RC_CBR_LOWDELAY_HQ;
922             } else {
923                 ctx->rc = NV_ENC_PARAMS_RC_CBR;
924             }
925         } else if (ctx->cqp >= 0) {
926             ctx->rc = NV_ENC_PARAMS_RC_CONSTQP;
927         } else if (ctx->twopass) {
928             ctx->rc = NV_ENC_PARAMS_RC_VBR_HQ;
929         } else if (avctx->qmin >= 0 && avctx->qmax >= 0) {
930             ctx->rc = NV_ENC_PARAMS_RC_VBR_MINQP;
931         }
932     }
933
934     if (ctx->rc >= 0 && ctx->rc & RC_MODE_DEPRECATED) {
935         av_log(avctx, AV_LOG_WARNING, "Specified rc mode is deprecated.\n");
936         av_log(avctx, AV_LOG_WARNING, "\tll_2pass_quality -> cbr_ld_hq\n");
937         av_log(avctx, AV_LOG_WARNING, "\tll_2pass_size -> cbr_hq\n");
938         av_log(avctx, AV_LOG_WARNING, "\tvbr_2pass -> vbr_hq\n");
939         av_log(avctx, AV_LOG_WARNING, "\tvbr_minqp -> (no replacement)\n");
940
941         ctx->rc &= ~RC_MODE_DEPRECATED;
942     }
943
944 #ifdef NVENC_HAVE_LDKFS
945     if (ctx->ldkfs)
946          ctx->encode_config.rcParams.lowDelayKeyFrameScale = ctx->ldkfs;
947 #endif
948
949     if (ctx->flags & NVENC_LOSSLESS) {
950         set_lossless(avctx);
951     } else if (ctx->rc >= 0) {
952         nvenc_override_rate_control(avctx);
953     } else {
954         ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_VBR;
955         set_vbr(avctx);
956     }
957
958     if (avctx->rc_buffer_size > 0) {
959         ctx->encode_config.rcParams.vbvBufferSize = avctx->rc_buffer_size;
960     } else if (ctx->encode_config.rcParams.averageBitRate > 0) {
961         avctx->rc_buffer_size = ctx->encode_config.rcParams.vbvBufferSize = 2 * ctx->encode_config.rcParams.averageBitRate;
962     }
963
964     if (ctx->aq) {
965         ctx->encode_config.rcParams.enableAQ   = 1;
966         ctx->encode_config.rcParams.aqStrength = ctx->aq_strength;
967         av_log(avctx, AV_LOG_VERBOSE, "AQ enabled.\n");
968     }
969
970     if (ctx->temporal_aq) {
971         ctx->encode_config.rcParams.enableTemporalAQ = 1;
972         av_log(avctx, AV_LOG_VERBOSE, "Temporal AQ enabled.\n");
973     }
974
975     if (ctx->rc_lookahead > 0) {
976         int lkd_bound = FFMIN(ctx->nb_surfaces, ctx->async_depth) -
977                         ctx->encode_config.frameIntervalP - 4;
978
979         if (lkd_bound < 0) {
980             av_log(avctx, AV_LOG_WARNING,
981                    "Lookahead not enabled. Increase buffer delay (-delay).\n");
982         } else {
983             ctx->encode_config.rcParams.enableLookahead = 1;
984             ctx->encode_config.rcParams.lookaheadDepth  = av_clip(ctx->rc_lookahead, 0, lkd_bound);
985             ctx->encode_config.rcParams.disableIadapt   = ctx->no_scenecut;
986             ctx->encode_config.rcParams.disableBadapt   = !ctx->b_adapt;
987             av_log(avctx, AV_LOG_VERBOSE,
988                    "Lookahead enabled: depth %d, scenecut %s, B-adapt %s.\n",
989                    ctx->encode_config.rcParams.lookaheadDepth,
990                    ctx->encode_config.rcParams.disableIadapt ? "disabled" : "enabled",
991                    ctx->encode_config.rcParams.disableBadapt ? "disabled" : "enabled");
992         }
993     }
994
995     if (ctx->strict_gop) {
996         ctx->encode_config.rcParams.strictGOPTarget = 1;
997         av_log(avctx, AV_LOG_VERBOSE, "Strict GOP target enabled.\n");
998     }
999
1000     if (ctx->nonref_p)
1001         ctx->encode_config.rcParams.enableNonRefP = 1;
1002
1003     if (ctx->zerolatency)
1004         ctx->encode_config.rcParams.zeroReorderDelay = 1;
1005
1006     if (ctx->quality) {
1007         //convert from float to fixed point 8.8
1008         int tmp_quality = (int)(ctx->quality * 256.0f);
1009         ctx->encode_config.rcParams.targetQuality = (uint8_t)(tmp_quality >> 8);
1010         ctx->encode_config.rcParams.targetQualityLSB = (uint8_t)(tmp_quality & 0xff);
1011
1012         av_log(avctx, AV_LOG_VERBOSE, "CQ(%d) mode enabled.\n", tmp_quality);
1013
1014         //CQ mode shall discard avg bitrate & honor max bitrate;
1015         ctx->encode_config.rcParams.averageBitRate = avctx->bit_rate = 0;
1016         ctx->encode_config.rcParams.maxBitRate = avctx->rc_max_rate;
1017     }
1018 }
1019
1020 static av_cold int nvenc_setup_h264_config(AVCodecContext *avctx)
1021 {
1022     NvencContext *ctx                      = avctx->priv_data;
1023     NV_ENC_CONFIG *cc                      = &ctx->encode_config;
1024     NV_ENC_CONFIG_H264 *h264               = &cc->encodeCodecConfig.h264Config;
1025     NV_ENC_CONFIG_H264_VUI_PARAMETERS *vui = &h264->h264VUIParameters;
1026
1027     vui->colourMatrix = avctx->colorspace;
1028     vui->colourPrimaries = avctx->color_primaries;
1029     vui->transferCharacteristics = avctx->color_trc;
1030     vui->videoFullRangeFlag = (avctx->color_range == AVCOL_RANGE_JPEG
1031         || ctx->data_pix_fmt == AV_PIX_FMT_YUVJ420P || ctx->data_pix_fmt == AV_PIX_FMT_YUVJ422P || ctx->data_pix_fmt == AV_PIX_FMT_YUVJ444P);
1032
1033     vui->colourDescriptionPresentFlag =
1034         (avctx->colorspace != 2 || avctx->color_primaries != 2 || avctx->color_trc != 2);
1035
1036     vui->videoSignalTypePresentFlag =
1037         (vui->colourDescriptionPresentFlag
1038         || vui->videoFormat != 5
1039         || vui->videoFullRangeFlag != 0);
1040
1041     h264->sliceMode = 3;
1042     h264->sliceModeData = 1;
1043
1044     h264->disableSPSPPS = (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) ? 1 : 0;
1045     h264->repeatSPSPPS  = (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) ? 0 : 1;
1046     h264->outputAUD     = ctx->aud;
1047
1048     if (ctx->dpb_size >= 0) {
1049         /* 0 means "let the hardware decide" */
1050         h264->maxNumRefFrames = ctx->dpb_size;
1051     }
1052     if (avctx->gop_size >= 0) {
1053         h264->idrPeriod = cc->gopLength;
1054     }
1055
1056     if (IS_CBR(cc->rcParams.rateControlMode)) {
1057         h264->outputBufferingPeriodSEI = 1;
1058     }
1059
1060     h264->outputPictureTimingSEI = 1;
1061
1062     if (cc->rcParams.rateControlMode == NV_ENC_PARAMS_RC_CBR_LOWDELAY_HQ ||
1063         cc->rcParams.rateControlMode == NV_ENC_PARAMS_RC_CBR_HQ ||
1064         cc->rcParams.rateControlMode == NV_ENC_PARAMS_RC_VBR_HQ) {
1065         h264->adaptiveTransformMode = NV_ENC_H264_ADAPTIVE_TRANSFORM_ENABLE;
1066         h264->fmoMode = NV_ENC_H264_FMO_DISABLE;
1067     }
1068
1069     if (ctx->flags & NVENC_LOSSLESS) {
1070         h264->qpPrimeYZeroTransformBypassFlag = 1;
1071     } else {
1072         switch(ctx->profile) {
1073         case NV_ENC_H264_PROFILE_BASELINE:
1074             cc->profileGUID = NV_ENC_H264_PROFILE_BASELINE_GUID;
1075             avctx->profile = FF_PROFILE_H264_BASELINE;
1076             break;
1077         case NV_ENC_H264_PROFILE_MAIN:
1078             cc->profileGUID = NV_ENC_H264_PROFILE_MAIN_GUID;
1079             avctx->profile = FF_PROFILE_H264_MAIN;
1080             break;
1081         case NV_ENC_H264_PROFILE_HIGH:
1082             cc->profileGUID = NV_ENC_H264_PROFILE_HIGH_GUID;
1083             avctx->profile = FF_PROFILE_H264_HIGH;
1084             break;
1085         case NV_ENC_H264_PROFILE_HIGH_444P:
1086             cc->profileGUID = NV_ENC_H264_PROFILE_HIGH_444_GUID;
1087             avctx->profile = FF_PROFILE_H264_HIGH_444_PREDICTIVE;
1088             break;
1089         }
1090     }
1091
1092     // force setting profile as high444p if input is AV_PIX_FMT_YUV444P
1093     if (ctx->data_pix_fmt == AV_PIX_FMT_YUV444P) {
1094         cc->profileGUID = NV_ENC_H264_PROFILE_HIGH_444_GUID;
1095         avctx->profile = FF_PROFILE_H264_HIGH_444_PREDICTIVE;
1096     }
1097
1098     h264->chromaFormatIDC = avctx->profile == FF_PROFILE_H264_HIGH_444_PREDICTIVE ? 3 : 1;
1099
1100     h264->level = ctx->level;
1101
1102     if (ctx->coder >= 0)
1103         h264->entropyCodingMode = ctx->coder;
1104
1105 #ifdef NVENC_HAVE_BFRAME_REF_MODE
1106     h264->useBFramesAsRef = ctx->b_ref_mode;
1107 #endif
1108
1109 #ifdef NVENC_HAVE_MULTIPLE_REF_FRAMES
1110     h264->numRefL0 = avctx->refs;
1111     h264->numRefL1 = avctx->refs;
1112 #endif
1113
1114     return 0;
1115 }
1116
1117 static av_cold int nvenc_setup_hevc_config(AVCodecContext *avctx)
1118 {
1119     NvencContext *ctx                      = avctx->priv_data;
1120     NV_ENC_CONFIG *cc                      = &ctx->encode_config;
1121     NV_ENC_CONFIG_HEVC *hevc               = &cc->encodeCodecConfig.hevcConfig;
1122     NV_ENC_CONFIG_HEVC_VUI_PARAMETERS *vui = &hevc->hevcVUIParameters;
1123
1124     vui->colourMatrix = avctx->colorspace;
1125     vui->colourPrimaries = avctx->color_primaries;
1126     vui->transferCharacteristics = avctx->color_trc;
1127     vui->videoFullRangeFlag = (avctx->color_range == AVCOL_RANGE_JPEG
1128         || ctx->data_pix_fmt == AV_PIX_FMT_YUVJ420P || ctx->data_pix_fmt == AV_PIX_FMT_YUVJ422P || ctx->data_pix_fmt == AV_PIX_FMT_YUVJ444P);
1129
1130     vui->colourDescriptionPresentFlag =
1131         (avctx->colorspace != 2 || avctx->color_primaries != 2 || avctx->color_trc != 2);
1132
1133     vui->videoSignalTypePresentFlag =
1134         (vui->colourDescriptionPresentFlag
1135         || vui->videoFormat != 5
1136         || vui->videoFullRangeFlag != 0);
1137
1138     hevc->sliceMode = 3;
1139     hevc->sliceModeData = 1;
1140
1141     hevc->disableSPSPPS = (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) ? 1 : 0;
1142     hevc->repeatSPSPPS  = (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) ? 0 : 1;
1143     hevc->outputAUD     = ctx->aud;
1144
1145     if (ctx->dpb_size >= 0) {
1146         /* 0 means "let the hardware decide" */
1147         hevc->maxNumRefFramesInDPB = ctx->dpb_size;
1148     }
1149     if (avctx->gop_size >= 0) {
1150         hevc->idrPeriod = cc->gopLength;
1151     }
1152
1153     if (IS_CBR(cc->rcParams.rateControlMode)) {
1154         hevc->outputBufferingPeriodSEI = 1;
1155     }
1156
1157     hevc->outputPictureTimingSEI = 1;
1158
1159     switch (ctx->profile) {
1160     case NV_ENC_HEVC_PROFILE_MAIN:
1161         cc->profileGUID = NV_ENC_HEVC_PROFILE_MAIN_GUID;
1162         avctx->profile  = FF_PROFILE_HEVC_MAIN;
1163         break;
1164     case NV_ENC_HEVC_PROFILE_MAIN_10:
1165         cc->profileGUID = NV_ENC_HEVC_PROFILE_MAIN10_GUID;
1166         avctx->profile  = FF_PROFILE_HEVC_MAIN_10;
1167         break;
1168     case NV_ENC_HEVC_PROFILE_REXT:
1169         cc->profileGUID = NV_ENC_HEVC_PROFILE_FREXT_GUID;
1170         avctx->profile  = FF_PROFILE_HEVC_REXT;
1171         break;
1172     }
1173
1174     // force setting profile as main10 if input is 10 bit
1175     if (IS_10BIT(ctx->data_pix_fmt)) {
1176         cc->profileGUID = NV_ENC_HEVC_PROFILE_MAIN10_GUID;
1177         avctx->profile = FF_PROFILE_HEVC_MAIN_10;
1178     }
1179
1180     // force setting profile as rext if input is yuv444
1181     if (IS_YUV444(ctx->data_pix_fmt)) {
1182         cc->profileGUID = NV_ENC_HEVC_PROFILE_FREXT_GUID;
1183         avctx->profile = FF_PROFILE_HEVC_REXT;
1184     }
1185
1186     hevc->chromaFormatIDC = IS_YUV444(ctx->data_pix_fmt) ? 3 : 1;
1187
1188     hevc->pixelBitDepthMinus8 = IS_10BIT(ctx->data_pix_fmt) ? 2 : 0;
1189
1190     hevc->level = ctx->level;
1191
1192     hevc->tier = ctx->tier;
1193
1194 #ifdef NVENC_HAVE_HEVC_BFRAME_REF_MODE
1195     hevc->useBFramesAsRef = ctx->b_ref_mode;
1196 #endif
1197
1198 #ifdef NVENC_HAVE_MULTIPLE_REF_FRAMES
1199     hevc->numRefL0 = avctx->refs;
1200     hevc->numRefL1 = avctx->refs;
1201 #endif
1202
1203     return 0;
1204 }
1205
1206 static av_cold int nvenc_setup_codec_config(AVCodecContext *avctx)
1207 {
1208     switch (avctx->codec->id) {
1209     case AV_CODEC_ID_H264:
1210         return nvenc_setup_h264_config(avctx);
1211     case AV_CODEC_ID_HEVC:
1212         return nvenc_setup_hevc_config(avctx);
1213     /* Earlier switch/case will return if unknown codec is passed. */
1214     }
1215
1216     return 0;
1217 }
1218
1219 static void compute_dar(AVCodecContext *avctx, int *dw, int *dh) {
1220     int sw, sh;
1221
1222     sw = avctx->width;
1223     sh = avctx->height;
1224
1225     if (avctx->sample_aspect_ratio.num > 0 && avctx->sample_aspect_ratio.den > 0) {
1226         sw *= avctx->sample_aspect_ratio.num;
1227         sh *= avctx->sample_aspect_ratio.den;
1228     }
1229
1230     av_reduce(dw, dh, sw, sh, 1024 * 1024);
1231 }
1232
1233 static av_cold int nvenc_setup_encoder(AVCodecContext *avctx)
1234 {
1235     NvencContext *ctx = avctx->priv_data;
1236     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1237     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1238
1239     NV_ENC_PRESET_CONFIG preset_config = { 0 };
1240     NVENCSTATUS nv_status = NV_ENC_SUCCESS;
1241     AVCPBProperties *cpb_props;
1242     int res = 0;
1243     int dw, dh;
1244
1245     ctx->encode_config.version = NV_ENC_CONFIG_VER;
1246     ctx->init_encode_params.version = NV_ENC_INITIALIZE_PARAMS_VER;
1247
1248     ctx->init_encode_params.encodeHeight = avctx->height;
1249     ctx->init_encode_params.encodeWidth = avctx->width;
1250
1251     ctx->init_encode_params.encodeConfig = &ctx->encode_config;
1252
1253     nvenc_map_preset(ctx);
1254
1255     if (ctx->flags & NVENC_DEPRECATED_PRESET)
1256         av_log(avctx, AV_LOG_WARNING, "The selected preset is deprecated. Use p1 to p7 + -tune or fast/medium/slow.\n");
1257
1258     preset_config.version = NV_ENC_PRESET_CONFIG_VER;
1259     preset_config.presetCfg.version = NV_ENC_CONFIG_VER;
1260
1261     if (IS_SDK10_PRESET(ctx->preset)) {
1262 #ifdef NVENC_HAVE_NEW_PRESETS
1263         ctx->init_encode_params.tuningInfo = ctx->tuning_info;
1264
1265         nv_status = p_nvenc->nvEncGetEncodePresetConfigEx(ctx->nvencoder,
1266             ctx->init_encode_params.encodeGUID,
1267             ctx->init_encode_params.presetGUID,
1268             ctx->init_encode_params.tuningInfo,
1269             &preset_config);
1270 #endif
1271     } else {
1272 #ifdef NVENC_HAVE_NEW_PRESETS
1273         // Turn off tuning info parameter if older presets are on
1274         ctx->init_encode_params.tuningInfo = 0;
1275 #endif
1276
1277         nv_status = p_nvenc->nvEncGetEncodePresetConfig(ctx->nvencoder,
1278             ctx->init_encode_params.encodeGUID,
1279             ctx->init_encode_params.presetGUID,
1280             &preset_config);
1281     }
1282     if (nv_status != NV_ENC_SUCCESS)
1283         return nvenc_print_error(avctx, nv_status, "Cannot get the preset configuration");
1284
1285     memcpy(&ctx->encode_config, &preset_config.presetCfg, sizeof(ctx->encode_config));
1286
1287     ctx->encode_config.version = NV_ENC_CONFIG_VER;
1288
1289     compute_dar(avctx, &dw, &dh);
1290     ctx->init_encode_params.darHeight = dh;
1291     ctx->init_encode_params.darWidth = dw;
1292
1293     if (avctx->framerate.num > 0 && avctx->framerate.den > 0) {
1294         ctx->init_encode_params.frameRateNum = avctx->framerate.num;
1295         ctx->init_encode_params.frameRateDen = avctx->framerate.den;
1296     } else {
1297         ctx->init_encode_params.frameRateNum = avctx->time_base.den;
1298         ctx->init_encode_params.frameRateDen = avctx->time_base.num * avctx->ticks_per_frame;
1299     }
1300
1301     ctx->init_encode_params.enableEncodeAsync = 0;
1302     ctx->init_encode_params.enablePTD = 1;
1303
1304 #ifdef NVENC_HAVE_NEW_PRESETS
1305     /* If lookahead isn't set from CLI, use value from preset.
1306      * P6 & P7 presets may enable lookahead for better quality.
1307      * */
1308     if (ctx->rc_lookahead == 0 && ctx->encode_config.rcParams.enableLookahead)
1309         ctx->rc_lookahead = ctx->encode_config.rcParams.lookaheadDepth;
1310
1311     if (ctx->init_encode_params.tuningInfo == NV_ENC_TUNING_INFO_LOSSLESS)
1312         ctx->flags |= NVENC_LOSSLESS;
1313 #endif
1314
1315     if (ctx->weighted_pred == 1)
1316         ctx->init_encode_params.enableWeightedPrediction = 1;
1317
1318     if (ctx->bluray_compat) {
1319         ctx->aud = 1;
1320         ctx->dpb_size = FFMIN(FFMAX(avctx->refs, 0), 6);
1321         avctx->max_b_frames = FFMIN(avctx->max_b_frames, 3);
1322         switch (avctx->codec->id) {
1323         case AV_CODEC_ID_H264:
1324             /* maximum level depends on used resolution */
1325             break;
1326         case AV_CODEC_ID_HEVC:
1327             ctx->level = NV_ENC_LEVEL_HEVC_51;
1328             ctx->tier = NV_ENC_TIER_HEVC_HIGH;
1329             break;
1330         }
1331     }
1332
1333     if (avctx->gop_size > 0) {
1334         if (avctx->max_b_frames >= 0) {
1335             /* 0 is intra-only, 1 is I/P only, 2 is one B-Frame, 3 two B-frames, and so on. */
1336             ctx->encode_config.frameIntervalP = avctx->max_b_frames + 1;
1337         }
1338
1339         ctx->encode_config.gopLength = avctx->gop_size;
1340     } else if (avctx->gop_size == 0) {
1341         ctx->encode_config.frameIntervalP = 0;
1342         ctx->encode_config.gopLength = 1;
1343     }
1344
1345     nvenc_recalc_surfaces(avctx);
1346
1347     nvenc_setup_rate_control(avctx);
1348
1349     if (avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT) {
1350         ctx->encode_config.frameFieldMode = NV_ENC_PARAMS_FRAME_FIELD_MODE_FIELD;
1351     } else {
1352         ctx->encode_config.frameFieldMode = NV_ENC_PARAMS_FRAME_FIELD_MODE_FRAME;
1353     }
1354
1355     res = nvenc_setup_codec_config(avctx);
1356     if (res)
1357         return res;
1358
1359     res = nvenc_push_context(avctx);
1360     if (res < 0)
1361         return res;
1362
1363     nv_status = p_nvenc->nvEncInitializeEncoder(ctx->nvencoder, &ctx->init_encode_params);
1364     if (nv_status != NV_ENC_SUCCESS) {
1365         nvenc_pop_context(avctx);
1366         return nvenc_print_error(avctx, nv_status, "InitializeEncoder failed");
1367     }
1368
1369 #ifdef NVENC_HAVE_CUSTREAM_PTR
1370     if (ctx->cu_context) {
1371         nv_status = p_nvenc->nvEncSetIOCudaStreams(ctx->nvencoder, &ctx->cu_stream, &ctx->cu_stream);
1372         if (nv_status != NV_ENC_SUCCESS) {
1373             nvenc_pop_context(avctx);
1374             return nvenc_print_error(avctx, nv_status, "SetIOCudaStreams failed");
1375         }
1376     }
1377 #endif
1378
1379     res = nvenc_pop_context(avctx);
1380     if (res < 0)
1381         return res;
1382
1383     if (ctx->encode_config.frameIntervalP > 1)
1384         avctx->has_b_frames = 2;
1385
1386     if (ctx->encode_config.rcParams.averageBitRate > 0)
1387         avctx->bit_rate = ctx->encode_config.rcParams.averageBitRate;
1388
1389     cpb_props = ff_add_cpb_side_data(avctx);
1390     if (!cpb_props)
1391         return AVERROR(ENOMEM);
1392     cpb_props->max_bitrate = ctx->encode_config.rcParams.maxBitRate;
1393     cpb_props->avg_bitrate = avctx->bit_rate;
1394     cpb_props->buffer_size = ctx->encode_config.rcParams.vbvBufferSize;
1395
1396     return 0;
1397 }
1398
1399 static NV_ENC_BUFFER_FORMAT nvenc_map_buffer_format(enum AVPixelFormat pix_fmt)
1400 {
1401     switch (pix_fmt) {
1402     case AV_PIX_FMT_YUV420P:
1403         return NV_ENC_BUFFER_FORMAT_YV12_PL;
1404     case AV_PIX_FMT_NV12:
1405         return NV_ENC_BUFFER_FORMAT_NV12_PL;
1406     case AV_PIX_FMT_P010:
1407     case AV_PIX_FMT_P016:
1408         return NV_ENC_BUFFER_FORMAT_YUV420_10BIT;
1409     case AV_PIX_FMT_YUV444P:
1410         return NV_ENC_BUFFER_FORMAT_YUV444_PL;
1411     case AV_PIX_FMT_YUV444P16:
1412         return NV_ENC_BUFFER_FORMAT_YUV444_10BIT;
1413     case AV_PIX_FMT_0RGB32:
1414         return NV_ENC_BUFFER_FORMAT_ARGB;
1415     case AV_PIX_FMT_0BGR32:
1416         return NV_ENC_BUFFER_FORMAT_ABGR;
1417     default:
1418         return NV_ENC_BUFFER_FORMAT_UNDEFINED;
1419     }
1420 }
1421
1422 static av_cold int nvenc_alloc_surface(AVCodecContext *avctx, int idx)
1423 {
1424     NvencContext *ctx = avctx->priv_data;
1425     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1426     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1427     NvencSurface* tmp_surface = &ctx->surfaces[idx];
1428
1429     NVENCSTATUS nv_status;
1430     NV_ENC_CREATE_BITSTREAM_BUFFER allocOut = { 0 };
1431     allocOut.version = NV_ENC_CREATE_BITSTREAM_BUFFER_VER;
1432
1433     if (avctx->pix_fmt == AV_PIX_FMT_CUDA || avctx->pix_fmt == AV_PIX_FMT_D3D11) {
1434         ctx->surfaces[idx].in_ref = av_frame_alloc();
1435         if (!ctx->surfaces[idx].in_ref)
1436             return AVERROR(ENOMEM);
1437     } else {
1438         NV_ENC_CREATE_INPUT_BUFFER allocSurf = { 0 };
1439
1440         ctx->surfaces[idx].format = nvenc_map_buffer_format(ctx->data_pix_fmt);
1441         if (ctx->surfaces[idx].format == NV_ENC_BUFFER_FORMAT_UNDEFINED) {
1442             av_log(avctx, AV_LOG_FATAL, "Invalid input pixel format: %s\n",
1443                    av_get_pix_fmt_name(ctx->data_pix_fmt));
1444             return AVERROR(EINVAL);
1445         }
1446
1447         allocSurf.version = NV_ENC_CREATE_INPUT_BUFFER_VER;
1448         allocSurf.width = avctx->width;
1449         allocSurf.height = avctx->height;
1450         allocSurf.bufferFmt = ctx->surfaces[idx].format;
1451
1452         nv_status = p_nvenc->nvEncCreateInputBuffer(ctx->nvencoder, &allocSurf);
1453         if (nv_status != NV_ENC_SUCCESS) {
1454             return nvenc_print_error(avctx, nv_status, "CreateInputBuffer failed");
1455         }
1456
1457         ctx->surfaces[idx].input_surface = allocSurf.inputBuffer;
1458         ctx->surfaces[idx].width = allocSurf.width;
1459         ctx->surfaces[idx].height = allocSurf.height;
1460     }
1461
1462     nv_status = p_nvenc->nvEncCreateBitstreamBuffer(ctx->nvencoder, &allocOut);
1463     if (nv_status != NV_ENC_SUCCESS) {
1464         int err = nvenc_print_error(avctx, nv_status, "CreateBitstreamBuffer failed");
1465         if (avctx->pix_fmt != AV_PIX_FMT_CUDA && avctx->pix_fmt != AV_PIX_FMT_D3D11)
1466             p_nvenc->nvEncDestroyInputBuffer(ctx->nvencoder, ctx->surfaces[idx].input_surface);
1467         av_frame_free(&ctx->surfaces[idx].in_ref);
1468         return err;
1469     }
1470
1471     ctx->surfaces[idx].output_surface = allocOut.bitstreamBuffer;
1472     ctx->surfaces[idx].size = allocOut.size;
1473
1474     av_fifo_generic_write(ctx->unused_surface_queue, &tmp_surface, sizeof(tmp_surface), NULL);
1475
1476     return 0;
1477 }
1478
1479 static av_cold int nvenc_setup_surfaces(AVCodecContext *avctx)
1480 {
1481     NvencContext *ctx = avctx->priv_data;
1482     int i, res = 0, res2;
1483
1484     ctx->surfaces = av_mallocz_array(ctx->nb_surfaces, sizeof(*ctx->surfaces));
1485     if (!ctx->surfaces)
1486         return AVERROR(ENOMEM);
1487
1488     ctx->timestamp_list = av_fifo_alloc(ctx->nb_surfaces * sizeof(int64_t));
1489     if (!ctx->timestamp_list)
1490         return AVERROR(ENOMEM);
1491
1492     ctx->unused_surface_queue = av_fifo_alloc(ctx->nb_surfaces * sizeof(NvencSurface*));
1493     if (!ctx->unused_surface_queue)
1494         return AVERROR(ENOMEM);
1495
1496     ctx->output_surface_queue = av_fifo_alloc(ctx->nb_surfaces * sizeof(NvencSurface*));
1497     if (!ctx->output_surface_queue)
1498         return AVERROR(ENOMEM);
1499     ctx->output_surface_ready_queue = av_fifo_alloc(ctx->nb_surfaces * sizeof(NvencSurface*));
1500     if (!ctx->output_surface_ready_queue)
1501         return AVERROR(ENOMEM);
1502
1503     res = nvenc_push_context(avctx);
1504     if (res < 0)
1505         return res;
1506
1507     for (i = 0; i < ctx->nb_surfaces; i++) {
1508         if ((res = nvenc_alloc_surface(avctx, i)) < 0)
1509             goto fail;
1510     }
1511
1512 fail:
1513     res2 = nvenc_pop_context(avctx);
1514     if (res2 < 0)
1515         return res2;
1516
1517     return res;
1518 }
1519
1520 static av_cold int nvenc_setup_extradata(AVCodecContext *avctx)
1521 {
1522     NvencContext *ctx = avctx->priv_data;
1523     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1524     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1525
1526     NVENCSTATUS nv_status;
1527     uint32_t outSize = 0;
1528     char tmpHeader[256];
1529     NV_ENC_SEQUENCE_PARAM_PAYLOAD payload = { 0 };
1530     payload.version = NV_ENC_SEQUENCE_PARAM_PAYLOAD_VER;
1531
1532     payload.spsppsBuffer = tmpHeader;
1533     payload.inBufferSize = sizeof(tmpHeader);
1534     payload.outSPSPPSPayloadSize = &outSize;
1535
1536     nv_status = p_nvenc->nvEncGetSequenceParams(ctx->nvencoder, &payload);
1537     if (nv_status != NV_ENC_SUCCESS) {
1538         return nvenc_print_error(avctx, nv_status, "GetSequenceParams failed");
1539     }
1540
1541     avctx->extradata_size = outSize;
1542     avctx->extradata = av_mallocz(outSize + AV_INPUT_BUFFER_PADDING_SIZE);
1543
1544     if (!avctx->extradata) {
1545         return AVERROR(ENOMEM);
1546     }
1547
1548     memcpy(avctx->extradata, tmpHeader, outSize);
1549
1550     return 0;
1551 }
1552
1553 av_cold int ff_nvenc_encode_close(AVCodecContext *avctx)
1554 {
1555     NvencContext *ctx               = avctx->priv_data;
1556     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1557     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1558     int i, res;
1559
1560     /* the encoder has to be flushed before it can be closed */
1561     if (ctx->nvencoder) {
1562         NV_ENC_PIC_PARAMS params        = { .version        = NV_ENC_PIC_PARAMS_VER,
1563                                             .encodePicFlags = NV_ENC_PIC_FLAG_EOS };
1564
1565         res = nvenc_push_context(avctx);
1566         if (res < 0)
1567             return res;
1568
1569         p_nvenc->nvEncEncodePicture(ctx->nvencoder, &params);
1570     }
1571
1572     av_fifo_freep(&ctx->timestamp_list);
1573     av_fifo_freep(&ctx->output_surface_ready_queue);
1574     av_fifo_freep(&ctx->output_surface_queue);
1575     av_fifo_freep(&ctx->unused_surface_queue);
1576
1577     if (ctx->surfaces && (avctx->pix_fmt == AV_PIX_FMT_CUDA || avctx->pix_fmt == AV_PIX_FMT_D3D11)) {
1578         for (i = 0; i < ctx->nb_registered_frames; i++) {
1579             if (ctx->registered_frames[i].mapped)
1580                 p_nvenc->nvEncUnmapInputResource(ctx->nvencoder, ctx->registered_frames[i].in_map.mappedResource);
1581             if (ctx->registered_frames[i].regptr)
1582                 p_nvenc->nvEncUnregisterResource(ctx->nvencoder, ctx->registered_frames[i].regptr);
1583         }
1584         ctx->nb_registered_frames = 0;
1585     }
1586
1587     if (ctx->surfaces) {
1588         for (i = 0; i < ctx->nb_surfaces; ++i) {
1589             if (avctx->pix_fmt != AV_PIX_FMT_CUDA && avctx->pix_fmt != AV_PIX_FMT_D3D11)
1590                 p_nvenc->nvEncDestroyInputBuffer(ctx->nvencoder, ctx->surfaces[i].input_surface);
1591             av_frame_free(&ctx->surfaces[i].in_ref);
1592             p_nvenc->nvEncDestroyBitstreamBuffer(ctx->nvencoder, ctx->surfaces[i].output_surface);
1593         }
1594     }
1595     av_freep(&ctx->surfaces);
1596     ctx->nb_surfaces = 0;
1597
1598     av_frame_free(&ctx->frame);
1599
1600     if (ctx->nvencoder) {
1601         p_nvenc->nvEncDestroyEncoder(ctx->nvencoder);
1602
1603         res = nvenc_pop_context(avctx);
1604         if (res < 0)
1605             return res;
1606     }
1607     ctx->nvencoder = NULL;
1608
1609     if (ctx->cu_context_internal)
1610         CHECK_CU(dl_fn->cuda_dl->cuCtxDestroy(ctx->cu_context_internal));
1611     ctx->cu_context = ctx->cu_context_internal = NULL;
1612
1613 #if CONFIG_D3D11VA
1614     if (ctx->d3d11_device) {
1615         ID3D11Device_Release(ctx->d3d11_device);
1616         ctx->d3d11_device = NULL;
1617     }
1618 #endif
1619
1620     nvenc_free_functions(&dl_fn->nvenc_dl);
1621     cuda_free_functions(&dl_fn->cuda_dl);
1622
1623     dl_fn->nvenc_device_count = 0;
1624
1625     av_log(avctx, AV_LOG_VERBOSE, "Nvenc unloaded\n");
1626
1627     return 0;
1628 }
1629
1630 av_cold int ff_nvenc_encode_init(AVCodecContext *avctx)
1631 {
1632     NvencContext *ctx = avctx->priv_data;
1633     int ret;
1634
1635     if (avctx->pix_fmt == AV_PIX_FMT_CUDA || avctx->pix_fmt == AV_PIX_FMT_D3D11) {
1636         AVHWFramesContext *frames_ctx;
1637         if (!avctx->hw_frames_ctx) {
1638             av_log(avctx, AV_LOG_ERROR,
1639                    "hw_frames_ctx must be set when using GPU frames as input\n");
1640             return AVERROR(EINVAL);
1641         }
1642         frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1643         if (frames_ctx->format != avctx->pix_fmt) {
1644             av_log(avctx, AV_LOG_ERROR,
1645                    "hw_frames_ctx must match the GPU frame type\n");
1646             return AVERROR(EINVAL);
1647         }
1648         ctx->data_pix_fmt = frames_ctx->sw_format;
1649     } else {
1650         ctx->data_pix_fmt = avctx->pix_fmt;
1651     }
1652
1653     ctx->frame = av_frame_alloc();
1654     if (!ctx->frame)
1655         return AVERROR(ENOMEM);
1656
1657     if ((ret = nvenc_load_libraries(avctx)) < 0)
1658         return ret;
1659
1660     if ((ret = nvenc_setup_device(avctx)) < 0)
1661         return ret;
1662
1663     if ((ret = nvenc_setup_encoder(avctx)) < 0)
1664         return ret;
1665
1666     if ((ret = nvenc_setup_surfaces(avctx)) < 0)
1667         return ret;
1668
1669     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
1670         if ((ret = nvenc_setup_extradata(avctx)) < 0)
1671             return ret;
1672     }
1673
1674     return 0;
1675 }
1676
1677 static NvencSurface *get_free_frame(NvencContext *ctx)
1678 {
1679     NvencSurface *tmp_surf;
1680
1681     if (!(av_fifo_size(ctx->unused_surface_queue) > 0))
1682         // queue empty
1683         return NULL;
1684
1685     av_fifo_generic_read(ctx->unused_surface_queue, &tmp_surf, sizeof(tmp_surf), NULL);
1686     return tmp_surf;
1687 }
1688
1689 static int nvenc_copy_frame(AVCodecContext *avctx, NvencSurface *nv_surface,
1690             NV_ENC_LOCK_INPUT_BUFFER *lock_buffer_params, const AVFrame *frame)
1691 {
1692     int dst_linesize[4] = {
1693         lock_buffer_params->pitch,
1694         lock_buffer_params->pitch,
1695         lock_buffer_params->pitch,
1696         lock_buffer_params->pitch
1697     };
1698     uint8_t *dst_data[4];
1699     int ret;
1700
1701     if (frame->format == AV_PIX_FMT_YUV420P)
1702         dst_linesize[1] = dst_linesize[2] >>= 1;
1703
1704     ret = av_image_fill_pointers(dst_data, frame->format, nv_surface->height,
1705                                  lock_buffer_params->bufferDataPtr, dst_linesize);
1706     if (ret < 0)
1707         return ret;
1708
1709     if (frame->format == AV_PIX_FMT_YUV420P)
1710         FFSWAP(uint8_t*, dst_data[1], dst_data[2]);
1711
1712     av_image_copy(dst_data, dst_linesize,
1713                   (const uint8_t**)frame->data, frame->linesize, frame->format,
1714                   avctx->width, avctx->height);
1715
1716     return 0;
1717 }
1718
1719 static int nvenc_find_free_reg_resource(AVCodecContext *avctx)
1720 {
1721     NvencContext *ctx = avctx->priv_data;
1722     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1723     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1724     NVENCSTATUS nv_status;
1725
1726     int i, first_round;
1727
1728     if (ctx->nb_registered_frames == FF_ARRAY_ELEMS(ctx->registered_frames)) {
1729         for (first_round = 1; first_round >= 0; first_round--) {
1730             for (i = 0; i < ctx->nb_registered_frames; i++) {
1731                 if (!ctx->registered_frames[i].mapped) {
1732                     if (ctx->registered_frames[i].regptr) {
1733                         if (first_round)
1734                             continue;
1735                         nv_status = p_nvenc->nvEncUnregisterResource(ctx->nvencoder, ctx->registered_frames[i].regptr);
1736                         if (nv_status != NV_ENC_SUCCESS)
1737                             return nvenc_print_error(avctx, nv_status, "Failed unregistering unused input resource");
1738                         ctx->registered_frames[i].ptr = NULL;
1739                         ctx->registered_frames[i].regptr = NULL;
1740                     }
1741                     return i;
1742                 }
1743             }
1744         }
1745     } else {
1746         return ctx->nb_registered_frames++;
1747     }
1748
1749     av_log(avctx, AV_LOG_ERROR, "Too many registered CUDA frames\n");
1750     return AVERROR(ENOMEM);
1751 }
1752
1753 static int nvenc_register_frame(AVCodecContext *avctx, const AVFrame *frame)
1754 {
1755     NvencContext *ctx = avctx->priv_data;
1756     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1757     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1758
1759     AVHWFramesContext *frames_ctx = (AVHWFramesContext*)frame->hw_frames_ctx->data;
1760     NV_ENC_REGISTER_RESOURCE reg;
1761     int i, idx, ret;
1762
1763     for (i = 0; i < ctx->nb_registered_frames; i++) {
1764         if (avctx->pix_fmt == AV_PIX_FMT_CUDA && ctx->registered_frames[i].ptr == frame->data[0])
1765             return i;
1766         else if (avctx->pix_fmt == AV_PIX_FMT_D3D11 && ctx->registered_frames[i].ptr == frame->data[0] && ctx->registered_frames[i].ptr_index == (intptr_t)frame->data[1])
1767             return i;
1768     }
1769
1770     idx = nvenc_find_free_reg_resource(avctx);
1771     if (idx < 0)
1772         return idx;
1773
1774     reg.version            = NV_ENC_REGISTER_RESOURCE_VER;
1775     reg.width              = frames_ctx->width;
1776     reg.height             = frames_ctx->height;
1777     reg.pitch              = frame->linesize[0];
1778     reg.resourceToRegister = frame->data[0];
1779
1780     if (avctx->pix_fmt == AV_PIX_FMT_CUDA) {
1781         reg.resourceType   = NV_ENC_INPUT_RESOURCE_TYPE_CUDADEVICEPTR;
1782     }
1783     else if (avctx->pix_fmt == AV_PIX_FMT_D3D11) {
1784         reg.resourceType     = NV_ENC_INPUT_RESOURCE_TYPE_DIRECTX;
1785         reg.subResourceIndex = (intptr_t)frame->data[1];
1786     }
1787
1788     reg.bufferFormat       = nvenc_map_buffer_format(frames_ctx->sw_format);
1789     if (reg.bufferFormat == NV_ENC_BUFFER_FORMAT_UNDEFINED) {
1790         av_log(avctx, AV_LOG_FATAL, "Invalid input pixel format: %s\n",
1791                av_get_pix_fmt_name(frames_ctx->sw_format));
1792         return AVERROR(EINVAL);
1793     }
1794
1795     ret = p_nvenc->nvEncRegisterResource(ctx->nvencoder, &reg);
1796     if (ret != NV_ENC_SUCCESS) {
1797         nvenc_print_error(avctx, ret, "Error registering an input resource");
1798         return AVERROR_UNKNOWN;
1799     }
1800
1801     ctx->registered_frames[idx].ptr       = frame->data[0];
1802     ctx->registered_frames[idx].ptr_index = reg.subResourceIndex;
1803     ctx->registered_frames[idx].regptr    = reg.registeredResource;
1804     return idx;
1805 }
1806
1807 static int nvenc_upload_frame(AVCodecContext *avctx, const AVFrame *frame,
1808                                       NvencSurface *nvenc_frame)
1809 {
1810     NvencContext *ctx = avctx->priv_data;
1811     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1812     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1813
1814     int res;
1815     NVENCSTATUS nv_status;
1816
1817     if (avctx->pix_fmt == AV_PIX_FMT_CUDA || avctx->pix_fmt == AV_PIX_FMT_D3D11) {
1818         int reg_idx = nvenc_register_frame(avctx, frame);
1819         if (reg_idx < 0) {
1820             av_log(avctx, AV_LOG_ERROR, "Could not register an input HW frame\n");
1821             return reg_idx;
1822         }
1823
1824         res = av_frame_ref(nvenc_frame->in_ref, frame);
1825         if (res < 0)
1826             return res;
1827
1828         if (!ctx->registered_frames[reg_idx].mapped) {
1829             ctx->registered_frames[reg_idx].in_map.version = NV_ENC_MAP_INPUT_RESOURCE_VER;
1830             ctx->registered_frames[reg_idx].in_map.registeredResource = ctx->registered_frames[reg_idx].regptr;
1831             nv_status = p_nvenc->nvEncMapInputResource(ctx->nvencoder, &ctx->registered_frames[reg_idx].in_map);
1832             if (nv_status != NV_ENC_SUCCESS) {
1833                 av_frame_unref(nvenc_frame->in_ref);
1834                 return nvenc_print_error(avctx, nv_status, "Error mapping an input resource");
1835             }
1836         }
1837
1838         ctx->registered_frames[reg_idx].mapped += 1;
1839
1840         nvenc_frame->reg_idx                   = reg_idx;
1841         nvenc_frame->input_surface             = ctx->registered_frames[reg_idx].in_map.mappedResource;
1842         nvenc_frame->format                    = ctx->registered_frames[reg_idx].in_map.mappedBufferFmt;
1843         nvenc_frame->pitch                     = frame->linesize[0];
1844
1845         return 0;
1846     } else {
1847         NV_ENC_LOCK_INPUT_BUFFER lockBufferParams = { 0 };
1848
1849         lockBufferParams.version = NV_ENC_LOCK_INPUT_BUFFER_VER;
1850         lockBufferParams.inputBuffer = nvenc_frame->input_surface;
1851
1852         nv_status = p_nvenc->nvEncLockInputBuffer(ctx->nvencoder, &lockBufferParams);
1853         if (nv_status != NV_ENC_SUCCESS) {
1854             return nvenc_print_error(avctx, nv_status, "Failed locking nvenc input buffer");
1855         }
1856
1857         nvenc_frame->pitch = lockBufferParams.pitch;
1858         res = nvenc_copy_frame(avctx, nvenc_frame, &lockBufferParams, frame);
1859
1860         nv_status = p_nvenc->nvEncUnlockInputBuffer(ctx->nvencoder, nvenc_frame->input_surface);
1861         if (nv_status != NV_ENC_SUCCESS) {
1862             return nvenc_print_error(avctx, nv_status, "Failed unlocking input buffer!");
1863         }
1864
1865         return res;
1866     }
1867 }
1868
1869 static void nvenc_codec_specific_pic_params(AVCodecContext *avctx,
1870                                             NV_ENC_PIC_PARAMS *params,
1871                                             NV_ENC_SEI_PAYLOAD *sei_data,
1872                                             int sei_count)
1873 {
1874     NvencContext *ctx = avctx->priv_data;
1875
1876     switch (avctx->codec->id) {
1877     case AV_CODEC_ID_H264:
1878         params->codecPicParams.h264PicParams.sliceMode =
1879             ctx->encode_config.encodeCodecConfig.h264Config.sliceMode;
1880         params->codecPicParams.h264PicParams.sliceModeData =
1881             ctx->encode_config.encodeCodecConfig.h264Config.sliceModeData;
1882         if (sei_count > 0) {
1883             params->codecPicParams.h264PicParams.seiPayloadArray = sei_data;
1884             params->codecPicParams.h264PicParams.seiPayloadArrayCnt = sei_count;
1885         }
1886
1887       break;
1888     case AV_CODEC_ID_HEVC:
1889         params->codecPicParams.hevcPicParams.sliceMode =
1890             ctx->encode_config.encodeCodecConfig.hevcConfig.sliceMode;
1891         params->codecPicParams.hevcPicParams.sliceModeData =
1892             ctx->encode_config.encodeCodecConfig.hevcConfig.sliceModeData;
1893         if (sei_count > 0) {
1894             params->codecPicParams.hevcPicParams.seiPayloadArray = sei_data;
1895             params->codecPicParams.hevcPicParams.seiPayloadArrayCnt = sei_count;
1896         }
1897
1898         break;
1899     }
1900 }
1901
1902 static inline void timestamp_queue_enqueue(AVFifoBuffer* queue, int64_t timestamp)
1903 {
1904     av_fifo_generic_write(queue, &timestamp, sizeof(timestamp), NULL);
1905 }
1906
1907 static inline int64_t timestamp_queue_dequeue(AVFifoBuffer* queue)
1908 {
1909     int64_t timestamp = AV_NOPTS_VALUE;
1910     if (av_fifo_size(queue) > 0)
1911         av_fifo_generic_read(queue, &timestamp, sizeof(timestamp), NULL);
1912
1913     return timestamp;
1914 }
1915
1916 static int nvenc_set_timestamp(AVCodecContext *avctx,
1917                                NV_ENC_LOCK_BITSTREAM *params,
1918                                AVPacket *pkt)
1919 {
1920     NvencContext *ctx = avctx->priv_data;
1921
1922     pkt->pts = params->outputTimeStamp;
1923     pkt->dts = timestamp_queue_dequeue(ctx->timestamp_list);
1924
1925     pkt->dts -= FFMAX(avctx->max_b_frames, 0) * FFMIN(avctx->ticks_per_frame, 1);
1926
1927     return 0;
1928 }
1929
1930 static int process_output_surface(AVCodecContext *avctx, AVPacket *pkt, NvencSurface *tmpoutsurf)
1931 {
1932     NvencContext *ctx = avctx->priv_data;
1933     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1934     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1935
1936     uint32_t slice_mode_data;
1937     uint32_t *slice_offsets = NULL;
1938     NV_ENC_LOCK_BITSTREAM lock_params = { 0 };
1939     NVENCSTATUS nv_status;
1940     int res = 0;
1941
1942     enum AVPictureType pict_type;
1943
1944     switch (avctx->codec->id) {
1945     case AV_CODEC_ID_H264:
1946       slice_mode_data = ctx->encode_config.encodeCodecConfig.h264Config.sliceModeData;
1947       break;
1948     case AV_CODEC_ID_H265:
1949       slice_mode_data = ctx->encode_config.encodeCodecConfig.hevcConfig.sliceModeData;
1950       break;
1951     default:
1952       av_log(avctx, AV_LOG_ERROR, "Unknown codec name\n");
1953       res = AVERROR(EINVAL);
1954       goto error;
1955     }
1956     slice_offsets = av_mallocz(slice_mode_data * sizeof(*slice_offsets));
1957
1958     if (!slice_offsets) {
1959         res = AVERROR(ENOMEM);
1960         goto error;
1961     }
1962
1963     lock_params.version = NV_ENC_LOCK_BITSTREAM_VER;
1964
1965     lock_params.doNotWait = 0;
1966     lock_params.outputBitstream = tmpoutsurf->output_surface;
1967     lock_params.sliceOffsets = slice_offsets;
1968
1969     nv_status = p_nvenc->nvEncLockBitstream(ctx->nvencoder, &lock_params);
1970     if (nv_status != NV_ENC_SUCCESS) {
1971         res = nvenc_print_error(avctx, nv_status, "Failed locking bitstream buffer");
1972         goto error;
1973     }
1974
1975     res = av_new_packet(pkt, lock_params.bitstreamSizeInBytes);
1976
1977     if (res < 0) {
1978         p_nvenc->nvEncUnlockBitstream(ctx->nvencoder, tmpoutsurf->output_surface);
1979         goto error;
1980     }
1981
1982     memcpy(pkt->data, lock_params.bitstreamBufferPtr, lock_params.bitstreamSizeInBytes);
1983
1984     nv_status = p_nvenc->nvEncUnlockBitstream(ctx->nvencoder, tmpoutsurf->output_surface);
1985     if (nv_status != NV_ENC_SUCCESS) {
1986         res = nvenc_print_error(avctx, nv_status, "Failed unlocking bitstream buffer, expect the gates of mordor to open");
1987         goto error;
1988     }
1989
1990
1991     if (avctx->pix_fmt == AV_PIX_FMT_CUDA || avctx->pix_fmt == AV_PIX_FMT_D3D11) {
1992         ctx->registered_frames[tmpoutsurf->reg_idx].mapped -= 1;
1993         if (ctx->registered_frames[tmpoutsurf->reg_idx].mapped == 0) {
1994             nv_status = p_nvenc->nvEncUnmapInputResource(ctx->nvencoder, ctx->registered_frames[tmpoutsurf->reg_idx].in_map.mappedResource);
1995             if (nv_status != NV_ENC_SUCCESS) {
1996                 res = nvenc_print_error(avctx, nv_status, "Failed unmapping input resource");
1997                 goto error;
1998             }
1999         } else if (ctx->registered_frames[tmpoutsurf->reg_idx].mapped < 0) {
2000             res = AVERROR_BUG;
2001             goto error;
2002         }
2003
2004         av_frame_unref(tmpoutsurf->in_ref);
2005
2006         tmpoutsurf->input_surface = NULL;
2007     }
2008
2009     switch (lock_params.pictureType) {
2010     case NV_ENC_PIC_TYPE_IDR:
2011         pkt->flags |= AV_PKT_FLAG_KEY;
2012     case NV_ENC_PIC_TYPE_I:
2013         pict_type = AV_PICTURE_TYPE_I;
2014         break;
2015     case NV_ENC_PIC_TYPE_P:
2016         pict_type = AV_PICTURE_TYPE_P;
2017         break;
2018     case NV_ENC_PIC_TYPE_B:
2019         pict_type = AV_PICTURE_TYPE_B;
2020         break;
2021     case NV_ENC_PIC_TYPE_BI:
2022         pict_type = AV_PICTURE_TYPE_BI;
2023         break;
2024     default:
2025         av_log(avctx, AV_LOG_ERROR, "Unknown picture type encountered, expect the output to be broken.\n");
2026         av_log(avctx, AV_LOG_ERROR, "Please report this error and include as much information on how to reproduce it as possible.\n");
2027         res = AVERROR_EXTERNAL;
2028         goto error;
2029     }
2030
2031 #if FF_API_CODED_FRAME
2032 FF_DISABLE_DEPRECATION_WARNINGS
2033     avctx->coded_frame->pict_type = pict_type;
2034 FF_ENABLE_DEPRECATION_WARNINGS
2035 #endif
2036
2037     ff_side_data_set_encoder_stats(pkt,
2038         (lock_params.frameAvgQP - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
2039
2040     res = nvenc_set_timestamp(avctx, &lock_params, pkt);
2041     if (res < 0)
2042         goto error2;
2043
2044     av_free(slice_offsets);
2045
2046     return 0;
2047
2048 error:
2049     timestamp_queue_dequeue(ctx->timestamp_list);
2050
2051 error2:
2052     av_free(slice_offsets);
2053
2054     return res;
2055 }
2056
2057 static int output_ready(AVCodecContext *avctx, int flush)
2058 {
2059     NvencContext *ctx = avctx->priv_data;
2060     int nb_ready, nb_pending;
2061
2062     nb_ready   = av_fifo_size(ctx->output_surface_ready_queue)   / sizeof(NvencSurface*);
2063     nb_pending = av_fifo_size(ctx->output_surface_queue)         / sizeof(NvencSurface*);
2064     if (flush)
2065         return nb_ready > 0;
2066     return (nb_ready > 0) && (nb_ready + nb_pending >= ctx->async_depth);
2067 }
2068
2069 static void reconfig_encoder(AVCodecContext *avctx, const AVFrame *frame)
2070 {
2071     NvencContext *ctx = avctx->priv_data;
2072     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &ctx->nvenc_dload_funcs.nvenc_funcs;
2073     NVENCSTATUS ret;
2074
2075     NV_ENC_RECONFIGURE_PARAMS params = { 0 };
2076     int needs_reconfig = 0;
2077     int needs_encode_config = 0;
2078     int reconfig_bitrate = 0, reconfig_dar = 0;
2079     int dw, dh;
2080
2081     params.version = NV_ENC_RECONFIGURE_PARAMS_VER;
2082     params.reInitEncodeParams = ctx->init_encode_params;
2083
2084     compute_dar(avctx, &dw, &dh);
2085     if (dw != ctx->init_encode_params.darWidth || dh != ctx->init_encode_params.darHeight) {
2086         av_log(avctx, AV_LOG_VERBOSE,
2087                "aspect ratio change (DAR): %d:%d -> %d:%d\n",
2088                ctx->init_encode_params.darWidth,
2089                ctx->init_encode_params.darHeight, dw, dh);
2090
2091         params.reInitEncodeParams.darHeight = dh;
2092         params.reInitEncodeParams.darWidth = dw;
2093
2094         needs_reconfig = 1;
2095         reconfig_dar = 1;
2096     }
2097
2098     if (ctx->rc != NV_ENC_PARAMS_RC_CONSTQP && ctx->support_dyn_bitrate) {
2099         if (avctx->bit_rate > 0 && params.reInitEncodeParams.encodeConfig->rcParams.averageBitRate != avctx->bit_rate) {
2100             av_log(avctx, AV_LOG_VERBOSE,
2101                    "avg bitrate change: %d -> %d\n",
2102                    params.reInitEncodeParams.encodeConfig->rcParams.averageBitRate,
2103                    (uint32_t)avctx->bit_rate);
2104
2105             params.reInitEncodeParams.encodeConfig->rcParams.averageBitRate = avctx->bit_rate;
2106             reconfig_bitrate = 1;
2107         }
2108
2109         if (avctx->rc_max_rate > 0 && ctx->encode_config.rcParams.maxBitRate != avctx->rc_max_rate) {
2110             av_log(avctx, AV_LOG_VERBOSE,
2111                    "max bitrate change: %d -> %d\n",
2112                    params.reInitEncodeParams.encodeConfig->rcParams.maxBitRate,
2113                    (uint32_t)avctx->rc_max_rate);
2114
2115             params.reInitEncodeParams.encodeConfig->rcParams.maxBitRate = avctx->rc_max_rate;
2116             reconfig_bitrate = 1;
2117         }
2118
2119         if (avctx->rc_buffer_size > 0 && ctx->encode_config.rcParams.vbvBufferSize != avctx->rc_buffer_size) {
2120             av_log(avctx, AV_LOG_VERBOSE,
2121                    "vbv buffer size change: %d -> %d\n",
2122                    params.reInitEncodeParams.encodeConfig->rcParams.vbvBufferSize,
2123                    avctx->rc_buffer_size);
2124
2125             params.reInitEncodeParams.encodeConfig->rcParams.vbvBufferSize = avctx->rc_buffer_size;
2126             reconfig_bitrate = 1;
2127         }
2128
2129         if (reconfig_bitrate) {
2130             params.resetEncoder = 1;
2131             params.forceIDR = 1;
2132
2133             needs_encode_config = 1;
2134             needs_reconfig = 1;
2135         }
2136     }
2137
2138     if (!needs_encode_config)
2139         params.reInitEncodeParams.encodeConfig = NULL;
2140
2141     if (needs_reconfig) {
2142         ret = p_nvenc->nvEncReconfigureEncoder(ctx->nvencoder, &params);
2143         if (ret != NV_ENC_SUCCESS) {
2144             nvenc_print_error(avctx, ret, "failed to reconfigure nvenc");
2145         } else {
2146             if (reconfig_dar) {
2147                 ctx->init_encode_params.darHeight = dh;
2148                 ctx->init_encode_params.darWidth = dw;
2149             }
2150
2151             if (reconfig_bitrate) {
2152                 ctx->encode_config.rcParams.averageBitRate = params.reInitEncodeParams.encodeConfig->rcParams.averageBitRate;
2153                 ctx->encode_config.rcParams.maxBitRate = params.reInitEncodeParams.encodeConfig->rcParams.maxBitRate;
2154                 ctx->encode_config.rcParams.vbvBufferSize = params.reInitEncodeParams.encodeConfig->rcParams.vbvBufferSize;
2155             }
2156
2157         }
2158     }
2159 }
2160
2161 static int nvenc_send_frame(AVCodecContext *avctx, const AVFrame *frame)
2162 {
2163     NVENCSTATUS nv_status;
2164     NvencSurface *tmp_out_surf, *in_surf;
2165     int res, res2;
2166     NV_ENC_SEI_PAYLOAD sei_data[8];
2167     int sei_count = 0;
2168     int i;
2169
2170     NvencContext *ctx = avctx->priv_data;
2171     NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
2172     NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
2173
2174     NV_ENC_PIC_PARAMS pic_params = { 0 };
2175     pic_params.version = NV_ENC_PIC_PARAMS_VER;
2176
2177     if ((!ctx->cu_context && !ctx->d3d11_device) || !ctx->nvencoder)
2178         return AVERROR(EINVAL);
2179
2180     if (frame && frame->buf[0]) {
2181         in_surf = get_free_frame(ctx);
2182         if (!in_surf)
2183             return AVERROR(EAGAIN);
2184
2185         res = nvenc_push_context(avctx);
2186         if (res < 0)
2187             return res;
2188
2189         reconfig_encoder(avctx, frame);
2190
2191         res = nvenc_upload_frame(avctx, frame, in_surf);
2192
2193         res2 = nvenc_pop_context(avctx);
2194         if (res2 < 0)
2195             return res2;
2196
2197         if (res)
2198             return res;
2199
2200         pic_params.inputBuffer = in_surf->input_surface;
2201         pic_params.bufferFmt = in_surf->format;
2202         pic_params.inputWidth = in_surf->width;
2203         pic_params.inputHeight = in_surf->height;
2204         pic_params.inputPitch = in_surf->pitch;
2205         pic_params.outputBitstream = in_surf->output_surface;
2206
2207         if (avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT) {
2208             if (frame->top_field_first)
2209                 pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FIELD_TOP_BOTTOM;
2210             else
2211                 pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FIELD_BOTTOM_TOP;
2212         } else {
2213             pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FRAME;
2214         }
2215
2216         if (ctx->forced_idr >= 0 && frame->pict_type == AV_PICTURE_TYPE_I) {
2217             pic_params.encodePicFlags =
2218                 ctx->forced_idr ? NV_ENC_PIC_FLAG_FORCEIDR : NV_ENC_PIC_FLAG_FORCEINTRA;
2219         } else {
2220             pic_params.encodePicFlags = 0;
2221         }
2222
2223         pic_params.inputTimeStamp = frame->pts;
2224
2225         if (ctx->a53_cc && av_frame_get_side_data(frame, AV_FRAME_DATA_A53_CC)) {
2226             void *a53_data = NULL;
2227             size_t a53_size = 0;
2228
2229             if (ff_alloc_a53_sei(frame, 0, (void**)&a53_data, &a53_size) < 0) {
2230                 av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
2231             }
2232
2233             if (a53_data) {
2234                 sei_data[sei_count].payloadSize = (uint32_t)a53_size;
2235                 sei_data[sei_count].payloadType = 4;
2236                 sei_data[sei_count].payload = (uint8_t*)a53_data;
2237                 sei_count ++;
2238             }
2239         }
2240
2241         if (ctx->s12m_tc && av_frame_get_side_data(frame, AV_FRAME_DATA_S12M_TIMECODE)) {
2242             void *tc_data = NULL;
2243             size_t tc_size = 0;
2244
2245             if (ff_alloc_timecode_sei(frame, avctx->framerate, 0, (void**)&tc_data, &tc_size) < 0) {
2246                 av_log(ctx, AV_LOG_ERROR, "Not enough memory for timecode sei, skipping\n");
2247             }
2248
2249             if (tc_data) {
2250                 sei_data[sei_count].payloadSize = (uint32_t)tc_size;
2251                 sei_data[sei_count].payloadType = HEVC_SEI_TYPE_TIME_CODE;
2252                 sei_data[sei_count].payload = (uint8_t*)tc_data;
2253                 sei_count ++;
2254             }
2255         }
2256
2257         nvenc_codec_specific_pic_params(avctx, &pic_params, sei_data, sei_count);
2258     } else {
2259         pic_params.encodePicFlags = NV_ENC_PIC_FLAG_EOS;
2260     }
2261
2262     res = nvenc_push_context(avctx);
2263     if (res < 0)
2264         return res;
2265
2266     nv_status = p_nvenc->nvEncEncodePicture(ctx->nvencoder, &pic_params);
2267
2268     for ( i = 0; i < sei_count; i++)
2269         av_freep(&sei_data[i].payload);
2270
2271     res = nvenc_pop_context(avctx);
2272     if (res < 0)
2273         return res;
2274
2275     if (nv_status != NV_ENC_SUCCESS &&
2276         nv_status != NV_ENC_ERR_NEED_MORE_INPUT)
2277         return nvenc_print_error(avctx, nv_status, "EncodePicture failed!");
2278
2279     if (frame && frame->buf[0]) {
2280         av_fifo_generic_write(ctx->output_surface_queue, &in_surf, sizeof(in_surf), NULL);
2281         timestamp_queue_enqueue(ctx->timestamp_list, frame->pts);
2282     }
2283
2284     /* all the pending buffers are now ready for output */
2285     if (nv_status == NV_ENC_SUCCESS) {
2286         while (av_fifo_size(ctx->output_surface_queue) > 0) {
2287             av_fifo_generic_read(ctx->output_surface_queue, &tmp_out_surf, sizeof(tmp_out_surf), NULL);
2288             av_fifo_generic_write(ctx->output_surface_ready_queue, &tmp_out_surf, sizeof(tmp_out_surf), NULL);
2289         }
2290     }
2291
2292     return 0;
2293 }
2294
2295 int ff_nvenc_receive_packet(AVCodecContext *avctx, AVPacket *pkt)
2296 {
2297     NvencSurface *tmp_out_surf;
2298     int res, res2;
2299
2300     NvencContext *ctx = avctx->priv_data;
2301
2302     AVFrame *frame = ctx->frame;
2303
2304     if ((!ctx->cu_context && !ctx->d3d11_device) || !ctx->nvencoder)
2305         return AVERROR(EINVAL);
2306
2307     if (!frame->buf[0]) {
2308         res = ff_encode_get_frame(avctx, frame);
2309         if (res < 0 && res != AVERROR_EOF)
2310             return res;
2311     }
2312
2313     res = nvenc_send_frame(avctx, frame);
2314     if (res < 0) {
2315         if (res != AVERROR(EAGAIN))
2316             return res;
2317     } else
2318         av_frame_unref(frame);
2319
2320     if (output_ready(avctx, avctx->internal->draining)) {
2321         av_fifo_generic_read(ctx->output_surface_ready_queue, &tmp_out_surf, sizeof(tmp_out_surf), NULL);
2322
2323         res = nvenc_push_context(avctx);
2324         if (res < 0)
2325             return res;
2326
2327         res = process_output_surface(avctx, pkt, tmp_out_surf);
2328
2329         res2 = nvenc_pop_context(avctx);
2330         if (res2 < 0)
2331             return res2;
2332
2333         if (res)
2334             return res;
2335
2336         av_fifo_generic_write(ctx->unused_surface_queue, &tmp_out_surf, sizeof(tmp_out_surf), NULL);
2337     } else if (avctx->internal->draining) {
2338         return AVERROR_EOF;
2339     } else {
2340         return AVERROR(EAGAIN);
2341     }
2342
2343     return 0;
2344 }
2345
2346 av_cold void ff_nvenc_encode_flush(AVCodecContext *avctx)
2347 {
2348     NvencContext *ctx = avctx->priv_data;
2349
2350     nvenc_send_frame(avctx, NULL);
2351     av_fifo_reset(ctx->timestamp_list);
2352 }