2 * H.264 hardware encoding using nvidia nvenc
3 * Copyright (c) 2014 Timo Rothenpieler <timo@rothenpieler.org>
5 * This file is part of FFmpeg.
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.
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.
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
28 #include <nvEncodeAPI.h>
30 #include "libavutil/internal.h"
31 #include "libavutil/imgutils.h"
32 #include "libavutil/avassert.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/mem.h"
40 #define CUDAAPI __stdcall
46 #define LOAD_FUNC(l, s) GetProcAddress(l, s)
47 #define DL_CLOSE_FUNC(l) FreeLibrary(l)
49 #define LOAD_FUNC(l, s) dlsym(l, s)
50 #define DL_CLOSE_FUNC(l) dlclose(l)
53 typedef enum cudaError_enum {
57 typedef void* CUcontext;
59 typedef CUresult(CUDAAPI *PCUINIT)(unsigned int Flags);
60 typedef CUresult(CUDAAPI *PCUDEVICEGETCOUNT)(int *count);
61 typedef CUresult(CUDAAPI *PCUDEVICEGET)(CUdevice *device, int ordinal);
62 typedef CUresult(CUDAAPI *PCUDEVICEGETNAME)(char *name, int len, CUdevice dev);
63 typedef CUresult(CUDAAPI *PCUDEVICECOMPUTECAPABILITY)(int *major, int *minor, CUdevice dev);
64 typedef CUresult(CUDAAPI *PCUCTXCREATE)(CUcontext *pctx, unsigned int flags, CUdevice dev);
65 typedef CUresult(CUDAAPI *PCUCTXPOPCURRENT)(CUcontext *pctx);
66 typedef CUresult(CUDAAPI *PCUCTXDESTROY)(CUcontext ctx);
68 typedef NVENCSTATUS (NVENCAPI* PNVENCODEAPICREATEINSTANCE)(NV_ENCODE_API_FUNCTION_LIST *functionList);
70 typedef struct NvencInputSurface
72 NV_ENC_INPUT_PTR input_surface;
78 NV_ENC_BUFFER_FORMAT format;
81 typedef struct NvencOutputSurface
83 NV_ENC_OUTPUT_PTR output_surface;
86 NvencInputSurface* input_surface;
91 typedef struct NvencData
95 NvencOutputSurface *surface;
99 typedef struct NvencDataList
108 typedef struct NvencDynLoadFunctions
111 PCUDEVICEGETCOUNT cu_device_get_count;
112 PCUDEVICEGET cu_device_get;
113 PCUDEVICEGETNAME cu_device_get_name;
114 PCUDEVICECOMPUTECAPABILITY cu_device_compute_capability;
115 PCUCTXCREATE cu_ctx_create;
116 PCUCTXPOPCURRENT cu_ctx_pop_current;
117 PCUCTXDESTROY cu_ctx_destroy;
119 NV_ENCODE_API_FUNCTION_LIST nvenc_funcs;
120 int nvenc_device_count;
121 CUdevice nvenc_devices[16];
130 } NvencDynLoadFunctions;
132 typedef struct NvencValuePair
138 typedef struct NvencContext
142 NvencDynLoadFunctions nvenc_dload_funcs;
144 NV_ENC_INITIALIZE_PARAMS init_encode_params;
145 NV_ENC_CONFIG encode_config;
146 CUcontext cu_context;
148 int max_surface_count;
149 NvencInputSurface *input_surfaces;
150 NvencOutputSurface *output_surfaces;
152 NvencDataList output_surface_queue;
153 NvencDataList output_surface_ready_queue;
154 NvencDataList timestamp_list;
169 static const NvencValuePair nvenc_h264_level_pairs[] = {
170 { "auto", NV_ENC_LEVEL_AUTOSELECT },
171 { "1" , NV_ENC_LEVEL_H264_1 },
172 { "1.0" , NV_ENC_LEVEL_H264_1 },
173 { "1b" , NV_ENC_LEVEL_H264_1b },
174 { "1.0b", NV_ENC_LEVEL_H264_1b },
175 { "1.1" , NV_ENC_LEVEL_H264_11 },
176 { "1.2" , NV_ENC_LEVEL_H264_12 },
177 { "1.3" , NV_ENC_LEVEL_H264_13 },
178 { "2" , NV_ENC_LEVEL_H264_2 },
179 { "2.0" , NV_ENC_LEVEL_H264_2 },
180 { "2.1" , NV_ENC_LEVEL_H264_21 },
181 { "2.2" , NV_ENC_LEVEL_H264_22 },
182 { "3" , NV_ENC_LEVEL_H264_3 },
183 { "3.0" , NV_ENC_LEVEL_H264_3 },
184 { "3.1" , NV_ENC_LEVEL_H264_31 },
185 { "3.2" , NV_ENC_LEVEL_H264_32 },
186 { "4" , NV_ENC_LEVEL_H264_4 },
187 { "4.0" , NV_ENC_LEVEL_H264_4 },
188 { "4.1" , NV_ENC_LEVEL_H264_41 },
189 { "4.2" , NV_ENC_LEVEL_H264_42 },
190 { "5" , NV_ENC_LEVEL_H264_5 },
191 { "5.0" , NV_ENC_LEVEL_H264_5 },
192 { "5.1" , NV_ENC_LEVEL_H264_51 },
196 static const NvencValuePair nvenc_hevc_level_pairs[] = {
197 { "auto", NV_ENC_LEVEL_AUTOSELECT },
198 { "1" , NV_ENC_LEVEL_HEVC_1 },
199 { "1.0" , NV_ENC_LEVEL_HEVC_1 },
200 { "2" , NV_ENC_LEVEL_HEVC_2 },
201 { "2.0" , NV_ENC_LEVEL_HEVC_2 },
202 { "2.1" , NV_ENC_LEVEL_HEVC_21 },
203 { "3" , NV_ENC_LEVEL_HEVC_3 },
204 { "3.0" , NV_ENC_LEVEL_HEVC_3 },
205 { "3.1" , NV_ENC_LEVEL_HEVC_31 },
206 { "4" , NV_ENC_LEVEL_HEVC_4 },
207 { "4.0" , NV_ENC_LEVEL_HEVC_4 },
208 { "4.1" , NV_ENC_LEVEL_HEVC_41 },
209 { "5" , NV_ENC_LEVEL_HEVC_5 },
210 { "5.0" , NV_ENC_LEVEL_HEVC_5 },
211 { "5.1" , NV_ENC_LEVEL_HEVC_51 },
212 { "5.2" , NV_ENC_LEVEL_HEVC_52 },
213 { "6" , NV_ENC_LEVEL_HEVC_6 },
214 { "6.0" , NV_ENC_LEVEL_HEVC_6 },
215 { "6.1" , NV_ENC_LEVEL_HEVC_61 },
216 { "6.2" , NV_ENC_LEVEL_HEVC_62 },
220 static int input_string_to_uint32(AVCodecContext *avctx, const NvencValuePair *pair, const char *input, uint32_t *output)
222 for (; pair->str; ++pair) {
223 if (!strcmp(input, pair->str)) {
229 return AVERROR(EINVAL);
232 static NvencData* data_queue_dequeue(NvencDataList* queue)
238 av_assert0(queue->size);
239 av_assert0(queue->data);
244 /* Size always is a multiple of two */
245 mask = queue->size - 1;
246 read_pos = (queue->pos - queue->count) & mask;
249 return &queue->data[read_pos];
252 static int data_queue_enqueue(NvencDataList* queue, NvencData *data)
254 NvencDataList new_queue;
259 /* size always has to be a multiple of two */
264 queue->data = av_malloc(queue->size * sizeof(*(queue->data)));
268 return AVERROR(ENOMEM);
272 if (queue->count == queue->size) {
273 new_queue.size = queue->size << 1;
276 new_queue.data = av_malloc(new_queue.size * sizeof(*(queue->data)));
279 return AVERROR(ENOMEM);
281 while (tmp_data = data_queue_dequeue(queue))
282 data_queue_enqueue(&new_queue, tmp_data);
284 av_free(queue->data);
288 mask = queue->size - 1;
290 queue->data[queue->pos] = *data;
291 queue->pos = (queue->pos + 1) & mask;
297 static int out_surf_queue_enqueue(NvencDataList* queue, NvencOutputSurface* surface)
300 data.u.surface = surface;
302 return data_queue_enqueue(queue, &data);
305 static NvencOutputSurface* out_surf_queue_dequeue(NvencDataList* queue)
307 NvencData* res = data_queue_dequeue(queue);
312 return res->u.surface;
315 static int timestamp_queue_enqueue(NvencDataList* queue, int64_t timestamp)
318 data.u.timestamp = timestamp;
320 return data_queue_enqueue(queue, &data);
323 static int64_t timestamp_queue_dequeue(NvencDataList* queue)
325 NvencData* res = data_queue_dequeue(queue);
328 return AV_NOPTS_VALUE;
330 return res->u.timestamp;
333 #define CHECK_LOAD_FUNC(t, f, s) \
335 (f) = (t)LOAD_FUNC(dl_fn->cuda_lib, s); \
337 av_log(avctx, AV_LOG_FATAL, "Failed loading %s from CUDA library\n", s); \
342 static av_cold int nvenc_dyload_cuda(AVCodecContext *avctx)
344 NvencContext *ctx = avctx->priv_data;
345 NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
351 dl_fn->cuda_lib = LoadLibrary(TEXT("nvcuda.dll"));
353 dl_fn->cuda_lib = dlopen("libcuda.so", RTLD_LAZY);
356 if (!dl_fn->cuda_lib) {
357 av_log(avctx, AV_LOG_FATAL, "Failed loading CUDA library\n");
361 CHECK_LOAD_FUNC(PCUINIT, dl_fn->cu_init, "cuInit");
362 CHECK_LOAD_FUNC(PCUDEVICEGETCOUNT, dl_fn->cu_device_get_count, "cuDeviceGetCount");
363 CHECK_LOAD_FUNC(PCUDEVICEGET, dl_fn->cu_device_get, "cuDeviceGet");
364 CHECK_LOAD_FUNC(PCUDEVICEGETNAME, dl_fn->cu_device_get_name, "cuDeviceGetName");
365 CHECK_LOAD_FUNC(PCUDEVICECOMPUTECAPABILITY, dl_fn->cu_device_compute_capability, "cuDeviceComputeCapability");
366 CHECK_LOAD_FUNC(PCUCTXCREATE, dl_fn->cu_ctx_create, "cuCtxCreate_v2");
367 CHECK_LOAD_FUNC(PCUCTXPOPCURRENT, dl_fn->cu_ctx_pop_current, "cuCtxPopCurrent_v2");
368 CHECK_LOAD_FUNC(PCUCTXDESTROY, dl_fn->cu_ctx_destroy, "cuCtxDestroy_v2");
375 DL_CLOSE_FUNC(dl_fn->cuda_lib);
377 dl_fn->cuda_lib = NULL;
382 static av_cold int check_cuda_errors(AVCodecContext *avctx, CUresult err, const char *func)
384 if (err != CUDA_SUCCESS) {
385 av_log(avctx, AV_LOG_FATAL, ">> %s - failed with error code 0x%x\n", func, err);
390 #define check_cuda_errors(f) if (!check_cuda_errors(avctx, f, #f)) goto error
392 static av_cold int nvenc_check_cuda(AVCodecContext *avctx)
394 int device_count = 0;
395 CUdevice cu_device = 0;
397 int smminor = 0, smmajor = 0;
398 int i, smver, target_smver;
400 NvencContext *ctx = avctx->priv_data;
401 NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
403 switch (avctx->codec->id) {
404 case AV_CODEC_ID_H264:
405 target_smver = avctx->pix_fmt == AV_PIX_FMT_YUV444P ? 0x52 : 0x30;
407 case AV_CODEC_ID_H265:
411 av_log(avctx, AV_LOG_FATAL, "nvenc: Unknown codec name\n");
415 if (!nvenc_dyload_cuda(avctx))
418 if (dl_fn->nvenc_device_count > 0)
421 check_cuda_errors(dl_fn->cu_init(0));
423 check_cuda_errors(dl_fn->cu_device_get_count(&device_count));
426 av_log(avctx, AV_LOG_FATAL, "No CUDA capable devices found\n");
430 av_log(avctx, AV_LOG_VERBOSE, "%d CUDA capable devices found\n", device_count);
432 dl_fn->nvenc_device_count = 0;
434 for (i = 0; i < device_count; ++i) {
435 check_cuda_errors(dl_fn->cu_device_get(&cu_device, i));
436 check_cuda_errors(dl_fn->cu_device_get_name(gpu_name, sizeof(gpu_name), cu_device));
437 check_cuda_errors(dl_fn->cu_device_compute_capability(&smmajor, &smminor, cu_device));
439 smver = (smmajor << 4) | smminor;
441 av_log(avctx, AV_LOG_VERBOSE, "[ GPU #%d - < %s > has Compute SM %d.%d, NVENC %s ]\n", i, gpu_name, smmajor, smminor, (smver >= target_smver) ? "Available" : "Not Available");
443 if (smver >= target_smver)
444 dl_fn->nvenc_devices[dl_fn->nvenc_device_count++] = cu_device;
447 if (!dl_fn->nvenc_device_count) {
448 av_log(avctx, AV_LOG_FATAL, "No NVENC capable devices found\n");
456 dl_fn->nvenc_device_count = 0;
461 static av_cold int nvenc_dyload_nvenc(AVCodecContext *avctx)
463 PNVENCODEAPICREATEINSTANCE nvEncodeAPICreateInstance = 0;
464 NVENCSTATUS nvstatus;
466 NvencContext *ctx = avctx->priv_data;
467 NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
469 if (!nvenc_check_cuda(avctx))
472 if (dl_fn->nvenc_lib)
476 if (sizeof(void*) == 8) {
477 dl_fn->nvenc_lib = LoadLibrary(TEXT("nvEncodeAPI64.dll"));
479 dl_fn->nvenc_lib = LoadLibrary(TEXT("nvEncodeAPI.dll"));
482 dl_fn->nvenc_lib = dlopen("libnvidia-encode.so.1", RTLD_LAZY);
485 if (!dl_fn->nvenc_lib) {
486 av_log(avctx, AV_LOG_FATAL, "Failed loading the nvenc library\n");
490 nvEncodeAPICreateInstance = (PNVENCODEAPICREATEINSTANCE)LOAD_FUNC(dl_fn->nvenc_lib, "NvEncodeAPICreateInstance");
492 if (!nvEncodeAPICreateInstance) {
493 av_log(avctx, AV_LOG_FATAL, "Failed to load nvenc entrypoint\n");
497 dl_fn->nvenc_funcs.version = NV_ENCODE_API_FUNCTION_LIST_VER;
499 nvstatus = nvEncodeAPICreateInstance(&dl_fn->nvenc_funcs);
501 if (nvstatus != NV_ENC_SUCCESS) {
502 av_log(avctx, AV_LOG_FATAL, "Failed to create nvenc instance\n");
506 av_log(avctx, AV_LOG_VERBOSE, "Nvenc initialized successfully\n");
511 if (dl_fn->nvenc_lib)
512 DL_CLOSE_FUNC(dl_fn->nvenc_lib);
514 dl_fn->nvenc_lib = NULL;
519 static av_cold void nvenc_unload_nvenc(AVCodecContext *avctx)
521 NvencContext *ctx = avctx->priv_data;
522 NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
524 DL_CLOSE_FUNC(dl_fn->nvenc_lib);
525 dl_fn->nvenc_lib = NULL;
527 dl_fn->nvenc_device_count = 0;
529 DL_CLOSE_FUNC(dl_fn->cuda_lib);
530 dl_fn->cuda_lib = NULL;
532 dl_fn->cu_init = NULL;
533 dl_fn->cu_device_get_count = NULL;
534 dl_fn->cu_device_get = NULL;
535 dl_fn->cu_device_get_name = NULL;
536 dl_fn->cu_device_compute_capability = NULL;
537 dl_fn->cu_ctx_create = NULL;
538 dl_fn->cu_ctx_pop_current = NULL;
539 dl_fn->cu_ctx_destroy = NULL;
541 av_log(avctx, AV_LOG_VERBOSE, "Nvenc unloaded\n");
544 static av_cold int nvenc_encode_init(AVCodecContext *avctx)
546 NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS encode_session_params = { 0 };
547 NV_ENC_PRESET_CONFIG preset_config = { 0 };
548 CUcontext cu_context_curr;
550 GUID encoder_preset = NV_ENC_PRESET_HQ_GUID;
552 NVENCSTATUS nv_status = NV_ENC_SUCCESS;
553 int surfaceCount = 0;
560 NvencContext *ctx = avctx->priv_data;
561 NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
562 NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
564 if (!nvenc_dyload_nvenc(avctx))
565 return AVERROR_EXTERNAL;
567 ctx->last_dts = AV_NOPTS_VALUE;
569 ctx->encode_config.version = NV_ENC_CONFIG_VER;
570 ctx->init_encode_params.version = NV_ENC_INITIALIZE_PARAMS_VER;
571 preset_config.version = NV_ENC_PRESET_CONFIG_VER;
572 preset_config.presetCfg.version = NV_ENC_CONFIG_VER;
573 encode_session_params.version = NV_ENC_OPEN_ENCODE_SESSION_EX_PARAMS_VER;
574 encode_session_params.apiVersion = NVENCAPI_VERSION;
576 if (ctx->gpu >= dl_fn->nvenc_device_count) {
577 av_log(avctx, AV_LOG_FATAL, "Requested GPU %d, but only %d GPUs are available!\n", ctx->gpu, dl_fn->nvenc_device_count);
578 res = AVERROR(EINVAL);
582 ctx->cu_context = NULL;
583 cu_res = dl_fn->cu_ctx_create(&ctx->cu_context, 0, dl_fn->nvenc_devices[ctx->gpu]);
585 if (cu_res != CUDA_SUCCESS) {
586 av_log(avctx, AV_LOG_FATAL, "Failed creating CUDA context for NVENC: 0x%x\n", (int)cu_res);
587 res = AVERROR_EXTERNAL;
591 cu_res = dl_fn->cu_ctx_pop_current(&cu_context_curr);
593 if (cu_res != CUDA_SUCCESS) {
594 av_log(avctx, AV_LOG_FATAL, "Failed popping CUDA context: 0x%x\n", (int)cu_res);
595 res = AVERROR_EXTERNAL;
599 encode_session_params.device = ctx->cu_context;
600 encode_session_params.deviceType = NV_ENC_DEVICE_TYPE_CUDA;
602 nv_status = p_nvenc->nvEncOpenEncodeSessionEx(&encode_session_params, &ctx->nvencoder);
603 if (nv_status != NV_ENC_SUCCESS) {
604 ctx->nvencoder = NULL;
605 av_log(avctx, AV_LOG_FATAL, "OpenEncodeSessionEx failed: 0x%x - invalid license key?\n", (int)nv_status);
606 res = AVERROR_EXTERNAL;
611 if (!strcmp(ctx->preset, "hp")) {
612 encoder_preset = NV_ENC_PRESET_HP_GUID;
613 } else if (!strcmp(ctx->preset, "hq")) {
614 encoder_preset = NV_ENC_PRESET_HQ_GUID;
615 } else if (!strcmp(ctx->preset, "bd")) {
616 encoder_preset = NV_ENC_PRESET_BD_GUID;
617 } else if (!strcmp(ctx->preset, "ll")) {
618 encoder_preset = NV_ENC_PRESET_LOW_LATENCY_DEFAULT_GUID;
620 } else if (!strcmp(ctx->preset, "llhp")) {
621 encoder_preset = NV_ENC_PRESET_LOW_LATENCY_HP_GUID;
623 } else if (!strcmp(ctx->preset, "llhq")) {
624 encoder_preset = NV_ENC_PRESET_LOW_LATENCY_HQ_GUID;
626 } else if (!strcmp(ctx->preset, "lossless")) {
627 encoder_preset = NV_ENC_PRESET_LOSSLESS_DEFAULT_GUID;
629 } else if (!strcmp(ctx->preset, "losslesshp")) {
630 encoder_preset = NV_ENC_PRESET_LOSSLESS_HP_GUID;
632 } else if (!strcmp(ctx->preset, "default")) {
633 encoder_preset = NV_ENC_PRESET_DEFAULT_GUID;
635 av_log(avctx, AV_LOG_FATAL, "Preset \"%s\" is unknown! Supported presets: hp, hq, bd, ll, llhp, llhq, lossless, losslesshp, default\n", ctx->preset);
636 res = AVERROR(EINVAL);
641 switch (avctx->codec->id) {
642 case AV_CODEC_ID_H264:
643 codec = NV_ENC_CODEC_H264_GUID;
645 case AV_CODEC_ID_H265:
646 codec = NV_ENC_CODEC_HEVC_GUID;
649 av_log(avctx, AV_LOG_ERROR, "nvenc: Unknown codec name\n");
650 res = AVERROR(EINVAL);
654 nv_status = p_nvenc->nvEncGetEncodePresetConfig(ctx->nvencoder, codec, encoder_preset, &preset_config);
655 if (nv_status != NV_ENC_SUCCESS) {
656 av_log(avctx, AV_LOG_FATAL, "GetEncodePresetConfig failed: 0x%x\n", (int)nv_status);
657 res = AVERROR_EXTERNAL;
661 ctx->init_encode_params.encodeGUID = codec;
662 ctx->init_encode_params.encodeHeight = avctx->height;
663 ctx->init_encode_params.encodeWidth = avctx->width;
665 if (avctx->sample_aspect_ratio.num && avctx->sample_aspect_ratio.den &&
666 (avctx->sample_aspect_ratio.num != 1 || avctx->sample_aspect_ratio.num != 1)) {
668 avctx->width * avctx->sample_aspect_ratio.num,
669 avctx->height * avctx->sample_aspect_ratio.den,
671 ctx->init_encode_params.darHeight = dh;
672 ctx->init_encode_params.darWidth = dw;
674 ctx->init_encode_params.darHeight = avctx->height;
675 ctx->init_encode_params.darWidth = avctx->width;
678 // De-compensate for hardware, dubiously, trying to compensate for
679 // playback at 704 pixel width.
680 if (avctx->width == 720 &&
681 (avctx->height == 480 || avctx->height == 576)) {
683 ctx->init_encode_params.darWidth * 44,
684 ctx->init_encode_params.darHeight * 45,
686 ctx->init_encode_params.darHeight = dh;
687 ctx->init_encode_params.darWidth = dw;
690 ctx->init_encode_params.frameRateNum = avctx->time_base.den;
691 ctx->init_encode_params.frameRateDen = avctx->time_base.num * avctx->ticks_per_frame;
693 num_mbs = ((avctx->width + 15) >> 4) * ((avctx->height + 15) >> 4);
694 ctx->max_surface_count = (num_mbs >= 8160) ? 32 : 48;
696 if (ctx->buffer_delay >= ctx->max_surface_count)
697 ctx->buffer_delay = ctx->max_surface_count - 1;
699 ctx->init_encode_params.enableEncodeAsync = 0;
700 ctx->init_encode_params.enablePTD = 1;
702 ctx->init_encode_params.presetGUID = encoder_preset;
704 ctx->init_encode_params.encodeConfig = &ctx->encode_config;
705 memcpy(&ctx->encode_config, &preset_config.presetCfg, sizeof(ctx->encode_config));
706 ctx->encode_config.version = NV_ENC_CONFIG_VER;
708 if (avctx->refs >= 0) {
709 /* 0 means "let the hardware decide" */
710 switch (avctx->codec->id) {
711 case AV_CODEC_ID_H264:
712 ctx->encode_config.encodeCodecConfig.h264Config.maxNumRefFrames = avctx->refs;
714 case AV_CODEC_ID_H265:
715 ctx->encode_config.encodeCodecConfig.hevcConfig.maxNumRefFramesInDPB = avctx->refs;
717 /* Earlier switch/case will return if unknown codec is passed. */
721 if (avctx->gop_size > 0) {
722 if (avctx->max_b_frames >= 0) {
723 /* 0 is intra-only, 1 is I/P only, 2 is one B Frame, 3 two B frames, and so on. */
724 ctx->encode_config.frameIntervalP = avctx->max_b_frames + 1;
727 ctx->encode_config.gopLength = avctx->gop_size;
728 switch (avctx->codec->id) {
729 case AV_CODEC_ID_H264:
730 ctx->encode_config.encodeCodecConfig.h264Config.idrPeriod = avctx->gop_size;
732 case AV_CODEC_ID_H265:
733 ctx->encode_config.encodeCodecConfig.hevcConfig.idrPeriod = avctx->gop_size;
735 /* Earlier switch/case will return if unknown codec is passed. */
737 } else if (avctx->gop_size == 0) {
738 ctx->encode_config.frameIntervalP = 0;
739 ctx->encode_config.gopLength = 1;
740 switch (avctx->codec->id) {
741 case AV_CODEC_ID_H264:
742 ctx->encode_config.encodeCodecConfig.h264Config.idrPeriod = 1;
744 case AV_CODEC_ID_H265:
745 ctx->encode_config.encodeCodecConfig.hevcConfig.idrPeriod = 1;
747 /* Earlier switch/case will return if unknown codec is passed. */
751 /* when there're b frames, set dts offset */
752 if (ctx->encode_config.frameIntervalP >= 2)
755 if (avctx->bit_rate > 0)
756 ctx->encode_config.rcParams.averageBitRate = avctx->bit_rate;
758 if (avctx->rc_max_rate > 0)
759 ctx->encode_config.rcParams.maxBitRate = avctx->rc_max_rate;
762 ctx->encode_config.encodeCodecConfig.h264Config.qpPrimeYZeroTransformBypassFlag = 1;
763 ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_CONSTQP;
764 ctx->encode_config.rcParams.constQP.qpInterB = 0;
765 ctx->encode_config.rcParams.constQP.qpInterP = 0;
766 ctx->encode_config.rcParams.constQP.qpIntra = 0;
770 } else if (ctx->cbr) {
772 ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_CBR;
773 } else if (ctx->twopass == 1 || isLL) {
774 ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_2_PASS_QUALITY;
776 if (avctx->codec->id == AV_CODEC_ID_H264) {
777 ctx->encode_config.encodeCodecConfig.h264Config.adaptiveTransformMode = NV_ENC_H264_ADAPTIVE_TRANSFORM_ENABLE;
778 ctx->encode_config.encodeCodecConfig.h264Config.fmoMode = NV_ENC_H264_FMO_DISABLE;
781 ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_CBR;
783 } else if (avctx->global_quality > 0) {
784 ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_CONSTQP;
785 ctx->encode_config.rcParams.constQP.qpInterB = avctx->global_quality;
786 ctx->encode_config.rcParams.constQP.qpInterP = avctx->global_quality;
787 ctx->encode_config.rcParams.constQP.qpIntra = avctx->global_quality;
791 } else if (avctx->qmin >= 0 && avctx->qmax >= 0) {
792 ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_VBR;
794 ctx->encode_config.rcParams.enableMinQP = 1;
795 ctx->encode_config.rcParams.enableMaxQP = 1;
797 ctx->encode_config.rcParams.minQP.qpInterB = avctx->qmin;
798 ctx->encode_config.rcParams.minQP.qpInterP = avctx->qmin;
799 ctx->encode_config.rcParams.minQP.qpIntra = avctx->qmin;
801 ctx->encode_config.rcParams.maxQP.qpInterB = avctx->qmax;
802 ctx->encode_config.rcParams.maxQP.qpInterP = avctx->qmax;
803 ctx->encode_config.rcParams.maxQP.qpIntra = avctx->qmax;
806 if (avctx->rc_buffer_size > 0)
807 ctx->encode_config.rcParams.vbvBufferSize = avctx->rc_buffer_size;
809 if (avctx->flags & CODEC_FLAG_INTERLACED_DCT) {
810 ctx->encode_config.frameFieldMode = NV_ENC_PARAMS_FRAME_FIELD_MODE_FIELD;
812 ctx->encode_config.frameFieldMode = NV_ENC_PARAMS_FRAME_FIELD_MODE_FRAME;
815 switch (avctx->codec->id) {
816 case AV_CODEC_ID_H264:
817 ctx->encode_config.encodeCodecConfig.h264Config.h264VUIParameters.colourDescriptionPresentFlag = 1;
818 ctx->encode_config.encodeCodecConfig.h264Config.h264VUIParameters.videoSignalTypePresentFlag = 1;
820 ctx->encode_config.encodeCodecConfig.h264Config.h264VUIParameters.colourMatrix = avctx->colorspace;
821 ctx->encode_config.encodeCodecConfig.h264Config.h264VUIParameters.colourPrimaries = avctx->color_primaries;
822 ctx->encode_config.encodeCodecConfig.h264Config.h264VUIParameters.transferCharacteristics = avctx->color_trc;
824 ctx->encode_config.encodeCodecConfig.h264Config.h264VUIParameters.videoFullRangeFlag = avctx->color_range == AVCOL_RANGE_JPEG;
826 ctx->encode_config.encodeCodecConfig.h264Config.disableSPSPPS = (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) ? 1 : 0;
827 ctx->encode_config.encodeCodecConfig.h264Config.repeatSPSPPS = (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) ? 0 : 1;
830 switch (avctx->profile) {
831 case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
832 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_HIGH_444_GUID;
834 case FF_PROFILE_H264_BASELINE:
835 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_BASELINE_GUID;
837 case FF_PROFILE_H264_MAIN:
838 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_MAIN_GUID;
840 case FF_PROFILE_H264_HIGH:
841 case FF_PROFILE_UNKNOWN:
842 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_HIGH_GUID;
845 av_log(avctx, AV_LOG_WARNING, "Unsupported profile requested, falling back to high\n");
846 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_HIGH_GUID;
850 if (!strcmp(ctx->profile, "high")) {
851 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_HIGH_GUID;
852 avctx->profile = FF_PROFILE_H264_HIGH;
853 } else if (!strcmp(ctx->profile, "main")) {
854 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_MAIN_GUID;
855 avctx->profile = FF_PROFILE_H264_MAIN;
856 } else if (!strcmp(ctx->profile, "baseline")) {
857 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_BASELINE_GUID;
858 avctx->profile = FF_PROFILE_H264_BASELINE;
859 } else if (!strcmp(ctx->profile, "high444p")) {
860 ctx->encode_config.profileGUID = NV_ENC_H264_PROFILE_HIGH_444_GUID;
861 avctx->profile = FF_PROFILE_H264_HIGH_444_PREDICTIVE;
863 av_log(avctx, AV_LOG_FATAL, "Profile \"%s\" is unknown! Supported profiles: high, main, baseline\n", ctx->profile);
864 res = AVERROR(EINVAL);
869 ctx->encode_config.encodeCodecConfig.h264Config.chromaFormatIDC = avctx->profile == FF_PROFILE_H264_HIGH_444_PREDICTIVE ? 3 : 1;
872 res = input_string_to_uint32(avctx, nvenc_h264_level_pairs, ctx->level, &ctx->encode_config.encodeCodecConfig.h264Config.level);
875 av_log(avctx, AV_LOG_FATAL, "Level \"%s\" is unknown! Supported levels: auto, 1, 1b, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1, 4.2, 5, 5.1\n", ctx->level);
879 ctx->encode_config.encodeCodecConfig.h264Config.level = NV_ENC_LEVEL_AUTOSELECT;
883 case AV_CODEC_ID_H265:
884 ctx->encode_config.encodeCodecConfig.hevcConfig.disableSPSPPS = (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) ? 1 : 0;
885 ctx->encode_config.encodeCodecConfig.hevcConfig.repeatSPSPPS = (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) ? 0 : 1;
887 /* No other profile is supported in the current SDK version 5 */
888 ctx->encode_config.profileGUID = NV_ENC_HEVC_PROFILE_MAIN_GUID;
889 avctx->profile = FF_PROFILE_HEVC_MAIN;
892 res = input_string_to_uint32(avctx, nvenc_hevc_level_pairs, ctx->level, &ctx->encode_config.encodeCodecConfig.hevcConfig.level);
895 av_log(avctx, AV_LOG_FATAL, "Level \"%s\" is unknown! Supported levels: auto, 1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2\n", ctx->level);
899 ctx->encode_config.encodeCodecConfig.hevcConfig.level = NV_ENC_LEVEL_AUTOSELECT;
903 if (!strcmp(ctx->tier, "main")) {
904 ctx->encode_config.encodeCodecConfig.hevcConfig.tier = NV_ENC_TIER_HEVC_MAIN;
905 } else if (!strcmp(ctx->tier, "high")) {
906 ctx->encode_config.encodeCodecConfig.hevcConfig.tier = NV_ENC_TIER_HEVC_HIGH;
908 av_log(avctx, AV_LOG_FATAL, "Tier \"%s\" is unknown! Supported tiers: main, high\n", ctx->tier);
909 res = AVERROR(EINVAL);
915 /* Earlier switch/case will return if unknown codec is passed. */
918 nv_status = p_nvenc->nvEncInitializeEncoder(ctx->nvencoder, &ctx->init_encode_params);
919 if (nv_status != NV_ENC_SUCCESS) {
920 av_log(avctx, AV_LOG_FATAL, "InitializeEncoder failed: 0x%x\n", (int)nv_status);
921 res = AVERROR_EXTERNAL;
925 ctx->input_surfaces = av_malloc(ctx->max_surface_count * sizeof(*ctx->input_surfaces));
927 if (!ctx->input_surfaces) {
928 res = AVERROR(ENOMEM);
932 ctx->output_surfaces = av_malloc(ctx->max_surface_count * sizeof(*ctx->output_surfaces));
934 if (!ctx->output_surfaces) {
935 res = AVERROR(ENOMEM);
939 for (surfaceCount = 0; surfaceCount < ctx->max_surface_count; ++surfaceCount) {
940 NV_ENC_CREATE_INPUT_BUFFER allocSurf = { 0 };
941 NV_ENC_CREATE_BITSTREAM_BUFFER allocOut = { 0 };
942 allocSurf.version = NV_ENC_CREATE_INPUT_BUFFER_VER;
943 allocOut.version = NV_ENC_CREATE_BITSTREAM_BUFFER_VER;
945 allocSurf.width = (avctx->width + 31) & ~31;
946 allocSurf.height = (avctx->height + 31) & ~31;
948 allocSurf.memoryHeap = NV_ENC_MEMORY_HEAP_SYSMEM_CACHED;
950 switch (avctx->pix_fmt) {
951 case AV_PIX_FMT_YUV420P:
952 allocSurf.bufferFmt = NV_ENC_BUFFER_FORMAT_YV12_PL;
955 case AV_PIX_FMT_NV12:
956 allocSurf.bufferFmt = NV_ENC_BUFFER_FORMAT_NV12_PL;
959 case AV_PIX_FMT_YUV444P:
960 allocSurf.bufferFmt = NV_ENC_BUFFER_FORMAT_YUV444_PL;
964 av_log(avctx, AV_LOG_FATAL, "Invalid input pixel format\n");
965 res = AVERROR(EINVAL);
969 nv_status = p_nvenc->nvEncCreateInputBuffer(ctx->nvencoder, &allocSurf);
970 if (nv_status != NV_ENC_SUCCESS) {
971 av_log(avctx, AV_LOG_FATAL, "CreateInputBuffer failed\n");
972 res = AVERROR_EXTERNAL;
976 ctx->input_surfaces[surfaceCount].lockCount = 0;
977 ctx->input_surfaces[surfaceCount].input_surface = allocSurf.inputBuffer;
978 ctx->input_surfaces[surfaceCount].format = allocSurf.bufferFmt;
979 ctx->input_surfaces[surfaceCount].width = allocSurf.width;
980 ctx->input_surfaces[surfaceCount].height = allocSurf.height;
982 /* 1MB is large enough to hold most output frames. NVENC increases this automaticaly if it's not enough. */
983 allocOut.size = 1024 * 1024;
985 allocOut.memoryHeap = NV_ENC_MEMORY_HEAP_SYSMEM_CACHED;
987 nv_status = p_nvenc->nvEncCreateBitstreamBuffer(ctx->nvencoder, &allocOut);
988 if (nv_status != NV_ENC_SUCCESS) {
989 av_log(avctx, AV_LOG_FATAL, "CreateBitstreamBuffer failed\n");
990 ctx->output_surfaces[surfaceCount++].output_surface = NULL;
991 res = AVERROR_EXTERNAL;
995 ctx->output_surfaces[surfaceCount].output_surface = allocOut.bitstreamBuffer;
996 ctx->output_surfaces[surfaceCount].size = allocOut.size;
997 ctx->output_surfaces[surfaceCount].busy = 0;
1000 if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
1001 uint32_t outSize = 0;
1002 char tmpHeader[256];
1003 NV_ENC_SEQUENCE_PARAM_PAYLOAD payload = { 0 };
1004 payload.version = NV_ENC_SEQUENCE_PARAM_PAYLOAD_VER;
1006 payload.spsppsBuffer = tmpHeader;
1007 payload.inBufferSize = sizeof(tmpHeader);
1008 payload.outSPSPPSPayloadSize = &outSize;
1010 nv_status = p_nvenc->nvEncGetSequenceParams(ctx->nvencoder, &payload);
1011 if (nv_status != NV_ENC_SUCCESS) {
1012 av_log(avctx, AV_LOG_FATAL, "GetSequenceParams failed\n");
1016 avctx->extradata_size = outSize;
1017 avctx->extradata = av_mallocz(outSize + FF_INPUT_BUFFER_PADDING_SIZE);
1019 if (!avctx->extradata) {
1020 res = AVERROR(ENOMEM);
1024 memcpy(avctx->extradata, tmpHeader, outSize);
1027 if (ctx->encode_config.frameIntervalP > 1)
1028 avctx->has_b_frames = 2;
1030 if (ctx->encode_config.rcParams.averageBitRate > 0)
1031 avctx->bit_rate = ctx->encode_config.rcParams.averageBitRate;
1037 for (i = 0; i < surfaceCount; ++i) {
1038 p_nvenc->nvEncDestroyInputBuffer(ctx->nvencoder, ctx->input_surfaces[i].input_surface);
1039 if (ctx->output_surfaces[i].output_surface)
1040 p_nvenc->nvEncDestroyBitstreamBuffer(ctx->nvencoder, ctx->output_surfaces[i].output_surface);
1044 p_nvenc->nvEncDestroyEncoder(ctx->nvencoder);
1046 if (ctx->cu_context)
1047 dl_fn->cu_ctx_destroy(ctx->cu_context);
1049 nvenc_unload_nvenc(avctx);
1051 ctx->nvencoder = NULL;
1052 ctx->cu_context = NULL;
1057 static av_cold int nvenc_encode_close(AVCodecContext *avctx)
1059 NvencContext *ctx = avctx->priv_data;
1060 NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1061 NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1064 av_freep(&ctx->timestamp_list.data);
1065 av_freep(&ctx->output_surface_ready_queue.data);
1066 av_freep(&ctx->output_surface_queue.data);
1068 for (i = 0; i < ctx->max_surface_count; ++i) {
1069 p_nvenc->nvEncDestroyInputBuffer(ctx->nvencoder, ctx->input_surfaces[i].input_surface);
1070 p_nvenc->nvEncDestroyBitstreamBuffer(ctx->nvencoder, ctx->output_surfaces[i].output_surface);
1072 ctx->max_surface_count = 0;
1074 p_nvenc->nvEncDestroyEncoder(ctx->nvencoder);
1075 ctx->nvencoder = NULL;
1077 dl_fn->cu_ctx_destroy(ctx->cu_context);
1078 ctx->cu_context = NULL;
1080 nvenc_unload_nvenc(avctx);
1085 static int process_output_surface(AVCodecContext *avctx, AVPacket *pkt, NvencOutputSurface *tmpoutsurf)
1087 NvencContext *ctx = avctx->priv_data;
1088 NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1089 NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1091 uint32_t slice_mode_data;
1092 uint32_t *slice_offsets;
1093 NV_ENC_LOCK_BITSTREAM lock_params = { 0 };
1094 NVENCSTATUS nv_status;
1097 switch (avctx->codec->id) {
1098 case AV_CODEC_ID_H264:
1099 slice_mode_data = ctx->encode_config.encodeCodecConfig.h264Config.sliceModeData;
1101 case AV_CODEC_ID_H265:
1102 slice_mode_data = ctx->encode_config.encodeCodecConfig.hevcConfig.sliceModeData;
1105 av_log(avctx, AV_LOG_ERROR, "nvenc: Unknown codec name\n");
1106 res = AVERROR(EINVAL);
1109 slice_offsets = av_mallocz(slice_mode_data * sizeof(*slice_offsets));
1112 return AVERROR(ENOMEM);
1114 lock_params.version = NV_ENC_LOCK_BITSTREAM_VER;
1116 lock_params.doNotWait = 0;
1117 lock_params.outputBitstream = tmpoutsurf->output_surface;
1118 lock_params.sliceOffsets = slice_offsets;
1120 nv_status = p_nvenc->nvEncLockBitstream(ctx->nvencoder, &lock_params);
1121 if (nv_status != NV_ENC_SUCCESS) {
1122 av_log(avctx, AV_LOG_ERROR, "Failed locking bitstream buffer\n");
1123 res = AVERROR_EXTERNAL;
1127 if (res = ff_alloc_packet2(avctx, pkt, lock_params.bitstreamSizeInBytes)) {
1128 p_nvenc->nvEncUnlockBitstream(ctx->nvencoder, tmpoutsurf->output_surface);
1132 memcpy(pkt->data, lock_params.bitstreamBufferPtr, lock_params.bitstreamSizeInBytes);
1134 nv_status = p_nvenc->nvEncUnlockBitstream(ctx->nvencoder, tmpoutsurf->output_surface);
1135 if (nv_status != NV_ENC_SUCCESS)
1136 av_log(avctx, AV_LOG_ERROR, "Failed unlocking bitstream buffer, expect the gates of mordor to open\n");
1138 switch (lock_params.pictureType) {
1139 case NV_ENC_PIC_TYPE_IDR:
1140 pkt->flags |= AV_PKT_FLAG_KEY;
1141 #if FF_API_CODED_FRAME
1142 FF_DISABLE_DEPRECATION_WARNINGS
1143 case NV_ENC_PIC_TYPE_I:
1144 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
1146 case NV_ENC_PIC_TYPE_P:
1147 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_P;
1149 case NV_ENC_PIC_TYPE_B:
1150 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_B;
1152 case NV_ENC_PIC_TYPE_BI:
1153 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_BI;
1156 av_log(avctx, AV_LOG_ERROR, "Unknown picture type encountered, expect the output to be broken.\n");
1157 av_log(avctx, AV_LOG_ERROR, "Please report this error and include as much information on how to reproduce it as possible.\n");
1158 res = AVERROR_EXTERNAL;
1160 FF_ENABLE_DEPRECATION_WARNINGS
1164 pkt->pts = lock_params.outputTimeStamp;
1165 pkt->dts = timestamp_queue_dequeue(&ctx->timestamp_list);
1167 /* when there're b frame(s), set dts offset */
1168 if (ctx->encode_config.frameIntervalP >= 2)
1171 if (pkt->dts > pkt->pts)
1172 pkt->dts = pkt->pts;
1174 if (ctx->last_dts != AV_NOPTS_VALUE && pkt->dts <= ctx->last_dts)
1175 pkt->dts = ctx->last_dts + 1;
1177 ctx->last_dts = pkt->dts;
1179 av_free(slice_offsets);
1185 av_free(slice_offsets);
1186 timestamp_queue_dequeue(&ctx->timestamp_list);
1191 static int nvenc_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
1192 const AVFrame *frame, int *got_packet)
1194 NVENCSTATUS nv_status;
1195 NvencOutputSurface *tmpoutsurf;
1198 NvencContext *ctx = avctx->priv_data;
1199 NvencDynLoadFunctions *dl_fn = &ctx->nvenc_dload_funcs;
1200 NV_ENCODE_API_FUNCTION_LIST *p_nvenc = &dl_fn->nvenc_funcs;
1202 NV_ENC_PIC_PARAMS pic_params = { 0 };
1203 pic_params.version = NV_ENC_PIC_PARAMS_VER;
1206 NV_ENC_LOCK_INPUT_BUFFER lockBufferParams = { 0 };
1207 NvencInputSurface *inSurf = NULL;
1209 for (i = 0; i < ctx->max_surface_count; ++i) {
1210 if (!ctx->input_surfaces[i].lockCount) {
1211 inSurf = &ctx->input_surfaces[i];
1218 inSurf->lockCount = 1;
1220 lockBufferParams.version = NV_ENC_LOCK_INPUT_BUFFER_VER;
1221 lockBufferParams.inputBuffer = inSurf->input_surface;
1223 nv_status = p_nvenc->nvEncLockInputBuffer(ctx->nvencoder, &lockBufferParams);
1224 if (nv_status != NV_ENC_SUCCESS) {
1225 av_log(avctx, AV_LOG_ERROR, "Failed locking nvenc input buffer\n");
1229 if (avctx->pix_fmt == AV_PIX_FMT_YUV420P) {
1230 uint8_t *buf = lockBufferParams.bufferDataPtr;
1232 av_image_copy_plane(buf, lockBufferParams.pitch,
1233 frame->data[0], frame->linesize[0],
1234 avctx->width, avctx->height);
1236 buf += inSurf->height * lockBufferParams.pitch;
1238 av_image_copy_plane(buf, lockBufferParams.pitch >> 1,
1239 frame->data[2], frame->linesize[2],
1240 avctx->width >> 1, avctx->height >> 1);
1242 buf += (inSurf->height * lockBufferParams.pitch) >> 2;
1244 av_image_copy_plane(buf, lockBufferParams.pitch >> 1,
1245 frame->data[1], frame->linesize[1],
1246 avctx->width >> 1, avctx->height >> 1);
1247 } else if (avctx->pix_fmt == AV_PIX_FMT_NV12) {
1248 uint8_t *buf = lockBufferParams.bufferDataPtr;
1250 av_image_copy_plane(buf, lockBufferParams.pitch,
1251 frame->data[0], frame->linesize[0],
1252 avctx->width, avctx->height);
1254 buf += inSurf->height * lockBufferParams.pitch;
1256 av_image_copy_plane(buf, lockBufferParams.pitch,
1257 frame->data[1], frame->linesize[1],
1258 avctx->width, avctx->height >> 1);
1259 } else if (avctx->pix_fmt == AV_PIX_FMT_YUV444P) {
1260 uint8_t *buf = lockBufferParams.bufferDataPtr;
1262 av_image_copy_plane(buf, lockBufferParams.pitch,
1263 frame->data[0], frame->linesize[0],
1264 avctx->width, avctx->height);
1266 buf += inSurf->height * lockBufferParams.pitch;
1268 av_image_copy_plane(buf, lockBufferParams.pitch,
1269 frame->data[1], frame->linesize[1],
1270 avctx->width, avctx->height);
1272 buf += inSurf->height * lockBufferParams.pitch;
1274 av_image_copy_plane(buf, lockBufferParams.pitch,
1275 frame->data[2], frame->linesize[2],
1276 avctx->width, avctx->height);
1278 av_log(avctx, AV_LOG_FATAL, "Invalid pixel format!\n");
1279 return AVERROR(EINVAL);
1282 nv_status = p_nvenc->nvEncUnlockInputBuffer(ctx->nvencoder, inSurf->input_surface);
1283 if (nv_status != NV_ENC_SUCCESS) {
1284 av_log(avctx, AV_LOG_FATAL, "Failed unlocking input buffer!\n");
1285 return AVERROR_EXTERNAL;
1288 for (i = 0; i < ctx->max_surface_count; ++i)
1289 if (!ctx->output_surfaces[i].busy)
1292 if (i == ctx->max_surface_count) {
1293 inSurf->lockCount = 0;
1294 av_log(avctx, AV_LOG_FATAL, "No free output surface found!\n");
1295 return AVERROR_EXTERNAL;
1298 ctx->output_surfaces[i].input_surface = inSurf;
1300 pic_params.inputBuffer = inSurf->input_surface;
1301 pic_params.bufferFmt = inSurf->format;
1302 pic_params.inputWidth = avctx->width;
1303 pic_params.inputHeight = avctx->height;
1304 pic_params.outputBitstream = ctx->output_surfaces[i].output_surface;
1305 pic_params.completionEvent = 0;
1307 if (avctx->flags & CODEC_FLAG_INTERLACED_DCT) {
1308 if (frame->top_field_first) {
1309 pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FIELD_TOP_BOTTOM;
1311 pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FIELD_BOTTOM_TOP;
1314 pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FRAME;
1317 pic_params.encodePicFlags = 0;
1318 pic_params.inputTimeStamp = frame->pts;
1319 pic_params.inputDuration = 0;
1320 switch (avctx->codec->id) {
1321 case AV_CODEC_ID_H264:
1322 pic_params.codecPicParams.h264PicParams.sliceMode = ctx->encode_config.encodeCodecConfig.h264Config.sliceMode;
1323 pic_params.codecPicParams.h264PicParams.sliceModeData = ctx->encode_config.encodeCodecConfig.h264Config.sliceModeData;
1325 case AV_CODEC_ID_H265:
1326 pic_params.codecPicParams.hevcPicParams.sliceMode = ctx->encode_config.encodeCodecConfig.hevcConfig.sliceMode;
1327 pic_params.codecPicParams.hevcPicParams.sliceModeData = ctx->encode_config.encodeCodecConfig.hevcConfig.sliceModeData;
1330 av_log(avctx, AV_LOG_ERROR, "nvenc: Unknown codec name\n");
1331 return AVERROR(EINVAL);
1334 res = timestamp_queue_enqueue(&ctx->timestamp_list, frame->pts);
1339 pic_params.encodePicFlags = NV_ENC_PIC_FLAG_EOS;
1342 nv_status = p_nvenc->nvEncEncodePicture(ctx->nvencoder, &pic_params);
1344 if (frame && nv_status == NV_ENC_ERR_NEED_MORE_INPUT) {
1345 res = out_surf_queue_enqueue(&ctx->output_surface_queue, &ctx->output_surfaces[i]);
1350 ctx->output_surfaces[i].busy = 1;
1353 if (nv_status != NV_ENC_SUCCESS && nv_status != NV_ENC_ERR_NEED_MORE_INPUT) {
1354 av_log(avctx, AV_LOG_ERROR, "EncodePicture failed!\n");
1355 return AVERROR_EXTERNAL;
1358 if (nv_status != NV_ENC_ERR_NEED_MORE_INPUT) {
1359 while (ctx->output_surface_queue.count) {
1360 tmpoutsurf = out_surf_queue_dequeue(&ctx->output_surface_queue);
1361 res = out_surf_queue_enqueue(&ctx->output_surface_ready_queue, tmpoutsurf);
1368 res = out_surf_queue_enqueue(&ctx->output_surface_ready_queue, &ctx->output_surfaces[i]);
1373 ctx->output_surfaces[i].busy = 1;
1377 if (ctx->output_surface_ready_queue.count && (!frame || ctx->output_surface_ready_queue.count + ctx->output_surface_queue.count >= ctx->buffer_delay)) {
1378 tmpoutsurf = out_surf_queue_dequeue(&ctx->output_surface_ready_queue);
1380 res = process_output_surface(avctx, pkt, tmpoutsurf);
1385 tmpoutsurf->busy = 0;
1386 av_assert0(tmpoutsurf->input_surface->lockCount);
1387 tmpoutsurf->input_surface->lockCount--;
1397 static const enum AVPixelFormat pix_fmts_nvenc[] = {
1404 #define OFFSET(x) offsetof(NvencContext, x)
1405 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1406 static const AVOption options[] = {
1407 { "preset", "Set the encoding preset (one of hq, hp, bd, ll, llhq, llhp, default)", OFFSET(preset), AV_OPT_TYPE_STRING, { .str = "hq" }, 0, 0, VE },
1408 { "profile", "Set the encoding profile (high, main or baseline)", OFFSET(profile), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
1409 { "level", "Set the encoding level restriction (auto, 1.0, 1.0b, 1.1, 1.2, ..., 4.2, 5.0, 5.1)", OFFSET(level), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
1410 { "tier", "Set the encoding tier (main or high)", OFFSET(tier), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
1411 { "cbr", "Use cbr encoding mode", OFFSET(cbr), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
1412 { "2pass", "Use 2pass cbr encoding mode", OFFSET(twopass), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE },
1413 { "gpu", "Selects which NVENC capable GPU to use. First GPU is 0, second is 1, and so on.", OFFSET(gpu), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
1414 { "delay", "Delays frame output by the given amount of frames.", OFFSET(buffer_delay), AV_OPT_TYPE_INT, { .i64 = INT_MAX }, 0, INT_MAX, VE },
1418 static const AVCodecDefault nvenc_defaults[] = {
1428 #if CONFIG_NVENC_ENCODER
1429 static const AVClass nvenc_class = {
1430 .class_name = "nvenc",
1431 .item_name = av_default_item_name,
1433 .version = LIBAVUTIL_VERSION_INT,
1436 AVCodec ff_nvenc_encoder = {
1438 .long_name = NULL_IF_CONFIG_SMALL("Nvidia NVENC h264 encoder"),
1439 .type = AVMEDIA_TYPE_VIDEO,
1440 .id = AV_CODEC_ID_H264,
1441 .priv_data_size = sizeof(NvencContext),
1442 .init = nvenc_encode_init,
1443 .encode2 = nvenc_encode_frame,
1444 .close = nvenc_encode_close,
1445 .capabilities = CODEC_CAP_DELAY,
1446 .priv_class = &nvenc_class,
1447 .defaults = nvenc_defaults,
1448 .pix_fmts = pix_fmts_nvenc,
1452 /* Add an alias for nvenc_h264 */
1453 #if CONFIG_NVENC_H264_ENCODER
1454 static const AVClass nvenc_h264_class = {
1455 .class_name = "nvenc_h264",
1456 .item_name = av_default_item_name,
1458 .version = LIBAVUTIL_VERSION_INT,
1461 AVCodec ff_nvenc_h264_encoder = {
1462 .name = "nvenc_h264",
1463 .long_name = NULL_IF_CONFIG_SMALL("Nvidia NVENC h264 encoder"),
1464 .type = AVMEDIA_TYPE_VIDEO,
1465 .id = AV_CODEC_ID_H264,
1466 .priv_data_size = sizeof(NvencContext),
1467 .init = nvenc_encode_init,
1468 .encode2 = nvenc_encode_frame,
1469 .close = nvenc_encode_close,
1470 .capabilities = CODEC_CAP_DELAY,
1471 .priv_class = &nvenc_h264_class,
1472 .defaults = nvenc_defaults,
1473 .pix_fmts = pix_fmts_nvenc,
1477 #if CONFIG_NVENC_HEVC_ENCODER
1478 static const AVClass nvenc_hevc_class = {
1479 .class_name = "nvenc_hevc",
1480 .item_name = av_default_item_name,
1482 .version = LIBAVUTIL_VERSION_INT,
1485 AVCodec ff_nvenc_hevc_encoder = {
1486 .name = "nvenc_hevc",
1487 .long_name = NULL_IF_CONFIG_SMALL("Nvidia NVENC hevc encoder"),
1488 .type = AVMEDIA_TYPE_VIDEO,
1489 .id = AV_CODEC_ID_H265,
1490 .priv_data_size = sizeof(NvencContext),
1491 .init = nvenc_encode_init,
1492 .encode2 = nvenc_encode_frame,
1493 .close = nvenc_encode_close,
1494 .capabilities = CODEC_CAP_DELAY,
1495 .priv_class = &nvenc_hevc_class,
1496 .defaults = nvenc_defaults,
1497 .pix_fmts = pix_fmts_nvenc,