comparison libmpcodecs/vf_lavcdeint.c @ 17906:20aca9baf5d8

passing pts through the filter layer (lets see if pts or cola comes out at the end)
author michael
date Tue, 21 Mar 2006 21:26:42 +0000
parents f0e7712385dc
children f8d4f8eff72b
comparison
equal deleted inserted replaced
17905:433494f162a9 17906:20aca9baf5d8
101 d_width, d_height, 101 d_width, d_height,
102 flags, outfmt); 102 flags, outfmt);
103 } 103 }
104 104
105 static int 105 static int
106 put_image (struct vf_instance_s* vf, mp_image_t *mpi) 106 put_image (struct vf_instance_s* vf, mp_image_t *mpi, double pts)
107 { 107 {
108 struct vf_priv_s *priv = vf->priv; 108 struct vf_priv_s *priv = vf->priv;
109 mp_image_t* dmpi; 109 mp_image_t* dmpi;
110 AVPicture pic; 110 AVPicture pic;
111 AVPicture lavc_picture; 111 AVPicture lavc_picture;
133 { 133 {
134 /* This should not happen -- see config() */ 134 /* This should not happen -- see config() */
135 return 0; 135 return 0;
136 } 136 }
137 137
138 return vf_next_put_image(vf, dmpi); 138 return vf_next_put_image(vf, dmpi, pts);
139 } 139 }
140 140
141 141
142 static int 142 static int
143 query_format (struct vf_instance_s* vf, unsigned int fmt) 143 query_format (struct vf_instance_s* vf, unsigned int fmt)