Mercurial > mplayer.hg
comparison libmpcodecs/vf_vo.c @ 25221:00fff9a3b735
Make all vf_info_t structs const
author | reimar |
---|---|
date | Sun, 02 Dec 2007 14:57:15 +0000 |
parents | e82ecde2cbd4 |
children | ba7bd4f7e322 |
comparison
equal
deleted
inserted
replaced
25220:c9e9ac2008c2 | 25221:00fff9a3b735 |
---|---|
226 if(!video_out) return 0; // no vo ? | 226 if(!video_out) return 0; // no vo ? |
227 // if(video_out->preinit(args)) return 0; // preinit failed | 227 // if(video_out->preinit(args)) return 0; // preinit failed |
228 return 1; | 228 return 1; |
229 } | 229 } |
230 | 230 |
231 vf_info_t vf_info_vo = { | 231 const vf_info_t vf_info_vo = { |
232 "libvo wrapper", | 232 "libvo wrapper", |
233 "vo", | 233 "vo", |
234 "A'rpi", | 234 "A'rpi", |
235 "for internal use", | 235 "for internal use", |
236 open, | 236 open, |