From 0fa0715ad87b517a07cd586eb5d5d9d7cc2984be Mon Sep 17 00:00:00 2001 From: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> Date: Fri, 9 Oct 2015 11:04:06 -0400 Subject: [PATCH] video: remove dead code This patchset removes VideoProvider class not used anywhere. Issue: #81116 Change-Id: I2e32dbe174d1168c75698e00a1104cbefb0ec71f --- src/media/video/sinkclient.h | 1 - src/media/video/video_provider.h | 34 -------------------------------- 2 files changed, 35 deletions(-) delete mode 100644 src/media/video/video_provider.h diff --git a/src/media/video/sinkclient.h b/src/media/video/sinkclient.h index b9f3e9bc5b..53577d6443 100644 --- a/src/media/video/sinkclient.h +++ b/src/media/video/sinkclient.h @@ -24,7 +24,6 @@ #include "config.h" #endif -#include "video_provider.h" #include "video_base.h" #include <string> diff --git a/src/media/video/video_provider.h b/src/media/video/video_provider.h deleted file mode 100644 index cd1b143171..0000000000 --- a/src/media/video/video_provider.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (C) 2012-2015 Savoir-faire Linux Inc. - * - * Author: Tristan Matthews <tristan.matthews@savoirfairelinux.com> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - -#ifndef VIDEO_PROVIDER_H_ -#define VIDEO_PROVIDER_H_ - -namespace ring { namespace video { - -class VideoProvider { - public: - virtual void fillBuffer(void *data) = 0; - virtual ~VideoProvider() {} -}; - -}} // namespace ring::video - -#endif // VIDEO_PROVIDER_H_ -- GitLab