LCOV - code coverage report
Current view: top level - third_party/aom/aom_dsp/x86 - blend_a64_hmask_sse4.c (source / functions) Hit Total Coverage
Test: output.info Lines: 0 6 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 2 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * Copyright (c) 2016, Alliance for Open Media. All rights reserved
       3             :  *
       4             :  * This source code is subject to the terms of the BSD 2 Clause License and
       5             :  * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
       6             :  * was not distributed with this source code in the LICENSE file, you can
       7             :  * obtain it at www.aomedia.org/license/software. If the Alliance for Open
       8             :  * Media Patent License 1.0 was not distributed with this source code in the
       9             :  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
      10             :  */
      11             : 
      12             : #include "aom/aom_integer.h"
      13             : 
      14             : #include "./aom_dsp_rtcd.h"
      15             : 
      16             : // To start out, just dispatch to the function using the 2D mask and
      17             : // pass mask stride as 0. This can be improved upon if necessary.
      18             : 
      19           0 : void aom_blend_a64_hmask_sse4_1(uint8_t *dst, uint32_t dst_stride,
      20             :                                 const uint8_t *src0, uint32_t src0_stride,
      21             :                                 const uint8_t *src1, uint32_t src1_stride,
      22             :                                 const uint8_t *mask, int h, int w) {
      23           0 :   aom_blend_a64_mask_sse4_1(dst, dst_stride, src0, src0_stride, src1,
      24             :                             src1_stride, mask, 0, h, w, 0, 0);
      25           0 : }
      26             : 
      27             : #if CONFIG_HIGHBITDEPTH
      28           0 : void aom_highbd_blend_a64_hmask_sse4_1(
      29             :     uint8_t *dst_8, uint32_t dst_stride, const uint8_t *src0_8,
      30             :     uint32_t src0_stride, const uint8_t *src1_8, uint32_t src1_stride,
      31             :     const uint8_t *mask, int h, int w, int bd) {
      32           0 :   aom_highbd_blend_a64_mask_sse4_1(dst_8, dst_stride, src0_8, src0_stride,
      33             :                                    src1_8, src1_stride, mask, 0, h, w, 0, 0,
      34             :                                    bd);
      35           0 : }
      36             : #endif  // CONFIG_HIGHBITDEPTH

Generated by: LCOV version 1.13