Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH] avcodec/x86/fpel: Remove remnants of MMX
@ 2024-02-29  1:22 Andreas Rheinhardt
  2024-03-02  1:54 ` Andreas Rheinhardt
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Rheinhardt @ 2024-02-29  1:22 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Andreas Rheinhardt

Since 7cad4dba505f9ad0adf013dd5bdf02a57249eecc
averaging functions only exist for MMXEXT and SSE2.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/x86/fpel.asm | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/libavcodec/x86/fpel.asm b/libavcodec/x86/fpel.asm
index 278d1410fc..b07b789074 100644
--- a/libavcodec/x86/fpel.asm
+++ b/libavcodec/x86/fpel.asm
@@ -25,16 +25,6 @@
 
 SECTION .text
 
-%macro PAVGB_MMX 4
-    LOAD   %3, %1
-    por    %3, %2
-    pxor   %2, %1
-    pand   %2, %4
-    psrlq  %2, 1
-    psubb  %3, %2
-    SWAP   %2, %3
-%endmacro
-
 ; void ff_put/avg_pixels(uint8_t *block, const uint8_t *pixels,
 ;                        ptrdiff_t line_size, int h)
 %macro OP_PIXELS 2
@@ -49,12 +39,6 @@ SECTION .text
 %endif
 cglobal %1_pixels%2, 4,5,4
     lea          r4, [r2*3]
-%ifidn %1, avg
-%if notcpuflag(mmxext)
-    pcmpeqd      m6, m6
-    paddb        m6, m6
-%endif
-%endif
 .loop:
 %assign %%i 0
 %rep LEN/mmsize
@@ -63,17 +47,10 @@ cglobal %1_pixels%2, 4,5,4
     LOAD         m2, [r1+r2*2 + %%i]
     LOAD         m3, [r1+r4 + %%i]
 %ifidn %1, avg
-%if notcpuflag(mmxext)
-    PAVGB_MMX    [r0 + %%i], m0, m4, m6
-    PAVGB_MMX    [r0+r2 + %%i], m1, m5, m6
-    PAVGB_MMX    [r0+r2*2 + %%i], m2, m4, m6
-    PAVGB_MMX    [r0+r4 + %%i], m3, m5, m6
-%else
     pavgb        m0, [r0 + %%i]
     pavgb        m1, [r0+r2 + %%i]
     pavgb        m2, [r0+r2*2 + %%i]
     pavgb        m3, [r0+r4 + %%i]
-%endif
 %endif
     SAVE       [r0 + %%i], m0
     SAVE    [r0+r2 + %%i], m1
-- 
2.40.1

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avcodec/x86/fpel: Remove remnants of MMX
  2024-02-29  1:22 [FFmpeg-devel] [PATCH] avcodec/x86/fpel: Remove remnants of MMX Andreas Rheinhardt
@ 2024-03-02  1:54 ` Andreas Rheinhardt
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas Rheinhardt @ 2024-03-02  1:54 UTC (permalink / raw)
  To: ffmpeg-devel

Andreas Rheinhardt:
> Since 7cad4dba505f9ad0adf013dd5bdf02a57249eecc
> averaging functions only exist for MMXEXT and SSE2.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  libavcodec/x86/fpel.asm | 23 -----------------------
>  1 file changed, 23 deletions(-)
> 
> diff --git a/libavcodec/x86/fpel.asm b/libavcodec/x86/fpel.asm
> index 278d1410fc..b07b789074 100644
> --- a/libavcodec/x86/fpel.asm
> +++ b/libavcodec/x86/fpel.asm
> @@ -25,16 +25,6 @@
>  
>  SECTION .text
>  
> -%macro PAVGB_MMX 4
> -    LOAD   %3, %1
> -    por    %3, %2
> -    pxor   %2, %1
> -    pand   %2, %4
> -    psrlq  %2, 1
> -    psubb  %3, %2
> -    SWAP   %2, %3
> -%endmacro
> -
>  ; void ff_put/avg_pixels(uint8_t *block, const uint8_t *pixels,
>  ;                        ptrdiff_t line_size, int h)
>  %macro OP_PIXELS 2
> @@ -49,12 +39,6 @@ SECTION .text
>  %endif
>  cglobal %1_pixels%2, 4,5,4
>      lea          r4, [r2*3]
> -%ifidn %1, avg
> -%if notcpuflag(mmxext)
> -    pcmpeqd      m6, m6
> -    paddb        m6, m6
> -%endif
> -%endif
>  .loop:
>  %assign %%i 0
>  %rep LEN/mmsize
> @@ -63,17 +47,10 @@ cglobal %1_pixels%2, 4,5,4
>      LOAD         m2, [r1+r2*2 + %%i]
>      LOAD         m3, [r1+r4 + %%i]
>  %ifidn %1, avg
> -%if notcpuflag(mmxext)
> -    PAVGB_MMX    [r0 + %%i], m0, m4, m6
> -    PAVGB_MMX    [r0+r2 + %%i], m1, m5, m6
> -    PAVGB_MMX    [r0+r2*2 + %%i], m2, m4, m6
> -    PAVGB_MMX    [r0+r4 + %%i], m3, m5, m6
> -%else
>      pavgb        m0, [r0 + %%i]
>      pavgb        m1, [r0+r2 + %%i]
>      pavgb        m2, [r0+r2*2 + %%i]
>      pavgb        m3, [r0+r4 + %%i]
> -%endif
>  %endif
>      SAVE       [r0 + %%i], m0
>      SAVE    [r0+r2 + %%i], m1

Will apply this patch tomorrow unless there are objections.

- Andreas

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-03-02  1:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-29  1:22 [FFmpeg-devel] [PATCH] avcodec/x86/fpel: Remove remnants of MMX Andreas Rheinhardt
2024-03-02  1:54 ` Andreas Rheinhardt

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git