]> git.sesse.net Git - ffmpeg/blob - libavcodec/nvenc.h
avcodec/rkmpp : remove stream start retries before first frame.
[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 "compat/nvenc/nvEncodeAPI.h"
32
33 #include "compat/cuda/dynlink_loader.h"
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 typedef struct NvencSurface
44 {
45     NV_ENC_INPUT_PTR input_surface;
46     AVFrame *in_ref;
47     NV_ENC_MAP_INPUT_RESOURCE in_map;
48     int reg_idx;
49     int width;
50     int height;
51     int pitch;
52
53     NV_ENC_OUTPUT_PTR output_surface;
54     NV_ENC_BUFFER_FORMAT format;
55     int size;
56 } NvencSurface;
57
58 typedef struct NvencDynLoadFunctions
59 {
60     CudaFunctions *cuda_dl;
61     NvencFunctions *nvenc_dl;
62
63     NV_ENCODE_API_FUNCTION_LIST nvenc_funcs;
64     int nvenc_device_count;
65 } NvencDynLoadFunctions;
66
67 enum {
68     PRESET_DEFAULT = 0,
69     PRESET_SLOW,
70     PRESET_MEDIUM,
71     PRESET_FAST,
72     PRESET_HP,
73     PRESET_HQ,
74     PRESET_BD ,
75     PRESET_LOW_LATENCY_DEFAULT ,
76     PRESET_LOW_LATENCY_HQ ,
77     PRESET_LOW_LATENCY_HP,
78     PRESET_LOSSLESS_DEFAULT, // lossless presets must be the last ones
79     PRESET_LOSSLESS_HP,
80 };
81
82 enum {
83     NV_ENC_H264_PROFILE_BASELINE,
84     NV_ENC_H264_PROFILE_MAIN,
85     NV_ENC_H264_PROFILE_HIGH,
86     NV_ENC_H264_PROFILE_HIGH_444P,
87 };
88
89 enum {
90     NV_ENC_HEVC_PROFILE_MAIN,
91     NV_ENC_HEVC_PROFILE_MAIN_10,
92     NV_ENC_HEVC_PROFILE_REXT,
93 };
94
95 enum {
96     NVENC_LOWLATENCY = 1,
97     NVENC_LOSSLESS   = 2,
98     NVENC_ONE_PASS   = 4,
99     NVENC_TWO_PASSES = 8,
100 };
101
102 enum {
103     LIST_DEVICES = -2,
104     ANY_DEVICE,
105 };
106
107 typedef struct NvencContext
108 {
109     AVClass *avclass;
110
111     NvencDynLoadFunctions nvenc_dload_funcs;
112
113     NV_ENC_INITIALIZE_PARAMS init_encode_params;
114     NV_ENC_CONFIG encode_config;
115     CUcontext cu_context;
116     CUcontext cu_context_internal;
117     ID3D11Device *d3d11_device;
118
119     int nb_surfaces;
120     NvencSurface *surfaces;
121
122     AVFifoBuffer *unused_surface_queue;
123     AVFifoBuffer *output_surface_queue;
124     AVFifoBuffer *output_surface_ready_queue;
125     AVFifoBuffer *timestamp_list;
126
127     int encoder_flushing;
128
129     struct {
130         void *ptr;
131         int ptr_index;
132         NV_ENC_REGISTERED_PTR regptr;
133         int mapped;
134     } registered_frames[MAX_REGISTERED_FRAMES];
135     int nb_registered_frames;
136
137     /* the actual data pixel format, different from
138      * AVCodecContext.pix_fmt when using hwaccel frames on input */
139     enum AVPixelFormat data_pix_fmt;
140
141     /* timestamps of the first two frames, for computing the first dts
142      * when B-frames are present */
143     int64_t initial_pts[2];
144     int first_packet_output;
145
146     void *nvencoder;
147
148     int preset;
149     int profile;
150     int level;
151     int tier;
152     int rc;
153     int cbr;
154     int twopass;
155     int device;
156     int flags;
157     int async_depth;
158     int rc_lookahead;
159     int aq;
160     int no_scenecut;
161     int forced_idr;
162     int b_adapt;
163     int temporal_aq;
164     int zerolatency;
165     int nonref_p;
166     int strict_gop;
167     int aq_strength;
168     float quality;
169     int aud;
170     int bluray_compat;
171     int init_qp_p;
172     int init_qp_b;
173     int init_qp_i;
174     int cqp;
175     int weighted_pred;
176     int coder;
177 } NvencContext;
178
179 int ff_nvenc_encode_init(AVCodecContext *avctx);
180
181 int ff_nvenc_encode_close(AVCodecContext *avctx);
182
183 int ff_nvenc_send_frame(AVCodecContext *avctx, const AVFrame *frame);
184
185 int ff_nvenc_receive_packet(AVCodecContext *avctx, AVPacket *pkt);
186
187 int ff_nvenc_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
188                           const AVFrame *frame, int *got_packet);
189
190 extern const enum AVPixelFormat ff_nvenc_pix_fmts[];
191
192 #endif /* AVCODEC_NVENC_H */