From 767cdc1f6f6a63ce997fc9476911e2c361f9d402 Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Wed, 20 Feb 2013 20:33:05 -0500 Subject: Pushing missing changes --- MediaBrowser.Common/IO/StreamDefaults.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 MediaBrowser.Common/IO/StreamDefaults.cs (limited to 'MediaBrowser.Common/IO/StreamDefaults.cs') diff --git a/MediaBrowser.Common/IO/StreamDefaults.cs b/MediaBrowser.Common/IO/StreamDefaults.cs new file mode 100644 index 0000000000..0cbf1643fb --- /dev/null +++ b/MediaBrowser.Common/IO/StreamDefaults.cs @@ -0,0 +1,19 @@ + +namespace MediaBrowser.Common.IO +{ + /// + /// Class StreamDefaults + /// + public static class StreamDefaults + { + /// + /// The default copy to buffer size + /// + public const int DefaultCopyToBufferSize = 81920; + + /// + /// The default file stream buffer size + /// + public const int DefaultFileStreamBufferSize = 4096; + } +} -- cgit v1.2.3