comparison libmpcodecs/vf_divtc.c @ 30638:a7b908875c14

Rename open() vf initialization function to vf_open(). This avoids clashes with fcntl.h under certain circumstances.
author diego
date Sun, 21 Feb 2010 13:40:49 +0000
parents bbb6ebec87a0
children a972c1a4a012
comparison
equal deleted inserted replaced
30637:0947ead7e81b 30638:a7b908875c14
593 free(vf->priv->history); 593 free(vf->priv->history);
594 free(vf->priv); 594 free(vf->priv);
595 } 595 }
596 } 596 }
597 597
598 static int open(vf_instance_t *vf, char* args) 598 static int vf_open(vf_instance_t *vf, char *args)
599 { 599 {
600 struct vf_priv_s *p; 600 struct vf_priv_s *p;
601 char *filename="framediff.log", *ap, *q, *a; 601 char *filename="framediff.log", *ap, *q, *a;
602 602
603 if(args && !(args=strdup(args))) 603 if(args && !(args=strdup(args)))
713 { 713 {
714 "inverse telecine for deinterlaced video", 714 "inverse telecine for deinterlaced video",
715 "divtc", 715 "divtc",
716 "Ville Saari", 716 "Ville Saari",
717 "", 717 "",
718 open, 718 vf_open,
719 NULL 719 NULL
720 }; 720 };