#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 "img_format.h"
#include "mp_image.h"
#include "vf.h"
#include "libvo/fastmemcpy.h"
#include "libavutil/common.h"
Go to the source code of this file.
|
static void | unsharp (uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int width, int height, FilterParam *fp) |
|
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 void | parse (FilterParam *fp, char *args) |
|
static int | vf_open (vf_instance_t *vf, char *args) |
|
#define MIN_MATRIX_SIZE 3 |
#define MAX_MATRIX_SIZE 63 |
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 int put_image |
( |
struct vf_instance * |
vf, |
|
|
mp_image_t * |
mpi, |
|
|
double |
pts |
|
) |
| |
|
static |
static void uninit |
( |
struct vf_instance * |
vf | ) |
|
|
static |
static int query_format |
( |
struct vf_instance * |
vf, |
|
|
unsigned int |
fmt |
|
) |
| |
|
static |
const unsigned int fmt_list[] |
|
static |
Initial value:= {
"unsharp mask & gaussian blur",
"unsharp",
"Remi Guyomarch",
"",
}
Definition at line 315 of file vf_unsharp.c.