Module: libav Branch: master Commit: e2b5b097898c9155f4bdff4d83cdc54d5eef6930
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Sun Nov 3 21:28:45 2013 +0100 x86: rv40dsp: Use PAVGB instruction macro where appropriate --- libavcodec/x86/rv40dsp.asm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libavcodec/x86/rv40dsp.asm b/libavcodec/x86/rv40dsp.asm index 7ec72be..d12b079 100644 --- a/libavcodec/x86/rv40dsp.asm +++ b/libavcodec/x86/rv40dsp.asm @@ -98,11 +98,7 @@ SECTION .text %endif packuswb %1, %1 %ifidn %3, avg -%if cpuflag(3dnow) - pavgusb %1, %2 -%else - pavgb %1, %2 -%endif + PAVGB %1, %2 %endif movh [dstq], %1 %endmacro _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
