Update IMX_GST_PLUGIN_DEFINE define for GST1.14

- As macro GST_PLUGIN_DEFINE is upgraded in GST1.14
(change C structure into function
commit e7ede5a487, https://bugzilla.gnome.org/show_bug.cgi?id=779344)

So our macor cannot use "." in name field

-- i.MX specific

Signed-off-by: Lyon Wang <lyon.wang@nxp.com>
diff --git a/gst-libs/gst/gstimxcommon.h b/gst-libs/gst/gstimxcommon.h
old mode 100644
new mode 100755
index a7c729b..4c2b4fa
--- a/gst-libs/gst/gstimxcommon.h
+++ b/gst-libs/gst/gstimxcommon.h
@@ -41,7 +41,7 @@
 #define IMX_GST_PLUGIN_DEFINE(name, description, initfunc)\
   GST_PLUGIN_DEFINE(GST_VERSION_MAJOR,\
       GST_VERSION_MINOR,\
-      name.imx,\
+      name, \
       description,\
       initfunc,\
       VERSION,\