comparison libmpcodecs/vf_rotate.c @ 25221:00fff9a3b735

Make all vf_info_t structs const
author reimar
date Sun, 02 Dec 2007 14:57:15 +0000
parents f8d4f8eff72b
children 0f1b5b68af32
comparison
equal deleted inserted replaced
25220:c9e9ac2008c2 25221:00fff9a3b735
120 vf->priv=malloc(sizeof(struct vf_priv_s)); 120 vf->priv=malloc(sizeof(struct vf_priv_s));
121 vf->priv->direction=args?atoi(args):0; 121 vf->priv->direction=args?atoi(args):0;
122 return 1; 122 return 1;
123 } 123 }
124 124
125 vf_info_t vf_info_rotate = { 125 const vf_info_t vf_info_rotate = {
126 "rotate", 126 "rotate",
127 "rotate", 127 "rotate",
128 "A'rpi", 128 "A'rpi",
129 "", 129 "",
130 open, 130 open,