setD method

  1. @override
AudioStreamD setD(
  1. AudioStreamD o
)
override

Copies the fields of o into this instance and returns this.

Implementation

@override
AudioStreamD setD(AudioStreamD o) {
  sampleRate = o.sampleRate;
  sampleSize = o.sampleSize;
  channels = o.channels;
  return this;
}