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 CAMERADEVICE_H
|
|
|
|
#define CAMERADEVICE_H
|
|
|
|
|
|
|
|
#include <QHash>
|
|
|
|
#include <QString>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QVector>
|
|
|
|
#include <atomic>
|
2015-05-16 10:01:38 +08:00
|
|
|
#include "videomode.h"
|
2015-05-14 10:46:28 +08:00
|
|
|
|
|
|
|
struct AVFormatContext;
|
|
|
|
struct AVInputFormat;
|
2015-05-15 00:49:38 +08:00
|
|
|
struct AVDeviceInfoList;
|
2015-05-16 10:01:38 +08:00
|
|
|
struct AVDictionary;
|
2015-05-14 10:46:28 +08:00
|
|
|
|
|
|
|
/// Maintains an FFmpeg context for open camera devices,
|
|
|
|
/// takes care of sharing the context accross users
|
|
|
|
/// and closing the camera device when not in use.
|
|
|
|
/// The device can be opened recursively,
|
|
|
|
/// and must then be closed recursively
|
|
|
|
class CameraDevice
|
|
|
|
{
|
|
|
|
public:
|
2015-05-16 10:01:38 +08:00
|
|
|
/// Opens a device, creating a new one if needed
|
|
|
|
/// If the device is alreay open in another mode, the mode
|
|
|
|
/// will be ignored and the existing device is used
|
|
|
|
/// If the mode does not exist, a new device can't be opened
|
|
|
|
/// Returns a nullptr if the device couldn't be opened
|
2016-06-15 07:04:39 +08:00
|
|
|
static CameraDevice* open(QString devName, VideoMode mode = VideoMode());
|
2015-05-14 10:46:28 +08:00
|
|
|
void open(); ///< Opens the device again. Never fails
|
|
|
|
bool close(); ///< Closes the device. Never fails. If returns true, "this" becomes invalid
|
|
|
|
|
|
|
|
/// Returns a list of device names and descriptions
|
|
|
|
/// The names are the first part of the pair and can be passed to open(QString)
|
2015-05-16 10:01:38 +08:00
|
|
|
static QVector<QPair<QString, QString>> getDeviceList();
|
|
|
|
|
|
|
|
/// Get the list of video modes for a device
|
|
|
|
static QVector<VideoMode> getVideoModes(QString devName);
|
2016-01-27 03:14:58 +08:00
|
|
|
/// Get the name of the pixel format of a video mode
|
|
|
|
static QString getPixelFormatString(uint32_t pixel_format);
|
2016-03-22 10:17:21 +08:00
|
|
|
/// Returns true if we prefer format a to b, false otherwise (such as if there's no preference)
|
|
|
|
static bool betterPixelFormat(uint32_t a, uint32_t b);
|
2015-05-14 10:46:28 +08:00
|
|
|
|
|
|
|
/// Returns the short name of the default defice
|
|
|
|
/// This is either the device in the settings
|
|
|
|
/// or the system default.
|
|
|
|
static QString getDefaultDeviceName();
|
|
|
|
|
2016-06-15 07:04:39 +08:00
|
|
|
/// Checks if a device name specifies a display
|
|
|
|
static bool isScreen(const QString &devName);
|
|
|
|
|
2015-05-14 10:46:28 +08:00
|
|
|
private:
|
2015-10-14 04:21:20 +08:00
|
|
|
CameraDevice(const QString &devName, AVFormatContext *context);
|
2015-05-16 10:01:38 +08:00
|
|
|
static CameraDevice* open(QString devName, AVDictionary** options);
|
2015-05-14 10:46:28 +08:00
|
|
|
static bool getDefaultInputFormat(); ///< Sets CameraDevice::iformat, returns success/failure
|
2015-05-16 05:01:38 +08:00
|
|
|
static QVector<QPair<QString, QString> > getRawDeviceListGeneric(); ///< Uses avdevice_list_devices
|
2016-06-15 07:04:39 +08:00
|
|
|
static QVector<VideoMode> getScreenModes(); ///< Returns avaliable screen modes with offset
|
2015-05-14 10:46:28 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
const QString devName; ///< Short name of the device
|
|
|
|
AVFormatContext* context; ///< Context of the open device, must always be valid
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::atomic_int refcount; ///< Number of times the device was opened
|
|
|
|
static QHash<QString, CameraDevice*> openDevices;
|
|
|
|
static QMutex openDeviceLock, iformatLock;
|
2015-06-02 05:40:33 +08:00
|
|
|
static AVInputFormat* iformat, *idesktopFormat;
|
2015-05-14 10:46:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CAMERADEVICE_H
|