Exemple #1
0
 /** You probably don't need to use that directly, use the {@link SessionBuilder}. */
 void removeAudioTrack() {
     if (mAudioStream != null) {
         mAudioStream.stop();
         mAudioStream = null;
     }
 }
Exemple #2
0
 /** You probably don't need to use that directly, use the {@link SessionBuilder}. */
 void addAudioTrack(AudioStream track) {
     removeAudioTrack();
     mAudioStream = track;
 }