media: fix filter dict in PNG

This commit is contained in:
p1-bmu 2022-01-21 12:01:25 +01:00
parent 356c5db3d8
commit b6e12c6eac
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class IHDR(Envelope):
Uint8('depth', desc='bit depth'),
Uint8('color', desc='color type', dic=_Colour_dict),
Uint8('comp', desc='compression method', dic=_CompMeth_dict),
Uint8('filter', desc='filter method', dic=_InterMeth_dict),
Uint8('filter', desc='filter method', dic=_FilterMeth_dict),
Uint8('interlace', desc='interlace method', dic=_InterMeth_dict)
)