This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new ea9c361a7b avcodec/snow: Don't override fpel hdsp function
ea9c361a7b is described below
commit ea9c361a7b8720604a63b06606e0026617eb764b
Author: Andreas Rheinhardt <[email protected]>
AuthorDate: Mon Jun 15 07:20:07 2026 +0200
Commit: Andreas Rheinhardt <[email protected]>
CommitDate: Thu Jun 18 16:05:30 2026 +0200
avcodec/snow: Don't override fpel hdsp function
The functions do the same, yet the dedicated functions
from hpeldsp are more optimized.
(Notice that the motion estimation code only uses
aligned scratchpad buffers as destination when using
hdsp functions, so Snow-specific functions with relaxed
alignment like for the me-cmp API are not necessary.)
Signed-off-by: Andreas Rheinhardt <[email protected]>
---
libavcodec/snow.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index 5c13709b5c..38570645b7 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -470,11 +470,9 @@ static void mc_block_hpel ## dx ## dy ## b_w(uint8_t *dst,
const uint8_t *src, p
mc_block(NULL, dst, src-(HTAPS_MAX/2-1)-(HTAPS_MAX/2-1)*stride, stride,
b_w, b_w, dx, dy);\
}
-mca( 0, 0,16)
mca( 8, 0,16)
mca( 0, 8,16)
mca( 8, 8,16)
-mca( 0, 0,8)
mca( 8, 0,8)
mca( 0, 8,8)
mca( 8, 8,8)
@@ -509,7 +507,6 @@ av_cold int ff_snow_common_init(AVCodecContext *avctx){
s->hdsp.put_no_rnd_pixels_tab[1][dy/4+dx/8]=\
mc_block_hpel ## dx ## dy ## 8;
- mcfh(0, 0)
mcfh(8, 0)
mcfh(0, 8)
mcfh(8, 8)
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]