diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-01-07 14:55:41 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-01-08 01:32:26 +0100 |
commit | 3fd68fd955e45ecdb2d96241c9d479a68a0ad982 (patch) | |
tree | 27b9acb73809444bcb1097c85643c6fbd352a42f | |
parent | 3414115cd4e1eac555ebd3e9658cb9ba3c5b246b (diff) | |
download | ffmpeg-3fd68fd955e45ecdb2d96241c9d479a68a0ad982.tar.gz |
avformat/avs: Remove avs_read_close()
It did nothing.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/avs.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/avs.c b/libavformat/avs.c index 47fa41017d..3f8780d42d 100644 --- a/libavformat/avs.c +++ b/libavformat/avs.c @@ -224,11 +224,6 @@ static int avs_read_packet(AVFormatContext * s, AVPacket * pkt) } } -static int avs_read_close(AVFormatContext * s) -{ - return 0; -} - AVInputFormat ff_avs_demuxer = { .name = "avs", .long_name = NULL_IF_CONFIG_SMALL("Argonaut Games Creature Shock"), @@ -236,5 +231,4 @@ AVInputFormat ff_avs_demuxer = { .read_probe = avs_probe, .read_header = avs_read_header, .read_packet = avs_read_packet, - .read_close = avs_read_close, }; |