소스 검색

Added aac to the AudioResolver

LukePulverenti Luke Pulverenti luke pulverenti 12 년 전
부모
커밋
86f162fd7c
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      MediaBrowser.Controller/Resolvers/AudioResolver.cs
  2. 1 0
      MediaBrowser.Model/DTO/AudioOutputFormats.cs

+ 1 - 0
MediaBrowser.Controller/Resolvers/AudioResolver.cs

@@ -36,6 +36,7 @@ namespace MediaBrowser.Controller.Resolvers
             {
                 case ".mp3":
                 case ".wma":
+                case ".aac":
                 case ".acc":
                 case ".flac":
                 case ".m4a":

+ 1 - 0
MediaBrowser.Model/DTO/AudioOutputFormats.cs

@@ -3,6 +3,7 @@ namespace MediaBrowser.Model.DTO
 {
     /// <summary>
     /// These are the audio output formats that the api is cabaple of streaming
+    /// This does not limit the inputs, only the outputs.
     /// </summary>
     public enum AudioOutputFormats
     {