a8a7fd84d7bf9b0a534ed0afda2886963d1e0f3e
[asterisk/asterisk.git] / apps / app_echo.c
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
19 /*! \file
20  *
21  * \brief Echo application -- play back what you hear to evaluate latency
22  *
23  * \author Mark Spencer <markster@digium.com>
24  *
25  * \ingroup applications
26  */
27
28 /*** MODULEINFO
29         <support_level>core</support_level>
30  ***/
31
32 #include "asterisk.h"
33
34 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
35
36 #include "asterisk/file.h"
37 #include "asterisk/module.h"
38 #include "asterisk/channel.h"
39
40 /*** DOCUMENTATION
41         <application name="Echo" language="en_US">
42                 <synopsis>
43                         Echo audio, video, DTMF back to the calling party
44                 </synopsis>
45                 <syntax />
46                 <description>
47                         <para>Echos back any audio, video or DTMF frames read from the calling 
48                         channel back to itself. Note: If '#' detected application exits</para>
49                         <para>This application does not automatically answer and should be
50                         preceeded by an application such as Answer() or Progress().</para>
51                 </description>
52         </application>
53  ***/
54
55 static const char app[] = "Echo";
56
57 static int echo_exec(struct ast_channel *chan, const char *data)
58 {
59         int res = -1;
60         struct ast_format format;
61
62         ast_best_codec(ast_channel_nativeformats(chan), &format);
63         ast_set_write_format(chan, &format);
64         ast_set_read_format(chan, &format);
65
66         while (ast_waitfor(chan, -1) > -1) {
67                 struct ast_frame *f = ast_read(chan);
68                 if (!f) {
69                         break;
70                 }
71                 f->delivery.tv_sec = 0;
72                 f->delivery.tv_usec = 0;
73                 if (ast_write(chan, f)) {
74                         ast_frfree(f);
75                         goto end;
76                 }
77                 if ((f->frametype == AST_FRAME_DTMF) && (f->subclass.integer == '#')) {
78                         res = 0;
79                         ast_frfree(f);
80                         goto end;
81                 }
82                 ast_frfree(f);
83         }
84 end:
85         return res;
86 }
87
88 static int unload_module(void)
89 {
90         return ast_unregister_application(app);
91 }
92
93 static int load_module(void)
94 {
95         return ast_register_application_xml(app, echo_exec);
96 }
97
98 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Simple Echo Application");