< Summary - Jellyfin

Information
Class: MediaBrowser.Model.LiveTv.TunerHostInfo
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/LiveTv/TunerHostInfo.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 47
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/LiveTv/TunerHostInfo.cs

#LineLine coverage
 1#nullable disable
 2#pragma warning disable CS1591
 3
 4namespace MediaBrowser.Model.LiveTv
 5{
 6    public class TunerHostInfo
 7    {
 8        public TunerHostInfo()
 9        {
 1810            AllowHWTranscoding = true;
 1811            IgnoreDts = true;
 1812            AllowStreamSharing = true;
 1813            AllowFmp4TranscodingContainer = false;
 1814            FallbackMaxStreamingBitrate = 30000000;
 1815        }
 16
 17        public string Id { get; set; }
 18
 19        public string Url { get; set; }
 20
 21        public string Type { get; set; }
 22
 23        public string DeviceId { get; set; }
 24
 25        public string FriendlyName { get; set; }
 26
 27        public bool ImportFavoritesOnly { get; set; }
 28
 29        public bool AllowHWTranscoding { get; set; }
 30
 31        public bool AllowFmp4TranscodingContainer { get; set; }
 32
 33        public bool AllowStreamSharing { get; set; }
 34
 35        public int FallbackMaxStreamingBitrate { get; set; }
 36
 37        public bool EnableStreamLooping { get; set; }
 38
 39        public string Source { get; set; }
 40
 41        public int TunerCount { get; set; }
 42
 43        public string UserAgent { get; set; }
 44
 45        public bool IgnoreDts { get; set; }
 46    }
 47}

Methods/Properties

.ctor()