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