]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
sound_test app
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 5 Feb 2009 19:53:13 +0000 (19:53 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 5 Feb 2009 19:53:13 +0000 (19:53 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11658 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/include/switch_ivr.h
src/mod/applications/mod_dptools/mod_dptools.c
src/switch_ivr.c

index a721104f5006bda26b2ded22cb347b32d8a3b146..baf0dbd5812cf3bd37576eb43f339fc684402afd 100644 (file)
@@ -794,6 +794,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_digit_stream_parser_set_terminator(sw
         SWITCH_DECLARE(switch_say_method_t) switch_ivr_get_say_method_by_name(const char *name);
         SWITCH_DECLARE(switch_say_type_t) switch_ivr_get_say_type_by_name(const char *name);
      SWITCH_DECLARE(switch_status_t) switch_ivr_set_user(switch_core_session_t *session, const char *data);
+     SWITCH_DECLARE(switch_status_t) switch_ivr_sound_test(switch_core_session_t *session);
 /** @} */
 
         SWITCH_END_EXTERN_C
index bbe28176eaae8c77c9304bb91f2abd2b916f05c8..ae41c4bc3d5c7666e6a717aaa2c2ec85300c9880 100644 (file)
@@ -912,6 +912,11 @@ SWITCH_STANDARD_APP(info_function)
        }
 }
 
+SWITCH_STANDARD_APP(sound_test_function)
+{
+       switch_ivr_sound_test(session);
+}
+
 SWITCH_STANDARD_APP(event_function)
 {
        switch_event_t *event;
@@ -2581,6 +2586,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_dptools_load)
        SWITCH_ADD_APP(app_interface, "log", "Logs to the logger", LOG_LONG_DESC, log_function, "<log_level> <log_string>", SAF_SUPPORT_NOMEDIA);
        SWITCH_ADD_APP(app_interface, "info", "Display Call Info", "Display Call Info", info_function, "", SAF_SUPPORT_NOMEDIA);
        SWITCH_ADD_APP(app_interface, "event", "Fire an event", "Fire an event", event_function, "", SAF_SUPPORT_NOMEDIA);
+       SWITCH_ADD_APP(app_interface, "sound_test", "Analyze Audio", "Analyze Audio", sound_test_function, "", SAF_NONE);
        SWITCH_ADD_APP(app_interface, "export", "Export a channel variable across a bridge", EXPORT_LONG_DESC, export_function, "<varname>=<value>",
                                   SAF_SUPPORT_NOMEDIA);
        SWITCH_ADD_APP(app_interface, "set", "Set a channel variable", SET_LONG_DESC, set_function, "<varname>=<value>", SAF_SUPPORT_NOMEDIA);
index 43e15d382a7e762c155a016b275c800d0fd2e7c6..194cb4bdedeb7e64df323e5b008eb1bf9db1cf24 100644 (file)
 #include <switch_ivr.h>
 #include "stfu.h"
 
+SWITCH_DECLARE(switch_status_t) switch_ivr_sound_test(switch_core_session_t *session)
+{
+
+       switch_codec_implementation_t imp = {0};
+       switch_codec_t codec = { 0 };
+       int16_t peak = 0;
+       int16_t *data;
+       switch_frame_t *read_frame = NULL;
+       int i;
+       switch_channel_t *channel = switch_core_session_get_channel(session);
+       switch_status_t status = SWITCH_STATUS_SUCCESS;
+       int64_t global_total = 0, global_sum = 0, period_sum = 0;
+       int period_total = 0;
+       int period_avg = 0, global_avg = 0;
+       int avg = 0;
+       int period_len;
+       
+       switch_core_session_get_read_impl(session, &imp);
+       
+       period_len = imp.actual_samples_per_second / imp.samples_per_packet;
+
+       if (switch_core_codec_init(&codec,
+                                                          "L16",
+                                                          NULL,
+                                                          imp.samples_per_second,
+                                                          imp.microseconds_per_packet / 1000,
+                                                          imp.number_of_channels, 
+                                                          SWITCH_CODEC_FLAG_ENCODE | SWITCH_CODEC_FLAG_DECODE, NULL, 
+                                                          switch_core_session_get_pool(session)) != SWITCH_STATUS_SUCCESS) {
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Codec Error L16@%uhz %u channels %dms\n", 
+                                                 imp.samples_per_second, imp.number_of_channels, imp.microseconds_per_packet / 1000);
+               return SWITCH_STATUS_FALSE;
+       }
+       
+       while(switch_channel_ready(channel)) {
+               status = switch_core_session_read_frame(session, &read_frame, SWITCH_IO_FLAG_NONE, 0);
+       
+               if (!SWITCH_READ_ACCEPTABLE(status)) {
+                       break;
+               }
+
+               if (switch_test_flag(read_frame, SFF_CNG) || !read_frame->samples) {
+                       continue;
+               }
+
+
+               data = (int16_t *) read_frame->data;
+               peak = 0;
+               avg = 0;
+               for (i = 0; i < read_frame->samples; i++) {
+                       const int16_t s = abs(data[i]);
+                       if (s > peak) {
+                               peak = s;
+                       }
+                       avg += s;
+               }
+               
+               avg /= read_frame->samples;
+
+               period_sum += peak;
+               global_sum += peak;
+               
+               global_total++;
+               period_total++;
+               
+               period_avg = period_sum / period_total;
+
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CONSOLE, 
+                                                 "\npacket_avg=%d packet_peak=%d period_avg=%d global_avg=%d\n\n", avg, peak, period_avg, global_avg); 
+               
+               if (period_total >= period_len) {                       
+                       global_avg = global_sum / global_total;
+                       period_total = 0;
+                       period_sum = 0;
+               }
+
+       }
+       
+
+       switch_core_codec_destroy(&codec);
+
+       return SWITCH_STATUS_SUCCESS;
+
+}
+
 SWITCH_DECLARE(switch_status_t) switch_ivr_sleep(switch_core_session_t *session, uint32_t ms, switch_bool_t sync, switch_input_args_t *args)
 {
        switch_channel_t *channel = switch_core_session_get_channel(session);