Commit ad0b44b3 authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove useless close function

Originally committed as revision 13204 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3b35f4ab
...@@ -190,11 +190,6 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -190,11 +190,6 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
return 0; return 0;
} }
static int swf_read_close(AVFormatContext *s)
{
return 0;
}
AVInputFormat swf_demuxer = { AVInputFormat swf_demuxer = {
"swf", "swf",
"Flash format", "Flash format",
...@@ -202,5 +197,4 @@ AVInputFormat swf_demuxer = { ...@@ -202,5 +197,4 @@ AVInputFormat swf_demuxer = {
swf_probe, swf_probe,
swf_read_header, swf_read_header,
swf_read_packet, swf_read_packet,
swf_read_close,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment