Skip to content
Snippets Groups Projects
Commit 0fa0715a authored by Guillaume Roguez's avatar Guillaume Roguez
Browse files

video: remove dead code

This patchset removes VideoProvider class not used anywhere.

Issue: #81116
Change-Id: I2e32dbe174d1168c75698e00a1104cbefb0ec71f
parent f23071fa
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,6 @@
#include "config.h"
#endif
#include "video_provider.h"
#include "video_base.h"
#include <string>
......
/*
* 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_
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment