2015-05-14 10:46:28 +08:00
|
|
|
#include <QDebug>
|
|
|
|
extern "C" {
|
|
|
|
#include <libavformat/avformat.h>
|
|
|
|
#include <libavdevice/avdevice.h>
|
|
|
|
}
|
|
|
|
#include "cameradevice.h"
|
|
|
|
#include "src/misc/settings.h"
|
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
#include "src/platform/camera/directshow.h"
|
|
|
|
#endif
|
|
|
|
|
2015-05-14 10:46:28 +08:00
|
|
|
QHash<QString, CameraDevice*> CameraDevice::openDevices;
|
|
|
|
QMutex CameraDevice::openDeviceLock, CameraDevice::iformatLock;
|
|
|
|
AVInputFormat* CameraDevice::iformat{nullptr};
|
|
|
|
|
|
|
|
CameraDevice::CameraDevice(const QString devName, AVFormatContext *context)
|
|
|
|
: devName{devName}, context{context}, refcount{1}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-05-16 10:01:38 +08:00
|
|
|
CameraDevice* CameraDevice::open(QString devName, AVDictionary** options)
|
2015-05-14 10:46:28 +08:00
|
|
|
{
|
|
|
|
openDeviceLock.lock();
|
|
|
|
AVFormatContext* fctx = nullptr;
|
|
|
|
CameraDevice* dev = openDevices.value(devName);
|
|
|
|
if (dev)
|
|
|
|
goto out;
|
|
|
|
|
2015-05-16 10:01:38 +08:00
|
|
|
if (avformat_open_input(&fctx, devName.toStdString().c_str(), iformat, options)<0)
|
2015-05-14 10:46:28 +08:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (avformat_find_stream_info(fctx, NULL) < 0)
|
|
|
|
{
|
|
|
|
avformat_close_input(&fctx);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = new CameraDevice{devName, fctx};
|
|
|
|
openDevices[devName] = dev;
|
|
|
|
|
|
|
|
out:
|
|
|
|
openDeviceLock.unlock();
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
2015-05-16 10:01:38 +08:00
|
|
|
CameraDevice* CameraDevice::open(QString devName)
|
|
|
|
{
|
|
|
|
return open(devName, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
CameraDevice* CameraDevice::open(QString devName, VideoMode mode)
|
|
|
|
{
|
|
|
|
if (!getDefaultInputFormat())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
AVDictionary* options = nullptr;
|
|
|
|
if (false);
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
else if (iformat->name == QString("dshow"))
|
|
|
|
{
|
|
|
|
av_dict_set(&options, "video_size", QString("%1x%2").arg(mode.width).arg(mode.height).toStdString().c_str(), 0);
|
|
|
|
av_dict_set(&options, "framerate", QString().setNum(mode.FPS).toStdString().c_str(), 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qWarning() << "Video mode-setting not implemented for input "<<iformat->name;
|
2015-05-16 18:08:29 +08:00
|
|
|
(void)mode;
|
2015-05-16 10:01:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CameraDevice* dev = open(devName, &options);
|
|
|
|
if (options)
|
|
|
|
av_dict_free(&options);
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
2015-05-14 10:46:28 +08:00
|
|
|
void CameraDevice::open()
|
|
|
|
{
|
|
|
|
++refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CameraDevice::close()
|
|
|
|
{
|
|
|
|
if (--refcount <= 0)
|
|
|
|
{
|
|
|
|
openDeviceLock.lock();
|
|
|
|
openDevices.remove(devName);
|
|
|
|
openDeviceLock.unlock();
|
|
|
|
avformat_close_input(&context);
|
|
|
|
delete this;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
QVector<QPair<QString, QString>> CameraDevice::getRawDeviceListGeneric()
|
2015-05-14 10:46:28 +08:00
|
|
|
{
|
2015-05-16 05:01:38 +08:00
|
|
|
QVector<QPair<QString, QString>> devices;
|
2015-05-14 10:46:28 +08:00
|
|
|
|
|
|
|
if (!getDefaultInputFormat())
|
2015-05-16 05:01:38 +08:00
|
|
|
return devices;
|
2015-05-14 10:46:28 +08:00
|
|
|
|
2015-05-15 00:40:12 +08:00
|
|
|
// Alloc an input device context
|
|
|
|
AVFormatContext *s;
|
|
|
|
if (!(s = avformat_alloc_context()))
|
2015-05-16 05:01:38 +08:00
|
|
|
return devices;
|
2015-05-15 00:40:12 +08:00
|
|
|
if (!iformat->priv_class || !AV_IS_INPUT_DEVICE(iformat->priv_class->category))
|
|
|
|
{
|
|
|
|
avformat_free_context(s);
|
2015-05-16 05:01:38 +08:00
|
|
|
return devices;
|
2015-05-15 00:40:12 +08:00
|
|
|
}
|
|
|
|
s->iformat = iformat;
|
|
|
|
if (s->iformat->priv_data_size > 0)
|
|
|
|
{
|
|
|
|
s->priv_data = av_mallocz(s->iformat->priv_data_size);
|
|
|
|
if (!s->priv_data)
|
|
|
|
{
|
|
|
|
avformat_free_context(s);
|
2015-05-16 05:01:38 +08:00
|
|
|
return devices;
|
2015-05-15 00:40:12 +08:00
|
|
|
}
|
|
|
|
if (s->iformat->priv_class)
|
|
|
|
{
|
|
|
|
*(const AVClass**)s->priv_data= s->iformat->priv_class;
|
|
|
|
av_opt_set_defaults(s->priv_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s->priv_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// List the devices for this context
|
2015-05-16 05:01:38 +08:00
|
|
|
AVDeviceInfoList* devlist = nullptr;
|
2015-05-15 00:40:12 +08:00
|
|
|
AVDictionary *tmp = nullptr;
|
|
|
|
av_dict_copy(&tmp, nullptr, 0);
|
|
|
|
if (av_opt_set_dict2(s, &tmp, AV_OPT_SEARCH_CHILDREN) < 0)
|
|
|
|
{
|
|
|
|
av_dict_free(&tmp);
|
|
|
|
avformat_free_context(s);
|
|
|
|
}
|
|
|
|
avdevice_list_devices(s, &devlist);
|
2015-05-15 00:49:38 +08:00
|
|
|
if (!devlist)
|
2015-05-16 05:01:38 +08:00
|
|
|
qWarning() << "avdevice_list_devices failed";
|
2015-05-14 10:46:28 +08:00
|
|
|
|
2015-05-15 00:40:12 +08:00
|
|
|
// Convert the list to a QVector
|
2015-05-14 10:46:28 +08:00
|
|
|
devices.resize(devlist->nb_devices);
|
|
|
|
for (int i=0; i<devlist->nb_devices; i++)
|
|
|
|
{
|
|
|
|
AVDeviceInfo* dev = devlist->devices[i];
|
|
|
|
devices[i].first = dev->device_name;
|
|
|
|
devices[i].second = dev->device_description;
|
|
|
|
}
|
2015-05-15 00:40:12 +08:00
|
|
|
avdevice_free_list_devices(&devlist);
|
2015-05-14 10:46:28 +08:00
|
|
|
return devices;
|
|
|
|
}
|
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
QVector<QPair<QString, QString>> CameraDevice::getDeviceList()
|
|
|
|
{
|
2015-05-16 10:01:38 +08:00
|
|
|
if (!getDefaultInputFormat())
|
2015-05-16 05:01:38 +08:00
|
|
|
return {};
|
|
|
|
|
2015-05-16 18:08:29 +08:00
|
|
|
if (false);
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
else if (iformat->name == QString("dshow"))
|
2015-05-16 05:01:38 +08:00
|
|
|
return DirectShow::getDeviceList();
|
2015-05-16 18:08:29 +08:00
|
|
|
#endif
|
2015-05-16 05:01:38 +08:00
|
|
|
else
|
|
|
|
return getRawDeviceListGeneric();
|
|
|
|
}
|
|
|
|
|
2015-05-14 10:46:28 +08:00
|
|
|
QString CameraDevice::getDefaultDeviceName()
|
|
|
|
{
|
2015-05-16 05:01:38 +08:00
|
|
|
QString defaultdev = Settings::getInstance().getVideoDev();
|
2015-05-14 10:46:28 +08:00
|
|
|
|
|
|
|
if (!getDefaultInputFormat())
|
2015-05-16 05:01:38 +08:00
|
|
|
return defaultdev;
|
2015-05-14 10:46:28 +08:00
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
QVector<QPair<QString, QString>> devlist = getDeviceList();
|
|
|
|
for (const QPair<QString,QString>& device : devlist)
|
|
|
|
if (defaultdev == device.first)
|
|
|
|
return defaultdev;
|
2015-05-14 10:46:28 +08:00
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
if (devlist.isEmpty())
|
|
|
|
return defaultdev;
|
2015-05-14 10:46:28 +08:00
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
return devlist[0].first;
|
2015-05-14 10:46:28 +08:00
|
|
|
}
|
|
|
|
|
2015-05-16 10:01:38 +08:00
|
|
|
QVector<VideoMode> CameraDevice::getVideoModes(QString devName)
|
|
|
|
{
|
|
|
|
if (false);
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
else if (iformat->name == QString("dshow"))
|
|
|
|
return DirectShow::getDeviceModes(devName);
|
|
|
|
#endif
|
|
|
|
else
|
|
|
|
qWarning() << "Video mode listing not implemented for input "<<iformat->name;
|
|
|
|
|
2015-05-16 18:08:29 +08:00
|
|
|
(void)devName;
|
2015-05-16 10:01:38 +08:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2015-05-14 10:46:28 +08:00
|
|
|
bool CameraDevice::getDefaultInputFormat()
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&iformatLock);
|
|
|
|
if (iformat)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
avdevice_register_all();
|
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
#ifdef Q_OS_LINUX
|
2015-05-14 10:46:28 +08:00
|
|
|
if ((iformat = av_find_input_format("v4l2")))
|
|
|
|
return true;
|
2015-05-16 05:01:38 +08:00
|
|
|
#endif
|
2015-05-14 10:46:28 +08:00
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
#ifdef Q_OS_WIN
|
2015-05-14 10:46:28 +08:00
|
|
|
if ((iformat = av_find_input_format("dshow")))
|
|
|
|
return true;
|
2015-05-16 05:01:38 +08:00
|
|
|
if ((iformat = av_find_input_format("vfwcap")))
|
|
|
|
#endif
|
2015-05-14 10:46:28 +08:00
|
|
|
|
2015-05-16 05:01:38 +08:00
|
|
|
#ifdef Q_OS_OSX
|
2015-05-14 10:46:28 +08:00
|
|
|
if ((iformat = av_find_input_format("avfoundation")))
|
|
|
|
return true;
|
|
|
|
if ((iformat = av_find_input_format("qtkit")))
|
|
|
|
return true;
|
2015-05-16 05:01:38 +08:00
|
|
|
#endif
|
2015-05-14 10:46:28 +08:00
|
|
|
|
|
|
|
qWarning() << "No valid input format found";
|
|
|
|
return false;
|
|
|
|
}
|