The branch, master has been updated
       via  0242cb36a576721ee6fb9bbbf70616dacb9957b3 (commit)
      from  00c23bafb018b7f75bab01aa946245a52f1ac44a (commit)


- Log -----------------------------------------------------------------
commit 0242cb36a576721ee6fb9bbbf70616dacb9957b3
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Thu Oct 30 12:17:25 2025 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Thu Oct 30 12:17:25 2025 +0100

    avcodec/rv34dsp: Reduce size of qpel functions arrays
    
    Only size 16 and 8 are used (and set).
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>

diff --git a/libavcodec/rv34dsp.h b/libavcodec/rv34dsp.h
index d59b3c2732..c9fbd95e4e 100644
--- a/libavcodec/rv34dsp.h
+++ b/libavcodec/rv34dsp.h
@@ -55,8 +55,8 @@ typedef int (*rv40_loop_filter_strength_func)(uint8_t *src, 
ptrdiff_t stride,
                                               int *p1, int *q1);
 
 typedef struct RV34DSPContext {
-    qpel_mc_func put_pixels_tab[4][16];
-    qpel_mc_func avg_pixels_tab[4][16];
+    qpel_mc_func put_pixels_tab[2][16];
+    qpel_mc_func avg_pixels_tab[2][16];
     h264_chroma_mc_func put_chroma_pixels_tab[3];
     h264_chroma_mc_func avg_chroma_pixels_tab[3];
     /**

-----------------------------------------------------------------------

Summary of changes:
 libavcodec/rv34dsp.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to