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 |
Context | Check | Description |
---|---|---|
andriy/ffmpeg-patchwork | success | Make fate finished |
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 --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, };
It did nothing. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> --- libavformat/avs.c | 6 ------ 1 file changed, 6 deletions(-)