[FFmpeg-cvslog] r13674 - trunk/libavformat/img2.c
ramiro
subversion
Fri Jun 6 19:02:06 CEST 2008
Author: ramiro
Date: Fri Jun 6 19:02:06 2008
New Revision: 13674
Log:
Remove useless img_read_close().
Modified:
trunk/libavformat/img2.c
Modified: trunk/libavformat/img2.c
==============================================================================
--- trunk/libavformat/img2.c (original)
+++ trunk/libavformat/img2.c Fri Jun 6 19:02:06 2008
@@ -303,11 +303,6 @@ static int img_read_packet(AVFormatConte
}
}
-static int img_read_close(AVFormatContext *s1)
-{
- return 0;
-}
-
#ifdef CONFIG_MUXERS
/******************************************************/
/* image output */
@@ -384,7 +379,7 @@ AVInputFormat image2_demuxer = {
image_probe,
img_read_header,
img_read_packet,
- img_read_close,
+ NULL,
NULL,
NULL,
AVFMT_NOFILE,
@@ -398,7 +393,6 @@ AVInputFormat image2pipe_demuxer = {
NULL, /* no probe */
img_read_header,
img_read_packet,
- img_read_close,
};
#endif
More information about the ffmpeg-cvslog
mailing list