summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-22 00:35:12 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-22 00:35:12 +0000
commite5644f52a124e136027a0bc4c2359579b3ded432 (patch)
treece3d865801326f8774807208c4eeb5ca58e16abd
parent54ef2e8a8000b8056aa32eb00179ab15dd48e2d8 (diff)
downloadpcsxr-e5644f52a124e136027a0bc4c2359579b3ded432.tar.gz
PA_SAMPLE_S16NE instead of PA_SAMPLE_S16LE.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@48454 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--ChangeLog4
-rw-r--r--plugins/dfsound/pulseaudio.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1220ae13..c2284e6c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+May 22, 2010 Wei Mingzhi <whistler_wmz@users.sf.net>
+
+ * plugins/dfsound/pulseaudio.c: Use Native Endian instead of Little Endian.
+
May 21, 2010 Wei Mingzhi <whistler_wmz@users.sf.net>
* plugins/dfsound/oss.c: Readded OSS, PulseAudio, ALSA & NULL backends.
diff --git a/plugins/dfsound/pulseaudio.c b/plugins/dfsound/pulseaudio.c
index db0fed71..60051557 100644
--- a/plugins/dfsound/pulseaudio.c
+++ b/plugins/dfsound/pulseaudio.c
@@ -194,7 +194,7 @@ void SetupSound (void)
}
// Set sample spec ////////////////////////////////////////////////////////
- device.spec.format = PA_SAMPLE_S16LE;
+ device.spec.format = PA_SAMPLE_S16NE;
if (iDisStereo)
device.spec.channels = 1;
else