You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
x86: hevcdsp: align
Reviewed-by: Mickaël Raulet <mraulet@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
373677f958
commit
670b7f203a
@ -426,7 +426,6 @@ void ff_hevcdsp_init_x86(HEVCDSPContext *c, const int bit_depth)
|
|||||||
if (EXTERNAL_MMXEXT(mm_flags)) {
|
if (EXTERNAL_MMXEXT(mm_flags)) {
|
||||||
c->transform_dc_add[0] = ff_hevc_idct4_dc_add_8_mmxext;
|
c->transform_dc_add[0] = ff_hevc_idct4_dc_add_8_mmxext;
|
||||||
c->transform_dc_add[1] = ff_hevc_idct8_dc_add_8_mmxext;
|
c->transform_dc_add[1] = ff_hevc_idct8_dc_add_8_mmxext;
|
||||||
|
|
||||||
}
|
}
|
||||||
if (EXTERNAL_SSE2(mm_flags)) {
|
if (EXTERNAL_SSE2(mm_flags)) {
|
||||||
c->hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_8_sse2;
|
c->hevc_v_loop_filter_chroma = ff_hevc_v_loop_filter_chroma_8_sse2;
|
||||||
@ -480,7 +479,6 @@ void ff_hevcdsp_init_x86(HEVCDSPContext *c, const int bit_depth)
|
|||||||
c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_10_ssse3;
|
c->hevc_h_loop_filter_luma = ff_hevc_h_loop_filter_luma_10_ssse3;
|
||||||
}
|
}
|
||||||
if (EXTERNAL_SSE4(mm_flags) && ARCH_X86_64) {
|
if (EXTERNAL_SSE4(mm_flags) && ARCH_X86_64) {
|
||||||
|
|
||||||
EPEL_LINKS(c->put_hevc_epel, 0, 0, pel_pixels, 10, sse4);
|
EPEL_LINKS(c->put_hevc_epel, 0, 0, pel_pixels, 10, sse4);
|
||||||
EPEL_LINKS(c->put_hevc_epel, 0, 1, epel_h, 10, sse4);
|
EPEL_LINKS(c->put_hevc_epel, 0, 1, epel_h, 10, sse4);
|
||||||
EPEL_LINKS(c->put_hevc_epel, 1, 0, epel_v, 10, sse4);
|
EPEL_LINKS(c->put_hevc_epel, 1, 0, epel_v, 10, sse4);
|
||||||
|
Reference in New Issue
Block a user