mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
remove useless close function
Originally committed as revision 12203 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
54d8fd20fd
commit
4c638f0c7c
@ -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},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user