diff --git a/src/media/video/sinkclient.h b/src/media/video/sinkclient.h index b9f3e9bc5b041236f963d42786ec65e87753c135..53577d644370df1b47899791edda67471f432006 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 cd1b143171016394676e2f12a95fc13513875ec4..0000000000000000000000000000000000000000 --- 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_