aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/x86/hevcdsp_init.c
diff options
context:
space:
mode:
authorWu Jianhua <toqsxw@outlook.com>2024-01-24 02:17:07 +0800
committerNuo Mi <nuomi2021@gmail.com>2024-02-01 19:54:28 +0800
commitfc5ff6b0b837c8c24904a5be87fd0607526f5989 (patch)
treeb63ee4bc112ecab408f069d8ee692d4dd03c7db2 /libavcodec/x86/hevcdsp_init.c
parent7d9f1f5485f5ceabc943b08f16fb9eb10ca6bbd5 (diff)
downloadffmpeg-fc5ff6b0b837c8c24904a5be87fd0607526f5989.tar.gz
avcodec/x86/h26x/h2656_inter: add dststride to put
Signed-off-by: Wu Jianhua <toqsxw@outlook.com>
Diffstat (limited to 'libavcodec/x86/hevcdsp_init.c')
-rw-r--r--libavcodec/x86/hevcdsp_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/hevcdsp_init.c b/libavcodec/x86/hevcdsp_init.c
index 5c19330e19..e0dc82eef0 100644
--- a/libavcodec/x86/hevcdsp_init.c
+++ b/libavcodec/x86/hevcdsp_init.c
@@ -96,7 +96,7 @@ void ff_hevc_put_hevc_ ## a ## _ ## depth ## _##opt(int16_t *dst, const uint8_t
int height, intptr_t mx, intptr_t my,int width) \
{ \
DECL_HV_FILTER(p) \
- ff_h2656_put_ ## b ## _ ## depth ## _##opt(dst, src, srcstride, height, hf, vf, width); \
+ ff_h2656_put_ ## b ## _ ## depth ## _##opt(dst, 2 * MAX_PB_SIZE, src, srcstride, height, hf, vf, width); \
}
#define FW_PUT_UNI(p, a, b, depth, opt) \