소스 검색

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()
         {