[FFmpeg-devel] [PATCH 03/11] avformat/avs: Remove avs_read_close()

Andreas Rheinhardt andreas.rheinhardt at gmail.com
Tue Jan 7 15:55:41 EET 2020


It did nothing.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
 libavformat/avs.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/libavformat/avs.c b/libavformat/avs.c
index 3a2d84aa19..54b2c3f2a9 100644
--- a/libavformat/avs.c
+++ b/libavformat/avs.c
@@ -223,11 +223,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"),
@@ -235,5 +230,4 @@ AVInputFormat ff_avs_demuxer = {
     .read_probe     = avs_probe,
     .read_header    = avs_read_header,
     .read_packet    = avs_read_packet,
-    .read_close     = avs_read_close,
 };
-- 
2.20.1



More information about the ffmpeg-devel mailing list