]> git.sesse.net Git - ffmpeg/blob - libavcodec/nvenc.h
avformat/argo_brp: support MASK streams
[ffmpeg] / libavcodec / nvenc.h
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
26 #include "libavutil/hwcontext_d3d11va.h"
27 #else
28 typedef void ID3D11Device;
29 #endif
30
31 #include <ffnvcodec/nvEncodeAPI.h>
32
33 #include "compat/cuda/dynlink_loader.h"
34 #include "libavutil/fifo.h"
35 #include "libavutil/opt.h"
36 #include "hwconfig.h"
37
38 #include "avcodec.h"
39
40 #define MAX_REGISTERED_FRAMES 64
41 #define RC_MODE_DEPRECATED 0x800000
42 #define RCD(rc_mode) ((rc_mode) | RC_MODE_DEPRECATED)
43
44 #define NVENCAPI_CHECK_VERSION(major, minor) \
45     ((major) < NVENCAPI_MAJOR_VERSION || ((major) == NVENCAPI_MAJOR_VERSION && (minor) <= NVENCAPI_MINOR_VERSION))
46
47 // SDK 8.1 compile time feature checks
48 #if NVENCAPI_CHECK_VERSION(8, 1)
49 #define NVENC_HAVE_BFRAME_REF_MODE
50 #define NVENC_HAVE_QP_MAP_MODE
51 #endif
52
53 // SDK 9.0 compile time feature checks
54 #if NVENCAPI_CHECK_VERSION(9, 0)
55 #define NVENC_HAVE_HEVC_BFRAME_REF_MODE
56 #endif
57
58 // SDK 9.1 compile time feature checks
59 #if NVENCAPI_CHECK_VERSION(9, 1)
60 #define NVENC_HAVE_MULTIPLE_REF_FRAMES
61 #define NVENC_HAVE_CUSTREAM_PTR
62 #define NVENC_HAVE_GETLASTERRORSTRING
63 #endif
64
65 // SDK 10.0 compile time feature checks
66 #if NVENCAPI_CHECK_VERSION(10, 0)
67 #define NVENC_HAVE_NEW_PRESETS
68 #define NVENC_HAVE_MULTIPASS
69 #define NVENC_HAVE_LDKFS
70 #define NVENC_HAVE_H264_LVL6
71 #endif
72
73 typedef struct NvencSurface
74 {
75     NV_ENC_INPUT_PTR input_surface;
76     AVFrame *in_ref;
77     int reg_idx;
78     int width;
79     int height;
80     int pitch;
81
82     NV_ENC_OUTPUT_PTR output_surface;
83     NV_ENC_BUFFER_FORMAT format;
84     int size;
85 } NvencSurface;
86
87 typedef struct NvencDynLoadFunctions
88 {
89     CudaFunctions *cuda_dl;
90     NvencFunctions *nvenc_dl;
91
92     NV_ENCODE_API_FUNCTION_LIST nvenc_funcs;
93     int nvenc_device_count;
94 } NvencDynLoadFunctions;
95
96 enum {
97     PRESET_DEFAULT = 0,
98     PRESET_SLOW,
99     PRESET_MEDIUM,
100     PRESET_FAST,
101     PRESET_HP,
102     PRESET_HQ,
103     PRESET_BD ,
104     PRESET_LOW_LATENCY_DEFAULT ,
105     PRESET_LOW_LATENCY_HQ ,
106     PRESET_LOW_LATENCY_HP,
107     PRESET_LOSSLESS_DEFAULT, // lossless presets must be the last ones
108     PRESET_LOSSLESS_HP,
109 #ifdef NVENC_HAVE_NEW_PRESETS
110     PRESET_P1,
111     PRESET_P2,
112     PRESET_P3,
113     PRESET_P4,
114     PRESET_P5,
115     PRESET_P6,
116     PRESET_P7,
117 #endif
118 };
119
120 enum {
121     NV_ENC_H264_PROFILE_BASELINE,
122     NV_ENC_H264_PROFILE_MAIN,
123     NV_ENC_H264_PROFILE_HIGH,
124     NV_ENC_H264_PROFILE_HIGH_444P,
125 };
126
127 enum {
128     NV_ENC_HEVC_PROFILE_MAIN,
129     NV_ENC_HEVC_PROFILE_MAIN_10,
130     NV_ENC_HEVC_PROFILE_REXT,
131 };
132
133 enum {
134     NVENC_LOWLATENCY = 1,
135     NVENC_LOSSLESS   = 2,
136     NVENC_ONE_PASS   = 4,
137     NVENC_TWO_PASSES = 8,
138 };
139
140 enum {
141     LIST_DEVICES = -2,
142     ANY_DEVICE,
143 };
144
145 typedef struct NvencContext
146 {
147     AVClass *avclass;
148
149     NvencDynLoadFunctions nvenc_dload_funcs;
150
151     NV_ENC_INITIALIZE_PARAMS init_encode_params;
152     NV_ENC_CONFIG encode_config;
153     CUcontext cu_context;
154     CUcontext cu_context_internal;
155     CUstream cu_stream;
156     ID3D11Device *d3d11_device;
157
158     AVFrame *frame;
159
160     int nb_surfaces;
161     NvencSurface *surfaces;
162
163     AVFifoBuffer *unused_surface_queue;
164     AVFifoBuffer *output_surface_queue;
165     AVFifoBuffer *output_surface_ready_queue;
166     AVFifoBuffer *timestamp_list;
167
168     struct {
169         void *ptr;
170         int ptr_index;
171         NV_ENC_REGISTERED_PTR regptr;
172         int mapped;
173         NV_ENC_MAP_INPUT_RESOURCE in_map;
174     } registered_frames[MAX_REGISTERED_FRAMES];
175     int nb_registered_frames;
176
177     /* the actual data pixel format, different from
178      * AVCodecContext.pix_fmt when using hwaccel frames on input */
179     enum AVPixelFormat data_pix_fmt;
180
181     int support_dyn_bitrate;
182
183     void *nvencoder;
184
185     int preset;
186     int profile;
187     int level;
188     int tier;
189     int rc;
190     int cbr;
191     int twopass;
192     int device;
193     int flags;
194     int async_depth;
195     int rc_lookahead;
196     int aq;
197     int no_scenecut;
198     int forced_idr;
199     int b_adapt;
200     int temporal_aq;
201     int zerolatency;
202     int nonref_p;
203     int strict_gop;
204     int aq_strength;
205     float quality;
206     int aud;
207     int bluray_compat;
208     int init_qp_p;
209     int init_qp_b;
210     int init_qp_i;
211     int cqp;
212     int weighted_pred;
213     int coder;
214     int b_ref_mode;
215     int a53_cc;
216     int s12m_tc;
217     int dpb_size;
218     int tuning_info;
219     int multipass;
220     int ldkfs;
221 } NvencContext;
222
223 int ff_nvenc_encode_init(AVCodecContext *avctx);
224
225 int ff_nvenc_encode_close(AVCodecContext *avctx);
226
227 int ff_nvenc_receive_packet(AVCodecContext *avctx, AVPacket *pkt);
228
229 void ff_nvenc_encode_flush(AVCodecContext *avctx);
230
231 extern const enum AVPixelFormat ff_nvenc_pix_fmts[];
232 extern const AVCodecHWConfigInternal *ff_nvenc_hw_configs[];
233
234 #endif /* AVCODEC_NVENC_H */