Changes to WebUI:
- added support to the WebUI for 6 samples (125ms @ 48Khz) per packet in Source configuration - enhanced remote source SDP listing in Sink configuration to display remote SDP source, address and name
This commit is contained in:
parent
499bad529d
commit
71c0cc7656
@ -186,7 +186,7 @@ class SinkEdit extends Component {
|
|||||||
<select value={this.state.sdp} onChange={this.onChangeRemoteSourceSDP} disabled={this.state.useSdp ? undefined : true}>
|
<select value={this.state.sdp} onChange={this.onChangeRemoteSourceSDP} disabled={this.state.useSdp ? undefined : true}>
|
||||||
<option key='' value=''> -- select a remote source SDP -- </option>
|
<option key='' value=''> -- select a remote source SDP -- </option>
|
||||||
{
|
{
|
||||||
this.state.sources.map((v) => <option key={v.id} value={v.sdp}>{v.source + ', ' + v.name}</option>)
|
this.state.sources.map((v) => <option key={v.id} value={v.sdp}>{v.source + ' from ' + v.address + ' - ' + v.name}</option>)
|
||||||
}
|
}
|
||||||
</select>
|
</select>
|
||||||
</th>
|
</th>
|
||||||
|
@ -186,6 +186,7 @@ class SourceEdit extends Component {
|
|||||||
<th align="left"> <label>Max samples per packet </label> </th>
|
<th align="left"> <label>Max samples per packet </label> </th>
|
||||||
<th align="left">
|
<th align="left">
|
||||||
<select value={this.state.maxSamplesPerPacket} onChange={this.onChangeMaxSamplesPerPacket}>
|
<select value={this.state.maxSamplesPerPacket} onChange={this.onChangeMaxSamplesPerPacket}>
|
||||||
|
<option value="6">6 - 125μs@48Khz</option>
|
||||||
<option value="12">12 - 250μs@48Khz</option>
|
<option value="12">12 - 250μs@48Khz</option>
|
||||||
<option value="16">16 - 333μs@48Khz</option>
|
<option value="16">16 - 333μs@48Khz</option>
|
||||||
<option value="48">48 - 1ms@48Khz</option>
|
<option value="48">48 - 1ms@48Khz</option>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user