We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make的时候报这个错误:SZ_4K was not declared in this scope 问题出在哪儿呀
The text was updated successfully, but these errors were encountered:
it was defined in latest source code from project (rockchip-linux-mpp/osal/inc/mpp_common.h) as following:
#define SZ_1K (1024) #define SZ_2K (SZ_1K*2) #define SZ_4K (SZ_1K*4) #define SZ_8K (SZ_1K*8) #define SZ_16K (SZ_1K*16) #define SZ_32K (SZ_1K*32) #define SZ_64K (SZ_1K*64) #define SZ_128K (SZ_1K*128) #define SZ_256K (SZ_1K*256) #define SZ_512K (SZ_1K*512) #define SZ_1M (SZ_1K*SZ_1K) #define SZ_2M (SZ_1M*2) #define SZ_4M (SZ_1M*4) #define SZ_8M (SZ_1M*8) #define SZ_16M (SZ_1M*16) #define SZ_32M (SZ_1M*32) #define SZ_64M (SZ_1M*64) #define SZ_80M (SZ_1M*80) #define SZ_128M (SZ_1M*128)
modify mpp/Codec.h manually accordingly and it works as expected.
Sorry, something went wrong.
No branches or pull requests
make的时候报这个错误:SZ_4K was not declared in this scope
问题出在哪儿呀
The text was updated successfully, but these errors were encountered: