-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
269acdb
commit 42996d5
Showing
3 changed files
with
4 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Fluster - testing framework for decoders conformance | ||
# Copyright (C) 2020, Fluendo, S.A. | ||
# Copyright (C) 2020-2024, Fluendo, S.A. | ||
# Author: Pablo Marcos Oltra <[email protected]>, Fluendo, S.A. | ||
# Author: Andoni Morales Alastruey <[email protected]>, Fluendo, S.A. | ||
# Author: Ruben Sanchez Sanchez <[email protected]>, Fluendo, S.A. | ||
# | ||
# This library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public License | ||
|
@@ -35,7 +36,6 @@ | |
# pylint: enable=wrong-import-position | ||
|
||
BASE_URL = "https://www.itu.int/" | ||
H266_URL = BASE_URL + "wftp3/av-arch/jvet-site/bitstream_exchange/VVC/draft_conformance/" | ||
H265_URL = BASE_URL + "wftp3/av-arch/jctvc-site/bitstream_exchange/draft_conformance/" | ||
BITSTREAM_EXTS = ( | ||
".bin", | ||
|
@@ -287,12 +287,3 @@ def _fill_checksum_h265(self, test_vector, dest_dir): | |
True | ||
) | ||
generator.generate(not args.skip_download, args.jobs) | ||
|
||
generator = JCTVCGenerator( | ||
'draft6', | ||
'JVET-VVC_draft6', | ||
Codec.H266, | ||
'JVET VVC draft6', | ||
H266_URL | ||
) | ||
generator.generate(not args.skip_download, args.jobs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Fluster - testing framework for decoders conformance | ||
# Copyright (C) 2024, Fluendo, S.A. | ||
# Copyright (C) 2020-2024, Fluendo, S.A. | ||
# Author: Ruben Sanchez Sanchez <[email protected]>, Fluendo, S.A. | ||
# | ||
# This library is free software; you can redistribute it and/or | ||
|