Commit cdc00879 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/ppc/cpu: Our code assumes vsx implies altivec, thus assert this

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9614df4b
...@@ -96,6 +96,8 @@ int ff_get_cpu_flags_ppc(void) ...@@ -96,6 +96,8 @@ int ff_get_cpu_flags_ppc(void)
if (buf[i + 1] & PPC_FEATURE_HAS_POWER8) if (buf[i + 1] & PPC_FEATURE_HAS_POWER8)
ret |= AV_CPU_FLAG_POWER8; ret |= AV_CPU_FLAG_POWER8;
#endif #endif
if (ret & AV_CPU_FLAG_VSX)
av_assert0(ret & AV_CPU_FLAG_ALTIVEC);
goto out; goto out;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment