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.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index b002d556b..79a5a2846 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -470,12 +470,15 @@ namespace MediaBrowser.Api.Playback
/// <returns>System.Nullable{System.Int32}.</returns>
protected int? GetNumAudioChannelsParam(StreamRequest request, MediaStream audioStream)
{
- if (audioStream.Channels > 2 && request.AudioCodec.HasValue)
+ if (audioStream != null)
{
- if (request.AudioCodec.Value == AudioCodecs.Wma)
+ if (audioStream.Channels > 2 && request.AudioCodec.HasValue)
{
- // wmav2 currently only supports two channel output
- return 2;
+ if (request.AudioCodec.Value == AudioCodecs.Wma)
+ {
+ // wmav2 currently only supports two channel output
+ return 2;
+ }
}
}