Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: source/libvpx/vp9/common/vp9_idct.h

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/libvpx/vp9/common/vp9_common_data.c ('k') | source/libvpx/vp9/common/vp9_idct.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/common/vp9_common_data.c ('k') | source/libvpx/vp9/common/vp9_idct.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698