memorysafety / rav1d

An AV1 decoder in Rust.
BSD 2-Clause "Simplified" License
346 stars 22 forks source link

Replace unnecessary `usize::try_from`s with `as` casts #1344

Open kkysen opened 2 months ago

kkysen commented 2 months ago

Replace usize::try_froms that were there to avoid overflow for lengths with unchecked as casts, as we now bounds check, and overflow here is fine.