1 /* 2 * Copyright 2019 The libgav1 Authors 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef LIBGAV1_SRC_DSP_MASK_BLEND_H_ 18 #define LIBGAV1_SRC_DSP_MASK_BLEND_H_ 19 20 // Pull in LIBGAV1_DspXXX defines representing the implementation status 21 // of each function. The resulting value of each can be used by each module to 22 // determine whether an implementation is needed at compile time. 23 // IWYU pragma: begin_exports 24 25 // ARM: 26 #include "src/dsp/arm/mask_blend_neon.h" 27 28 // x86: 29 // Note includes should be sorted in logical order avx2/avx/sse4, etc. 30 // The order of includes is important as each tests for a superior version 31 // before setting the base. 32 // clang-format off 33 // SSE4_1 34 #include "src/dsp/x86/mask_blend_sse4.h" 35 // clang-format on 36 37 // IWYU pragma: end_exports 38 39 namespace libgav1 { 40 namespace dsp { 41 42 // Initializes Dsp::mask_blend and Dsp::inter_intra_mask_blend_8bpp. This 43 // function is not thread-safe. 44 void MaskBlendInit_C(); 45 46 } // namespace dsp 47 } // namespace libgav1 48 49 #endif // LIBGAV1_SRC_DSP_MASK_BLEND_H_ 50