次のリンクからFFMPEG ソース コード ( c コード) をダウンロードしました。
http://ffmpeg.zeranoe.com/builds/
その後、構成部分を完了し、ライブラリ ファイルを生成してリンクしました*[avcodec-54.lib,avdevice-54.lib,avfilter-3.lib,avformat-54.lib,avutil-52.lib, swresample-0.lib,swscale-2.lib ] *Microsoft Visual Studio C++ では、すべての .c ファイルとヘッダー ファイルを含めて新しいプロジェクトを作成します。
Visual Studio 2010 でコンパイルしていたとき... libavcodec、libavdevice、libavfilter、libavformat、libavresample、libavutil、libpostproc、libswresample、libswscaleのようなすべてのファイルで 300 以上のエラーが発生しています
ASM エラー:
error C2400: inline assembler syntax error in 'opcode'; found 'data type'
error C2065: '__asm__' : undeclared identifier
error C2143: syntax error : missing ';' before 'volatile'
構文エラー:
error C2143: syntax error : missing '}' before '.'
error C2143: syntax error : missing ';' before '.'
error C2059: syntax error : '.'
error C2143: syntax error : missing ';' before '}'
error C2059: syntax error : '}'
error C2143: syntax error : missing ';' before '{'
error C2447: '{' : missing function header (old-style formal list?)
error C2059: syntax error : ','
error C2143: syntax error : missing ';' before '{'
error C2447: '{' : missing function header (old-style formal list?)
vs2010でffmpeg cコードを正常にコンパイルする方法を誰か教えてください。