diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-09 11:15:22 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-09 11:15:22 -0400 |
| commit | 8e9571e828153b9026242ca3e52ad4d0ee902774 (patch) | |
| tree | e0b2af0abe5c072c24aa76d01c2bb1056b85bc63 /MediaBrowser.Api/HttpHandlers/AudioHandler.cs | |
| parent | 86f162fd7c57b3b7ea82a84c6f7464c6f2f4bb54 (diff) | |
Added GetVideoStreamUrl to ApiClient
Diffstat (limited to 'MediaBrowser.Api/HttpHandlers/AudioHandler.cs')
| -rw-r--r-- | MediaBrowser.Api/HttpHandlers/AudioHandler.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Api/HttpHandlers/AudioHandler.cs b/MediaBrowser.Api/HttpHandlers/AudioHandler.cs index 2ce56c1fd..b2c0213d5 100644 --- a/MediaBrowser.Api/HttpHandlers/AudioHandler.cs +++ b/MediaBrowser.Api/HttpHandlers/AudioHandler.cs @@ -1,7 +1,6 @@ using MediaBrowser.Common.Net.Handlers;
using MediaBrowser.Model.DTO;
using MediaBrowser.Model.Entities;
-using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
@@ -27,7 +26,7 @@ namespace MediaBrowser.Api.HttpHandlers {
get
{
- return new AudioOutputFormats[] { AudioOutputFormats.Aac, AudioOutputFormats.Flac, AudioOutputFormats.Wav, AudioOutputFormats.Wma };
+ return new AudioOutputFormats[] { AudioOutputFormats.Aac, AudioOutputFormats.Flac, AudioOutputFormats.Wma };
}
}
|
