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:
|
|
|
|
/// Opens a device, creating a new one if needed
|
|
|
|
/// Returns a nullptr if the device couldn't be opened
|
|
|
|
static CameraDevice* open(QString devName);
|
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
|
|
|
|
static CameraDevice* open(QString devName, VideoMode mode);
|
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);
|
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();
|
|
|
|
|
|
|
|
private:
|
|
|
|
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
|
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
|