Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2013-11-28 17:23:33 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2013-11-28 17:23:33 +0400
commita29c79a45574a31d346500880a9af7c07d32dd37 (patch)
treea7a76ea04d6db0e3b399175cf83b7f0e5b9a226a /thirdparty
parente32efda83f23183cab532bf8166841c91b3f1197 (diff)
Update build instructions for thirdparty libs
Diffstat (limited to 'thirdparty')
-rw-r--r--thirdparty/build instructions.txt31
-rw-r--r--thirdparty/readme-opus.txt10
2 files changed, 31 insertions, 10 deletions
diff --git a/thirdparty/build instructions.txt b/thirdparty/build instructions.txt
new file mode 100644
index 00000000..1254724b
--- /dev/null
+++ b/thirdparty/build instructions.txt
@@ -0,0 +1,31 @@
+opencore-amr:
+
+32-bit:
+./configure --enable-static --disable-shared --disable-amrnb-encoder
+make
+
+64-bit:
+./configure --host=x86_64-w64-mingw32 --enable-static --disable-shared --disable-amrnb-encoder
+make
+
+----------------------------------------------
+Opus:
+Opus fails at building a static library on windows, the OPUS_EXPORT define fixes it
+
+32-bit:
+CFLAGS="-O2 -DOPUS_EXPORT=''" ./configure --enable-static --disable-shared
+make
+
+64-bit:
+CFLAGS="-O2 -DOPUS_EXPORT=''" ./configure --host=x86_64-w64-mingw32 --enable-static --disable-shared
+make
+
+----------------------------------------------
+Speex:
+
+32-bit:
+./configure --enable-sse --enable-static --disable-shared
+make
+
+64-bit:
+./configure --host=x86_64-w64-mingw32 --enable-sse --enable-static --disable-shared \ No newline at end of file
diff --git a/thirdparty/readme-opus.txt b/thirdparty/readme-opus.txt
deleted file mode 100644
index 677a9794..00000000
--- a/thirdparty/readme-opus.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-libopus build instructions
----------------------------
-
-x86:
-./configure --enable-static
-make
-
-x64:
-./configure --enable-static --host=x86_64-w64-mingw32
-make