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

Side by Side Diff: source/libvpx/vp9/encoder/vp9_block.h

Issue 958693004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 9 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/encoder/vp9_bitstream.c ('k') | source/libvpx/vp9/encoder/vp9_denoiser.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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 int quant_fp; 111 int quant_fp;
112 112
113 // skip forward transform and quantization 113 // skip forward transform and quantization
114 uint8_t skip_txfm[MAX_MB_PLANE << 2]; 114 uint8_t skip_txfm[MAX_MB_PLANE << 2];
115 115
116 int64_t bsse[MAX_MB_PLANE << 2]; 116 int64_t bsse[MAX_MB_PLANE << 2];
117 117
118 // Used to store sub partition's choices. 118 // Used to store sub partition's choices.
119 MV pred_mv[MAX_REF_FRAMES]; 119 MV pred_mv[MAX_REF_FRAMES];
120 120
121 // Strong color activity detection. Used in RTC coding mode to enhance
122 // the visual quality at the boundary of moving color objects.
123 uint8_t color_sensitivity[2];
124
121 void (*fwd_txm4x4)(const int16_t *input, tran_low_t *output, int stride); 125 void (*fwd_txm4x4)(const int16_t *input, tran_low_t *output, int stride);
122 void (*itxm_add)(const tran_low_t *input, uint8_t *dest, int stride, int eob); 126 void (*itxm_add)(const tran_low_t *input, uint8_t *dest, int stride, int eob);
123 #if CONFIG_VP9_HIGHBITDEPTH 127 #if CONFIG_VP9_HIGHBITDEPTH
124 void (*highbd_itxm_add)(const tran_low_t *input, uint8_t *dest, int stride, 128 void (*highbd_itxm_add)(const tran_low_t *input, uint8_t *dest, int stride,
125 int eob, int bd); 129 int eob, int bd);
126 #endif 130 #endif
127 }; 131 };
128 132
129 #ifdef __cplusplus 133 #ifdef __cplusplus
130 } // extern "C" 134 } // extern "C"
131 #endif 135 #endif
132 136
133 #endif // VP9_ENCODER_VP9_BLOCK_H_ 137 #endif // VP9_ENCODER_VP9_BLOCK_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_bitstream.c ('k') | source/libvpx/vp9/encoder/vp9_denoiser.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698