File tree 5 files changed +9
-2
lines changed
5 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,9 @@ av1 = ["dep:dav1d"]
31
31
32
32
# # Enable faster native video decoding with assembly.
33
33
# # You need to install [nasm](https://nasm.us/) to compile with this feature.
34
- nasm = [" dav1d?/default" ] # The default feature set of dav1d has asm enabled
34
+ # TODO(#7671): this feature flag currently does nothing
35
+ # nasm = ["dav1d?/default"] # The default feature set of dav1d has asm enabled
36
+ nasm = [] # # TODO(#7671): fix Linux build
35
37
36
38
[dependencies ]
37
39
re_log.workspace = true
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ impl SyncDav1dDecoder {
16
16
pub fn new ( ) -> Result < Self > {
17
17
re_tracing:: profile_function!( ) ;
18
18
19
- if !cfg ! ( feature = "nasm" ) {
19
+ // TODO(#7671): enable this warning again when the `nasm` feature actually does something
20
+ #[ allow( clippy:: overly_complex_bool_expr) ]
21
+ if false && !cfg ! ( feature = "nasm" ) {
20
22
re_log:: warn_once!(
21
23
"NOTE: native AV1 video decoder is running extra slowly. \
22
24
Speed it up by compiling Rerun with the `nasm` feature enabled. \
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ default = ["native_viewer", "web_viewer"]
43
43
44
44
# # Enable faster native video decoding with assembly.
45
45
# # You need to install [nasm](https://nasm.us/) to compile with this feature.
46
+ # TODO(#7671): this feature flag currently does nothing
46
47
nasm = [" rerun/nasm" ]
47
48
48
49
# # Support spawning a native viewer.
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ log = ["dep:env_logger", "dep:log"]
73
73
74
74
# # Enable faster native video decoding with assembly.
75
75
# # You need to install [nasm](https://nasm.us/) to compile with this feature.
76
+ # TODO(#7671): this feature flag currently does nothing
76
77
nasm = [" re_video/nasm" ]
77
78
78
79
# # Support spawning a native viewer.
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ extension-module = ["pyo3/extension-module"]
30
30
31
31
# # Enable faster native video decoding with assembly.
32
32
# # You need to install [nasm](https://nasm.us/) to compile with this feature.
33
+ # TODO(#7671): this feature flag currently does nothing
33
34
nasm = [" re_video/nasm" ]
34
35
35
36
# # Support serving a web viewer over HTTP with `serve()`.
You can’t perform that action at this time.
0 commit comments