/INCREMENTAL:NO
ビジュアル c のリリース構成のデフォルトです。
http://ffmpeg.zeranoe.com/builds/FFmpeg git-3efe5e3 32-bit Dev
からダウンロードしました。ファイルが含まれています。を選びました。コンパイル後、ffmpeg dll のインポート テーブルが空になり、プログラムがクラッシュします。を有効にすると、コンパイルして正常に実行されます。.dll.a
.lib
.lib
/INCREMENTAL
test.c
:
void av_register_all();
int main() {
av_register_all();
return 0;
}
_
lib>cl test.c /link /incremental:no avformat.lib ws2_32.lib
lib>dumpbin /IMPORTS test.exe
...
avformat-55.dll
4080F4 Import Address Table
4095E4 Import Name Table
0 time date stamp
0 Index of first forwarder reference
KERNEL32.dll
408000 Import Address Table
4094F0 Import Name Table
0 time date stamp
0 Index of first forwarder reference
143 GetCurrentProcessId
110 GetCommandLineA
216 HeapFree
...