diff libmpcodecs/vf_eq2.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 4a6b79a1ad52
children 7b408d60de9e
line wrap: on
line diff
--- a/libmpcodecs/vf_eq2.c	Tue Mar 21 06:09:32 2006 +0000
+++ b/libmpcodecs/vf_eq2.c	Tue Mar 21 21:26:42 2006 +0000
@@ -224,7 +224,7 @@
 }
 
 static
-int put_image (vf_instance_t *vf, mp_image_t *src)
+int put_image (vf_instance_t *vf, mp_image_t *src, double pts)
 {
   unsigned      i;
   vf_eq2_t      *eq2;
@@ -264,7 +264,7 @@
     }
   }
 
-  return vf_next_put_image (vf, dst);
+  return vf_next_put_image (vf, dst, pts);
 }
 
 static