Skip to content

Commit cf7b31e

Browse files
committed
symphonia: Enable SIMD optimizations by default.
1 parent 7b85918 commit cf7b31e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

symphonia-check/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ version.workspace = true
1515
clap = "3.1.0"
1616
log = { version = "0.4", features = ["release_max_level_info"] }
1717
pretty_env_logger = "0.4"
18-
symphonia = { version = "0.6.0", path = "../symphonia", features = ["all", "opt-simd"] }
18+
symphonia = { version = "0.6.0", path = "../symphonia", features = ["all"] }

symphonia-play/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ clap = "3.1.0"
2424
lazy_static = "1.4.0"
2525
log = { version = "0.4", features = ["release_max_level_info"] }
2626
pretty_env_logger = "0.4"
27-
symphonia = { version = "0.6.0", path = "../symphonia", features = ["all", "opt-simd"] }
27+
symphonia = { version = "0.6.0", path = "../symphonia", features = ["all"] }
2828

2929
[target.'cfg(target_os = "linux")'.dependencies]
3030
libpulse-binding = "2.5.0"

symphonia/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ all-features = true
1919

2020
[features]
2121
# Only royalty-free open standard codecs and formats are enabled by default.
22-
default = ["all-meta", "adpcm", "flac", "mkv", "ogg", "pcm", "vorbis", "wav"]
22+
default = ["opt-simd", "all-meta", "adpcm", "flac", "mkv", "ogg", "pcm", "vorbis", "wav"]
2323

2424
# Feature flags to enable specific codecs, container, and standalone metadata formats.
2525
aac = ["dep:symphonia-codec-aac"]

0 commit comments

Comments
 (0)