소스 검색

adjust static stream buffer size

Luke Pulverenti 12 년 전
부모
커밋
f5ffd6ff0f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs

+ 1 - 1
MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs

@@ -66,7 +66,7 @@ namespace MediaBrowser.Api.Playback
                 {
                     using (var remoteStream = await _msg.Content.ReadAsStreamAsync().ConfigureAwait(false))
                     {
-                        await remoteStream.CopyToAsync(responseStream, 8192000).ConfigureAwait(false);
+                        await remoteStream.CopyToAsync(responseStream, 819200).ConfigureAwait(false);
                     }
                 }
             }