[FFmpeg-cvslog] r12203 - trunk/libavformat/aiff.c
bcoudurier
subversion
Mon Feb 25 13:24:30 CET 2008
Author: bcoudurier
Date: Mon Feb 25 13:24:30 2008
New Revision: 12203
Log:
remove useless close function
Modified:
trunk/libavformat/aiff.c
Modified: trunk/libavformat/aiff.c
==============================================================================
--- trunk/libavformat/aiff.c (original)
+++ trunk/libavformat/aiff.c Mon Feb 25 13:24:30 2008
@@ -414,11 +414,6 @@ static int aiff_read_packet(AVFormatCont
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},
};
More information about the ffmpeg-cvslog
mailing list