From 82337dec44347017ca04fe975e85e6d9e4edb635 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 11 May 2014 16:59:19 +0200 Subject: InputStream: add virtual destructor Replaces the method Close(). --- src/input/plugins/FfmpegInputPlugin.cxx | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/input/plugins/FfmpegInputPlugin.cxx') diff --git a/src/input/plugins/FfmpegInputPlugin.cxx b/src/input/plugins/FfmpegInputPlugin.cxx index affd76718..366a99f46 100644 --- a/src/input/plugins/FfmpegInputPlugin.cxx +++ b/src/input/plugins/FfmpegInputPlugin.cxx @@ -125,14 +125,6 @@ input_ffmpeg_read(InputStream *is, void *ptr, size_t size, return (size_t)ret; } -static void -input_ffmpeg_close(InputStream *is) -{ - FfmpegInputStream *i = (FfmpegInputStream *)is; - - delete i; -} - static bool input_ffmpeg_eof(InputStream *is) { @@ -163,7 +155,6 @@ const InputPlugin input_plugin_ffmpeg = { input_ffmpeg_init, nullptr, input_ffmpeg_open, - input_ffmpeg_close, nullptr, nullptr, nullptr, -- cgit v1.2.3