Skip to content

Commit

Permalink
Remove strict property for VVC decoder
Browse files Browse the repository at this point in the history
VVC native decoder removed experimental flag in master branch

Signed-off-by: Wang Hangjie <[email protected]>
  • Loading branch information
Hangjie22Coder authored and uartie committed Sep 9, 2024
1 parent fea3de0 commit fdbf05e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion test/ffmpeg-vaapi/decode/10bit/vvc.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def before(self):
caps = platform.get_caps("decode", "vvc_10"),
ffdecoder = "vvc",
metric = dict(type = "ssim", miny = 1.0, minu = 1.0, minv = 1.0), # default metric
strict = -2, # Currently, VVC decoder is experimental. Enable it with strict.
)
super().before()

Expand Down
3 changes: 1 addition & 2 deletions test/ffmpeg-vaapi/decode/vvc.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ def before(self):
caps = platform.get_caps("decode", "vvc_8"),
ffdecoder = "vvc",
metric = dict(type = "ssim", miny = 1.0, minu = 1.0, minv = 1.0), # default metric
strict = -2, # Currently, VVC decoder is experimental. Enable it with strict.
)
super().before()

@slash.parametrize(("case"), sorted(spec.keys()))
def test(self, case):
vars(self).update(spec[case].copy())
self.case = case
self.decode()
self.decode()

0 comments on commit fdbf05e

Please sign in to comment.