1 /*
2 * Copyright(c) 2019 Intel Corporation
3 * SPDX - License - Identifier: BSD - 2 - Clause - Patent
4 */
5 
6 #include "EbAvcStyleMcp_SSE2.h"
7 #include "EbMcp_SSE2.h" // THIS SHOULD BE _SSE2 in the future
8 
eb_vp9_avc_style_copy_sse2(EbByte ref_pic,uint32_t src_stride,EbByte dst,uint32_t dst_stride,uint32_t pu_width,uint32_t pu_height,EbByte temp_buf,uint32_t frac_pos)9 void eb_vp9_avc_style_copy_sse2(
10     EbByte   ref_pic,
11     uint32_t src_stride,
12     EbByte   dst,
13     uint32_t dst_stride,
14     uint32_t pu_width,
15     uint32_t pu_height,
16     EbByte   temp_buf,
17     uint32_t frac_pos)
18 {
19     (void)temp_buf;
20     (void)frac_pos;
21 
22     eb_vp9_picture_copy_kernel_sse2(ref_pic, src_stride, dst, dst_stride, pu_width, pu_height);
23 }
24