diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-02-25 12:24:30 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-02-25 12:24:30 +0000 |
commit | 4c638f0c7cf1060a9762bce19cb5d9172561093f (patch) | |
tree | 851ef0f24ff7e222998edc7bd9863d523af15a07 /libavformat/aiff.c | |
parent | 54d8fd20fd6839db9584635f001ca2f8e4da3826 (diff) | |
download | ffmpeg-4c638f0c7cf1060a9762bce19cb5d9172561093f.tar.gz |
remove useless close function
Originally committed as revision 12203 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/aiff.c')
-rw-r--r-- | libavformat/aiff.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c index a068ad3e69..c3a245e570 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -414,11 +414,6 @@ static int aiff_read_packet(AVFormatContext *s, return 0; } -static int aiff_read_close(AVFormatContext *s) -{ - return 0; -} - static int aiff_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) { @@ -433,7 +428,7 @@ AVInputFormat aiff_demuxer = { aiff_probe, aiff_read_header, aiff_read_packet, - aiff_read_close, + NULL, aiff_read_seek, .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0}, }; |