#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mp_image.h"
#include "mp_msg.h"
#include "vf.h"
#include "libvo/fastmemcpy.h"
#include "libavutil/common.h"
Go to the source code of this file.
Data Structures | |
struct | vf_priv_s |
Functions | |
static int | config (struct vf_instance *vf, int width, int height, int d_width, int d_height, unsigned int flags, unsigned int outfmt) |
static int | control (struct vf_instance *vf, int request, void *data) |
static int | put_image (struct vf_instance *vf, mp_image_t *mpi, double pts) |
static int | vf_open (vf_instance_t *vf, char *args) |
Variables | |
const vf_info_t | vf_info_rectangle |
static int config | ( | struct vf_instance * | vf, | |
int | width, | |||
int | height, | |||
int | d_width, | |||
int | d_height, | |||
unsigned int | flags, | |||
unsigned int | outfmt | |||
) | [static] |
Definition at line 34 of file vf_rectangle.c.
static int control | ( | struct vf_instance * | vf, | |
int | request, | |||
void * | data | |||
) | [static] |
Definition at line 55 of file vf_rectangle.c.
static int put_image | ( | struct vf_instance * | vf, | |
mp_image_t * | mpi, | |||
double | pts | |||
) | [static] |
Definition at line 86 of file vf_rectangle.c.
static int vf_open | ( | vf_instance_t * | vf, | |
char * | args | |||
) | [static] |
Definition at line 159 of file vf_rectangle.c.
const vf_info_t vf_info_rectangle |
Initial value:
Definition at line 174 of file vf_rectangle.c.