| 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 |
| 11 #ifndef VP9_ENCODER_VP9_VARIANCE_H_ | 11 #ifndef VP9_ENCODER_VP9_VARIANCE_H_ |
| 12 #define VP9_ENCODER_VP9_VARIANCE_H_ | 12 #define VP9_ENCODER_VP9_VARIANCE_H_ |
| 13 | 13 |
| 14 #include "vpx/vpx_integer.h" | 14 #include "vpx/vpx_integer.h" |
| 15 | 15 |
| 16 #ifdef __cplusplus | 16 #ifdef __cplusplus |
| 17 extern "C" { | 17 extern "C" { |
| 18 #endif | 18 #endif |
| 19 | 19 |
| 20 void variance(const uint8_t *a, int a_stride, | 20 void variance(const uint8_t *a, int a_stride, |
| 21 const uint8_t *b, int b_stride, | 21 const uint8_t *b, int b_stride, |
| 22 int w, int h, | 22 int w, int h, |
| 23 unsigned int *sse, int *sum); | 23 unsigned int *sse, int *sum); |
| 24 | 24 |
| 25 typedef unsigned int(*vp9_sad_fn_t)(const uint8_t *src_ptr, | 25 typedef unsigned int(*vp9_sad_fn_t)(const uint8_t *src_ptr, |
| 26 int source_stride, | 26 int source_stride, |
| 27 const uint8_t *ref_ptr, | 27 const uint8_t *ref_ptr, |
| 28 int ref_stride, | 28 int ref_stride); |
| 29 unsigned int max_sad); | |
| 30 | 29 |
| 31 typedef unsigned int(*vp9_sad_avg_fn_t)(const uint8_t *src_ptr, | 30 typedef unsigned int(*vp9_sad_avg_fn_t)(const uint8_t *src_ptr, |
| 32 int source_stride, | 31 int source_stride, |
| 33 const uint8_t *ref_ptr, | 32 const uint8_t *ref_ptr, |
| 34 int ref_stride, | 33 int ref_stride, |
| 35 const uint8_t *second_pred, | 34 const uint8_t *second_pred); |
| 36 unsigned int max_sad); | |
| 37 | 35 |
| 38 typedef void (*vp9_sad_multi_fn_t)(const uint8_t *src_ptr, | 36 typedef void (*vp9_sad_multi_fn_t)(const uint8_t *src_ptr, |
| 39 int source_stride, | 37 int source_stride, |
| 40 const uint8_t *ref_ptr, | 38 const uint8_t *ref_ptr, |
| 41 int ref_stride, | 39 int ref_stride, |
| 42 unsigned int *sad_array); | 40 unsigned int *sad_array); |
| 43 | 41 |
| 44 typedef void (*vp9_sad_multi_d_fn_t)(const uint8_t *src_ptr, | 42 typedef void (*vp9_sad_multi_d_fn_t)(const uint8_t *src_ptr, |
| 45 int source_stride, | 43 int source_stride, |
| 46 const uint8_t* const ref_ptr[], | 44 const uint8_t* const ref_ptr[], |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 } vp9_variance_fn_ptr_t; | 79 } vp9_variance_fn_ptr_t; |
| 82 | 80 |
| 83 void vp9_comp_avg_pred(uint8_t *comp_pred, const uint8_t *pred, int width, | 81 void vp9_comp_avg_pred(uint8_t *comp_pred, const uint8_t *pred, int width, |
| 84 int height, const uint8_t *ref, int ref_stride); | 82 int height, const uint8_t *ref, int ref_stride); |
| 85 | 83 |
| 86 #ifdef __cplusplus | 84 #ifdef __cplusplus |
| 87 } // extern "C" | 85 } // extern "C" |
| 88 #endif | 86 #endif |
| 89 | 87 |
| 90 #endif // VP9_ENCODER_VP9_VARIANCE_H_ | 88 #endif // VP9_ENCODER_VP9_VARIANCE_H_ |
| OLD | NEW |