mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_fieldmatch: initialize dst pointer to silence warning
This commit is contained in:
parent
bf0f996c12
commit
3e127b595a
|
@ -682,7 +682,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
|||
int order, field, i, match, sc = 0, ret = 0;
|
||||
const int *fxo;
|
||||
AVFrame *gen_frames[] = { NULL, NULL, NULL, NULL, NULL };
|
||||
AVFrame *dst;
|
||||
AVFrame *dst = NULL;
|
||||
|
||||
/* update frames queue(s) */
|
||||
#define SLIDING_FRAME_WINDOW(prv, src, nxt) do { \
|
||||
|
|
Loading…
Reference in New Issue