Skip to content

Commit b8e922c

Browse files
committed
Reduce the minimum sync adjustment from 10ms to 5ms.
Signed-off-by: Michael Herger <michael@herger.net>
1 parent c3cb593 commit b8e922c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Changelog9.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ <h2><a name="v9.1.0" id="v9.1.0"></a>Version 9.1.0</h2>
3333
<li>Don't re-encode lossy streams when bitrate limiting if original stream is of lower or equal bitrate already (thanks @ralphy!)</li>
3434
<li>Add prefs folder to search list for custom types/convert/strings files (macOS/Windows).</li>
3535
<li>Use online service to convert WEBP images to JPEG if needed (only works with online images).</li>
36+
<li>Change the minimum sync adjustment to 5ms (from 10ms)</li>
3637
<li><a href="https://github.com/LMS-Community/slimserver/pull/1216">#1216</a> - Reset playing position to first track once a playlist or album has ended (@ml-1)</li>
3738
<li><a href="https://github.com/LMS-Community/slimserver/pull/1245">#1245</a> - Added a Simple WebSocket client capability for 3rd Party Plugins to support this protocol (@expectingtofly)</li>
3839
<li><a href="https://github.com/LMS-Community/slimserver/pull/1356">#1356</a> - Use ORIGINALDATE tag with Flac (@jbylsma)</li>
@@ -42,6 +43,7 @@ <h2><a name="v9.1.0" id="v9.1.0"></a>Version 9.1.0</h2>
4243
<li><a href="https://github.com/LMS-Community/slimserver/pull/1399">#1399</a> - Use artwork appropriate for a Work if multiple album covers</li>
4344
<li><a href="https://github.com/LMS-Community/slimserver/pull/1487">#1487</a> - Improve CJK search support (@xxbin)</li>
4445
<li><a href="https://github.com/LMS-Community/slimserver/pull/1489">#1489</a> - Allow Replay Gain to be modified in a plugin's onStream() protocol handler routine (@SamInPgh)</li>
46+
<li><a href="https://github.com/LMS-Community/slimserver/pull/1490">#1490</a> - Fix incorrect ICY stream title sent during track change (@maniac103)</li>
4547
</ul>
4648
<br />
4749

HTML/EN/settings/player/synchronization.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
[% END %]
5353

5454
[% WRAPPER settingGroup title="SETUP_MINSYNCADJUST" desc="SETUP_MINSYNCADJUST_DESC" %]
55-
<input type=text class="stdedit sliderInput_10_1000" name="pref_minSyncAdjust" id="pref_minSyncAdjust" value="[% prefs.pref_minSyncAdjust | html %]" size="5">
55+
<input type=text class="stdedit sliderInput_5_1000" name="pref_minSyncAdjust" id="pref_minSyncAdjust" value="[% prefs.pref_minSyncAdjust | html %]" size="5">
5656
[% END %]
5757

5858
[% WRAPPER settingGroup title="SETUP_PACKETLATENCY" desc="SETUP_PACKETLATENCY_DESC" %]

Slim/Utils/Prefs.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ sub init {
323323
$prefs->setValidate({ 'validator' => 'intlimit', 'low' => 0, }, 'startDelay' );
324324
$prefs->setValidate({ 'validator' => 'intlimit', 'low' => 0, }, 'playDelay' );
325325
$prefs->setValidate({ 'validator' => 'intlimit', 'low' => 0, 'high' => 1000 }, 'packetLatency');
326-
$prefs->setValidate({ 'validator' => 'intlimit', 'low' => 10, 'high' => 1000 }, 'minSyncAdjust');
326+
$prefs->setValidate({ 'validator' => 'intlimit', 'low' => 5, 'high' => 1000 }, 'minSyncAdjust');
327327

328328
$prefs->setValidate({ 'validator' => sub { $_[1] ne '' } }, 'playername');
329329

0 commit comments

Comments
 (0)