nvencoder: Fix CQP option setting

... and zero initialize LUID and CUDA device list to address
coverity issue

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4217>
This commit is contained in:
Seungha Yang 2023-03-18 01:33:20 +09:00 committed by GStreamer Marge Bot
parent 04aa977550
commit d884c8f5a1
2 changed files with 6 additions and 6 deletions

View file

@ -1280,7 +1280,7 @@ gst_nv_h264_encoder_set_format (GstNvEncoder * encoder,
rc_params->constQP.qpIntra = self->qp_i;
if (self->qp_p >= 0)
rc_params->constQP.qpInterP = self->qp_p;
if (self->qp_p >= 0)
if (self->qp_b >= 0)
rc_params->constQP.qpInterB = self->qp_b;
}
@ -2107,9 +2107,9 @@ gst_nv_h264_encoder_register_auto_select (GstPlugin * plugin,
std::string resolution_str;
GList *iter;
guint adapter_luid_size = 0;
gint64 adapter_luid_list[8];
gint64 adapter_luid_list[8] = { 0, };
guint cuda_device_id_size = 0;
guint cuda_device_id_list[8];
guint cuda_device_id_list[8] = { 0, };
GstNvEncoderDeviceCaps dev_caps;
GstNvEncoderClassData *cdata;
GstCaps *sink_caps = nullptr;

View file

@ -1255,7 +1255,7 @@ gst_nv_h265_encoder_set_format (GstNvEncoder * encoder,
rc_params->constQP.qpIntra = self->qp_i;
if (self->qp_p >= 0)
rc_params->constQP.qpInterP = self->qp_p;
if (self->qp_p >= 0)
if (self->qp_b >= 0)
rc_params->constQP.qpInterB = self->qp_b;
}
@ -2118,9 +2118,9 @@ gst_nv_h265_encoder_register_auto_select (GstPlugin * plugin,
std::string resolution_str;
GList *iter;
guint adapter_luid_size = 0;
gint64 adapter_luid_list[8];
gint64 adapter_luid_list[8] = { 0, };
guint cuda_device_id_size = 0;
guint cuda_device_id_list[8];
guint cuda_device_id_list[8] = { 0, };
GstNvEncoderDeviceCaps dev_caps;
GstNvEncoderClassData *cdata;
GstCaps *sink_caps = nullptr;