// Copyright 2015 Google Inc. All Rights Reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the COPYING file in the root of the source // tree. An additional intellectual property rights grant can be found // in the file PATENTS. All contributing project authors may // be found in the AUTHORS file in the root of the source tree. // ----------------------------------------------------------------------------- // // SSE4 version of some decoding functions. // // Author: Skal ([email protected]) #include "src/dsp/dsp.h" #if defined(WEBP_USE_SSE41) #include <smmintrin.h> #include "src/dec/vp8i_dec.h" #include "src/utils/utils.h" static void HE16_SSE41(uint8_t* dst) { … } //------------------------------------------------------------------------------ // Entry point extern void VP8DspInitSSE41(void); WEBP_TSAN_IGNORE_FUNCTION void VP8DspInitSSE41(void) { … } #else // !WEBP_USE_SSE41 WEBP_DSP_INIT_STUB(VP8DspInitSSE41) #endif // WEBP_USE_SSE41