comparison segafilm.c @ 1167:d89d7ef290da libavformat

give AVInput/OutputFormat structs consistent names
author mru
date Sun, 09 Jul 2006 23:40:53 +0000
parents edbe5c3717f9
children d18cc9a1fd02
comparison
equal deleted inserted replaced
1166:e89500dd9064 1167:d89d7ef290da
295 av_free(film->stereo_buffer); 295 av_free(film->stereo_buffer);
296 296
297 return 0; 297 return 0;
298 } 298 }
299 299
300 static AVInputFormat film_iformat = { 300 static AVInputFormat film_demuxer = {
301 "film_cpk", 301 "film_cpk",
302 "Sega FILM/CPK format", 302 "Sega FILM/CPK format",
303 sizeof(FilmDemuxContext), 303 sizeof(FilmDemuxContext),
304 film_probe, 304 film_probe,
305 film_read_header, 305 film_read_header,
307 film_read_close, 307 film_read_close,
308 }; 308 };
309 309
310 int film_init(void) 310 int film_init(void)
311 { 311 {
312 av_register_input_format(&film_iformat); 312 av_register_input_format(&film_demuxer);
313 return 0; 313 return 0;
314 } 314 }