mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
commit
b7db304dde
@ -35,9 +35,11 @@ class Gif(KaitaiStruct):
|
|||||||
self.global_color_table = self._root.ColorTable(io, self, self._root)
|
self.global_color_table = self._root.ColorTable(io, self, self._root)
|
||||||
|
|
||||||
self.blocks = []
|
self.blocks = []
|
||||||
while not self._io.is_eof():
|
while True:
|
||||||
self.blocks.append(self._root.Block(self._io, self, self._root))
|
_ = self._root.Block(self._io, self, self._root)
|
||||||
|
self.blocks.append(_)
|
||||||
|
if ((self._io.is_eof()) or (_.block_type == self._root.BlockType.end_of_file)) :
|
||||||
|
break
|
||||||
|
|
||||||
class ImageData(KaitaiStruct):
|
class ImageData(KaitaiStruct):
|
||||||
def __init__(self, _io, _parent=None, _root=None):
|
def __init__(self, _io, _parent=None, _root=None):
|
||||||
|
Loading…
Reference in New Issue
Block a user