浏览代码

Add build option for MP1/MP2 audio format support.

Enabling this adds 3.5k to the template size (Win/64bits).

Co-authored-by: Riteo <[email protected]>
Co-authored-by: Rémi Verschelde <[email protected]>
Ithamar R. Adema 2 年之前
父节点
当前提交
36ff0591f2
共有 5 个文件被更改,包括 17 次插入2 次删除
  1. 2 1
      SConstruct
  2. 3 0
      modules/minimp3/SCsub
  3. 0 1
      modules/minimp3/audio_stream_mp3.cpp
  4. 8 0
      modules/minimp3/config.py
  5. 4 0
      modules/minimp3/resource_importer_mp3.cpp

+ 2 - 1
SConstruct

@@ -375,6 +375,8 @@ for name, path in modules_detected.items():
     else:
         enabled = False
 
+    opts.Add(BoolVariable("module_" + name + "_enabled", "Enable module '%s'" % (name,), enabled))
+
     # Add module-specific options.
     try:
         for opt in config.get_opts(selected_platform):
@@ -384,7 +386,6 @@ for name, path in modules_detected.items():
 
     sys.path.remove(path)
     sys.modules.pop("config")
-    opts.Add(BoolVariable("module_" + name + "_enabled", "Enable module '%s'" % (name,), enabled))
 
 methods.write_modules(modules_detected)
 

+ 3 - 0
modules/minimp3/SCsub

@@ -13,5 +13,8 @@ if not env.msvc:
 else:
     env_minimp3.Prepend(CPPPATH=[thirdparty_dir])
 
+if not env["minimp3_extra_formats"]:
+    env_minimp3.Append(CPPDEFINES=["MINIMP3_ONLY_MP3"])
+
 # Godot source files
 env_minimp3.add_source_files(env.modules_sources, "*.cpp")

+ 0 - 1
modules/minimp3/audio_stream_mp3.cpp

@@ -28,7 +28,6 @@
 /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
 /**************************************************************************/
 
-#define MINIMP3_ONLY_MP3
 #define MINIMP3_FLOAT_OUTPUT
 #define MINIMP3_IMPLEMENTATION
 #define MINIMP3_NO_STDIO

+ 8 - 0
modules/minimp3/config.py

@@ -2,6 +2,14 @@ def can_build(env, platform):
     return True
 
 
+def get_opts(platform):
+    from SCons.Variables import BoolVariable
+
+    return [
+        BoolVariable("minimp3_extra_formats", "Build minimp3 with MP1/MP2 decoding support", False),
+    ]
+
+
 def configure(env):
     pass
 

+ 4 - 0
modules/minimp3/resource_importer_mp3.cpp

@@ -47,6 +47,10 @@ String ResourceImporterMP3::get_visible_name() const {
 }
 
 void ResourceImporterMP3::get_recognized_extensions(List<String> *p_extensions) const {
+#ifndef MINIMP3_ONLY_MP3
+	p_extensions->push_back("mp1");
+	p_extensions->push_back("mp2");
+#endif
 	p_extensions->push_back("mp3");
 }