diff libmpcodecs/vd.c @ 30642:a972c1a4a012

cosmetics: Rename struct vf_instance_s --> vf_instance.
author diego
date Sun, 21 Feb 2010 15:48:03 +0000
parents e96015d17ffb
children 3774cf3c7df3
line wrap: on
line diff
--- a/libmpcodecs/vd.c	Sun Feb 21 14:43:36 2010 +0000
+++ b/libmpcodecs/vd.c	Sun Feb 21 15:48:03 2010 +0000
@@ -368,7 +368,7 @@
 }
 
 void mpcodecs_draw_slice(sh_video_t *sh, unsigned char** src, int* stride, int w,int h, int x, int y) {
-  struct vf_instance_s* vf = sh->vfilter;
+  struct vf_instance *vf = sh->vfilter;
 
   if(vf->draw_slice)
     vf->draw_slice(vf,src,stride,w,h,x,y);