diff libmpcodecs/vf.c @ 7368:a894e99c1e51

changing return type of put_image void->int
author arpi
date Tue, 10 Sep 2002 22:18:32 +0000
parents 66019eb62edc
children b34b005ab4f8
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Tue Sep 10 22:10:06 2002 +0000
+++ b/libmpcodecs/vf.c	Tue Sep 10 22:18:32 2002 +0000
@@ -347,8 +347,8 @@
     return flags;
 }
 
-void vf_next_put_image(struct vf_instance_s* vf,mp_image_t *mpi){
-    vf->next->put_image(vf->next,mpi);
+int vf_next_put_image(struct vf_instance_s* vf,mp_image_t *mpi){
+    return vf->next->put_image(vf->next,mpi);
 }
 
 //============================================================================