Lines Matching refs:pic_params
2177 NV_ENC_PIC_PARAMS pic_params = { 0 }; in nvenc_send_frame() local
2178 pic_params.version = NV_ENC_PIC_PARAMS_VER; in nvenc_send_frame()
2203 pic_params.inputBuffer = in_surf->input_surface; in nvenc_send_frame()
2204 pic_params.bufferFmt = in_surf->format; in nvenc_send_frame()
2205 pic_params.inputWidth = in_surf->width; in nvenc_send_frame()
2206 pic_params.inputHeight = in_surf->height; in nvenc_send_frame()
2207 pic_params.inputPitch = in_surf->pitch; in nvenc_send_frame()
2208 pic_params.outputBitstream = in_surf->output_surface; in nvenc_send_frame()
2212 pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FIELD_TOP_BOTTOM; in nvenc_send_frame()
2214 pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FIELD_BOTTOM_TOP; in nvenc_send_frame()
2216 pic_params.pictureStruct = NV_ENC_PIC_STRUCT_FRAME; in nvenc_send_frame()
2220 pic_params.encodePicFlags = in nvenc_send_frame()
2223 pic_params.encodePicFlags = 0; in nvenc_send_frame()
2226 pic_params.inputTimeStamp = frame->pts; in nvenc_send_frame()
2260 nvenc_codec_specific_pic_params(avctx, &pic_params, sei_data, sei_count); in nvenc_send_frame()
2262 pic_params.encodePicFlags = NV_ENC_PIC_FLAG_EOS; in nvenc_send_frame()
2269 nv_status = p_nvenc->nvEncEncodePicture(ctx->nvencoder, &pic_params); in nvenc_send_frame()