GNOME Bugzilla – Bug 612777
Deprecated macro in gstspeexdec.c causes compile error in MSVC
Last modified: 2010-03-15 13:17:46 UTC
Created attachment 156050 [details] [review] gstspeexdec.c patch Compiling gstspeex with MSVC fails on line 541. According to the speex headers, SPEEX_STEREO_STATE_INIT is deprecated anyway. The provided patch resolves the issue by using the suggested speex_stereo_state_init() function. It is, however, untested at this point. But the compile succeeds.
Comment on attachment 156050 [details] [review] gstspeexdec.c patch The speex stereo state has to be freed afterwards when getting it with speex_stereo_state_init()
commit fdc7b73675d9c135813971efce8cf084ef1cb114 Author: Sebastian Dröge <sebastian.droege@collabora.co.uk> Date: Mon Mar 15 14:16:58 2010 +0100 speexdec: Use speex_stereo_state_init() instead of the deprecated initializa Fixes bug #612777.