mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
don't compress wav files by default
This commit is contained in:
parent
1ef4fd333d
commit
e34cc4bb76
@ -1738,7 +1738,7 @@ class Packager:
|
|||||||
|
|
||||||
# Binary files that are copied (and compressed) without
|
# Binary files that are copied (and compressed) without
|
||||||
# processing.
|
# processing.
|
||||||
self.binaryExtensions = [ 'ttf', 'wav', 'mid' ]
|
self.binaryExtensions = [ 'ttf', 'mid' ]
|
||||||
|
|
||||||
# Files that represent an executable or shared library.
|
# Files that represent an executable or shared library.
|
||||||
if self.platform.startswith('win'):
|
if self.platform.startswith('win'):
|
||||||
@ -1773,7 +1773,9 @@ class Packager:
|
|||||||
|
|
||||||
# Binary files that are considered uncompressible, and are
|
# Binary files that are considered uncompressible, and are
|
||||||
# copied without compression.
|
# copied without compression.
|
||||||
self.uncompressibleExtensions = [ 'mp3', 'ogg' ]
|
self.uncompressibleExtensions = [ 'mp3', 'ogg', 'wav' ]
|
||||||
|
# wav files are compressible, but p3openal_audio won't load
|
||||||
|
# them compressed.
|
||||||
|
|
||||||
# Files which are not to be processed further, but which
|
# Files which are not to be processed further, but which
|
||||||
# should be added exactly byte-for-byte as they are.
|
# should be added exactly byte-for-byte as they are.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user