/hg/icedtea6: LP862286: Fix exception on trying to start PulseAu...
xranby at icedtea.classpath.org
xranby at icedtea.classpath.org
Thu Sep 29 07:48:49 PDT 2011
changeset 88f9ea95b92c in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=88f9ea95b92c
author: Xerxes Ranby <xerxes at zafena.se>
date: Thu Sep 29 16:59:04 2011 +0200
LP862286: Fix exception on trying to start PulseAudio playback.
2011-09-29 Xerxes Ranby <xerxes at zafena.se> David
Henningsson <david.henningsson at canonical.com>
LP862286
* NEWS: Updated.
* pulseaudio/src/java/org/classpath/icedtea/pulseaudio/
PulseAudioDataLine.java (addStreamListeners): Fix
exception on trying to start PulseAudio playback.
diffstat:
ChangeLog | 9 +++++++++
NEWS | 1 +
pulseaudio/src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java | 2 +-
3 files changed, 11 insertions(+), 1 deletions(-)
diffs (39 lines):
diff -r af642d6ae50e -r 88f9ea95b92c ChangeLog
--- a/ChangeLog Mon Sep 26 14:03:11 2011 +0200
+++ b/ChangeLog Thu Sep 29 16:59:04 2011 +0200
@@ -1,3 +1,12 @@
+2011-09-29 Xerxes RÃ¥nby <xerxes at zafena.se>
+ David Henningsson <david.henningsson at canonical.com>
+
+ LP862286
+ * NEWS: Updated.
+ * pulseaudio/src/java/org/classpath/icedtea/pulseaudio/
+ PulseAudioDataLine.java (addStreamListeners):
+ Fix exception on trying to start PulseAudio playback.
+
2011-09-26 Xerxes RÃ¥nby <xerxes at zafena.se>
Mark David Dumlao <madumlao at gmail.com>
diff -r af642d6ae50e -r 88f9ea95b92c NEWS
--- a/NEWS Mon Sep 26 14:03:11 2011 +0200
+++ b/NEWS Thu Sep 29 16:59:04 2011 +0200
@@ -371,6 +371,7 @@
- S6826104, RH730015: Getting a NullPointer exception when clicked on Application & Toolkit Modal dialog
- S5082756: Image I/O plug-ins set metadata boolean attributes to "true" or "false"
- S6296893: BMP Writer handles TopDown property incorrectly for some of the compression types
+ - LP862286: Fix exception on trying to start PulseAudio playback
* Allow selection of test suites using the jtreg_checks argument e.g. jtreg_checks="langtools"
* CACAO
- CA149: Used wrong class loader.
diff -r af642d6ae50e -r 88f9ea95b92c pulseaudio/src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java
--- a/pulseaudio/src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java Mon Sep 26 14:03:11 2011 +0200
+++ b/pulseaudio/src/java/org/classpath/icedtea/pulseaudio/PulseAudioDataLine.java Thu Sep 29 16:59:04 2011 +0200
@@ -211,7 +211,7 @@
if (!dataWritten) {
fireLineEvent(new LineEvent(PulseAudioDataLine.this,
LineEvent.Type.START, framesSinceOpen));
- synchronized (this) {
+ synchronized (PulseAudioDataLine.this) {
PulseAudioDataLine.this.notifyAll();
}
}
More information about the distro-pkg-dev
mailing list