nvdec: Fix build warning error

gstnvdec.c:1222:3: error: implicit declaration of function ‘memset’ [-Werror=implicit-function-declaration]
   memset (&type_info, 0, sizeof (type_info));
   ^~~~~~
This commit is contained in:
Seungha Yang 2019-07-31 12:11:05 +09:00 committed by Mathieu Duponchelle
parent 73f92371b8
commit f1cbab7cfd

View file

@ -30,6 +30,7 @@
#endif
#include "gstnvdec.h"
#include <string.h>
GST_DEBUG_CATEGORY_STATIC (gst_nvdec_debug_category);
#define GST_CAT_DEFAULT gst_nvdec_debug_category