aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.Api/Playback/Hls/VideoHlsService.cs10
-rw-r--r--MediaBrowser.Controller/Session/SessionInfo.cs14
-rw-r--r--SharedVersion.cs2
3 files changed, 25 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
index e32970be5..d11e6f215 100644
--- a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
+++ b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
@@ -75,6 +75,16 @@ namespace MediaBrowser.Api.Playback.Hls
/// <returns>System.String.</returns>
protected override string GetVideoArguments(StreamState state)
{
+ if (!state.IsOutputVideo)
+ {
+ return string.Empty;
+ }
+ // No known video stream
+ if (state.VideoStream == null)
+ {
+ return string.Empty;
+ }
+
var codec = EncodingHelper.GetVideoEncoder(state, ApiEntryPoint.Instance.GetEncodingOptions());
var args = "-codec:v:0 " + codec;
diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs
index f590d9aec..11a9ceac4 100644
--- a/MediaBrowser.Controller/Session/SessionInfo.cs
+++ b/MediaBrowser.Controller/Session/SessionInfo.cs
@@ -203,6 +203,11 @@ namespace MediaBrowser.Controller.Session
public void StartAutomaticProgress(ITimerFactory timerFactory, PlaybackProgressInfo progressInfo)
{
+ if (_disposed)
+ {
+ return;
+ }
+
lock (_progressLock)
{
_lastProgressInfo = progressInfo;
@@ -223,6 +228,11 @@ namespace MediaBrowser.Controller.Session
private async void OnProgressTimerCallback(object state)
{
+ if (_disposed)
+ {
+ return;
+ }
+
var progressInfo = _lastProgressInfo;
if (progressInfo == null)
{
@@ -274,8 +284,12 @@ namespace MediaBrowser.Controller.Session
}
}
+ private bool _disposed = false;
+
public void Dispose()
{
+ _disposed = true;
+
StopAutomaticProgress();
_sessionManager = null;
}
diff --git a/SharedVersion.cs b/SharedVersion.cs
index 42b8a9abb..82630841c 100644
--- a/SharedVersion.cs
+++ b/SharedVersion.cs
@@ -1,3 +1,3 @@
using System.Reflection;
-[assembly: AssemblyVersion("3.2.24.1")]
+[assembly: AssemblyVersion("3.2.25.2")]