Browse Source

lavc/qsv_overlay: suppress code scan complain

Suppress the complain "variables 'pix_fmt' is used but maybe
uninitialized".

Signed-off-by: Zhong Li <zhong.li@intel.com>
tags/n4.2
Zhong Li 7 years ago
parent
commit
d96ae9d5ea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_overlay_qsv.c

+ 1
- 1
libavfilter/vf_overlay_qsv.c View File

@@ -160,7 +160,7 @@ release:

static int have_alpha_planar(AVFilterLink *link)
{
enum AVPixelFormat pix_fmt;
enum AVPixelFormat pix_fmt = link->format;
const AVPixFmtDescriptor *desc;
AVHWFramesContext *fctx;



Loading…
Cancel
Save