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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 int Version; | 101 int Version; |
102 int Width; | 102 int Width; |
103 int Height; | 103 int Height; |
104 struct vpx_rational timebase; | 104 struct vpx_rational timebase; |
105 unsigned int target_bandwidth; /* kilobits per second */ | 105 unsigned int target_bandwidth; /* kilobits per second */ |
106 | 106 |
107 /* Parameter used for applying denoiser. | 107 /* Parameter used for applying denoiser. |
108 * For temporal denoiser: noise_sensitivity = 0 means off, | 108 * For temporal denoiser: noise_sensitivity = 0 means off, |
109 * noise_sensitivity = 1 means temporal denoiser on for Y channel only, | 109 * noise_sensitivity = 1 means temporal denoiser on for Y channel only, |
110 * noise_sensitivity = 2 means temporal denoiser on for all channels. | 110 * noise_sensitivity = 2 means temporal denoiser on for all channels. |
111 * noise_sensitivity = 3 will be used for aggressive mode in future. | 111 * noise_sensitivity = 3 means aggressive denoising mode. |
112 * Temporal denoiser is enabled via the build option | 112 * noise_sensitivity >= 4 means adaptive denoising mode. |
| 113 * Temporal denoiser is enabled via the configuration option: |
113 * CONFIG_TEMPORAL_DENOISING. | 114 * CONFIG_TEMPORAL_DENOISING. |
114 * For spatial denoiser: noise_sensitivity controls the amount of | 115 * For spatial denoiser: noise_sensitivity controls the amount of |
115 * pre-processing blur: noise_sensitivity = 0 means off. | 116 * pre-processing blur: noise_sensitivity = 0 means off. |
116 * Spatial denoiser invoked under !CONFIG_TEMPORAL_DENOISING. | 117 * Spatial denoiser invoked under !CONFIG_TEMPORAL_DENOISING. |
117 */ | 118 */ |
118 int noise_sensitivity; | 119 int noise_sensitivity; |
119 | 120 |
120 /* parameter used for sharpening output: recommendation 0: */ | 121 /* parameter used for sharpening output: recommendation 0: */ |
121 int Sharpness; | 122 int Sharpness; |
122 int cpu_used; | 123 int cpu_used; |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int r
ows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[
4]); | 272 int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int r
ows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[
4]); |
272 int vp8_set_active_map(struct VP8_COMP* comp, unsigned char *map, unsigned i
nt rows, unsigned int cols); | 273 int vp8_set_active_map(struct VP8_COMP* comp, unsigned char *map, unsigned i
nt rows, unsigned int cols); |
273 int vp8_set_internal_size(struct VP8_COMP* comp, VPX_SCALING horiz_mode, VPX
_SCALING vert_mode); | 274 int vp8_set_internal_size(struct VP8_COMP* comp, VPX_SCALING horiz_mode, VPX
_SCALING vert_mode); |
274 int vp8_get_quantizer(struct VP8_COMP* c); | 275 int vp8_get_quantizer(struct VP8_COMP* c); |
275 | 276 |
276 #ifdef __cplusplus | 277 #ifdef __cplusplus |
277 } | 278 } |
278 #endif | 279 #endif |
279 | 280 |
280 #endif // VP8_COMMON_ONYX_H_ | 281 #endif // VP8_COMMON_ONYX_H_ |
OLD | NEW |