aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index b2b37a1ac..c6a7470b7 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -426,11 +426,6 @@ namespace MediaBrowser.Api.Playback
{
if (audioStream.Channels > 2 && request.AudioCodec.HasValue)
{
- if (request.AudioCodec.Value == AudioCodecs.Aac)
- {
- // libvo_aacenc currently only supports two channel output
- return 2;
- }
if (request.AudioCodec.Value == AudioCodecs.Wma)
{
// wmav2 currently only supports two channel output
@@ -465,7 +460,7 @@ namespace MediaBrowser.Api.Playback
{
if (codec == AudioCodecs.Aac)
{
- return "libvo_aacenc";
+ return "aac";
}
if (codec == AudioCodecs.Mp3)
{