Mercurial > libavformat.hg
comparison 4xm.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 |
---|---|
316 av_free(fourxm->tracks); | 316 av_free(fourxm->tracks); |
317 | 317 |
318 return 0; | 318 return 0; |
319 } | 319 } |
320 | 320 |
321 static AVInputFormat fourxm_iformat = { | 321 static AVInputFormat fourxm_demuxer = { |
322 "4xm", | 322 "4xm", |
323 "4X Technologies format", | 323 "4X Technologies format", |
324 sizeof(FourxmDemuxContext), | 324 sizeof(FourxmDemuxContext), |
325 fourxm_probe, | 325 fourxm_probe, |
326 fourxm_read_header, | 326 fourxm_read_header, |
328 fourxm_read_close, | 328 fourxm_read_close, |
329 }; | 329 }; |
330 | 330 |
331 int fourxm_init(void) | 331 int fourxm_init(void) |
332 { | 332 { |
333 av_register_input_format(&fourxm_iformat); | 333 av_register_input_format(&fourxm_demuxer); |
334 return 0; | 334 return 0; |
335 } | 335 } |