mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
71 lines
1.6 KiB
C++
71 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <QLabel>
|
|
#include "interface/rsVOIP.h"
|
|
#include "gui/VideoProcessor.h"
|
|
|
|
class VideoEncoder ;
|
|
class CvCapture ;
|
|
|
|
// Responsible from displaying the video. The source of the video is
|
|
// a VideoDecoder object, which uses a codec.
|
|
//
|
|
class QVideoOutputDevice: public QLabel
|
|
{
|
|
public:
|
|
QVideoOutputDevice(QWidget *parent = 0) ;
|
|
|
|
void showFrame(const QImage&) ;
|
|
void showFrameOff() ;
|
|
};
|
|
|
|
// Responsible for grabbing the video from the webcam and sending it to the
|
|
// VideoEncoder object.
|
|
//
|
|
class QVideoInputDevice: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QVideoInputDevice(QWidget *parent = 0) ;
|
|
~QVideoInputDevice() ;
|
|
|
|
// Captured images are sent to this encoder. Can be NULL.
|
|
//
|
|
void setVideoProcessor(VideoProcessor *venc) { _video_processor = venc ; }
|
|
|
|
// All images received will be echoed to this target. We could use signal/slots, but it's
|
|
// probably faster this way. Can be NULL.
|
|
//
|
|
void setEchoVideoTarget(QVideoOutputDevice *odev) { _echo_output_device = odev ; }
|
|
|
|
// get the next encoded video data chunk.
|
|
//
|
|
bool getNextEncodedPacket(RsVOIPDataChunk&) ;
|
|
|
|
// gets the estimated current bandwidth required to transmit the encoded data, in B/s
|
|
//
|
|
uint32_t currentBandwidth() const ;
|
|
|
|
// control
|
|
|
|
void start() ;
|
|
void stop() ;
|
|
bool stopped();
|
|
protected slots:
|
|
void grabFrame() ;
|
|
|
|
signals:
|
|
void networkPacketReady() ;
|
|
|
|
private:
|
|
VideoProcessor *_video_processor ;
|
|
QTimer *_timer ;
|
|
CvCapture *_capture_device ;
|
|
|
|
QVideoOutputDevice *_echo_output_device ;
|
|
|
|
std::list<RsVOIPDataChunk> _out_queue ;
|
|
};
|
|
|