Fix multi-resolution threaded encoding
[profile/ivi/libvpx.git] / vp8 / encoder / denoising.h
1 /*
2  *  Copyright (c) 2012 The WebM project authors. All Rights Reserved.
3  *
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
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 #ifndef VP8_ENCODER_DENOISING_H_
12 #define VP8_ENCODER_DENOISING_H_
13
14 #include "block.h"
15
16 typedef struct vp8_denoiser
17 {
18   YV12_BUFFER_CONFIG yv12_running_avg;
19   YV12_BUFFER_CONFIG yv12_mc_running_avg;
20 } VP8_DENOISER;
21
22 int vp8_denoiser_allocate(VP8_DENOISER *denoiser, int width, int height);
23
24 void vp8_denoiser_free(VP8_DENOISER *denoiser);
25
26 void vp8_denoiser_denoise_mb(VP8_DENOISER *denoiser,
27                              MACROBLOCK *x,
28                              unsigned int best_sse,
29                              unsigned int zero_mv_sse,
30                              int recon_yoffset,
31                              int recon_uvoffset);
32
33 #endif  // VP8_ENCODER_DENOISING_H_