Path: blob/master/thirdparty/libwebp/sharpyuv/sharpyuv_cpu.h
9903 views
// Copyright 2022 Google Inc. All Rights Reserved.1//2// Use of this source code is governed by a BSD-style license3// that can be found in the COPYING file in the root of the source4// tree. An additional intellectual property rights grant can be found5// in the file PATENTS. All contributing project authors may6// be found in the AUTHORS file in the root of the source tree.7// -----------------------------------------------------------------------------8//9#ifndef WEBP_SHARPYUV_SHARPYUV_CPU_H_10#define WEBP_SHARPYUV_SHARPYUV_CPU_H_1112#include "sharpyuv/sharpyuv.h"1314// Avoid exporting SharpYuvGetCPUInfo in shared object / DLL builds.15// SharpYuvInit() replaces the use of the function pointer.16#undef WEBP_EXTERN17#define WEBP_EXTERN extern18#define VP8GetCPUInfo SharpYuvGetCPUInfo19#include "src/dsp/cpu.h"2021#endif // WEBP_SHARPYUV_SHARPYUV_CPU_H_222324