diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-09-17 18:36:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-17 18:36:10 +0200 |
commit | c05242e324b4094a91185af5bda625d85a480443 (patch) | |
tree | 615e1cf493ab58072d5da876b61479ae75271be2 | |
parent | 80861b7d59b22010d6e3f4ee90c4bb97631ac20f (diff) | |
parent | 222bc07874b11166410b6ae395fa854f238aed5a (diff) |
Merge pull request #6489 from zaps166/vorbis-no-enc
Vorbis: Don't compile unnecessary encoder files
-rw-r--r-- | drivers/vorbis/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/vorbis/SCsub b/drivers/vorbis/SCsub index 87805cc2d8..4afafcc4ba 100644 --- a/drivers/vorbis/SCsub +++ b/drivers/vorbis/SCsub @@ -5,7 +5,7 @@ sources = [ ] sources_lib = [ - "vorbis/analysis.c", + #"vorbis/analysis.c", #"vorbis/barkmel.c", "vorbis/bitrate.c", "vorbis/block.c", @@ -27,7 +27,7 @@ sources_lib = [ "vorbis/smallft.c", "vorbis/synthesis.c", #"vorbis/tone.c", - "vorbis/vorbisenc.c", + #"vorbis/vorbisenc.c", "vorbis/vorbisfile.c", "vorbis/window.c", ] |