On Ma, 2023-12-18 at 14:36 +0800, wenbin.chen-at-intel....@ffmpeg.org wrote:
> From: Wenbin Chen <wenbin.c...@intel.com>
> 
> Signed-off-by: Wenbin Chen <wenbin.c...@intel.com>
> ---
>  libavfilter/vf_dnn_detect.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/libavfilter/vf_dnn_detect.c b/libavfilter/vf_dnn_detect.c
> index fcc64118b6..52d5c3d798 100644
> --- a/libavfilter/vf_dnn_detect.c
> +++ b/libavfilter/vf_dnn_detect.c
> @@ -455,11 +455,13 @@ static int dnn_detect_post_proc_ov(AVFrame *frame,
> DNNData *output, int nb_outpu
>          ret = dnn_detect_post_proc_yolo(frame, output, filter_ctx);
>          if (ret < 0)
>              return ret;
> +        break;
>      case DDMT_YOLOV3:
>      case DDMT_YOLOV4:
>          ret = dnn_detect_post_proc_yolov3(frame, output, filter_ctx,
> nb_outputs);
>          if (ret < 0)
>              return ret;
> +        break;
>      }
>      return 0;
>  }

LGTM,

- Haihao


_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to