accepted buffers

removed 896 from wdm and ks
This commit is contained in:
pblivingston 2025-11-26 13:33:14 -05:00
parent a69902ec49
commit 88468d4e52
2 changed files with 4 additions and 4 deletions

View File

@ -466,8 +466,8 @@ $vmr.Option.sliderMode = $false # sets slider mode to absolute
The following Option.buffer commands are available: The following Option.buffer commands are available:
- mme: int, (441, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) - mme: int, (441, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048)
- wdm: int, (128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) - wdm: int, (128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024, 1536, 2048)
- ks: int, (128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) - ks: int, (128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024, 1536, 2048)
- asio: int, (0, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024) - asio: int, (0, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024)
for example: for example:

View File

@ -63,7 +63,7 @@ class OptionBuffer : IRemote {
} ` } `
{ {
param([int]$arg) param([int]$arg)
$opts = @(128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) $opts = @(128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024, 1536, 2048)
if ($opts.Contains($arg)) { if ($opts.Contains($arg)) {
$this._wdm = $this.Setter('wdm', $arg) $this._wdm = $this.Setter('wdm', $arg)
} }
@ -79,7 +79,7 @@ class OptionBuffer : IRemote {
} ` } `
{ {
param([int]$arg) param([int]$arg)
$opts = @(128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) $opts = @(128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024, 1536, 2048)
if ($opts.Contains($arg)) { if ($opts.Contains($arg)) {
$this._ks = $this.Setter('ks', $arg) $this._ks = $this.Setter('ks', $arg)
} }