Skip to content

Commit 19ec621

Browse files
committed
Fix web build
1 parent a873535 commit 19ec621

File tree

1 file changed

+4
-2
lines changed
  • crates/store/re_video/src/decode

1 file changed

+4
-2
lines changed

crates/store/re_video/src/decode/mod.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
#[cfg(not(target_arch = "wasm32"))]
55
pub mod av1;
66

7+
#[cfg(not(target_arch = "wasm32"))]
78
pub mod async_decoder;
89

10+
#[cfg(not(target_arch = "wasm32"))]
11+
pub use async_decoder::AsyncDecoder;
12+
913
use std::sync::atomic::AtomicBool;
1014

1115
use crate::Time;
1216

13-
pub use async_decoder::AsyncDecoder;
14-
1517
#[derive(thiserror::Error, Debug)]
1618
pub enum Error {
1719
#[cfg(feature = "av1")]

0 commit comments

Comments
 (0)