diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-07-27 13:11:25 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-07-27 13:11:25 -0400 |
| commit | 4f32b57e58b0568c7c0112146e87633c965efe88 (patch) | |
| tree | 5975fc73f258a28b00776f093537bb8f703a9d94 /MediaBrowser.Common/IO/StreamDefaults.cs | |
| parent | 308233ceba2c1cd89678c91ab8f5ce2363c79e3d (diff) | |
update buffer sizes
Diffstat (limited to 'MediaBrowser.Common/IO/StreamDefaults.cs')
| -rw-r--r-- | MediaBrowser.Common/IO/StreamDefaults.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Common/IO/StreamDefaults.cs b/MediaBrowser.Common/IO/StreamDefaults.cs index 450d293d4..8b16d89b3 100644 --- a/MediaBrowser.Common/IO/StreamDefaults.cs +++ b/MediaBrowser.Common/IO/StreamDefaults.cs @@ -9,11 +9,11 @@ namespace MediaBrowser.Common.IO /// <summary> /// The default copy to buffer size /// </summary> - public const int DefaultCopyToBufferSize = 262144; + public const int DefaultCopyToBufferSize = 81920; /// <summary> /// The default file stream buffer size /// </summary> - public const int DefaultFileStreamBufferSize = 262144; + public const int DefaultFileStreamBufferSize = 81920; } } |
