1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
/*
* Created on Nov 30, 2004
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package kj.dsp;
import java.util.ArrayList;
import javax.sound.sampled.SourceDataLine;
import kj.audio.KJAudioDataConsumer;
//import kj.ui.KJJukeBox;
/**
* @author Kris
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public class KJDigitalSignalProcessingAudioDataConsumer implements KJAudioDataConsumer {
private static final int DEFAULT_SAMPLE_SIZE = 2048;
private static final int DEFAULT_FPS = 70;
public static final int SAMPLE_TYPE_EIGHT_BIT = 1;
public static final int SAMPLE_TYPE_SIXTEEN_BIT = 2;
public static final int CHANNEL_MODE_MONO = 1;
public static final int CHANNEL_MODE_STEREO = 2;
private Object readWriteLock = new Object();
private SourceDataLine sourceDataLine;
private int sampleSize;
private long fpsAsNS;
private long desiredFpsAsNS;
private byte[] audioDataBuffer;
private float[] left;
private float[] right;
private int position;
private long offset;
private SignalProcessor signalProcessor;
private ArrayList dsps = new ArrayList();
private int sampleType;
private int channelMode;
/**
* Default constructor creates a DSPAC with DEFAULT_SAMPLE_SIZE and DEFAULT_FPS as
* parameters.
*/
public KJDigitalSignalProcessingAudioDataConsumer() {
this( DEFAULT_SAMPLE_SIZE, DEFAULT_FPS );
}
/**
* @param pSampleSize The sample size to extract from audio data sent to the SourceDataLine.
* @param pFramePerSecond The desired refresh rate per second of registered DSP's.
*/
public KJDigitalSignalProcessingAudioDataConsumer( int pSampleSize, int pFramesPerSecond ) {
this( pSampleSize, pFramesPerSecond, SAMPLE_TYPE_SIXTEEN_BIT, CHANNEL_MODE_STEREO );
}
/**
* @param pSampleSize The sample size to extract from audio data sent to the SourceDataLine.
* @param pFramePerSecond The desired refresh rate per second of registered DSP's.
* @param pSampleType The sample type SAMPLE_TYPE_EIGHT_BIT or SAMPLE_TYPE_SIXTEEN_BIT.
* @param pFramePerSecond The channel mode CHANNEL_MODE_MONO or CHANNEL_MODE_STEREO.
*/
public KJDigitalSignalProcessingAudioDataConsumer( int pSampleSize, int pFramesPerSecond, int pSampleType, int pChannelMode ) {
sampleSize = pSampleSize;
desiredFpsAsNS = 1000000000L / (long)pFramesPerSecond;
fpsAsNS = desiredFpsAsNS;
setSampleType( pSampleType );
setChannelMode( pChannelMode );
}
/**
* Adds a DSP to the DSPAC and forwards any audio data to it at the specific
* frame rate.
*
* @param A class implementing the KJDigitalSignalProcessor interface.
*/
public void add( KJDigitalSignalProcessor pSignalProcessor ) {
dsps.add( pSignalProcessor );
}
/**
* Removes the specified DSP from this DSPAC if it exists.
*
* @param A class implementing the KJDigitalSignalProcessor interface.
*/
public void remove( KJDigitalSignalProcessor pSignalProcessor ) {
dsps.remove( pSignalProcessor );
}
public void setChannelMode( int pChannelMode ) {
channelMode = pChannelMode;
}
public void setSampleType( int pSampleType ) {
sampleType = pSampleType;
}
/**
* Start monitoring the specified SourceDataLine.
*
* @param pSdl A SourceDataLine.
*/
public synchronized void start( SourceDataLine pSdl ) {
// -- Stop processing previous source data line.
if ( signalProcessor != null ) {
stop();
}
if ( signalProcessor == null ) {
// System.out.println( "ADBS: " + pSdl.getBufferSize() );
sourceDataLine = pSdl;
// -- Allocate double the memory than the SDL to prevent
// buffer overlapping.
audioDataBuffer = new byte[ pSdl.getBufferSize() << 1 ];
left = new float[ sampleSize ];
right = new float[ sampleSize ];
position = 0;
offset = 0;
signalProcessor = new SignalProcessor();
new Thread( signalProcessor ).start();
}
}
/**
* Stop monitoring the currect SourceDataLine.
*/
public synchronized void stop() {
if ( signalProcessor != null ) {
signalProcessor.stop();
signalProcessor = null;
audioDataBuffer = null;
sourceDataLine = null;
}
}
private void storeAudioData( byte[] pAudioData, int pOffset, int pLength ) {
synchronized( readWriteLock ) {
if ( audioDataBuffer == null ) {
return;
}
int wOverrun = 0;
if ( position + pLength > audioDataBuffer.length - 1 ) {
wOverrun = ( position + pLength ) - audioDataBuffer.length;
pLength = audioDataBuffer.length - position;
}
System.arraycopy( pAudioData, pOffset, audioDataBuffer, position, pLength );
if ( wOverrun > 0 ) {
System.arraycopy( pAudioData, pOffset + pLength, audioDataBuffer, 0, wOverrun );
position = wOverrun;
} else {
position += pLength;
}
// KJJukeBox.getDSPDialog().setDSPBufferInfo(
// position,
// pOffset,
// pLength,
// audioDataBuffer.length );
}
}
/* (non-Javadoc)
* @see kj.audio.KJAudioDataConsumer#writeAudioData(byte[])
*/
public void writeAudioData( byte[] pAudioData ) {
storeAudioData( pAudioData, 0, pAudioData.length );
}
/* (non-Javadoc)
* @see kj.audio.KJAudioDataConsumer#writeAudioData(byte[], int, int)
*/
public void writeAudioData( byte[] pAudioData, int pOffset, int pLength ) {
storeAudioData( pAudioData, pOffset, pLength );
}
private class SignalProcessor implements Runnable {
boolean process = true;
long lfp = 0;
int frameSize;
public SignalProcessor() {
frameSize = sourceDataLine.getFormat().getFrameSize();
}
private int calculateSamplePosition() {
synchronized( readWriteLock ) {
long wFp = sourceDataLine.getLongFramePosition();
long wNfp = lfp;
lfp = wFp;
int wSdp = (int)( (long)( wNfp * frameSize ) - (long)( audioDataBuffer.length * offset ) );
// KJJukeBox.getDSPDialog().setOutputPositionInfo(
// wFp,
// wFp - wNfp,
// wSdp );
return wSdp;
}
}
private void processSamples( int pPosition ) {
int c = pPosition;
if ( channelMode == CHANNEL_MODE_MONO && sampleType == SAMPLE_TYPE_EIGHT_BIT ) {
for( int a = 0; a < sampleSize; a++, c++ ) {
if ( c >= audioDataBuffer.length ) {
offset++;
c = ( c - audioDataBuffer.length );
}
left[ a ] = (float)( (int)audioDataBuffer[ c ] / 128.0f );
right[ a ] = left[ a ];
}
} else if ( channelMode == CHANNEL_MODE_STEREO && sampleType == SAMPLE_TYPE_EIGHT_BIT ) {
for( int a = 0; a < sampleSize; a++, c += 2 ) {
if ( c >= audioDataBuffer.length ) {
offset++;
c = ( c - audioDataBuffer.length );
}
left[ a ] = (float)( (int)audioDataBuffer[ c ] / 128.0f );
right[ a ] = (float)( (int)audioDataBuffer[ c + 1 ] / 128.0f );
}
} else if ( channelMode == CHANNEL_MODE_MONO && sampleType == SAMPLE_TYPE_SIXTEEN_BIT ) {
for( int a = 0; a < sampleSize; a++, c += 2 ) {
if ( c >= audioDataBuffer.length ) {
offset++;
c = ( c - audioDataBuffer.length );
}
left[ a ] = (float)( ( (int)audioDataBuffer[ c + 1 ] << 8 ) + audioDataBuffer[ c ] ) / 32767.0f;;
right[ a ] = left[ a ];
}
} else if ( channelMode == CHANNEL_MODE_STEREO && sampleType == SAMPLE_TYPE_SIXTEEN_BIT ) {
for( int a = 0; a < sampleSize; a++, c += 4 ) {
if ( c >= audioDataBuffer.length ) {
offset++;
c = ( c - audioDataBuffer.length );
}
left[ a ] = (float)( ( (int)audioDataBuffer[ c + 1 ] << 8 ) + audioDataBuffer[ c ] ) / 32767.0f;
right[ a ] = (float)( ( (int)audioDataBuffer[ c + 3 ] << 8 ) + audioDataBuffer[ c + 2 ] ) / 32767.0f;
}
}
}
public void run() {
while( process ) {
try {
long wStn = System.nanoTime();
int wSdp = calculateSamplePosition();
if ( wSdp > 0 ) {
processSamples( wSdp );
}
// -- Dispatch sample data to digtal signal processors.
for( int a = 0; a < dsps.size(); a++ ) {
// -- Calculate the frame rate ratio hint. This value can be used by
// animated DSP's to fast forward animation frames to make up for
// inconsistencies with the frame rate.
float wFrr = (float)fpsAsNS / (float)desiredFpsAsNS;
try {
( (KJDigitalSignalProcessor)dsps.get( a ) ).process( left, right, wFrr );
} catch( Exception pEx ) {
System.err.println( "-- DSP Exception: " );
pEx.printStackTrace();
}
}
// KJJukeBox.getDSPDialog().setDSPInformation(
// String.valueOf( 1000.0f / ( (float)( wEtn - wStn ) / 1000000.0f ) ) );
// System.out.println( 1000.0f / ( (float)( wEtn - wStn ) / 1000000.0f ) );
long wDelay = fpsAsNS - ( System.nanoTime() - wStn );
// -- No DSP registered? Put the the DSP thread to sleep.
if ( dsps.isEmpty() ) {
wDelay = 1000000000; // -- 1 second.
}
if ( wDelay > 0 ) {
try {
Thread.sleep( wDelay / 1000000, (int)wDelay % 1000000 );
} catch ( Exception pEx ) {
// TODO Auto-generated catch block
}
// -- Adjust FPS until we meet the "desired FPS".
if ( fpsAsNS > desiredFpsAsNS ) {
fpsAsNS -= wDelay;
} else {
fpsAsNS = desiredFpsAsNS;
}
} else {
// -- Reduce FPS because we cannot keep up with the "desired FPS".
fpsAsNS += -wDelay;
// -- Keep thread from hogging CPU.
try {
Thread.sleep( 10 );
} catch ( InterruptedException pEx ) {
// TODO Auto-generated catch block
}
}
} catch( Exception pEx ) {
System.err.println( "- DSP Exception: " );
pEx.printStackTrace();
}
}
}
public void stop() {
process = false;
}
}
}
|