aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/Progressive/AudioService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-30 14:49:19 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-30 14:49:19 -0400
commite5d026c4835408e9413daff3eadc208b1417d099 (patch)
treeef6ec5a898be190b53b8f9451c53eda0c6371bc7 /MediaBrowser.Api/Playback/Progressive/AudioService.cs
parent2aea48022513a2a9e41cde1271533b322b3e6146 (diff)
fixes #528 - Support podcasts in web client
Diffstat (limited to 'MediaBrowser.Api/Playback/Progressive/AudioService.cs')
-rw-r--r--MediaBrowser.Api/Playback/Progressive/AudioService.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/MediaBrowser.Api/Playback/Progressive/AudioService.cs b/MediaBrowser.Api/Playback/Progressive/AudioService.cs
index 915ec0c10..416505575 100644
--- a/MediaBrowser.Api/Playback/Progressive/AudioService.cs
+++ b/MediaBrowser.Api/Playback/Progressive/AudioService.cs
@@ -6,9 +6,7 @@ using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Model.IO;
using ServiceStack.ServiceHost;
-using System;
using System.Collections.Generic;
-using System.IO;
namespace MediaBrowser.Api.Playback.Progressive
{
@@ -94,7 +92,7 @@ namespace MediaBrowser.Api.Playback.Progressive
{
audioTranscodeParams.Add("-ac " + channels.Value);
}
-
+
if (request.AudioSampleRate.HasValue)
{
audioTranscodeParams.Add("-ar " + request.AudioSampleRate.Value);