summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-19 22:58:13 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-06-19 22:58:13 +0000
commit2562ccb38dad69d8bd2b48b8a6e5a622e8933490 (patch)
tree1078207d0d5bb77d050b93494af4c4dc6f605373
parent6a862b49476395f87636c14329301b51c332316c (diff)
remove useless close func
Originally committed as revision 13834 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/yuv4mpeg.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/yuv4mpeg.c b/libavformat/yuv4mpeg.c
index 5163417e5d..02f4da98c4 100644
--- a/libavformat/yuv4mpeg.c
+++ b/libavformat/yuv4mpeg.c
@@ -373,11 +373,6 @@ static int yuv4_read_packet(AVFormatContext *s, AVPacket *pkt)
return 0;
}
-static int yuv4_read_close(AVFormatContext *s)
-{
- return 0;
-}
-
static int yuv4_probe(AVProbeData *pd)
{
/* check file header */
@@ -395,7 +390,6 @@ AVInputFormat yuv4mpegpipe_demuxer = {
yuv4_probe,
yuv4_read_header,
yuv4_read_packet,
- yuv4_read_close,
.extensions = "y4m"
};
#endif