aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authortimminator <150205162+timminator@users.noreply.github.com>2025-04-03 17:18:00 +0200
committerGitHub <noreply@github.com>2025-04-03 09:18:00 -0600
commitd1ed6593ad36c360df734c0ad0847d10c9c544be (patch)
treebe95a6a917bda5872f2b351a5b3464db39fe2b2f /MediaBrowser.Model
parent596b63551196f7ce9bcb8d8de617d3c79201a375 (diff)
Make ReadInputAtNativeFramerate configurable for M3U tuner (#13773)
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/LiveTv/TunerHostInfo.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Model/LiveTv/TunerHostInfo.cs b/MediaBrowser.Model/LiveTv/TunerHostInfo.cs
index a355387b1..b70333bce 100644
--- a/MediaBrowser.Model/LiveTv/TunerHostInfo.cs
+++ b/MediaBrowser.Model/LiveTv/TunerHostInfo.cs
@@ -9,6 +9,7 @@ namespace MediaBrowser.Model.LiveTv
{
AllowHWTranscoding = true;
IgnoreDts = true;
+ ReadAtNativeFramerate = false;
AllowStreamSharing = true;
AllowFmp4TranscodingContainer = false;
FallbackMaxStreamingBitrate = 30000000;
@@ -43,5 +44,7 @@ namespace MediaBrowser.Model.LiveTv
public string UserAgent { get; set; }
public bool IgnoreDts { get; set; }
+
+ public bool ReadAtNativeFramerate { get; set; }
}
}