Skip to content

Commit c3a4d15

Browse files
author
Stefan Machmeier
committed
Turn filter by hash
1 parent 9fe01e3 commit c3a4d15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

heifip/layers/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def read_packets_file(self, file: str, preprocessing_type: PacketProcessorType)
6767
# In case packet returns None
6868
if processed_packet != None:
6969
if not processed_packet.hash in self.hash_dict:
70-
self.hash_dict.add(processed_packet.hash)
70+
# TODO Turn off/on hash filtering
71+
# self.hash_dict.add(processed_packet.hash)
7172
packets.append(processed_packet)
7273
return packets
7374

0 commit comments

Comments
 (0)