Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] Add LoongArch SIMD optimization in swscale lib.
@ 2022-09-09  5:04 Hao Chen
  2022-09-09  5:04 ` [FFmpeg-devel] [PATCH v4 1/3] swscale/la: Optimize hscale functions with lasx Hao Chen
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Hao Chen @ 2022-09-09  5:04 UTC (permalink / raw)
  To: ffmpeg-devel

v2: Some modifications were made according to the comments of the reviewers.
v3: Update and run CI test again.
v4: Resolve the warning for the build.

[PATCH v4 1/3] swscale/la: Optimize hscale functions with lasx.
[PATCH v4 2/3] swscale/la: Add yuv2rgb_lasx.c and rgb2rgb_lasx.c
[PATCH v4 3/3] swscale/la: Add output_lasx.c file.

_______________________________________________
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] 11+ messages in thread
* [FFmpeg-devel] Add LoongArch SIMD optimization in swscale lib.
@ 2022-09-09  9:00 Hao Chen
  2022-09-09  9:43 ` yinshiyou-hf
  0 siblings, 1 reply; 11+ messages in thread
From: Hao Chen @ 2022-09-09  9:00 UTC (permalink / raw)
  To: ffmpeg-devel

v2: Some modifications were made according to the comments of the reviewers.
v3: Update and run CI test again.
v4: Resolve the warning for the build.
v5: Re-trigger the Patchwork test.

[PATCH v5 1/3] swscale/la: Optimize hscale functions with lasx.
[PATCH v5 2/3] swscale/la: Add yuv2rgb_lasx.c and rgb2rgb_lasx.c
[PATCH v5 3/3] swscale/la: Add output_lasx.c file.

_______________________________________________
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] 11+ messages in thread
* [FFmpeg-devel] Add LoongArch SIMD optimization in swscale lib.
@ 2022-09-09  1:34 Hao Chen
  0 siblings, 0 replies; 11+ messages in thread
From: Hao Chen @ 2022-09-09  1:34 UTC (permalink / raw)
  To: ffmpeg-devel

v2: Some modifications were made according to the comments of the reviewers.
v3: Update and run CI test again.

[PATCH v3 1/3] swscale/la: Optimize hscale functions with lasx.
[PATCH v3 2/3] swscale/la: Add yuv2rgb_lasx.c and rgb2rgb_lasx.c
[PATCH v3 3/3] swscale/la: Add output_lasx.c file.

_______________________________________________
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] 11+ messages in thread
* [FFmpeg-devel] Add LoongArch SIMD optimization in swscale lib.
@ 2022-09-03  2:23 Hao Chen
  0 siblings, 0 replies; 11+ messages in thread
From: Hao Chen @ 2022-09-03  2:23 UTC (permalink / raw)
  To: ffmpeg-devel

v2: Some modifications were made according to the comments of the reviewers.

[PATCH v2 1/3] swscale/la: Optimize hscale functions with lasx.
[PATCH v2 2/3] swscale/la: Add yuv2rgb_lasx.c and rgb2rgb_lasx.c
[PATCH v2 3/3] swscale/la: Add output_lasx.c file.

_______________________________________________
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] 11+ messages in thread
* [FFmpeg-devel] Add LoongArch SIMD optimization in swscale lib.
@ 2022-08-29 11:51 Hao Chen
  0 siblings, 0 replies; 11+ messages in thread
From: Hao Chen @ 2022-08-29 11:51 UTC (permalink / raw)
  To: ffmpeg-devel

[PATCH v1 1/3] swscale/la: Optimize hscale functions with lasx.
[PATCH v1 2/3] swscale/la: Add yuv2rgb_lasx.c and rgb2rgb_lasx.c
[PATCH v1 3/3] swscale/la: Add output_lasx.c file.

_______________________________________________
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] 11+ messages in thread
* [FFmpeg-devel] Add loongarch SIMD optimization in swscale lib.
@ 2022-08-29 11:26 Hao Chen
  0 siblings, 0 replies; 11+ messages in thread
From: Hao Chen @ 2022-08-29 11:26 UTC (permalink / raw)
  To: ffmpeg-devel

[PATCH v1 1/3] swscale/la: Optimize hscale functions with lasx.
[PATCH v1 2/3] swscale/la: Add yuv2rgb_lasx.c and rgb2rgb_lasx.c
[PATCH v1 3/3] swscale/la: Add output_lasx.c file.

_______________________________________________
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] 11+ messages in thread

end of thread, other threads:[~2022-09-10 17:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-09  5:04 [FFmpeg-devel] Add LoongArch SIMD optimization in swscale lib Hao Chen
2022-09-09  5:04 ` [FFmpeg-devel] [PATCH v4 1/3] swscale/la: Optimize hscale functions with lasx Hao Chen
2022-09-09  5:04 ` [FFmpeg-devel] [PATCH v4 2/3] swscale/la: Add yuv2rgb_lasx.c and rgb2rgb_lasx.c files Hao Chen
2022-09-09  5:04 ` [FFmpeg-devel] [PATCH v4 3/3] swscale/la: Add output_lasx.c file Hao Chen
  -- strict thread matches above, loose matches on Subject: below --
2022-09-09  9:00 [FFmpeg-devel] Add LoongArch SIMD optimization in swscale lib Hao Chen
2022-09-09  9:43 ` yinshiyou-hf
2022-09-10 17:12   ` Michael Niedermayer
2022-09-09  1:34 Hao Chen
2022-09-03  2:23 Hao Chen
2022-08-29 11:51 Hao Chen
2022-08-29 11:26 [FFmpeg-devel] Add loongarch " Hao Chen

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