mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
mpegtsmux: Fix build warning error
gstmpegtsmux.c:291:3: error: implicit declaration of function ‘memmove’ [-Werror=implicit-function-declaration] memmove (map.data + 4, map.data, map.size - 4); ^ gstmpegtsmux.c:291:3: error: incompatible implicit declaration of built-in function ‘memmove’ [-Werror] gstmpegtsmux.c:291:3: note: include ‘<string.h>’ or provide a declaration of ‘memmove’
This commit is contained in:
parent
54cb25456d
commit
1e3eb00b17
1 changed files with 1 additions and 0 deletions
|
@ -83,6 +83,7 @@
|
|||
*/
|
||||
|
||||
#include "gstmpegtsmux.h"
|
||||
#include <string.h>
|
||||
|
||||
#define MPEGTSMUX_DEFAULT_M2TS FALSE
|
||||
|
||||
|
|
Loading…
Reference in a new issue