Added set accessors to Source objects

For Source plugins that can't parse all the required information before
creating the object, set accessors are needed to populate the
information afterwards.
This commit is contained in:
2010-10-12 19:06:27 +01:00
parent ec4cc8dad4
commit 8f88fba0ca
3 changed files with 56 additions and 0 deletions

View File

@@ -28,26 +28,50 @@ class RippingCluster_Rips_SourceAudioTrack {
return $name;
}
public function setName($name) {
$this->name = $name;
}
public function format() {
return $this->format;
}
public function setFormat($format) {
$this->format = $format;
}
public function channels() {
return $this->channels;
}
public function setChannels($channels) {
$this->channels = $channels;
}
public function language() {
return $this->language;
}
public function setLanguage($language) {
$this->language = $language;
}
public function samplerate() {
return $this->samplerate;
}
public function setSampleRate($sample_rate) {
$this->samplerate = $sample_rate;
}
public function bitrate() {
return $this->bitrate;
}
public function setBitRate($bit_rate) {
$this->bitrate = $bit_rate;
}
};
?>