diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-19 22:58:13 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-19 22:58:13 +0000 |
commit | 2562ccb38dad69d8bd2b48b8a6e5a622e8933490 (patch) | |
tree | 1078207d0d5bb77d050b93494af4c4dc6f605373 /libavformat | |
parent | 6a862b49476395f87636c14329301b51c332316c (diff) | |
download | ffmpeg-2562ccb38dad69d8bd2b48b8a6e5a622e8933490.tar.gz |
remove useless close func
Originally committed as revision 13834 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/yuv4mpeg.c | 6 |
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 |