I have encountered a problem with DeflateStream -- some of the data is being written repeatedly, to the end.
Here is the code:
Dim bytesin As Byte() = ... ' An array of compressed bytes
Dim bytesout As Byte()
Dim count As Integer
Using ms As New MemoryStream(bytesin)
Using ds As New Compression.DeflateStream(ms, Compression.CompressionMode.Decompress)
Using outputStream As New MemoryStream()
Dim buffer As Byte() = New Byte(1024) {}
While InlineAssignHelper(count, ds.Read(buffer, 0, buffer.Length)) > 0
outputStream.Write(buffer, 0, count)
End While
bytesout = outputStream.ToArray
End Using
End Using
End Using
Dim fs As FileStream = File.OpenWrite("fws.swf")
fs.Write(bytesout, 0, bytesout.Length)
fs.Flush()
fs.Close()
Private Function InlineAssignHelper(Of T)(ByRef target As T, ByVal value As T) As T
target = value
Return value
End Function
How could you explain this?
http://i.stack.imgur.com/d2ffF.png
UPDATE
I tried with Ionic.Zlib.ZlibStream and Ionic.Zlib.DeflateStream and I have got the same strange result.
InlineAssignHelper()is an helper function which gives an equivalent to theif ((myvar = (testme)) > 0)C# syntax.bufferhas a size of 1024 bytes; why does it repeat at a random value? That's the question! :) – Velcro Aug 31 '11 at 4:22buffersize, repeats appears at the same file offset. – Velcro Aug 31 '11 at 4:28