summaryrefslogtreecommitdiff
path: root/tests/test5/capture.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test5/capture.c')
-rw-r--r--tests/test5/capture.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/tests/test5/capture.c b/tests/test5/capture.c
index d003fe8..441a6ac 100644
--- a/tests/test5/capture.c
+++ b/tests/test5/capture.c
@@ -5,6 +5,8 @@
#define APP_TITLE "Test 5 lpo"
#define BUFSIZE 1024
+extern void my_process(gint sound_level, void *userdata);
+
capture_sound_level_cb_t *capture_sound_level_cb=NULL;
int capture_init(pa_mainloop **m, pa_context **c);
@@ -26,7 +28,7 @@ void audio_thread(void *args) {
capture_sound_level_cb=(capture_sound_level_cb_t *)args;
- printf("debug : args==%p capture_sound_level_cb==%p\n", args, capture_sound_level_cb);
+ //printf("debug : args==%p capture_sound_level_cb==%p\n", args, capture_sound_level_cb);
res=capture_init(&m, &c);
g_assert(res==0);
@@ -194,11 +196,14 @@ void stream_read_callback(pa_stream *s, size_t nbytes, void *userdata) {
printf("pa_stream_peek() failed\n");//: %s", pa_strerror(pa_context_errno(context)));
return;
}
- printf("level : %i\n", compute_level(p,nbytes));
+ //printf("level : %i\n", compute_level(p,nbytes));
+
+//printf("debug : before call capture_sound_level_cb==%p\n", capture_sound_level_cb);
+
+ my_process(compute_level(p,nbytes), NULL);
+// (*capture_sound_level_cb)(compute_level(p,nbytes), NULL);
-printf("debug : before call capture_sound_level_cb==%p\n", capture_sound_level_cb);
- (*capture_sound_level_cb)(compute_level(p,nbytes), NULL);
-printf("debug : after call capture_sound_level_cb==%p\n", capture_sound_level_cb);
+//printf("debug : after call capture_sound_level_cb==%p\n", capture_sound_level_cb);
pa_stream_drop(s);
}
@@ -208,6 +213,7 @@ gint compute_level(const void *data, size_t nbytes) {
gint val, level=0;
for (i=0;i<nbytes/2;i++) {
val=((int16_t *)data)[i];
+ //printf("val==%i\n", val);
if (val<0) val=-val;
if (level<val) level=val;
}