[PATCH] Integrating a PulseAudio-based Java Mixer in icedtea6
Mark Wielaard
mark at klomp.org
Fri Oct 10 07:31:27 PDT 2008
Hi Ioana,
On Fri, 2008-10-10 at 09:36 -0400, Ioana Ivan wrote:
> 0.9.11 is needed for START/STOP events to be sent to the line listeners.
> There is actually a bug in pulseaudio that causes the start callback to
> not be called sometimes that's been fixed in 9.13, so it's better to
> have that version, but we have added some checks in java so 9.11 and
> 9.12 should work as well. We can write a patch so that it compiles and
> runs with 9.10, but the events won't work. Mark, I remember you were
> saying you had a patch for that. Is it working?
It is more like a quick and dirty hack. It makes it possible to compile
against 0.9.10, but by completely eliminating the
stream_started_callback(), which means LineListeners don't work.
Cheers,
Mark
diff -r 5108fc37a890 src/native/org_classpath_icedtea_pulseaudio_Stream.c
--- a/src/native/org_classpath_icedtea_pulseaudio_Stream.c Wed Oct 08 16:06:00 2008 -0400
+++ b/src/native/org_classpath_icedtea_pulseaudio_Stream.c Fri Oct 10 16:28:20 2008 +0200
@@ -170,6 +170,7 @@
// requires pulseaudio 0.9.11 :(
+/*
static void stream_started_callback(pa_stream *stream, void *userdata) {
// printf("stream_started_callback called\n");
java_context* context = userdata;
@@ -187,6 +188,7 @@
}
}
+*/
static void stream_latency_update_callback(pa_stream *stream, void *userdata) {
// printf("stream_latency_update_callback called\n");
@@ -308,7 +310,7 @@
pa_stream_set_read_callback (stream, stream_read_callback, j_context);
pa_stream_set_overflow_callback (stream, stream_overflow_callback, j_context);
pa_stream_set_underflow_callback (stream, stream_underflow_callback, j_context);
- pa_stream_set_started_callback (stream, stream_started_callback, j_context);
+ // pa_stream_set_started_callback (stream, stream_started_callback, j_context);
pa_stream_set_latency_update_callback (stream, stream_latency_update_callback, j_context);
pa_stream_set_moved_callback (stream, stream_moved_callback, j_context);
pa_stream_set_suspended_callback (stream, stream_suspended_callback, j_context);
More information about the distro-pkg-dev
mailing list