remove useless close function

Originally committed as revision 13204 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-05-20 23:32:22 +00:00
parent 3b35f4ab51
commit ad0b44b31a
1 changed files with 0 additions and 6 deletions

View File

@ -190,11 +190,6 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
return 0;
}
static int swf_read_close(AVFormatContext *s)
{
return 0;
}
AVInputFormat swf_demuxer = {
"swf",
"Flash format",
@ -202,5 +197,4 @@ AVInputFormat swf_demuxer = {
swf_probe,
swf_read_header,
swf_read_packet,
swf_read_close,
};