diff libmpcodecs/vf.c @ 8367:14af7d96df34

Fix draw_slice() in passthrough mode. patch by Balatoni Denes <pnis@coder.hu>
author arpi
date Thu, 05 Dec 2002 00:22:37 +0000
parents 6d97e935a071
children 3edba4a36c81
line wrap: on
line diff
--- a/libmpcodecs/vf.c	Thu Dec 05 00:18:56 2002 +0000
+++ b/libmpcodecs/vf.c	Thu Dec 05 00:22:37 2002 +0000
@@ -390,6 +390,10 @@
     return vf->next->put_image(vf->next,mpi);
 }
 
+void vf_next_draw_slice(struct vf_instance_s* vf,unsigned char** src, int * stride,int w, int h, int x, int y){
+    vf->next->draw_slice(vf->next,src,stride,w,h,x,y);
+}
+
 //============================================================================
 
 vf_instance_t* append_filters(vf_instance_t* last){