Codebase list rust-stfu8 / da75b88
v-frame: update to latest upstream release Sebastian Ramacher 1 year, 5 months ago
4 changed file(s) with 31 addition(s) and 25 deletion(s). Raw diff Collapse all Expand all
0 rust-v-frame (0.3.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package v_frame 0.3.1 from crates.io using debcargo 2.6.0
3
4 -- Sebastian Ramacher <sramacher@debian.org> Sun, 04 Dec 2022 20:21:42 +0100
5
06 rust-v-frame (0.2.5-1) unstable; urgency=medium
17
28 * Package v_frame 0.2.5 from crates.io using debcargo 2.5.0
00 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
11 Upstream-Name: v_frame
22 Upstream-Contact: Luca Barbato <lu_zero@gentoo.org>
3 Source: https://github.com/xiph/rav1e/
3 Source: https://github.com/rust-av/v_frame
44
55 Files: *
66 Copyright: 2017-2021, the rav1e contributors
00 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
11 Upstream-Name: v_frame
22 Upstream-Contact: Luca Barbato <lu_zero@gentoo.org>
3 Source: https://github.com/xiph/rav1e/
3 Source: https://github.com/rust-av/v_frame
44
55 Files: *
66 Copyright: FIXME (overlay) UNKNOWN-YEARS Luca Barbato <lu_zero@gentoo.org>
1111 be correct information so you should review and fix this before uploading to
1212 the archive.
1313
14 Files: ./LICENSE
15 Copyright: 2017-2021, the rav1e contributors
14 Files: LICENSE
15 Copyright: 2017-2022, the rav1e contributors
1616 License: UNKNOWN-LICENSE; FIXME (overlay)
1717 Comment:
1818 FIXME (overlay): These notices are extracted from files. Please review them
1919 before uploading to the archive.
2020
21 Files: ./src/frame.rs
21 Files: src/frame.rs
2222 Copyright: 2018-2020, The rav1e contributors. All rights reserved
2323 License: UNKNOWN-LICENSE; FIXME (overlay)
2424 Comment:
2525 FIXME (overlay): These notices are extracted from files. Please review them
2626 before uploading to the archive.
2727
28 Files: ./src/lib.rs
28 Files: src/lib.rs
2929 Copyright: 2020, The rav1e contributors. All rights reserved
3030 License: UNKNOWN-LICENSE; FIXME (overlay)
3131 Comment:
3232 FIXME (overlay): These notices are extracted from files. Please review them
3333 before uploading to the archive.
3434
35 Files: ./src/math.rs
35 Files: src/math.rs
3636 Copyright: 2017-2020, The rav1e contributors. All rights reserved
3737 License: UNKNOWN-LICENSE; FIXME (overlay)
3838 Comment:
3939 FIXME (overlay): These notices are extracted from files. Please review them
4040 before uploading to the archive.
4141
42 Files: ./src/pixel.rs
42 Files: src/pixel.rs
4343 Copyright: 2017-2021, The rav1e contributors. All rights reserved
4444 License: UNKNOWN-LICENSE; FIXME (overlay)
4545 Comment:
4646 FIXME (overlay): These notices are extracted from files. Please review them
4747 before uploading to the archive.
4848
49 Files: ./src/plane.rs
49 Files: src/plane.rs
5050 Copyright: 2017-2021, The rav1e contributors. All rights reserved
5151 License: UNKNOWN-LICENSE; FIXME (overlay)
5252 Comment:
22 Last-Update: 2022-06-23
33 --- a/Cargo.toml
44 +++ b/Cargo.toml
5 @@ -32,19 +32,10 @@
6 [dependencies.rayon]
7 version = "1.0"
5 @@ -34,19 +34,10 @@
6 [dependencies.num-traits]
7 version = "0.2"
88
99 -[dependencies.rust_hawktracer]
1010 -version = "0.7.0"
2424 -wasm = ["wasm-bindgen"]
2525 --- a/src/plane.rs
2626 +++ b/src/plane.rs
27 @@ -10,7 +10,6 @@
28 use rayon::current_num_threads;
29 use rayon::iter::ParallelIterator;
30 use rayon::prelude::*;
27 @@ -8,7 +8,6 @@
28 // PATENTS file, you can obtain it at www.aomedia.org/license/patent.
29
30 use debug_unreachable::debug_unreachable;
3131 -use rust_hawktracer::*;
32 use std::cmp;
3332 use std::marker::PhantomData;
3433 use std::mem;
35 @@ -559,7 +558,6 @@
36 /// Downscales the source plane by a factor of `scale`, writing the result to `in_plane` (not padded)
37 ///
38 /// `in_plane`'s width and height must be sufficient for `scale`.
39 - #[hawktracer(downscale)]
40 pub fn downscale_in_place(&self, scale: usize, in_plane: &mut Plane<T>) {
41 let src = self;
42 let box_pixels = scale * scale;
34 use std::ops::{Index, IndexMut, Range};
35 @@ -602,7 +601,6 @@
36 /// Downscales the source plane by a factor of `scale`, writing the result to `in_plane` (not padded)
37 ///
38 /// `in_plane`'s width and height must be sufficient for `scale`.
39 - #[hawktracer(downscale_in_place)]
40 pub fn downscale_in_place<const SCALE: usize>(&self, in_plane: &mut Plane<T>) {
41 // SAFETY: Bounds checks have been removed for performance reasons
42 unsafe {