diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-07-27 13:43:33 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-31 18:21:55 +0100 |
commit | fa8fcab1e0d31074c0644c4ac5194474c6c26415 (patch) | |
tree | 7c083994e0b7cbd4423b3f6f290e46791a06e94e | |
parent | d8eda3708023db388d80027a79d5df7ee25a5a3f (diff) | |
download | ffmpeg-fa8fcab1e0d31074c0644c4ac5194474c6c26415.tar.gz |
x86: h264_chromamc_10bit: drop pointless PAVG %define
It is only used in one place so there is no need for the abstraction.
-rw-r--r-- | libavcodec/x86/h264_chromamc_10bit.asm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/x86/h264_chromamc_10bit.asm b/libavcodec/x86/h264_chromamc_10bit.asm index 4481efef7f..d24308d254 100644 --- a/libavcodec/x86/h264_chromamc_10bit.asm +++ b/libavcodec/x86/h264_chromamc_10bit.asm @@ -245,7 +245,7 @@ cglobal %1_h264_chroma_mc2_10, 6,7 %if %0==3 movq %2, %3 %endif - PAVG %1, %2 + pavgw %1, %2 %endmacro %define CHROMAMC_AVG NOTHING @@ -260,7 +260,6 @@ CHROMA_MC4 put CHROMA_MC2 put %define CHROMAMC_AVG AVG -%define PAVG pavgw INIT_XMM sse2 CHROMA_MC8 avg %if HAVE_AVX_EXTERNAL |