mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +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
feac77ace3
commit
5d27bd1db0
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