浏览代码

Default EnableAudioVbrEncoding to true in TranscodingProfile

This will match the old behavior when user takes no action for clients

Signed-off-by: gnattu <gnattuoc@me.com>
gnattu 1 年之前
父节点
当前提交
7ad432be23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MediaBrowser.Model/Dlna/TranscodingProfile.cs

+ 1 - 1
MediaBrowser.Model/Dlna/TranscodingProfile.cs

@@ -72,7 +72,7 @@ namespace MediaBrowser.Model.Dlna
 
         [DefaultValue(true)]
         [XmlAttribute("enableAudioVbrEncoding")]
-        public bool EnableAudioVbrEncoding { get; set; }
+        public bool EnableAudioVbrEncoding { get; set; } = true;
 
         public string[] GetAudioCodecs()
         {