From 1e3eb00b1766e07a3bc0af6523554c2ad1c27ee8 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Mon, 20 May 2019 19:33:27 +0900 Subject: [PATCH] mpegtsmux: Fix build warning error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 ‘’ or provide a declaration of ‘memmove’ --- gst/mpegtsmux/gstmpegtsmux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/mpegtsmux/gstmpegtsmux.c b/gst/mpegtsmux/gstmpegtsmux.c index f7212eb8c7..7171602ea2 100644 --- a/gst/mpegtsmux/gstmpegtsmux.c +++ b/gst/mpegtsmux/gstmpegtsmux.c @@ -83,6 +83,7 @@ */ #include "gstmpegtsmux.h" +#include #define MPEGTSMUX_DEFAULT_M2TS FALSE