remove useless close funcs

Originally committed as revision 13835 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier
2008-06-19 23:25:04 +00:00
parent 2562ccb38d
commit 9b64a036c0
12 changed files with 5 additions and 106 deletions

View File

@@ -140,11 +140,6 @@ static int sol_read_packet(AVFormatContext *s,
return 0;
}
static int sol_read_close(AVFormatContext *s)
{
return 0;
}
AVInputFormat sol_demuxer = {
"sol",
NULL_IF_CONFIG_SMALL("Sierra SOL format"),
@@ -152,6 +147,6 @@ AVInputFormat sol_demuxer = {
sol_probe,
sol_read_header,
sol_read_packet,
sol_read_close,
NULL,
pcm_read_seek,
};