FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
nvenc.h
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #ifndef AVCODEC_NVENC_H
20 #define AVCODEC_NVENC_H
21 
22 #include "config.h"
23 
24 #if CONFIG_D3D11VA
25 #define COBJMACROS
27 #else
28 typedef void ID3D11Device;
29 #endif
30 
31 #include <ffnvcodec/nvEncodeAPI.h>
32 
34 #include "libavutil/fifo.h"
35 #include "libavutil/opt.h"
36 
37 #include "avcodec.h"
38 
39 #define MAX_REGISTERED_FRAMES 64
40 #define RC_MODE_DEPRECATED 0x800000
41 #define RCD(rc_mode) ((rc_mode) | RC_MODE_DEPRECATED)
42 
43 #define NVENCAPI_CHECK_VERSION(major, minor) \
44  ((major) < NVENCAPI_MAJOR_VERSION || ((major) == NVENCAPI_MAJOR_VERSION && (minor) <= NVENCAPI_MINOR_VERSION))
45 
46 // SDK 8.1 compile time feature checks
47 #if NVENCAPI_CHECK_VERSION(8, 1)
48 #define NVENC_HAVE_BFRAME_REF_MODE
49 #define NVENC_HAVE_QP_MAP_MODE
50 #endif
51 
52 typedef struct NvencSurface
53 {
54  NV_ENC_INPUT_PTR input_surface;
56  int reg_idx;
57  int width;
58  int height;
59  int pitch;
60 
61  NV_ENC_OUTPUT_PTR output_surface;
62  NV_ENC_BUFFER_FORMAT format;
63  int size;
64 } NvencSurface;
65 
66 typedef struct NvencDynLoadFunctions
67 {
68  CudaFunctions *cuda_dl;
69  NvencFunctions *nvenc_dl;
70 
71  NV_ENCODE_API_FUNCTION_LIST nvenc_funcs;
74 
75 enum {
86  PRESET_LOSSLESS_DEFAULT, // lossless presets must be the last ones
88 };
89 
90 enum {
95 };
96 
97 enum {
101 };
102 
103 enum {
108 };
109 
110 enum {
113 };
114 
115 typedef struct NvencContext
116 {
118 
120 
121  NV_ENC_INITIALIZE_PARAMS init_encode_params;
122  NV_ENC_CONFIG encode_config;
123  CUcontext cu_context;
126 
129 
134 
136 
137  struct {
138  void *ptr;
140  NV_ENC_REGISTERED_PTR regptr;
141  int mapped;
142  NV_ENC_MAP_INPUT_RESOURCE in_map;
145 
146  /* the actual data pixel format, different from
147  * AVCodecContext.pix_fmt when using hwaccel frames on input */
149 
150  /* timestamps of the first two frames, for computing the first dts
151  * when B-frames are present */
152  int64_t initial_pts[2];
154 
155  void *nvencoder;
156 
157  int preset;
158  int profile;
159  int level;
160  int tier;
161  int rc;
162  int cbr;
163  int twopass;
164  int device;
165  int flags;
168  int aq;
171  int b_adapt;
174  int nonref_p;
177  float quality;
178  int aud;
183  int cqp;
185  int coder;
187 } NvencContext;
188 
190 
192 
193 int ff_nvenc_send_frame(AVCodecContext *avctx, const AVFrame *frame);
194 
196 
198  const AVFrame *frame, int *got_packet);
199 
200 extern const enum AVPixelFormat ff_nvenc_pix_fmts[];
201 
202 #endif /* AVCODEC_NVENC_H */
int no_scenecut
Definition: nvenc.h:169
AVClass * avclass
Definition: nvenc.h:117
void * nvencoder
Definition: nvenc.h:155
enum AVPixelFormat ff_nvenc_pix_fmts[]
Definition: nvenc.c:39
int twopass
Definition: nvenc.h:163
NV_ENC_BUFFER_FORMAT format
Definition: nvenc.h:62
int ff_nvenc_encode_init(AVCodecContext *avctx)
Definition: nvenc.c:1473
int height
Definition: nvenc.h:58
This structure describes decoded (raw) audio or video data.
Definition: frame.h:218
AVFifoBuffer * timestamp_list
Definition: nvenc.h:133
NvencFunctions * nvenc_dl
Definition: nvenc.h:69
int mapped
Definition: nvenc.h:141
AVFrame * in_ref
Definition: nvenc.h:55
An API-specific header for AV_HWDEVICE_TYPE_D3D11VA.
int encoder_flushing
Definition: nvenc.h:135
int forced_idr
Definition: nvenc.h:170
NV_ENCODE_API_FUNCTION_LIST nvenc_funcs
Definition: nvenc.h:71
NvencDynLoadFunctions nvenc_dload_funcs
Definition: nvenc.h:119
ID3D11Device * d3d11_device
Definition: nvenc.h:125
int first_packet_output
Definition: nvenc.h:153
static AVPacket pkt
int init_qp_b
Definition: nvenc.h:181
int preset
Definition: nvenc.h:157
int pitch
Definition: nvenc.h:59
int nvenc_device_count
Definition: nvenc.h:72
NV_ENC_INPUT_PTR input_surface
Definition: nvenc.h:54
int aq
Definition: nvenc.h:168
int b_ref_mode
Definition: nvenc.h:186
CUcontext cu_context
Definition: nvenc.h:123
AVFifoBuffer * unused_surface_queue
Definition: nvenc.h:130
AVOptions.
int init_qp_p
Definition: nvenc.h:180
int ff_nvenc_encode_close(AVCodecContext *avctx)
Definition: nvenc.c:1398
int ff_nvenc_receive_packet(AVCodecContext *avctx, AVPacket *pkt)
Definition: nvenc.c:2026
float quality
Definition: nvenc.h:177
NV_ENC_INITIALIZE_PARAMS init_encode_params
Definition: nvenc.h:121
static AVFrame * frame
#define MAX_REGISTERED_FRAMES
Definition: nvenc.h:39
AVFifoBuffer * output_surface_ready_queue
Definition: nvenc.h:132
CUcontext cu_context_internal
Definition: nvenc.h:124
int ptr_index
Definition: nvenc.h:139
int async_depth
Definition: nvenc.h:166
void * ptr
Definition: nvenc.h:138
int coder
Definition: nvenc.h:185
int rc
Definition: nvenc.h:161
int nb_registered_frames
Definition: nvenc.h:144
struct NvencContext::@103 registered_frames[MAX_REGISTERED_FRAMES]
int level
Definition: nvenc.h:159
void ID3D11Device
Definition: nvenc.h:28
int bluray_compat
Definition: nvenc.h:179
int aq_strength
Definition: nvenc.h:176
int ff_nvenc_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: nvenc.c:2062
int ff_nvenc_send_frame(AVCodecContext *avctx, const AVFrame *frame)
Definition: nvenc.c:1923
int flags
Definition: nvenc.h:165
NV_ENC_REGISTERED_PTR regptr
Definition: nvenc.h:140
int profile
Definition: nvenc.h:158
AVFifoBuffer * output_surface_queue
Definition: nvenc.h:131
CudaFunctions * cuda_dl
Definition: nvenc.h:68
enum AVPixelFormat data_pix_fmt
Definition: nvenc.h:148
NV_ENC_CONFIG encode_config
Definition: nvenc.h:122
Libavcodec external API header.
int strict_gop
Definition: nvenc.h:175
int temporal_aq
Definition: nvenc.h:172
int64_t initial_pts[2]
Definition: nvenc.h:152
main external API structure.
Definition: avcodec.h:1518
int init_qp_i
Definition: nvenc.h:182
a very simple circular buffer FIFO implementation
Describe the class of an AVClass context structure.
Definition: log.h:67
int width
Definition: nvenc.h:57
int nonref_p
Definition: nvenc.h:174
int cbr
Definition: nvenc.h:162
int reg_idx
Definition: nvenc.h:56
int b_adapt
Definition: nvenc.h:171
int weighted_pred
Definition: nvenc.h:184
int rc_lookahead
Definition: nvenc.h:167
int size
Definition: nvenc.h:63
NvencSurface * surfaces
Definition: nvenc.h:128
NV_ENC_MAP_INPUT_RESOURCE in_map
Definition: nvenc.h:142
int device
Definition: nvenc.h:164
int nb_surfaces
Definition: nvenc.h:127
int aud
Definition: nvenc.h:178
int cqp
Definition: nvenc.h:183
int tier
Definition: nvenc.h:160
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
This structure stores compressed data.
Definition: avcodec.h:1407
NV_ENC_OUTPUT_PTR output_surface
Definition: nvenc.h:61
int zerolatency
Definition: nvenc.h:173