Coverage Report

Created: 2025-08-28 07:12

/src/libvpx/vp8/common/x86/idct_blk_sse2.c
Line
Count
Source
1
/*
2
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3
 *
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
6
 *  tree. An additional intellectual property rights grant can be found
7
 *  in the file PATENTS.  All contributing project authors may
8
 *  be found in the AUTHORS file in the root of the source tree.
9
 */
10
11
#include "vpx_config.h"
12
#include "vp8_rtcd.h"
13
14
void vp8_idct_dequant_0_2x_sse2(short *q, short *dq, unsigned char *dst,
15
                                int dst_stride);
16
void vp8_idct_dequant_full_2x_sse2(short *q, short *dq, unsigned char *dst,
17
                                   int dst_stride);
18
19
void vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst,
20
170M
                                       int stride, char *eobs) {
21
170M
  int i;
22
23
851M
  for (i = 0; i < 4; ++i) {
24
680M
    if (((short *)(eobs))[0]) {
25
530M
      if (((short *)(eobs))[0] & 0xfefe) {
26
216M
        vp8_idct_dequant_full_2x_sse2(q, dq, dst, stride);
27
314M
      } else {
28
314M
        vp8_idct_dequant_0_2x_sse2(q, dq, dst, stride);
29
314M
      }
30
530M
    }
31
680M
    if (((short *)(eobs))[1]) {
32
559M
      if (((short *)(eobs))[1] & 0xfefe) {
33
246M
        vp8_idct_dequant_full_2x_sse2(q + 32, dq, dst + 8, stride);
34
312M
      } else {
35
312M
        vp8_idct_dequant_0_2x_sse2(q + 32, dq, dst + 8, stride);
36
312M
      }
37
559M
    }
38
680M
    q += 64;
39
680M
    dst += stride * 4;
40
680M
    eobs += 4;
41
680M
  }
42
170M
}
43
44
void vp8_dequant_idct_add_uv_block_sse2(short *q, short *dq,
45
                                        unsigned char *dst_u,
46
                                        unsigned char *dst_v, int stride,
47
775M
                                        char *eobs) {
48
775M
  if (((short *)(eobs))[0]) {
49
85.4M
    if (((short *)(eobs))[0] & 0xfefe) {
50
26.9M
      vp8_idct_dequant_full_2x_sse2(q, dq, dst_u, stride);
51
58.4M
    } else {
52
58.4M
      vp8_idct_dequant_0_2x_sse2(q, dq, dst_u, stride);
53
58.4M
    }
54
85.4M
  }
55
775M
  q += 32;
56
775M
  dst_u += stride * 4;
57
58
775M
  if (((short *)(eobs))[1]) {
59
86.9M
    if (((short *)(eobs))[1] & 0xfefe) {
60
40.4M
      vp8_idct_dequant_full_2x_sse2(q, dq, dst_u, stride);
61
46.5M
    } else {
62
46.5M
      vp8_idct_dequant_0_2x_sse2(q, dq, dst_u, stride);
63
46.5M
    }
64
86.9M
  }
65
775M
  q += 32;
66
67
775M
  if (((short *)(eobs))[2]) {
68
87.7M
    if (((short *)(eobs))[2] & 0xfefe) {
69
49.5M
      vp8_idct_dequant_full_2x_sse2(q, dq, dst_v, stride);
70
49.5M
    } else {
71
38.2M
      vp8_idct_dequant_0_2x_sse2(q, dq, dst_v, stride);
72
38.2M
    }
73
87.7M
  }
74
775M
  q += 32;
75
775M
  dst_v += stride * 4;
76
77
775M
  if (((short *)(eobs))[3]) {
78
80.5M
    if (((short *)(eobs))[3] & 0xfefe) {
79
38.6M
      vp8_idct_dequant_full_2x_sse2(q, dq, dst_v, stride);
80
41.8M
    } else {
81
41.8M
      vp8_idct_dequant_0_2x_sse2(q, dq, dst_v, stride);
82
41.8M
    }
83
80.5M
  }
84
775M
}