Coverage Report

Created: 2026-09-14 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/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
12.4M
                                       int stride, char *eobs) {
21
12.4M
  int i;
22
23
62.2M
  for (i = 0; i < 4; ++i) {
24
49.8M
    if (((short *)(eobs))[0]) {
25
38.6M
      if (((short *)(eobs))[0] & 0xfefe) {
26
21.9M
        vp8_idct_dequant_full_2x_sse2(q, dq, dst, stride);
27
21.9M
      } else {
28
16.6M
        vp8_idct_dequant_0_2x_sse2(q, dq, dst, stride);
29
16.6M
      }
30
38.6M
    }
31
49.8M
    if (((short *)(eobs))[1]) {
32
39.3M
      if (((short *)(eobs))[1] & 0xfefe) {
33
23.0M
        vp8_idct_dequant_full_2x_sse2(q + 32, dq, dst + 8, stride);
34
23.0M
      } else {
35
16.2M
        vp8_idct_dequant_0_2x_sse2(q + 32, dq, dst + 8, stride);
36
16.2M
      }
37
39.3M
    }
38
49.8M
    q += 64;
39
49.8M
    dst += stride * 4;
40
49.8M
    eobs += 4;
41
49.8M
  }
42
12.4M
}
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
80.2M
                                        char *eobs) {
48
80.2M
  if (((short *)(eobs))[0]) {
49
12.6M
    if (((short *)(eobs))[0] & 0xfefe) {
50
7.38M
      vp8_idct_dequant_full_2x_sse2(q, dq, dst_u, stride);
51
7.38M
    } else {
52
5.29M
      vp8_idct_dequant_0_2x_sse2(q, dq, dst_u, stride);
53
5.29M
    }
54
12.6M
  }
55
80.2M
  q += 32;
56
80.2M
  dst_u += stride * 4;
57
58
80.2M
  if (((short *)(eobs))[1]) {
59
11.1M
    if (((short *)(eobs))[1] & 0xfefe) {
60
6.39M
      vp8_idct_dequant_full_2x_sse2(q, dq, dst_u, stride);
61
6.39M
    } else {
62
4.78M
      vp8_idct_dequant_0_2x_sse2(q, dq, dst_u, stride);
63
4.78M
    }
64
11.1M
  }
65
80.2M
  q += 32;
66
67
80.2M
  if (((short *)(eobs))[2]) {
68
11.9M
    if (((short *)(eobs))[2] & 0xfefe) {
69
6.40M
      vp8_idct_dequant_full_2x_sse2(q, dq, dst_v, stride);
70
6.40M
    } else {
71
5.54M
      vp8_idct_dequant_0_2x_sse2(q, dq, dst_v, stride);
72
5.54M
    }
73
11.9M
  }
74
80.2M
  q += 32;
75
80.2M
  dst_v += stride * 4;
76
77
80.2M
  if (((short *)(eobs))[3]) {
78
12.6M
    if (((short *)(eobs))[3] & 0xfefe) {
79
7.10M
      vp8_idct_dequant_full_2x_sse2(q, dq, dst_v, stride);
80
7.10M
    } else {
81
5.53M
      vp8_idct_dequant_0_2x_sse2(q, dq, dst_v, stride);
82
5.53M
    }
83
12.6M
  }
84
80.2M
}