Skip to content

Commit

Permalink
JpegSegmentReader: increase buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
meee1 committed Jan 3, 2023
1 parent b368235 commit 3645236
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ private BufferedStream GetJpegInputStream()
{
lcInputStream = new MemoryStream(this.data);
}
return new BufferedStream(lcInputStream);
return new BufferedStream(lcInputStream, 1024 * 50);
}

/// <summary>
Expand Down

0 comments on commit 3645236

Please sign in to comment.