mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
3ae1b38243
Update our opus implementation to a prerelease of 1.1. This brings many performance and encoder improvements and we believe it is stable enough to switch. This import does not enable any of the new assembly optimizations. The imported code is https://git.xiph.org/opus.git master commit f2446c25c6519bae190152f7a579310b83dc43fd.
13 lines
248 B
Makefile
13 lines
248 B
Makefile
OPUS_SOURCES = src/opus.c \
|
|
src/opus_decoder.c \
|
|
src/opus_encoder.c \
|
|
src/opus_multistream.c \
|
|
src/opus_multistream_encoder.c \
|
|
src/opus_multistream_decoder.c \
|
|
src/repacketizer.c
|
|
|
|
OPUS_SOURCES_FLOAT = \
|
|
src/analysis.c \
|
|
src/mlp.c \
|
|
src/mlp_data.c
|