1. ホーム
  2. ffmpeg

ffmpeg 'XXXX' をコンパイルすると、非静的宣言エラーの解決策に従う。

2022-02-16 11:49:54

ffmpeg を使用せずに最新版のコードを更新した後、mingw でコンパイルすると、常に以下のエラーが発生し、明確な理由はありません。

... /libavutil/libm.h:62: error: static declaration of 'lrint' follows non-static declaration
... /libavutil/libm.h:69: error: static declaration of 'lrintf' follows non-static declaration
... /libavutil/libm.h:76: error: static declaration of 'round' follows non-static declaration .
... /libavutil/libm.h:83: error: static declaration of 'roundf' follows non-static declaration .

. /libavutil/libm.h:90: error: static declaration of 'truncf' follows non-static declaration .








解決策は、config.h の lrint, lrintf, round, roundf などの文字を検索します。

#define HAVE_LLRINT 1
#define HAVE_LLRINTF 1
#define HAVE_LRINT 1
#define HAVE_LRINTF 1
#define HAVE_ROUND 1
#define HAVE_ROUNDF 1


forの値を次のように変更します。 1 で完了です。