diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2017-12-16 20:36:41 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2017-12-16 20:36:41 +0300 |
commit | cfb96e9ef563e4cf39350b5b8721f4b5b70585d2 (patch) | |
tree | fd92556eb497c14ad9f7eed01e853a7d1ecca049 /utils/vlc_codec/autogen.sh | |
parent | 93b8726a3db33023f2c5a0cc5efba58583b87fb4 (diff) | |
download | libADLMIDI-cfb96e9ef563e4cf39350b5b8721f4b5b70585d2.tar.gz libADLMIDI-cfb96e9ef563e4cf39350b5b8721f4b5b70585d2.tar.bz2 libADLMIDI-cfb96e9ef563e4cf39350b5b8721f4b5b70585d2.zip |
Added experimental VLC plugin
Plugin is made for VLC 2.2.2 Weatherwax (pre-installed in Linux Mint 18.3)
Existing issues:
- No ability to change codec properties yet, this thing is WIP
- By unknown reason, resulted sound has different (RANDOM) sample rate which is different from 44100 Hz
Diffstat (limited to 'utils/vlc_codec/autogen.sh')
-rwxr-xr-x | utils/vlc_codec/autogen.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/vlc_codec/autogen.sh b/utils/vlc_codec/autogen.sh new file mode 100755 index 0000000..57eeb94 --- /dev/null +++ b/utils/vlc_codec/autogen.sh @@ -0,0 +1,15 @@ +#!/bin/sh +if [ -x "`which autoreconf 2>/dev/null`" ] ; then + exec autoreconf -ivf +fi + +LIBTOOLIZE=libtoolize +SYSNAME=`uname` +if [ "x$SYSNAME" = "xDarwin" ] ; then + LIBTOOLIZE=glibtoolize +fi +aclocal -I m4 && \ + autoheader && \ + $LIBTOOLIZE && \ + autoconf && \ + automake --add-missing --force-missing --copy |