#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <assert.h>
#include "config.h"
#include "mp_msg.h"
#include "libavutil/avutil.h"
#include "libavutil/mem.h"
#include "img_format.h"
#include "mp_image.h"
#include "vf.h"
#include "libswscale/swscale.h"
#include "vf_scale.h"
Go to the source code of this file.
|
static void | getSubSampleFactors (int *h, int *v, int format) |
|
static int | allocStuff (FilterParam *f, int width, int height) |
|
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 | freeBuffers (FilterParam *f) |
|
static void | uninit (struct vf_instance *vf) |
|
static void | blur (uint8_t *dst, uint8_t *src, int w, int h, int dstStride, int srcStride, FilterParam *fp) |
|
static int | put_image (struct vf_instance *vf, mp_image_t *mpi, double pts) |
|
static int | query_format (struct vf_instance *vf, unsigned int fmt) |
|
static int | vf_open (vf_instance_t *vf, char *args) |
|
static int allocStuff |
( |
FilterParam * |
f, |
|
|
int |
width, |
|
|
int |
height |
|
) |
| |
|
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 getSubSampleFactors |
( |
int * |
h, |
|
|
int * |
v, |
|
|
int |
format |
|
) |
| |
|
static |
static int query_format |
( |
struct vf_instance * |
vf, |
|
|
unsigned int |
fmt |
|
) |
| |
|
static |
Initial value:= {
"shape adaptive blur",
"sab",
"Michael Niedermayer",
"",
}
static int vf_open(vf_instance_t *vf, char *args)
Definition at line 315 of file vf_sab.c.