app_echo.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 audio, video, DTMF back to the calling party
  38. </synopsis>
  39. <syntax />
  40. <description>
  41. <para>Echos back any audio, video or DTMF frames read from the calling
  42. channel back to itself. Note: If '#' detected application exits</para>
  43. <para>This application does not automatically answer and should be
  44. preceeded by an application such as Answer() or Progress().</para>
  45. </description>
  46. </application>
  47. ***/
  48. static const char app[] = "Echo";
  49. static int echo_exec(struct ast_channel *chan, const char *data)
  50. {
  51. int res = -1;
  52. format_t format;
  53. format = ast_best_codec(chan->nativeformats);
  54. ast_set_write_format(chan, format);
  55. ast_set_read_format(chan, format);
  56. while (ast_waitfor(chan, -1) > -1) {
  57. struct ast_frame *f = ast_read(chan);
  58. if (!f) {
  59. break;
  60. }
  61. f->delivery.tv_sec = 0;
  62. f->delivery.tv_usec = 0;
  63. if (ast_write(chan, f)) {
  64. ast_frfree(f);
  65. goto end;
  66. }
  67. if ((f->frametype == AST_FRAME_DTMF) && (f->subclass.integer == '#')) {
  68. res = 0;
  69. ast_frfree(f);
  70. goto end;
  71. }
  72. ast_frfree(f);
  73. }
  74. end:
  75. return res;
  76. }
  77. static int unload_module(void)
  78. {
  79. return ast_unregister_application(app);
  80. }
  81. static int load_module(void)
  82. {
  83. return ast_register_application_xml(app, echo_exec);
  84. }
  85. AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Simple Echo Application");