You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Arsen,
I have found a minor issue while compiling our plugin in C++. In inline
function mpf_codec_descriptor_create on line 129, there must be explicit
type-cast in C++. I know the project is written in C, but support for C++
might be useful not only for me.
Patch:
129- mpf_codec_descriptor_t *descriptor =
apr_palloc(pool,sizeof(mpf_codec_descriptor_t));
129+ mpf_codec_descriptor_t *descriptor = (mpf_codec_descriptor_t
*)apr_palloc(pool,sizeof(mpf_codec_descriptor_t));
Thanks.
- Vali
Reported by tomas.valenta@speechtech.cz on 2009-09-28 17:38:17
The text was updated successfully, but these errors were encountered:
Originally reported on Google Code with ID 44
Reported by
tomas.valenta@speechtech.cz
on 2009-09-28 17:38:17The text was updated successfully, but these errors were encountered: