在使用Visual Studio 2010的Windows中構建ffMPEG時,遇到了inttypes.h not found錯誤。
由於通過互聯網搜索導致我錯誤的解決方案,我想我會在這裏提出正確的解決方案,以便人們可以輕鬆找到它。很快會回答我自己的問題。ffMPEG「inttypes.h not found」錯誤
19
A
回答
44
解決方法是下載this file並將inttypes.h
文件放在Visual Studio可以找到它的位置,或放在ffMPEG的common.h
所在的文件夾中。如果您選擇後者,則必須將#include<inttypes.h>
行更改爲#include "inttypes.h"
。
從here得到了這個解決方案。
另一種解決方案,它並沒有爲我工作是#include<inttypes.h>
與
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef signed long long int64_t;
typedef unsigned long long uint64_t;
這種溶液從here得到更換。
希望這有助於。
2
#ifndef HAS_INT_TYPES
#ifdef HAS_C99
#include <stdint.h>
#endif
#endif
相關問題
- 1. Linux錯誤:sh:qsub:command not found
- 2. libstdC++錯誤:'GLIBCXX_3.4.22'not found
- 3. MSYS錯誤「rem:command not found」
- 4. 錯誤:java.lang.ClassNotFoundException:Class org.openjdk.jdi.ReferenceType not found
- 5. tensorflow:[NOT FOUND]錯誤RStudio
- 6. 錯誤:「sh:gfortran:command not found」| Ubuntu 16.04
- 7. d3:HTTP404 NOT FOUND錯誤
- 8. Laravel 4 class not found錯誤
- 9. Libgdx file.internal file not found錯誤
- 10. ant sonar - class not found錯誤
- 11. 致命錯誤Varien_Autoload not found
- 12. XCode「File Not Found」錯誤
- 13. 獲取錯誤「bash:appletviewer:command not found」。
- 14. C++標識Not Found錯誤
- 15. Bash語法錯誤:「[[:not found」
- 16. 「bash:psql command not found」錯誤
- 17. ensime scala錯誤(class scala.Array not found,object scala not found)
- 18. Rails testing fileupload接收錯誤「File not found」
- 19. django-cms安裝錯誤「.pyc not found」
- 20. 爲什麼這個javac:File Not Found錯誤?
- 21. Laravel 5.1分頁URL錯誤404 Not Found
- 22. Apache zeppelin教程,錯誤「sql interpreter not found」
- 23. CocoonJS&Cordova插件:「class not found」錯誤
- 24. 「svnrdump」命令獲得「svnrdump:command not found」錯誤
- 25. 疑難解答「class not found」錯誤
- 26. Windows上的Selenium WebDriver錯誤:logging.js not found
- 27. Magento中的SSL錯誤(404 Not Found)
- 28. kali linux vmware gcc not found錯誤
- 29. 在Eclipse中發現「Source not found」錯誤
- 30. C++函數和'identifier not found'錯誤
作爲我在ffMPEG版本中的一個說明,我也在pixdesc.h中包含了一個include。另外,如果你只包含在包含目錄中的外部包含文件夾,它將是'#include「libavutil/inttypes.d」'代替。 – Chris