comparison libmpcodecs/vf_divtc.c @ 25221:00fff9a3b735

Make all vf_info_t structs const
author reimar
date Sun, 02 Dec 2007 14:57:15 +0000
parents ba7da0656d80
children 88dfab272467
comparison
equal deleted inserted replaced
25220:c9e9ac2008c2 25221:00fff9a3b735
14 #include "mp_image.h" 14 #include "mp_image.h"
15 #include "vf.h" 15 #include "vf.h"
16 16
17 #include "libvo/fastmemcpy.h" 17 #include "libvo/fastmemcpy.h"
18 18
19 vf_info_t vf_info_divtc; 19 const vf_info_t vf_info_divtc;
20 20
21 struct vf_priv_s 21 struct vf_priv_s
22 { 22 {
23 int deghost, pass, phase, window, fcount, bcount, frameno, misscount, 23 int deghost, pass, phase, window, fcount, bcount, frameno, misscount,
24 ocount, sum[5]; 24 ocount, sum[5];
690 690
691 free(args); 691 free(args);
692 return 1; 692 return 1;
693 } 693 }
694 694
695 vf_info_t vf_info_divtc = 695 const vf_info_t vf_info_divtc =
696 { 696 {
697 "inverse telecine for deinterlaced video", 697 "inverse telecine for deinterlaced video",
698 "divtc", 698 "divtc",
699 "Ville Saari", 699 "Ville Saari",
700 "", 700 "",