aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-22 08:44:49 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-22 08:44:49 -0400
commit3cd8d64784dafff2d13ec00ec9baf4589418f1a3 (patch)
treefc070d225e5d87bf3854d7b7fbd8cc85bcfff904
parent4112c9a0e05cf695afeaaab71a8b0efa5f18b306 (diff)
fixed aac
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 7f3c7ca9e..c6a7470b7 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -460,7 +460,7 @@ namespace MediaBrowser.Api.Playback
{
if (codec == AudioCodecs.Aac)
{
- return "libvo_aacenc";
+ return "aac";
}
if (codec == AudioCodecs.Mp3)
{