mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 10:10:32 +00:00
glmixer: Include string.h for memset()
gstglmixer.c:143:5: error: implicit declaration of function ‘memset’ [-Werror=implicit-function-declaration] memset (prepared_frame, 0, sizeof (GstVideoFrame)); ^~~~~~ gstglmixer.c:143:5: error: incompatible implicit declaration of built-in function ‘memset’ [-Werror]
This commit is contained in:
parent
b73b7230d2
commit
d37e778692
1 changed files with 2 additions and 0 deletions
|
@ -26,6 +26,8 @@
|
|||
#include <gst/gst.h>
|
||||
#include <gst/video/video.h>
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "gstglmixer.h"
|
||||
|
||||
#define gst_gl_mixer_parent_class parent_class
|
||||
|
|
Loading…
Reference in a new issue