mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
vaapi: tests: fix uninitialized variable compiler warning
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7279>
This commit is contained in:
parent
b7828d237b
commit
43edff4e29
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ main (int argc, char *argv[])
|
||||||
guint deinterlace_flags = 0;
|
guint deinterlace_flags = 0;
|
||||||
guint filter_flags = 0;
|
guint filter_flags = 0;
|
||||||
guint surface_flags = 0;
|
guint surface_flags = 0;
|
||||||
gdouble denoise_level, sharpen_level;
|
gdouble denoise_level = 0, sharpen_level = 0;
|
||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
|
|
||||||
static const guint src_width = 320;
|
static const guint src_width = 320;
|
||||||
|
|
Loading…
Reference in a new issue