Skip to content

Commit

Permalink
Fix the cfg options
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Oct 16, 2024
1 parent 88082b3 commit e101a4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/store/re_video/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ fn main() {
cfg_aliases::cfg_aliases! {
native: { not(target_arch = "wasm32") },
linux_arm64: { all(target_os = "linux", target_arch = "aarch64") },
with_dav1d: { all(native, not(linux_arm64)) }, // https://github.com/rerun-io/rerun/issues/7755
with_dav1d: { all(feature = "av1", native, not(linux_arm64)) }, // https://github.com/rerun-io/rerun/issues/7755
}
}
1 change: 1 addition & 0 deletions crates/store/re_video/src/decode/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ pub fn new_decoder(
);

match &video.config.stsd.contents {
#[cfg(feature = "av1")]
re_mp4::StsdBoxContent::Av01(_av01_box) => {
#[cfg(linux_arm64)]
{
Expand Down

0 comments on commit e101a4e

Please sign in to comment.