search for: l471

Displaying 4 results from an estimated 4 matches for "l471".

Did you mean: 471
2017 Dec 06
2
Simple speech recognition for driving IVR - "press or say one".
Thanks for your responses - it looks like I have the following options, in order of ease: 1: Modify and recompile app_record.c Change line 471 https://github.com/asterisk/asterisk/blob/master/apps/app_record.c#L471 from status_response = "DTMF"; to status_response = dtmf_integer; Pro: Free, easy Con: Have to remember to edit module each time a new Asterisk update comes out 2: Use the Jean Aunis "mix ARI and AGI" trick. Pro: Doesn't need recompiling on each Asterisk release. Con...
2019 Dec 30
2
RFC: Refactor SubclassData
...DataFromInstruction()`, it still does not turn the tides of the table, above, into the current implementation. > Cheers! [1] https://github.com/llvm/llvm-project/blob/master/clang/include/clang/AST/Stmt.h#L1088 [2] https://github.com/llvm/llvm-project/blob/master/clang/include/clang/AST/Stmt.h#L471 [3] https://github.com/llvm/llvm-project/blob/master/clang/include/clang/AST/Stmt.h#L849 [4] https://github.com/llvm/llvm-project/blob/master/clang/include/clang/AST/Stmt.h#L804 Bruno Ricci
2017 Dec 06
3
Simple speech recognition for driving IVR - "press or say one".
Thanks Jurijs, Yes, in fact I'm already using that, and it works fine. The problem here is that I cannot find a way of recording speech AND listening for a DTMF digit being pressed as an alternative. That's where the problem lies. J.
2019 Dec 27
2
RFC: Refactor SubclassData
Ehud, can you elaborate on which classes you're trying to change. I know some of the classes already use methods like getSubclassDataFromInstruction() to hide bits from the subclasses. They could probably shift the data too. ~Craig On Fri, Dec 27, 2019 at 9:35 AM Bruno Ricci via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi, > > On 26/12/2019 20:53, Ehud Katz via