2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef POSTPROC_H
|
|
|
|
#define POSTPROC_H
|
|
|
|
|
|
|
|
#include "vpx_ports/mem.h"
|
|
|
|
struct postproc_state
|
|
|
|
{
|
|
|
|
int last_q;
|
|
|
|
int last_noise;
|
|
|
|
char noise[3072];
|
2011-12-21 02:50:31 +04:00
|
|
|
int last_base_qindex;
|
2012-03-22 20:13:18 +04:00
|
|
|
int last_frame_valid;
|
2010-05-18 19:58:33 +04:00
|
|
|
DECLARE_ALIGNED(16, char, blackclamp[16]);
|
|
|
|
DECLARE_ALIGNED(16, char, whiteclamp[16]);
|
|
|
|
DECLARE_ALIGNED(16, char, bothclamp[16]);
|
|
|
|
};
|
|
|
|
#include "onyxc_int.h"
|
|
|
|
#include "ppflags.h"
|
|
|
|
int vp8_post_proc_frame(struct VP8Common *oci, YV12_BUFFER_CONFIG *dest,
|
2010-11-05 02:03:36 +03:00
|
|
|
vp8_ppflags_t *flags);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
2012-10-10 22:27:11 +04:00
|
|
|
void vp8_de_noise(struct VP8Common *oci,
|
|
|
|
YV12_BUFFER_CONFIG *source,
|
2010-05-18 19:58:33 +04:00
|
|
|
YV12_BUFFER_CONFIG *post,
|
|
|
|
int q,
|
|
|
|
int low_var_thresh,
|
2012-01-13 04:55:44 +04:00
|
|
|
int flag);
|
2010-05-28 12:37:43 +04:00
|
|
|
|
2012-09-28 21:13:07 +04:00
|
|
|
void vp8_deblock(struct VP8Common *oci,
|
|
|
|
YV12_BUFFER_CONFIG *source,
|
2010-05-28 12:37:43 +04:00
|
|
|
YV12_BUFFER_CONFIG *post,
|
|
|
|
int q,
|
|
|
|
int low_var_thresh,
|
2012-01-13 04:55:44 +04:00
|
|
|
int flag);
|
2012-01-27 22:23:52 +04:00
|
|
|
|
|
|
|
#define MFQE_PRECISION 4
|
|
|
|
|
|
|
|
void vp8_multiframe_quality_enhance(struct VP8Common *cm);
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|