| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 highbd_transform_1d cols, rows; // vertical and horizontal | 37 highbd_transform_1d cols, rows; // vertical and horizontal |
| 38 } highbd_transform_2d; | 38 } highbd_transform_2d; |
| 39 #endif // CONFIG_VP9_HIGHBITDEPTH | 39 #endif // CONFIG_VP9_HIGHBITDEPTH |
| 40 | 40 |
| 41 void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, | 41 void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, |
| 42 int eob); | 42 int eob); |
| 43 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, | 43 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, |
| 44 int eob); | 44 int eob); |
| 45 void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride, | 45 void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride, |
| 46 int eob); | 46 int eob); |
| 47 void vp9_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride, int | 47 void vp9_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride, |
| 48 eob); | 48 int eob); |
| 49 void vp9_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride, | 49 void vp9_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride, |
| 50 int eob); | 50 int eob); |
| 51 | 51 |
| 52 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, | 52 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, |
| 53 int stride, int eob); | 53 int stride, int eob); |
| 54 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, | 54 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, |
| 55 int stride, int eob); | 55 int stride, int eob); |
| 56 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, | 56 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, |
| 57 int stride, int eob); | 57 int stride, int eob); |
| 58 | 58 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 72 void vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, | 72 void vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, |
| 73 uint8_t *dest, int stride, int eob, int bd); | 73 uint8_t *dest, int stride, int eob, int bd); |
| 74 void vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, | 74 void vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, |
| 75 uint8_t *dest, int stride, int eob, int bd); | 75 uint8_t *dest, int stride, int eob, int bd); |
| 76 #endif // CONFIG_VP9_HIGHBITDEPTH | 76 #endif // CONFIG_VP9_HIGHBITDEPTH |
| 77 #ifdef __cplusplus | 77 #ifdef __cplusplus |
| 78 } // extern "C" | 78 } // extern "C" |
| 79 #endif | 79 #endif |
| 80 | 80 |
| 81 #endif // VP9_COMMON_VP9_IDCT_H_ | 81 #endif // VP9_COMMON_VP9_IDCT_H_ |
| OLD | NEW |