diff mbox series

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

Message ID 20200107135549.22581-3-andreas.rheinhardt@gmail.com
State Accepted
Headers show
Series [FFmpeg-devel,01/11] avformat/avformat: Update AVInputFormat.read_packet documentation | expand

Checks

Context Check Description
andriy/ffmpeg-patchwork success Make fate finished

Commit Message

Andreas Rheinhardt Jan. 7, 2020, 1:55 p.m. UTC
It did nothing.

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

Comments

Michael Niedermayer Jan. 8, 2020, 12:40 a.m. UTC | #1
On Tue, Jan 07, 2020 at 02:55:41PM +0100, Andreas Rheinhardt wrote:
> It did nothing.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
> ---
>  libavformat/avs.c | 6 ------
>  1 file changed, 6 deletions(-)

will apply

thx

[...]
diff mbox series

Patch

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,
 };