comparison vidix/vidixlib.c @ 26975:553265fda2a6

Drop some useless parameter from vidix init routine
author ben
date Sat, 07 Jun 2008 10:56:42 +0000
parents a1c020529cc0
children 0e250247255f
comparison
equal deleted inserted replaced
26974:7042def3416f 26975:553265fda2a6
47 extern unsigned int vdlGetVersion( void ) 47 extern unsigned int vdlGetVersion( void )
48 { 48 {
49 return VIDIX_VERSION; 49 return VIDIX_VERSION;
50 } 50 }
51 51
52 VDL_HANDLE vdlOpen(const char *path,const char *name,unsigned cap,int verbose) 52 VDL_HANDLE vdlOpen(const char *name,unsigned cap,int verbose)
53 { 53 {
54 VDXContext *ctx; 54 VDXContext *ctx;
55 55
56 if (!(ctx = malloc (sizeof (VDXContext)))) 56 if (!(ctx = malloc (sizeof (VDXContext))))
57 return NULL; 57 return NULL;