Chen-tao / webm

Automatically exported from code.google.com/p/webm
0 stars 0 forks source link

MMX code tries to read from SSE2 register (in /vp8/common/x86/postproc_mmx.asm) #531

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In mentioned file there's something like:

movq        [rdi],      xmm1

It is obviously a typo, there should be:

movq        [rdi],      mm1

instead.

(Of course current code breaks on CPUs without at least SSE2 due to that typo).

I've attached a patch for this bug.
--
Best regards,
Krzysztof Kaspruk

Original issue reported on code.google.com by ohcy...@gmail.com on 18 Jan 2013 at 4:55

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by fgalli...@google.com on 14 Mar 2013 at 10:07

GoogleCodeExporter commented 9 years ago
https://gerrit.chromium.org/gerrit/#/c/45571/

Original comment by jkoles...@google.com on 15 Mar 2013 at 5:08