diff mbox series

[FFmpeg-devel,3/4] libavfilter/vf_dnn_detect: Fix uninitialized variables error

Message ID 20231214024928.230112-3-wenbin.chen@intel.com
State Accepted
Commit a1e8892a8a2e5d32e31cc5b30a3727700de51017
Headers show
Series [FFmpeg-devel,1/4] libavfilter/vf_dnn_detect: Fix an incorrect expression | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Chen, Wenbin Dec. 14, 2023, 2:49 a.m. UTC
From: Wenbin Chen <wenbin.chen@intel.com>

Signed-off-by: Wenbin Chen <wenbin.chen@intel.com>
---
 libavfilter/vf_dnn_detect.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavfilter/vf_dnn_detect.c b/libavfilter/vf_dnn_detect.c
index b2e9b8d4c6..5668b8b017 100644
--- a/libavfilter/vf_dnn_detect.c
+++ b/libavfilter/vf_dnn_detect.c
@@ -139,7 +139,8 @@  static int dnn_detect_parse_yolo_output(AVFrame *frame, DNNData *output, int out
 {
     DnnDetectContext *ctx = filter_ctx->priv;
     float conf_threshold = ctx->confidence;
-    int detection_boxes, box_size, cell_w, cell_h, scale_w, scale_h;
+    int detection_boxes, box_size;
+    int cell_w = 0, cell_h = 0, scale_w = 0, scale_h = 0;
     int nb_classes = ctx->nb_classes;
     float *output_data = output[output_index].data;
     float *anchors = ctx->anchors;