/**
  * Sets the configuration of the stream. You can call this method at any time and changes will
  * take effect next time you call {@link #configure()}.
  *
  * @param videoQuality Quality of the stream
  */
 public void setVideoQuality(VideoQuality videoQuality) {
   if (!mRequestedQuality.equals(videoQuality)) {
     mRequestedQuality = videoQuality.clone();
     mUpdated = false;
   }
 }