Mercurial > libavformat.hg
comparison idcin.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 |
---|---|
286 { | 286 { |
287 | 287 |
288 return 0; | 288 return 0; |
289 } | 289 } |
290 | 290 |
291 static AVInputFormat idcin_iformat = { | 291 static AVInputFormat idcin_demuxer = { |
292 "idcin", | 292 "idcin", |
293 "Id CIN format", | 293 "Id CIN format", |
294 sizeof(IdcinDemuxContext), | 294 sizeof(IdcinDemuxContext), |
295 idcin_probe, | 295 idcin_probe, |
296 idcin_read_header, | 296 idcin_read_header, |
298 idcin_read_close, | 298 idcin_read_close, |
299 }; | 299 }; |
300 | 300 |
301 int idcin_init(void) | 301 int idcin_init(void) |
302 { | 302 { |
303 av_register_input_format(&idcin_iformat); | 303 av_register_input_format(&idcin_demuxer); |
304 return 0; | 304 return 0; |
305 } | 305 } |