summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_idct_blk.c
blob: 0e3560189e28523c851aa55d192471dc60e8c1b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "vp9_rtcd.h"
#include "vp9/common/vp9_blockd.h"
#include "vp9/decoder/vp9_dequantize.h"

void vp9_dequant_idct_add_y_block_c(int16_t *q, const int16_t *dq,
                                    uint8_t *pre, int pre_stride,
                                    uint8_t *dst,
                                    int stride, MACROBLOCKD *xd) {
  int i, j;

  for (i = 0; i < 4; i++) {
    for (j = 0; j < 4; j++) {
      vp9_dequant_idct_add(q, dq, pre, dst, pre_stride, stride,
                           xd->plane[0].eobs[i * 4  + j]);
      q   += 16;
      pre += 4;
      dst += 4;
    }

    pre += 4 * pre_stride - 16;
    dst += 4 * stride - 16;
  }
}

void vp9_dequant_idct_add_uv_block_c(int16_t *q, const int16_t *dq,
                                     uint8_t *pre, int pre_stride, uint8_t *dst,
                                     int stride, uint16_t *eobs) {
  int i, j;

  for (i = 0; i < 2; i++) {
    for (j = 0; j < 2; j++) {
      vp9_dequant_idct_add(q, dq, pre, dst, pre_stride, stride,
                           eobs[i * 2 + j]);
      q   += 16;
      pre += 4;
      dst += 4;
    }

    pre  += 4 * pre_stride - 8;
    dst += 4 * stride - 8;
  }
}

void vp9_dequant_idct_add_y_block_8x8_c(int16_t *q, const int16_t *dq,
                                        uint8_t *pre, int pre_stride,
                                        uint8_t *dst,
                                        int stride, MACROBLOCKD *xd) {
  uint8_t *origdest = dst;
  uint8_t *origpred = pre;

  vp9_dequant_idct_add_8x8_c(q, dq, pre, dst, pre_stride, stride,
                             xd->plane[0].eobs[0]);
  vp9_dequant_idct_add_8x8_c(&q[64], dq, origpred + 8,
                             origdest + 8, pre_stride, stride,
                             xd->plane[0].eobs[4]);
  vp9_dequant_idct_add_8x8_c(&q[128], dq, origpred + 8 * pre_stride,
                             origdest + 8 * stride, pre_stride, stride,
                             xd->plane[0].eobs[8]);
  vp9_dequant_idct_add_8x8_c(&q[192], dq, origpred + 8 * pre_stride + 8,
                             origdest + 8 * stride + 8, pre_stride, stride,
                             xd->plane[0].eobs[12]);
}

void vp9_dequant_idct_add_y_block_lossless_c(int16_t *q, const int16_t *dq,
                                             uint8_t *pre, int pre_stride,
                                             uint8_t *dst,
                                             int stride, MACROBLOCKD *xd) {
  int i, j;

  for (i = 0; i < 4; i++) {
    for (j = 0; j < 4; j++) {
      vp9_dequant_idct_add_lossless_c(q, dq, pre, dst, pre_stride, stride,
                                      xd->plane[0].eobs[i * 4 + j]);
      q   += 16;
      pre += 4;
      dst += 4;
    }

    pre += 4 * pre_stride - 16;
    dst += 4 * stride - 16;
  }
}

void vp9_dequant_idct_add_uv_block_lossless_c(int16_t *q, const int16_t *dq,
                                              uint8_t *pre, int pre_stride,
                                              uint8_t *dst,
                                              int stride,
                                              uint16_t *eobs) {
  int i, j;

  for (i = 0; i < 2; i++) {
    for (j = 0; j < 2; j++) {
      vp9_dequant_idct_add_lossless_c(q, dq, pre, dst, pre_stride, stride,
                                      eobs[i * 2 + j]);
      q   += 16;
      pre += 4;
      dst += 4;
    }

    pre += 4 * pre_stride - 8;
    dst += 4 * stride - 8;
  }
}