2010-05-18 11:58:33 -04:00
|
|
|
/*
|
2010-09-09 08:16:39 -04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 11:58:33 -04:00
|
|
|
*
|
2010-06-18 12:39:21 -04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 16: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 12:39:21 -04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 16:19:40 -04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 11: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-20 14:50:31 -08:00
|
|
|
int last_base_qindex;
|
2012-03-22 09:13:18 -07:00
|
|
|
int last_frame_valid;
|
2010-05-18 11: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-04 16:03:36 -07:00
|
|
|
vp8_ppflags_t *flags);
|
2010-05-18 11:58:33 -04:00
|
|
|
|
|
|
|
|
2012-10-10 11:27:11 -07:00
|
|
|
void vp8_de_noise(struct VP8Common *oci,
|
|
|
|
YV12_BUFFER_CONFIG *source,
|
2010-05-18 11:58:33 -04:00
|
|
|
YV12_BUFFER_CONFIG *post,
|
|
|
|
int q,
|
|
|
|
int low_var_thresh,
|
2012-01-12 16:55:44 -08:00
|
|
|
int flag);
|
2010-05-28 10:37:43 +02:00
|
|
|
|
2012-09-28 10:13:07 -07:00
|
|
|
void vp8_deblock(struct VP8Common *oci,
|
|
|
|
YV12_BUFFER_CONFIG *source,
|
2010-05-28 10:37:43 +02:00
|
|
|
YV12_BUFFER_CONFIG *post,
|
|
|
|
int q,
|
|
|
|
int low_var_thresh,
|
2012-01-12 16:55:44 -08:00
|
|
|
int flag);
|
2012-01-27 10:23:52 -08:00
|
|
|
|
|
|
|
#define MFQE_PRECISION 4
|
|
|
|
|
|
|
|
void vp8_multiframe_quality_enhance(struct VP8Common *cm);
|
2010-05-18 11:58:33 -04:00
|
|
|
#endif
|