public void setAudioQuality(AudioQuality quality)
 {
     mRequestedQuality = quality;
 }
Beispiel #2
0
 /** 
  * Sets the configuration of the stream. <br />
  * You can call this method at any time and changes will take 
  * effect next time you call {@link #configure()}.
  * @param quality Quality of the stream
  */
 public void setAudioQuality(AudioQuality quality) {
     if (mAudioStream != null) {
         mAudioStream.setAudioQuality(quality);
     }
 }