Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(646)

Side by Side Diff: source/libvpx/vpx_dsp/vpx_dsp.mk

Issue 1322703002: Cherry pick vp8 halfpix variance fix (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx@m46-2490
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/config/win/x64/vpx_dsp_rtcd.h ('k') | source/libvpx/vpx_dsp/vpx_dsp_rtcd_defs.pl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1 ##
2 ## Copyright (c) 2015 The WebM project authors. All Rights Reserved. 2 ## Copyright (c) 2015 The WebM project authors. All Rights Reserved.
3 ## 3 ##
4 ## Use of this source code is governed by a BSD-style license 4 ## Use of this source code is governed by a BSD-style license
5 ## that can be found in the LICENSE file in the root of the source 5 ## that can be found in the LICENSE file in the root of the source
6 ## tree. An additional intellectual property rights grant can be found 6 ## tree. An additional intellectual property rights grant can be found
7 ## in the file PATENTS. All contributing project authors may 7 ## in the file PATENTS. All contributing project authors may
8 ## be found in the AUTHORS file in the root of the source tree. 8 ## be found in the AUTHORS file in the root of the source tree.
9 ## 9 ##
10 10
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 DSP_SRCS-$(HAVE_MEDIA) += arm/variance_media$(ASM) 272 DSP_SRCS-$(HAVE_MEDIA) += arm/variance_media$(ASM)
273 DSP_SRCS-$(HAVE_NEON) += arm/subpel_variance_neon.c 273 DSP_SRCS-$(HAVE_NEON) += arm/subpel_variance_neon.c
274 DSP_SRCS-$(HAVE_NEON) += arm/variance_neon.c 274 DSP_SRCS-$(HAVE_NEON) += arm/variance_neon.c
275 275
276 DSP_SRCS-$(HAVE_MSA) += mips/variance_msa.c 276 DSP_SRCS-$(HAVE_MSA) += mips/variance_msa.c
277 DSP_SRCS-$(HAVE_MSA) += mips/sub_pixel_variance_msa.c 277 DSP_SRCS-$(HAVE_MSA) += mips/sub_pixel_variance_msa.c
278 278
279 DSP_SRCS-$(HAVE_MMX) += x86/variance_mmx.c 279 DSP_SRCS-$(HAVE_MMX) += x86/variance_mmx.c
280 DSP_SRCS-$(HAVE_MMX) += x86/variance_impl_mmx.asm 280 DSP_SRCS-$(HAVE_MMX) += x86/variance_impl_mmx.asm
281 DSP_SRCS-$(HAVE_SSE2) += x86/variance_sse2.c # Contains SSE2 and SSSE3 281 DSP_SRCS-$(HAVE_SSE2) += x86/variance_sse2.c # Contains SSE2 and SSSE3
282 DSP_SRCS-$(HAVE_SSE2) += x86/halfpix_variance_sse2.c
283 DSP_SRCS-$(HAVE_SSE2) += x86/halfpix_variance_impl_sse2.asm
282 DSP_SRCS-$(HAVE_AVX2) += x86/variance_avx2.c 284 DSP_SRCS-$(HAVE_AVX2) += x86/variance_avx2.c
283 DSP_SRCS-$(HAVE_AVX2) += x86/variance_impl_avx2.c 285 DSP_SRCS-$(HAVE_AVX2) += x86/variance_impl_avx2.c
284 286
285 ifeq ($(CONFIG_USE_X86INC),yes) 287 ifeq ($(CONFIG_USE_X86INC),yes)
286 DSP_SRCS-$(HAVE_SSE2) += x86/subpel_variance_sse2.asm # Contains SSE2 and SSS E3 288 DSP_SRCS-$(HAVE_SSE2) += x86/subpel_variance_sse2.asm # Contains SSE2 and SSS E3
287 endif # CONFIG_USE_X86INC 289 endif # CONFIG_USE_X86INC
288 290
289 ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes) 291 ifeq ($(CONFIG_VP9_HIGHBITDEPTH),yes)
290 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_variance_sse2.c 292 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_variance_sse2.c
291 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_variance_impl_sse2.asm 293 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_variance_impl_sse2.asm
292 ifeq ($(CONFIG_USE_X86INC),yes) 294 ifeq ($(CONFIG_USE_X86INC),yes)
293 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_subpel_variance_impl_sse2.asm 295 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_subpel_variance_impl_sse2.asm
294 endif # CONFIG_USE_X86INC 296 endif # CONFIG_USE_X86INC
295 endif # CONFIG_VP9_HIGHBITDEPTH 297 endif # CONFIG_VP9_HIGHBITDEPTH
296 endif # CONFIG_ENCODERS || CONFIG_POSTPROC || CONFIG_VP9_POSTPROC 298 endif # CONFIG_ENCODERS || CONFIG_POSTPROC || CONFIG_VP9_POSTPROC
297 299
298 DSP_SRCS-no += $(DSP_SRCS_REMOVE-yes) 300 DSP_SRCS-no += $(DSP_SRCS_REMOVE-yes)
299 301
300 DSP_SRCS-yes += vpx_dsp_rtcd.c 302 DSP_SRCS-yes += vpx_dsp_rtcd.c
301 DSP_SRCS-yes += vpx_dsp_rtcd_defs.pl 303 DSP_SRCS-yes += vpx_dsp_rtcd_defs.pl
302 304
303 $(eval $(call rtcd_h_template,vpx_dsp_rtcd,vpx_dsp/vpx_dsp_rtcd_defs.pl)) 305 $(eval $(call rtcd_h_template,vpx_dsp_rtcd,vpx_dsp/vpx_dsp_rtcd_defs.pl))
OLDNEW
« no previous file with comments | « source/config/win/x64/vpx_dsp_rtcd.h ('k') | source/libvpx/vpx_dsp/vpx_dsp_rtcd_defs.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698