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
I download llvm-mingw-20250305-ucrt-ubuntu-20.04-x86_64.tar.xz from your repo. When comiling vvdec, error occured. Here's the log: https://github.com/eko5624/mpv-winbuild/actions/runs/13743674175/job/38436203984
The text was updated successfully, but these errors were encountered:
/__w/mpv-winbuild/mpv-winbuild/vvdec-dev/src/vvdec/source/Lib/vvdec/../CommonLib/TypeDef.h:1036:18: error: first argument in call to 'memcpy' is a pointer to non-trivially copyable type 'vvdec::CcAlfFilterParam' [-Werror,-Wnontrivial-memcall] 1036 | std::memcpy( this, &src, sizeof( CcAlfFilterParam ) ); | ^ /__w/mpv-winbuild/mpv-winbuild/vvdec-dev/src/vvdec/source/Lib/vvdec/../CommonLib/TypeDef.h:1036:18: note: explicitly cast the pointer to silence this warning 1036 | std::memcpy( this, &src, sizeof( CcAlfFilterParam ) ); | ^ | (void*)
There's a lot of this, you can turn off the warning with -Wno-nontrivial-memcall, or follow the compiler's note and cast the pointer to void* first
-Wno-nontrivial-memcall
void*
Sorry, something went wrong.
There's a lot of this, you can turn off the warning with -Wno-nontrivial-memcall
It works.
No branches or pull requests
I download llvm-mingw-20250305-ucrt-ubuntu-20.04-x86_64.tar.xz from your repo. When comiling vvdec, error occured. Here's the log:
https://github.com/eko5624/mpv-winbuild/actions/runs/13743674175/job/38436203984
The text was updated successfully, but these errors were encountered: