mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
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:
parent
04aa977550
commit
d884c8f5a1
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue