Clarify the comment about ABI issues with WelsGetCodecVersion

The incompatibility between mingw and msvc is smaller than it seemed
at first; this turned out to only be a bug in older versions.
This commit is contained in:
Martin Storsjö 2015-01-06 20:18:39 +02:00
parent 68ff8468af
commit aa1ec23ecd

View File

@ -532,7 +532,9 @@ long WelsCreateDecoder (ISVCDecoder** ppDecoder);
void WelsDestroyDecoder (ISVCDecoder* pDecoder);
/** @brief Get codec version
* Note, this function isn't ABI compatible between MSVC and Mingw.
* Note, old versions of Mingw (GCC < 4.7) are buggy and use an
* incorrect/different ABI for calling this function, making it
* incompatible with MSVC builds.
* @return The linked codec version
*/
OpenH264Version WelsGetCodecVersion (void);