You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 30, 2023. It is now read-only.
The crate builds all enums as Rust enums (.rustified_enum("*")), but AVRounding is expected to be OR-ed together like AV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX, which is not allowed (and UB if you tried anyway).
It could use the bitflags crate instead.
The text was updated successfully, but these errors were encountered:
The crate builds all enums as Rust enums (
.rustified_enum("*")
), butAVRounding
is expected to be OR-ed together likeAV_ROUND_NEAR_INF|AV_ROUND_PASS_MINMAX
, which is not allowed (and UB if you tried anyway).It could use the bitflags crate instead.
The text was updated successfully, but these errors were encountered: