Closed GoogleCodeExporter closed 8 years ago
Hi Blaise,
I think you may have missed the post below
http://groups.google.com/group/unimrcp/browse_frm/thread/206f4d3b31771d03#
The methods to open and close engines are asynchronous now. This means you
should acknowledge with mrcp_engine_open_respond(engine,TRUE) and
mrcp_engine_close_respond(engine) within your plugins.
Consider joining the discussion group if you haven't already done it.
Best regards,
Arsen
Original comment by achalo...@gmail.com
on 8 Jun 2010 at 7:03
Hi achaloyan,
Thank you very much for your answer. You are right, of course. I had not joined
the discussion group since I started working (a few days ago) on this MRCP
plugin, that got developed quite some time ago by someone else. This fixes it.
Thanks for your time and patience and for this great work!
Original comment by bpot...@gmail.com
on 8 Jun 2010 at 9:47
Hi again Achaloyan,
I still have a small question: is there a way to make the plugin compatible
with older versions of UniMRCP? I assume with theses changes it will not work
with 0.10.0 anymore...
Original comment by bpot...@gmail.com
on 8 Jun 2010 at 10:03
Hi Blaise,
You can easily make your plugin compilable with the previous versions as well
using the pseudo code below
#include "uni_version.h"
#if UNI_VERSION_AT_LEAST(1,0,0)
mrcp_engine_open_respond(engine,TRUE);
#endif
Please note that the plugin built with 0.10.0 source will not work with 1.0.0
binaries and vice-versa
Original comment by achalo...@gmail.com
on 8 Jun 2010 at 2:52
I think everything is clear here and the issue can be considered as verified.
Original comment by achalo...@gmail.com
on 10 Jun 2010 at 4:47
Yes, everything is clear. Thank you again for your time.
Original comment by bpot...@gmail.com
on 10 Jun 2010 at 5:06
Original issue reported on code.google.com by
bpot...@gmail.com
on 7 Jun 2010 at 3:02