diff options
author | rakslice <rakslice@gmail.com> | 2024-09-27 14:32:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 21:32:39 +0000 |
commit | 8f4ea14680c7865d8ffac10a9174205d1d84ada7 (patch) | |
tree | 7f073f4054908ddd1a7e5ddf7b13c5974f547a1a /test/test_utils.py | |
parent | a1b4ac2b8ed8e6eaa56044d439f1e0d00c2ba218 (diff) |
Fix format sorting bug with vp9.2 vcodec (#10884)
Authored by: rakslice
Diffstat (limited to 'test/test_utils.py')
-rw-r--r-- | test/test_utils.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index a2b459352..4f5fa1e10 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -921,6 +921,11 @@ class TestUtil(unittest.TestCase): 'acodec': 'none', 'dynamic_range': 'HDR10', }) + self.assertEqual(parse_codecs('vp09.02.50.10.01.09.18.09.00'), { + 'vcodec': 'vp09.02.50.10.01.09.18.09.00', + 'acodec': 'none', + 'dynamic_range': 'HDR10', + }) self.assertEqual(parse_codecs('av01.0.12M.10.0.110.09.16.09.0'), { 'vcodec': 'av01.0.12M.10.0.110.09.16.09.0', 'acodec': 'none', |