Mercurial > libavformat.hg
comparison ipmovie.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 |
---|---|
610 // IPMVEContext *ipmovie = (IPMVEContext *)s->priv_data; | 610 // IPMVEContext *ipmovie = (IPMVEContext *)s->priv_data; |
611 | 611 |
612 return 0; | 612 return 0; |
613 } | 613 } |
614 | 614 |
615 static AVInputFormat ipmovie_iformat = { | 615 static AVInputFormat ipmovie_demuxer = { |
616 "ipmovie", | 616 "ipmovie", |
617 "Interplay MVE format", | 617 "Interplay MVE format", |
618 sizeof(IPMVEContext), | 618 sizeof(IPMVEContext), |
619 ipmovie_probe, | 619 ipmovie_probe, |
620 ipmovie_read_header, | 620 ipmovie_read_header, |
622 ipmovie_read_close, | 622 ipmovie_read_close, |
623 }; | 623 }; |
624 | 624 |
625 int ipmovie_init(void) | 625 int ipmovie_init(void) |
626 { | 626 { |
627 av_register_input_format(&ipmovie_iformat); | 627 av_register_input_format(&ipmovie_demuxer); |
628 return 0; | 628 return 0; |
629 } | 629 } |
630 | 630 |