app_echo.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 1999 - 2005, Digium, Inc.
  5. *
  6. * Mark Spencer <markster@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*! \file
  19. *
  20. * \brief Echo application -- play back what you hear to evaluate latency
  21. *
  22. * \author Mark Spencer <markster@digium.com>
  23. *
  24. * \ingroup applications
  25. */
  26. /*** MODULEINFO
  27. <support_level>core</support_level>
  28. ***/
  29. #include "asterisk.h"
  30. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  31. #include "asterisk/file.h"
  32. #include "asterisk/module.h"
  33. #include "asterisk/channel.h"
  34. /*** DOCUMENTATION
  35. <application name="Echo" language="en_US">
  36. <synopsis>
  37. Echo media, DTMF back to the calling party
  38. </synopsis>
  39. <syntax />
  40. <description>
  41. <para>Echos back any media or DTMF frames read from the calling
  42. channel back to itself. This will not echo CONTROL, MODEM, or NULL
  43. frames. Note: If '#' detected application exits.</para>
  44. <para>This application does not automatically answer and should be
  45. preceeded by an application such as Answer() or Progress().</para>
  46. </description>
  47. </application>
  48. ***/
  49. static const char app[] = "Echo";
  50. static int echo_exec(struct ast_channel *chan, const char *data)
  51. {
  52. int res = -1;
  53. struct ast_format format;
  54. ast_best_codec(ast_channel_nativeformats(chan), &format);
  55. ast_set_write_format(chan, &format);
  56. ast_set_read_format(chan, &format);
  57. while (ast_waitfor(chan, -1) > -1) {
  58. struct ast_frame *f = ast_read(chan);
  59. if (!f) {
  60. break;
  61. }
  62. f->delivery.tv_sec = 0;
  63. f->delivery.tv_usec = 0;
  64. if (f->frametype != AST_FRAME_CONTROL
  65. && f->frametype != AST_FRAME_MODEM
  66. && f->frametype != AST_FRAME_NULL
  67. && ast_write(chan, f)) {
  68. ast_frfree(f);
  69. goto end;
  70. }
  71. if ((f->frametype == AST_FRAME_DTMF) && (f->subclass.integer == '#')) {
  72. res = 0;
  73. ast_frfree(f);
  74. goto end;
  75. }
  76. ast_frfree(f);
  77. }
  78. end:
  79. return res;
  80. }
  81. static int unload_module(void)
  82. {
  83. return ast_unregister_application(app);
  84. }
  85. static int load_module(void)
  86. {
  87. return ast_register_application_xml(app, echo_exec);
  88. }
  89. AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Simple Echo Application");