Ticket #2408: mplayer-1.4-r1-vf_ass-asm_fix.patch
| File mplayer-1.4-r1-vf_ass-asm_fix.patch, 1.2 KB (added by , 3 years ago) |
|---|
-
MPlayer-1.4/libmpcodecs/vf_ass.c
28 28 #include <assert.h> 29 29 30 30 #include "config.h" 31 #undef HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 32 #define HAVE_INLINE_ASM_DIRECT_SYMBOL_REFS 0 31 33 #include "mp_msg.h" 32 34 #include "help_mp.h" 33 35 #include "mpcommon.h" … … static void render_frame_yuv422_sse4(vf_ 311 313 [j] "r" (xmin), 312 314 [xmax] "g" (xmax), 313 315 [f] "g" (is_uyvy) 316 NAMED_CONSTRAINTS_ARRAY_ADD(sse_int32_map_factor,sse_int32_80h) 314 317 : REG_S 315 318 ); 316 319 } … … static void render_frame_yuv420p_sse4(vf 513 516 [alpha] "r" (alpha + i * outw), 514 517 [src] "S" (src_y + i * outw), 515 518 [dst] "D" (dst_y + i * stride) 519 NAMED_CONSTRAINTS_ARRAY_ADD(sse_int32_map_factor,sse_int32_80h) 516 520 ); 517 521 } 518 522 … … static void render_frame_yuv420p_sse4(vf 551 555 [src_v] "g" (src_v + i * outw), 552 556 [dst_u] "g" (dst_u + i * stride), 553 557 [dst_v] "g" (dst_v + i * stride) 558 NAMED_CONSTRAINTS_ARRAY_ADD(sse_int32_map_factor,sse_int32_80h) 554 559 : REG_S, REG_D 555 560 ); 556 561 }
