remove dummy amr_read_close()

Originally committed as revision 6637 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2006-10-10 23:57:44 +00:00
parent b49638928b
commit ab2c12ec90
1 changed files with 1 additions and 6 deletions

View File

@ -175,11 +175,6 @@ static int amr_read_packet(AVFormatContext *s,
return 0;
}
static int amr_read_close(AVFormatContext *s)
{
return 0;
}
#ifdef CONFIG_AMR_DEMUXER
AVInputFormat amr_demuxer = {
"amr",
@ -188,7 +183,7 @@ AVInputFormat amr_demuxer = {
amr_probe,
amr_read_header,
amr_read_packet,
amr_read_close,
NULL,
};
#endif