This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 30a811cc7d878184646e35fb94e72c5b964d575e Author: Andreas Rheinhardt <[email protected]> AuthorDate: Wed Mar 18 11:37:25 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Wed Mar 18 18:05:20 2026 +0100 avcodec/rv34dsp: Reduce size of chroma pixels tabs Only two sizes exist. Reviewed-by: Lynne <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/rv34dsp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/rv34dsp.h b/libavcodec/rv34dsp.h index c9fbd95e4e..9adf84bf26 100644 --- a/libavcodec/rv34dsp.h +++ b/libavcodec/rv34dsp.h @@ -57,8 +57,8 @@ typedef int (*rv40_loop_filter_strength_func)(uint8_t *src, ptrdiff_t stride, typedef struct RV34DSPContext { 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]; + h264_chroma_mc_func put_chroma_pixels_tab[2]; + h264_chroma_mc_func avg_chroma_pixels_tab[2]; /** * Biweight functions, first dimension is transform size (16/8), * second is whether the weight is prescaled by 1/512 to skip _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
