diff libmpcodecs/ve_libdv.c @ 7557:f296ff05bcd0

warning fixes
author arpi
date Sun, 29 Sep 2002 19:19:31 +0000
parents a894e99c1e51
children 27da710563c2
line wrap: on
line diff
--- a/libmpcodecs/ve_libdv.c	Sun Sep 29 19:00:43 2002 +0000
+++ b/libmpcodecs/ve_libdv.c	Sun Sep 29 19:19:31 2002 +0000
@@ -91,7 +91,7 @@
     vf->put_image=put_image;
     vf->priv=malloc(sizeof(struct vf_priv_s));
     memset(vf->priv,0,sizeof(struct vf_priv_s));
-    vf->priv->mux=args;
+    vf->priv->mux=(aviwrite_stream_t*)args;
     
     vf->priv->enc=dv_encoder_new(1,1,1); // FIXME, parse some options!
     if(!vf->priv->enc) return 0;