allow individual selection of muxers and demuxers

Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2006-07-10 21:14:37 +00:00
parent 4cac0d5589
commit ff70e60176
69 changed files with 837 additions and 964 deletions

View File

@ -278,7 +278,7 @@ static int ea_read_close(AVFormatContext *s)
return 0;
}
static AVInputFormat ea_demuxer = {
AVInputFormat ea_demuxer = {
"ea",
"Electronic Arts Multimedia Format",
sizeof(EaDemuxContext),
@ -287,9 +287,3 @@ static AVInputFormat ea_demuxer = {
ea_read_packet,
ea_read_close,
};
int ea_init(void)
{
av_register_input_format(&ea_demuxer);
return 0;
}