phononnamespace.h | phononnamespace.h | |||
---|---|---|---|---|
skipping to change at line 39 | skipping to change at line 39 | |||
* Helper macro that can be used like | * Helper macro that can be used like | |||
* \code | * \code | |||
* #if (PHONON_VERSION >= PHONON_VERSION_CHECK(4, 4, 0)) | * #if (PHONON_VERSION >= PHONON_VERSION_CHECK(4, 4, 0)) | |||
* \endcode | * \endcode | |||
*/ | */ | |||
#define PHONON_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|( patch)) | #define PHONON_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|( patch)) | |||
/** | /** | |||
* PHONON_VERSION is (major << 16) + (minor << 8) + patch. | * PHONON_VERSION is (major << 16) + (minor << 8) + patch. | |||
*/ | */ | |||
#define PHONON_VERSION PHONON_VERSION_CHECK(4, 7, 1) | #define PHONON_VERSION PHONON_VERSION_CHECK(4, 7, 2) | |||
/** | /** | |||
* PHONON_VERSION_STR is "major.minor.patch". E.g. "4.2.1" | * PHONON_VERSION_STR is "major.minor.patch". E.g. "4.2.1" | |||
*/ | */ | |||
#define PHONON_VERSION_STR "4.7.1" | #define PHONON_VERSION_STR "4.7.2" | |||
/** | /** | |||
* Definitions to disable capture - should end up in the backends and | * Definitions to disable capture - should end up in the backends and | |||
* platform plugins, too | * platform plugins, too | |||
*/ | */ | |||
/* #undef PHONON_NO_CAPTURE */ | /* #undef PHONON_NO_CAPTURE */ | |||
#ifdef PHONON_NO_CAPTURE | #ifdef PHONON_NO_CAPTURE | |||
#define PHONON_NO_VIDEOCAPTURE | #define PHONON_NO_VIDEOCAPTURE | |||
#define PHONON_NO_AUDIOCAPTURE | #define PHONON_NO_AUDIOCAPTURE | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||