Commit 50fabdce authored by Rafaël Carré's avatar Rafaël Carré

avcodec-hw: fix crash on some CPUs

pshufb is available with SSSE3, not with SSE3
parent ebfdeea1
......@@ -190,7 +190,7 @@ static void SplitUV(uint8_t *dstu, size_t dstu_pitch,
"movhpd %%xmm3, 24(%[dst2])\n"
#ifdef CAN_COMPILE_SSSE3
if (vlc_CPU_SSE3())
if (vlc_CPU_SSSE3())
{
for (x = 0; x < (width & ~31); x += 32) {
asm volatile (
......
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