comparison libmpcodecs/vf_dint.c @ 30642:a972c1a4a012

cosmetics: Rename struct vf_instance_s --> vf_instance.
author diego
date Sun, 21 Feb 2010 15:48:03 +0000
parents a7b908875c14
children 7af3e6f901fd
comparison
equal deleted inserted replaced
30641:b14b32c20935 30642:a972c1a4a012
40 mp_image_t *pmpi; // previous mpi 40 mp_image_t *pmpi; // previous mpi
41 }; 41 };
42 42
43 #define MAXROWSIZE 1200 43 #define MAXROWSIZE 1200
44 44
45 static int config (struct vf_instance_s* vf, 45 static int config (struct vf_instance *vf,
46 int width, int height, int d_width, int d_height, 46 int width, int height, int d_width, int d_height,
47 unsigned int flags, unsigned int outfmt) 47 unsigned int flags, unsigned int outfmt)
48 { 48 {
49 int rowsize; 49 int rowsize;
50 50
77 // vf->priv->rdfr = vf->priv->dfr = 0; 77 // vf->priv->rdfr = vf->priv->dfr = 0;
78 vf->priv->was_dint = 0; 78 vf->priv->was_dint = 0;
79 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); 79 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
80 } 80 }
81 81
82 static int put_image (struct vf_instance_s* vf, mp_image_t *mpi, double pts) 82 static int put_image (struct vf_instance *vf, mp_image_t *mpi, double pts)
83 { 83 {
84 char rrow0[MAXROWSIZE]; 84 char rrow0[MAXROWSIZE];
85 char rrow1[MAXROWSIZE]; 85 char rrow1[MAXROWSIZE];
86 char rrow2[MAXROWSIZE]; 86 char rrow2[MAXROWSIZE];
87 char *row0 = rrow0, *row1 = rrow1, *row2 = rrow2/*, *row3 = rrow3*/; 87 char *row0 = rrow0, *row1 = rrow1, *row2 = rrow2/*, *row3 = rrow3*/;