Go to the documentation of this file.
30 #ifndef __GNASH_GST_VERSION_H__
31 #define __GNASH_GST_VERSION_H__
37 #ifndef GST_CHECK_VERSION
38 #define GST_CHECK_VERSION(major,minor,micro) \
39 (GST_VERSION_MAJOR > (major) || \
40 (GST_VERSION_MAJOR == (major) && GST_VERSION_MINOR > (minor)) || \
41 (GST_VERSION_MAJOR == (major) && GST_VERSION_MINOR == (minor) && \
42 GST_VERSION_MICRO >= (micro)))
45 #if GST_CHECK_VERSION(0,10,13)
46 # define GNASH_GST_PLUGIN_DEFINE GST_PLUGIN_DEFINE
48 # define GNASH_GST_PLUGIN_DEFINE GST_PLUGIN_DEFINE_STATIC