You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/vf_fieldmatch: initialize dst pointer to silence warning
This commit is contained in:
@@ -682,7 +682,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
|||||||
int order, field, i, match, sc = 0, ret = 0;
|
int order, field, i, match, sc = 0, ret = 0;
|
||||||
const int *fxo;
|
const int *fxo;
|
||||||
AVFrame *gen_frames[] = { NULL, NULL, NULL, NULL, NULL };
|
AVFrame *gen_frames[] = { NULL, NULL, NULL, NULL, NULL };
|
||||||
AVFrame *dst;
|
AVFrame *dst = NULL;
|
||||||
|
|
||||||
/* update frames queue(s) */
|
/* update frames queue(s) */
|
||||||
#define SLIDING_FRAME_WINDOW(prv, src, nxt) do { \
|
#define SLIDING_FRAME_WINDOW(prv, src, nxt) do { \
|
||||||
|
Reference in New Issue
Block a user