This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "$swscale" = "yes" ]; then | |
LDFLAGSCLI="$SWSCALE_LIBS $LDFLAGSCLI" | |
CFLAGS="$CFLAGS $SWSCALE_CFLAGS" | |
define HAVE_SWSCALE | |
if [ "$lavf" = "yes" ]; then | |
LDFLAGSCLI="$LAVF_LIBS $LDFLAGSCLI" | |
CFLAGS="$CFLAGS $LAVF_CFLAGS" | |
define HAVE_LAVF | |
fi | |
if [ "$ffms" = "yes" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ${cross_prefix}pkg-config --exists libavformat libavcodec libswscale 2>/dev/null; then | |
LAVF_LIBS="$LAVF_LIBS $(${cross_prefix}pkg-config --libs libavformat libavcodec libavutil libswscale)" | |
LAVF_CFLAGS="$LAVF_CFLAGS $(${cross_prefix}pkg-config --cflags libavformat libavcodec libavutil libswscale)" | |
fi | |
if [ -z "$LAVF_LIBS" -a -z "$LAVF_CFLAGS" ]; then | |
LAVF_LIBS="-lavformat" | |
for lib in -lpostproc -lavcodec -lavcore -lswscale -lavutil -lm -lz -lbz2 $libpthread -lavifil32; do | |
cc_check "" $lib && LAVF_LIBS="$LAVF_LIBS $lib" | |
done | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./configure | |
Platform: X86_64 | |
System: MACOSX | |
asm: yes | |
avs: no | |
lavf: yes | |
ffms: yes | |
gpac: yes | |
gpl: yes | |
thread: posix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"--------------------------------------------------------------------------- | |
" GUIに関する設定 | |
" | |
if has('gui_macvim') | |
" IMを無効化 | |
set imdisable | |
" 透明度 | |
set transparency=20 | |
" コマンドラインの行数 | |
set cmdheight=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"--------------------------------------------------------------------------- | |
" 編集に関する設定: | |
" | |
" タブの画面上での幅 | |
set tabstop=4 | |
" タブをスペースに展開 | |
set expandtab | |
" オートインデント | |
set cindent | |
" オートインデントの深さ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ls -a | |
. .libs Makefile.am aac-enc.c config.guess depcomp vo-aacenc.pc.in | |
.. AUTHORS Makefile.in aacenc config.h.in install-sh wavreader.c | |
.deps COPYING NEWS aclocal.m4 config.sub ltmain.sh wavreader.h | |
.git ChangeLog NOTICE autom4te.cache configure m4 | |
.gitignore INSTALL README common configure.ac missing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ autoreconf -i | |
configure.ac:41: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2662: _AC_LINK_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2679: AC_LINK_IFELSE is expanded from... | |
m4/libtool.m4:1022: _LT_SYS_MODULE_PATH_AIX is expanded from... | |
m4/libtool.m4:4170: _LT_LINKER_SHLIBS is expanded from... | |
m4/libtool.m4:5253: _LT_LANG_C_CONFIG is expanded from... | |
m4/libtool.m4:138: _LT_SETUP is expanded from... | |
m4/libtool.m4:67: LT_INIT is expanded from... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ls -a | |
. .gitignore ChangeLog NOTICE common depcomp missing | |
.. .libs INSTALL README config.guess install-sh vo-aacenc.pc.in | |
.deps AUTHORS Makefile.am aac-enc.c config.sub ltmain.sh wavreader.c | |
.git COPYING NEWS aacenc configure.ac m4 wavreader.h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git clone git://github.com/mstorsjo/vo-aacenc.git | |
Cloning into vo-aacenc... | |
remote: Counting objects: 532, done. | |
remote: Compressing objects: 100% (257/257), done. | |
remote: Total 532 (delta 322), reused 442 (delta 262) | |
Receiving objects: 100% (532/532), 634.71 KiB | 200 KiB/s, done. | |
Resolving deltas: 100% (322/322), done. | |
$ cd vo-aancenc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Manage local x264.git repository by revision number, not commit hash. | |
if [ $# -lt 2 ] ; then | |
cat <<EOF | |
Options: | |
-r <rev> git reset --hard <rev> | |
-s <rev> git show <rev> | |
-d <rev1> <rev2> git diff <rev1> <rev2> |
NewerOlder