mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
Remove redundant symphonia-mp3 feature (#7852)
# Objective - Fixes https://github.com/bevyengine/bevy/issues/7848. ## Solution - remove the symphonia-mp3 feature and add a minimp3 feature instead.
This commit is contained in:
parent
dd7a21703f
commit
acfd53a0fc
4 changed files with 6 additions and 6 deletions
|
@ -155,6 +155,9 @@ vorbis = ["bevy_internal/vorbis"]
|
|||
# WAV audio format support
|
||||
wav = ["bevy_internal/wav"]
|
||||
|
||||
# MP3 audio format support (through minimp3)
|
||||
minimp3 = ["bevy_internal/minimp3"]
|
||||
|
||||
# AAC audio format support (through symphonia)
|
||||
symphonia-aac = ["bevy_internal/symphonia-aac"]
|
||||
|
||||
|
@ -167,9 +170,6 @@ symphonia-flac = ["bevy_internal/symphonia-flac"]
|
|||
# MP4 audio format support (through symphonia)
|
||||
symphonia-isomp4 = ["bevy_internal/symphonia-isomp4"]
|
||||
|
||||
# MP3 audio format support (through symphonia)
|
||||
symphonia-mp3 = ["bevy_internal/symphonia-mp3"]
|
||||
|
||||
# OGG/VORBIS audio format support (through symphonia)
|
||||
symphonia-vorbis = ["bevy_internal/symphonia-vorbis"]
|
||||
|
||||
|
|
|
@ -35,11 +35,11 @@ mp3 = ["rodio/mp3"]
|
|||
flac = ["rodio/flac"]
|
||||
wav = ["rodio/wav"]
|
||||
vorbis = ["rodio/vorbis"]
|
||||
minimp3 = ["rodio/minimp3"]
|
||||
symphonia-aac = ["rodio/symphonia-aac"]
|
||||
symphonia-all = ["rodio/symphonia-all"]
|
||||
symphonia-flac = ["rodio/symphonia-flac"]
|
||||
symphonia-isomp4 = ["rodio/symphonia-isomp4"]
|
||||
symphonia-mp3 = ["rodio/symphonia-mp3"]
|
||||
symphonia-vorbis = ["rodio/symphonia-vorbis"]
|
||||
symphonia-wav = ["rodio/symphonia-wav"]
|
||||
# Enable using a shared stdlib for cxx on Android.
|
||||
|
|
|
@ -47,11 +47,11 @@ flac = ["bevy_audio/flac"]
|
|||
mp3 = ["bevy_audio/mp3"]
|
||||
vorbis = ["bevy_audio/vorbis"]
|
||||
wav = ["bevy_audio/wav"]
|
||||
minimp3 = ["bevy_audio/minimp3"]
|
||||
symphonia-aac = ["bevy_audio/symphonia-aac"]
|
||||
symphonia-all = ["bevy_audio/symphonia-all"]
|
||||
symphonia-flac = ["bevy_audio/symphonia-flac"]
|
||||
symphonia-isomp4 = ["bevy_audio/symphonia-isomp4"]
|
||||
symphonia-mp3 = ["bevy_audio/symphonia-mp3"]
|
||||
symphonia-vorbis = ["bevy_audio/symphonia-vorbis"]
|
||||
symphonia-wav = ["bevy_audio/symphonia-wav"]
|
||||
|
||||
|
|
|
@ -50,6 +50,7 @@ The default feature set enables most of the expected features of a game engine,
|
|||
|exr|EXR image format support|
|
||||
|flac|FLAC audio format support|
|
||||
|jpeg|JPEG image format support|
|
||||
|minimp3|MP3 audio format support (through minimp3)|
|
||||
|mp3|MP3 audio format support|
|
||||
|serialize|Enable serialization support through serde|
|
||||
|subpixel_glyph_atlas|Enable rendering of font glyphs using subpixel accuracy|
|
||||
|
@ -57,7 +58,6 @@ The default feature set enables most of the expected features of a game engine,
|
|||
|symphonia-all|AAC, FLAC, MP3, MP4, OGG/VORBIS, and WAV audio formats support (through symphonia)|
|
||||
|symphonia-flac|FLAC audio format support (through symphonia)|
|
||||
|symphonia-isomp4|MP4 audio format support (through symphonia)|
|
||||
|symphonia-mp3|MP3 audio format support (through symphonia)|
|
||||
|symphonia-vorbis|OGG/VORBIS audio format support (through symphonia)|
|
||||
|symphonia-wav|WAV audio format support (through symphonia)|
|
||||
|tga|TGA image format support|
|
||||
|
|
Loading…
Reference in a new issue