#include <stdio.h>#include <stdlib.h>#include <string.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 "pullup.h"Go to the source code of this file.
Data Structures | |
| struct | vf_priv_s |
| Stores persistant variables. More... | |
Defines | |
| #define | MAX(a, b) ((a)>(b)?(a):(b)) |
Functions | |
| static void | init_pullup (struct vf_instance *vf, mp_image_t *mpi) |
| 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 | config (struct vf_instance *vf, int width, int height, int d_width, int d_height, unsigned int flags, unsigned int outfmt) |
| static void | uninit (struct vf_instance *vf) |
| static int | vf_open (vf_instance_t *vf, char *args) |
Variables | |
| const vf_info_t | vf_info_pullup |
| #define MAX | ( | a, | |||
| b | ) | ((a)>(b)?(a):(b)) |
Definition at line 36 of file vf_pullup.c.
| 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 269 of file vf_pullup.c.
| static void init_pullup | ( | struct vf_instance * | vf, | |
| mp_image_t * | mpi | |||
| ) | [static] |
| static int put_image | ( | struct vf_instance * | vf, | |
| mp_image_t * | mpi, | |||
| double | pts | |||
| ) | [static] |
Definition at line 107 of file vf_pullup.c.
| static int query_format | ( | struct vf_instance * | vf, | |
| unsigned int | fmt | |||
| ) | [static] |
Definition at line 257 of file vf_pullup.c.
| static void uninit | ( | struct vf_instance * | vf | ) | [static] |
Definition at line 277 of file vf_pullup.c.
| static int vf_open | ( | vf_instance_t * | vf, | |
| char * | args | |||
| ) | [static] |
Definition at line 283 of file vf_pullup.c.
| const vf_info_t vf_info_pullup |
Initial value:
Definition at line 307 of file vf_pullup.c.
1.5.8