diff 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
line wrap: on
line diff
--- a/libmpcodecs/vf_lavcdeint.c	Tue Mar 21 06:09:32 2006 +0000
+++ b/libmpcodecs/vf_lavcdeint.c	Tue Mar 21 21:26:42 2006 +0000
@@ -103,7 +103,7 @@
 }
 
 static int 
-put_image (struct vf_instance_s* vf, mp_image_t *mpi)
+put_image (struct vf_instance_s* vf, mp_image_t *mpi, double pts)
 {
   struct vf_priv_s *priv = vf->priv;
   mp_image_t* dmpi;
@@ -135,7 +135,7 @@
       return 0;
     }
   
-  return vf_next_put_image(vf, dmpi);
+  return vf_next_put_image(vf, dmpi, pts);
 }