2015-06-06 09:40:08 +08:00
|
|
|
/*
|
|
|
|
Copyright © 2015 by The qTox Project
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
qTox is libre 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.
|
|
|
|
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-05-14 10:46:28 +08:00
|
|
|
#ifndef COREVIDEOSOURCE_H
|
|
|
|
#define COREVIDEOSOURCE_H
|
|
|
|
|
|
|
|
#include <vpx/vpx_image.h>
|
|
|
|
#include <atomic>
|
|
|
|
#include "videosource.h"
|
|
|
|
|
|
|
|
/// A VideoSource that emits frames received by Core
|
|
|
|
class CoreVideoSource : public VideoSource
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
// VideoSource interface
|
|
|
|
virtual bool subscribe() override;
|
|
|
|
virtual void unsubscribe() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Only Core should create a CoreVideoSource since
|
|
|
|
// only Core can push images to it
|
|
|
|
CoreVideoSource();
|
|
|
|
|
|
|
|
/// Makes a copy of the vpx_image_t and emits it as a new VideoFrame
|
|
|
|
void pushFrame(const vpx_image_t *frame);
|
|
|
|
/// If true, self-delete after the last suscriber is gone
|
|
|
|
void setDeleteOnClose(bool newstate);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::atomic_int subscribers; ///< Number of suscribers
|
|
|
|
std::atomic_bool deleteOnClose; ///< If true, self-delete after the last suscriber is gone
|
|
|
|
std::atomic_bool biglock; ///< Fast lock
|
|
|
|
|
|
|
|
friend class Core;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // COREVIDEOSOURCE_H
|