#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <math.h>
#include "config.h"
#include "mp_msg.h"
#include "cpudetect.h"
#include "libavutil/mem.h"
#include "img_format.h"
#include "mp_image.h"
#include "vf.h"
#include "libvo/fastmemcpy.h"
Go to the source code of this file.
|
#define | XMIN(a, b) ((a) < (b) ? (a) : (b)) |
|
#define | XMAX(a, b) ((a) > (b) ? (a) : (b)) |
|
#define | N0 4 |
|
#define | N1 5 |
|
#define | N2 10 |
|
#define | SN0 2 |
|
#define | SN1 2.2360679775 |
|
#define | SN2 3.16227766017 |
|
#define | N (1<<16) |
|
|
static const uint8_t | __attribute__ ((aligned(8))) |
|
static void | dctA_c (int16_t *dst, uint8_t *src, int stride) |
|
static void | dctB_c (int16_t *dst, int16_t *src) |
|
static void | init_thres2 (void) |
|
static int | hardthresh_c (int16_t *src, int qp) |
|
static int | mediumthresh_c (int16_t *src, int qp) |
|
static int | softthresh_c (int16_t *src, int qp) |
|
static void | filter (struct vf_priv_s *p, uint8_t *dst, uint8_t *src, int dst_stride, int src_stride, int width, int height, uint8_t *qp_store, int qp_stride, int is_luma) |
|
static int | config (struct vf_instance *vf, int width, int height, int d_width, int d_height, unsigned int flags, unsigned int outfmt) |
|
static void | get_image (struct vf_instance *vf, mp_image_t *mpi) |
|
static int | put_image (struct vf_instance *vf, mp_image_t *mpi, double pts) |
|
static void | uninit (struct vf_instance *vf) |
|
static int | query_format (struct vf_instance *vf, unsigned int fmt) |
|
static int | control (struct vf_instance *vf, int request, void *data) |
|
static int | vf_open (vf_instance_t *vf, char *args) |
|
#define SN2 3.16227766017 |
#define XMAX |
( |
|
a, |
|
|
|
b |
|
) |
| ((a) > (b) ? (a) : (b)) |
#define XMIN |
( |
|
a, |
|
|
|
b |
|
) |
| ((a) < (b) ? (a) : (b)) |
static const uint8_t __attribute__ |
( |
(aligned(8)) |
| ) |
|
|
static |
static int config |
( |
struct vf_instance * |
vf, |
|
|
int |
width, |
|
|
int |
height, |
|
|
int |
d_width, |
|
|
int |
d_height, |
|
|
unsigned int |
flags, |
|
|
unsigned int |
outfmt |
|
) |
| |
|
static |
static void dctA_c |
( |
int16_t * |
dst, |
|
|
uint8_t * |
src, |
|
|
int |
stride |
|
) |
| |
|
inlinestatic |
static void dctB_c |
( |
int16_t * |
dst, |
|
|
int16_t * |
src |
|
) |
| |
|
static |
static void filter |
( |
struct vf_priv_s * |
p, |
|
|
uint8_t * |
dst, |
|
|
uint8_t * |
src, |
|
|
int |
dst_stride, |
|
|
int |
src_stride, |
|
|
int |
width, |
|
|
int |
height, |
|
|
uint8_t * |
qp_store, |
|
|
int |
qp_stride, |
|
|
int |
is_luma |
|
) |
| |
|
static |
static int hardthresh_c |
( |
int16_t * |
src, |
|
|
int |
qp |
|
) |
| |
|
static |
static int mediumthresh_c |
( |
int16_t * |
src, |
|
|
int |
qp |
|
) |
| |
|
static |
static int query_format |
( |
struct vf_instance * |
vf, |
|
|
unsigned int |
fmt |
|
) |
| |
|
static |
static int softthresh_c |
( |
int16_t * |
src, |
|
|
int |
qp |
|
) |
| |
|
static |
Initial value:={
N/(N1*
N0),
N/(N1*N1),
N/(N1*
N0),
N/(N1*N2),
N/(N2*
N0),
N/(N2*N1),
N/(N2*
N0),
N/(N2*N2),
}
Definition at line 202 of file vf_pp7.c.
Referenced by adaptive_quantization(), avpriv_solve_lls(), blur(), create_default_qtables(), and ff_jpegls_reset_coding_parameters().
Initial value:= {
"postprocess 7",
"pp7",
"Michael Niedermayer",
"",
}
static int vf_open(vf_instance_t *vf, char *args)
Definition at line 484 of file vf_pp7.c.
Initial value:={
N/(SN2*
SN0),
N/(SN2*SN2),
N/(SN2*
SN0),
N/(SN2*SN2),
N/(SN2*
SN0),
N/(SN2*SN2),
N/(SN2*
SN0),
N/(SN2*SN2),
}
Definition at line 209 of file vf_pp7.c.