mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 14:01:27 +00:00
lavfi/vf_overlay: fix unitialized pointers
Missed in commit 301c2784b3
.
Found-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
This commit is contained in:
parent
45938f0301
commit
08a96708a5
@ -245,8 +245,8 @@ static int query_formats(AVFilterContext *ctx)
|
||||
AV_PIX_FMT_NONE
|
||||
};
|
||||
|
||||
AVFilterFormats *main_formats;
|
||||
AVFilterFormats *overlay_formats;
|
||||
AVFilterFormats *main_formats = NULL;
|
||||
AVFilterFormats *overlay_formats = NULL;
|
||||
int ret;
|
||||
|
||||
switch (s->format) {
|
||||
|
Loading…
Reference in New Issue
Block a user