< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Dlna.TranscodingProfile
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Dlna/TranscodingProfile.cs
Line coverage
9%
Covered lines: 2
Uncovered lines: 19
Coverable lines: 21
Total lines: 159
Line coverage: 9.5%
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%
.ctor(...)100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Dlna/TranscodingProfile.cs

#LineLine coverage
 1using System;
 2using System.ComponentModel;
 3using System.Xml.Serialization;
 4using Jellyfin.Data.Enums;
 5
 6namespace MediaBrowser.Model.Dlna;
 7
 8/// <summary>
 9/// A class for transcoding profile information.
 10/// Note for client developers: Conditions defined in <see cref="CodecProfile"/> has higher priority and can override va
 11/// </summary>
 12public class TranscodingProfile
 13{
 14    /// <summary>
 15    /// Initializes a new instance of the <see cref="TranscodingProfile" /> class.
 16    /// </summary>
 17    public TranscodingProfile()
 18    {
 220119        Conditions = [];
 220120    }
 21
 22    /// <summary>
 23    /// Initializes a new instance of the <see cref="TranscodingProfile" /> class copying the values from another instan
 24    /// </summary>
 25    /// <param name="other">Another instance of <see cref="TranscodingProfile" /> to be copied.</param>
 26    public TranscodingProfile(TranscodingProfile other)
 27    {
 028        ArgumentNullException.ThrowIfNull(other);
 29
 030        Container = other.Container;
 031        Type = other.Type;
 032        VideoCodec = other.VideoCodec;
 033        AudioCodec = other.AudioCodec;
 034        Protocol = other.Protocol;
 035        EstimateContentLength = other.EstimateContentLength;
 036        EnableMpegtsM2TsMode = other.EnableMpegtsM2TsMode;
 037        TranscodeSeekInfo = other.TranscodeSeekInfo;
 038        CopyTimestamps = other.CopyTimestamps;
 039        Context = other.Context;
 040        EnableSubtitlesInManifest = other.EnableSubtitlesInManifest;
 041        MaxAudioChannels = other.MaxAudioChannels;
 042        MinSegments = other.MinSegments;
 043        SegmentLength = other.SegmentLength;
 044        BreakOnNonKeyFrames = other.BreakOnNonKeyFrames;
 045        Conditions = other.Conditions;
 046        EnableAudioVbrEncoding = other.EnableAudioVbrEncoding;
 047    }
 48
 49    /// <summary>
 50    /// Gets or sets the container.
 51    /// </summary>
 52    [XmlAttribute("container")]
 53    public string Container { get; set; } = string.Empty;
 54
 55    /// <summary>
 56    /// Gets or sets the DLNA profile type.
 57    /// </summary>
 58    [XmlAttribute("type")]
 59    public DlnaProfileType Type { get; set; }
 60
 61    /// <summary>
 62    /// Gets or sets the video codec.
 63    /// </summary>
 64    [XmlAttribute("videoCodec")]
 65    public string VideoCodec { get; set; } = string.Empty;
 66
 67    /// <summary>
 68    /// Gets or sets the audio codec.
 69    /// </summary>
 70    [XmlAttribute("audioCodec")]
 71    public string AudioCodec { get; set; } = string.Empty;
 72
 73    /// <summary>
 74    /// Gets or sets the protocol.
 75    /// </summary>
 76    [XmlAttribute("protocol")]
 77    public MediaStreamProtocol Protocol { get; set; } = MediaStreamProtocol.http;
 78
 79    /// <summary>
 80    /// Gets or sets a value indicating whether the content length should be estimated.
 81    /// </summary>
 82    [DefaultValue(false)]
 83    [XmlAttribute("estimateContentLength")]
 84    public bool EstimateContentLength { get; set; }
 85
 86    /// <summary>
 87    /// Gets or sets a value indicating whether M2TS mode is enabled.
 88    /// </summary>
 89    [DefaultValue(false)]
 90    [XmlAttribute("enableMpegtsM2TsMode")]
 91    public bool EnableMpegtsM2TsMode { get; set; }
 92
 93    /// <summary>
 94    /// Gets or sets the transcoding seek info mode.
 95    /// </summary>
 96    [DefaultValue(TranscodeSeekInfo.Auto)]
 97    [XmlAttribute("transcodeSeekInfo")]
 98    public TranscodeSeekInfo TranscodeSeekInfo { get; set; }
 99
 100    /// <summary>
 101    /// Gets or sets a value indicating whether timestamps should be copied.
 102    /// </summary>
 103    [DefaultValue(false)]
 104    [XmlAttribute("copyTimestamps")]
 105    public bool CopyTimestamps { get; set; }
 106
 107    /// <summary>
 108    /// Gets or sets the encoding context.
 109    /// </summary>
 110    [DefaultValue(EncodingContext.Streaming)]
 111    [XmlAttribute("context")]
 112    public EncodingContext Context { get; set; }
 113
 114    /// <summary>
 115    /// Gets or sets a value indicating whether subtitles are allowed in the manifest.
 116    /// </summary>
 117    [DefaultValue(false)]
 118    [XmlAttribute("enableSubtitlesInManifest")]
 119    public bool EnableSubtitlesInManifest { get; set; }
 120
 121    /// <summary>
 122    /// Gets or sets the maximum audio channels.
 123    /// </summary>
 124    [XmlAttribute("maxAudioChannels")]
 125    public string? MaxAudioChannels { get; set; }
 126
 127    /// <summary>
 128    /// Gets or sets the minimum amount of segments.
 129    /// </summary>
 130    [DefaultValue(0)]
 131    [XmlAttribute("minSegments")]
 132    public int MinSegments { get; set; }
 133
 134    /// <summary>
 135    /// Gets or sets the segment length.
 136    /// </summary>
 137    [DefaultValue(0)]
 138    [XmlAttribute("segmentLength")]
 139    public int SegmentLength { get; set; }
 140
 141    /// <summary>
 142    /// Gets or sets a value indicating whether breaking the video stream on non-keyframes is supported.
 143    /// </summary>
 144    [DefaultValue(false)]
 145    [XmlAttribute("breakOnNonKeyFrames")]
 146    public bool BreakOnNonKeyFrames { get; set; }
 147
 148    /// <summary>
 149    /// Gets or sets the profile conditions.
 150    /// </summary>
 151    public ProfileCondition[] Conditions { get; set; }
 152
 153    /// <summary>
 154    /// Gets or sets a value indicating whether variable bitrate encoding is supported.
 155    /// </summary>
 156    [DefaultValue(true)]
 157    [XmlAttribute("enableAudioVbrEncoding")]
 158    public bool EnableAudioVbrEncoding { get; set; } = true;
 159}