aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-07-27 13:11:25 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-07-27 13:11:25 -0400
commit4f32b57e58b0568c7c0112146e87633c965efe88 (patch)
tree5975fc73f258a28b00776f093537bb8f703a9d94 /MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
parent308233ceba2c1cd89678c91ab8f5ce2363c79e3d (diff)
update buffer sizes
Diffstat (limited to 'MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs')
-rw-r--r--MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
index e029d4e99..7de309699 100644
--- a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
+++ b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
@@ -257,8 +257,7 @@ namespace MediaBrowser.Api.Playback.Hls
return await GetSegmentResult(state, playlistPath, segmentPath, requestedIndex, job, cancellationToken).ConfigureAwait(false);
}
- // 256k
- private const int BufferSize = 262144;
+ private const int BufferSize = 81920;
private long GetStartPositionTicks(StreamState state, int requestedIndex)
{