2
0
Эх сурвалжийг харах

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 жил өмнө
parent
commit
7ad432be23

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

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