2015-02-07 19:49 GMT+01:00 Christophe Gisquet <christophe.gisq...@gmail.com>: > Christophe Gisquet (5): > x86: hevc_mc: fewer gpr autoloads for _v filters > x86: hevc_mc: remove lea in EPEL_LOAD > x86: hevc_mc: save 1 gpr in epel filter loading > x86: hevc_mc: fewer xmm regs used in epel h/v > x86: hevc_mc: put_pixels and 1d epel for x86_32
Forgot to include one patch that may cause conflicts because it modifies the context of some hunks. The attached patch should be considered the first one in the series. -- Christophe
From 56813b8b86f5413c6bd9eecec273cc1c5cc233aa Mon Sep 17 00:00:00 2001 From: Christophe Gisquet <christophe.gisq...@gmail.com> Date: Sat, 7 Feb 2015 13:19:58 +0100 Subject: [PATCH 1/6] x86: lavc/hevc_mc: fix comments The width parameter is now completely at the back, and actually never used. This helps understanding the actual parameter list. --- libavcodec/x86/hevc_mc.asm | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/libavcodec/x86/hevc_mc.asm b/libavcodec/x86/hevc_mc.asm index 6ef8ca3..3f56782 100644 --- a/libavcodec/x86/hevc_mc.asm +++ b/libavcodec/x86/hevc_mc.asm @@ -737,8 +737,7 @@ cglobal hevc_put_hevc_bi_pel_pixels%1_%2, 6, 6, 6, dst, dststride, src, srcstrid ; ****************************** ; void put_hevc_epel_hX(int16_t *dst, ptrdiff_t dststride, ; uint8_t *_src, ptrdiff_t _srcstride, -; int width, int height, int mx, int my, -; int16_t* mcbuffer) +; int height, int mx, int my, int width); ; ****************************** @@ -787,8 +786,7 @@ cglobal hevc_put_hevc_bi_epel_h%1_%2, 7, 8, 11, dst, dststride, src, srcstride, ; ****************************** ; void put_hevc_epel_v(int16_t *dst, ptrdiff_t dststride, ; uint8_t *_src, ptrdiff_t _srcstride, -; int width, int height, int mx, int my, -; int16_t* mcbuffer) +; int height, int mx, int my, int width) ; ****************************** cglobal hevc_put_hevc_epel_v%1_%2, 6, 7, 11, dst, src, srcstride, height, r3src, my, rfilter @@ -842,7 +840,7 @@ cglobal hevc_put_hevc_bi_epel_v%1_%2, 8, 9, 11, dst, dststride, src, srcstride, ; ****************************** ; void put_hevc_epel_hv(int16_t *dst, ptrdiff_t dststride, ; uint8_t *_src, ptrdiff_t _srcstride, -; int width, int height, int mx, int my) +; int height, int mx, int my, int width) ; ****************************** %macro HEVC_PUT_HEVC_EPEL_HV 2 @@ -1055,7 +1053,7 @@ cglobal hevc_put_hevc_bi_epel_hv%1_%2, 8, 10, 16, dst, dststride, src, srcstride ; ****************************** ; void put_hevc_qpel_hX_X_X(int16_t *dst, ptrdiff_t dststride, ; uint8_t *_src, ptrdiff_t _srcstride, -; int width, int height, int mx, int my) +; int height, int mx, int my, int width) ; ****************************** %macro HEVC_PUT_HEVC_QPEL 2 @@ -1111,7 +1109,7 @@ cglobal hevc_put_hevc_bi_qpel_h%1_%2, 7, 8, 16 , dst, dststride, src, srcstride, ; ****************************** ; void put_hevc_qpel_vX_X_X(int16_t *dst, ptrdiff_t dststride, ; uint8_t *_src, ptrdiff_t _srcstride, -; int width, int height, int mx, int my) +; int height, int mx, int my, int width) ; ****************************** cglobal hevc_put_hevc_qpel_v%1_%2, 6, 8, 16, dst, src, srcstride, height, r3src, my, rfilter -- 1.9.2.msysgit.0
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel