gstversion.h   gstversion.h 
skipping to change at line 60 skipping to change at line 60
* GST_VERSION_MINOR: * GST_VERSION_MINOR:
* *
* The minor version of GStreamer at compile time: * The minor version of GStreamer at compile time:
*/ */
#define GST_VERSION_MINOR (10) #define GST_VERSION_MINOR (10)
/** /**
* GST_VERSION_MICRO: * GST_VERSION_MICRO:
* *
* The micro version of GStreamer at compile time: * The micro version of GStreamer at compile time:
*/ */
#define GST_VERSION_MICRO (23) #define GST_VERSION_MICRO (32)
/** /**
* GST_VERSION_NANO: * GST_VERSION_NANO:
* *
* The nano version of GStreamer at compile time: * The nano version of GStreamer at compile time:
* Actual releases have 0, GIT versions have 1, prerelease versions have 2- ... * Actual releases have 0, GIT versions have 1, prerelease versions have 2- ...
*/ */
#define GST_VERSION_NANO (0) #define GST_VERSION_NANO (0)
/** /**
* GST_CHECK_VERSION: * GST_CHECK_VERSION:
skipping to change at line 84 skipping to change at line 84
* *
* Check whether a GStreamer version equal to or greater than * Check whether a GStreamer version equal to or greater than
* major.minor.micro is present. * major.minor.micro is present.
* *
* Since: 0.10.18 * Since: 0.10.18
*/ */
#define GST_CHECK_VERSION(major,minor,micro) \ #define GST_CHECK_VERSION(major,minor,micro) \
(GST_VERSION_MAJOR > (major) || \ (GST_VERSION_MAJOR > (major) || \
(GST_VERSION_MAJOR == (major) && GST_VERSION_MINOR > (minor)) || \ (GST_VERSION_MAJOR == (major) && GST_VERSION_MINOR > (minor)) || \
(GST_VERSION_MAJOR == (major) && GST_VERSION_MINOR == (minor) && \ (GST_VERSION_MAJOR == (major) && GST_VERSION_MINOR == (minor) && \
GST_VERSION_MICRO >= (micro))) GST_VERSION_MICRO >= (micro)) || \
(GST_VERSION_MAJOR == (major) && GST_VERSION_MINOR == (minor) && \
GST_VERSION_MICRO + 1 == (micro) && GST_VERSION_NANO > 0))
G_END_DECLS G_END_DECLS
#endif /* __GST_VERSION_H__ */ #endif /* __GST_VERSION_H__ */
 End of changes. 2 change blocks. 
2 lines changed or deleted 4 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/