Bugfix/AV1 (#68)

- AV1 CF now correctly parses releases encoded in AV1
- Tests added to verify

---------

Co-authored-by: wheat4714.usedwhensimpleloginisbanned@gmail.com <wheat4714.usedwhensimpleloginisbanned@gmail.com>
Co-authored-by: santiagosayshey <sayheysantiago@proton.me>
This commit is contained in:
wheat4714
2024-05-19 03:45:39 +01:00
committed by GitHub
parent 4cb1b2b7cd
commit c9c2bd4e8e
18 changed files with 143 additions and 128 deletions

View File

@@ -2,9 +2,9 @@ import sys
from roku import roku
from h265verify import h265
from qxr import qxr
from utr import utr
from taoe import taoe
from ralphy import Ralphy
from av1 import AV1
# ... import other test functions
# ANSI escape codes for colors
@@ -19,9 +19,9 @@ def run_tests():
("ROKU", roku),
("h265 Verified Groups", h265),
("QxR Groups", qxr),
("UTR Groups", utr),
("TAoE Groups", taoe),
("Ralphy", Ralphy)
("Ralphy", Ralphy),
("AV1", AV1),
# ... add other test functions
]