Commit d7d2fb57 authored by ramiro's avatar ramiro

Remove useless img_read_close().

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13674 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2b5d8573
...@@ -303,11 +303,6 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt) ...@@ -303,11 +303,6 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
} }
} }
static int img_read_close(AVFormatContext *s1)
{
return 0;
}
#ifdef CONFIG_MUXERS #ifdef CONFIG_MUXERS
/******************************************************/ /******************************************************/
/* image output */ /* image output */
...@@ -384,7 +379,7 @@ AVInputFormat image2_demuxer = { ...@@ -384,7 +379,7 @@ AVInputFormat image2_demuxer = {
image_probe, image_probe,
img_read_header, img_read_header,
img_read_packet, img_read_packet,
img_read_close, NULL,
NULL, NULL,
NULL, NULL,
AVFMT_NOFILE, AVFMT_NOFILE,
...@@ -398,7 +393,6 @@ AVInputFormat image2pipe_demuxer = { ...@@ -398,7 +393,6 @@ AVInputFormat image2pipe_demuxer = {
NULL, /* no probe */ NULL, /* no probe */
img_read_header, img_read_header,
img_read_packet, img_read_packet,
img_read_close,
}; };
#endif #endif
......
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