Example #1
0
 public void writeAudioPhase(boolean phase) {
   AudioOut audioOut = this.audioOut;
   if (audioOut != null) audioOut.writePhase(phase);
 }
Example #2
0
 public void writeAudioValue(byte value) {
   AudioOut audioOut = this.audioOut;
   if (audioOut != null) audioOut.writeValue(value);
 }
Example #3
0
 /*
  * Mit diese Methode wird ermittelt,
  * ob die Tonausgabe auf dem Kassettenrecorderanschluss
  * oder einen evtl. vorhandenen Lautsprecheranschluss
  * emuliert werden soll.
  */
 public boolean isSoundOutEnabled() {
   return audioOut != null ? audioOut.isSoundOutEnabled() : false;
 }