Cleans up duplicate device enumeration code so the devices listed by the QMediaServiceProviderPlugin are the same as those in the QVideoInputDeviceControl and includes face and orientation information if available. Change-Id: Iaa4c303c973bcf3e0f7c8c2fd7a7de629bccec86 Reviewed-by: Yoann Lopes <yoann.lopes@digia.com>
89 lines
2.2 KiB
Prolog
89 lines
2.2 KiB
Prolog
TARGET = gstcamerabin
|
|
|
|
QT += multimedia-private
|
|
|
|
PLUGIN_TYPE = mediaservice
|
|
PLUGIN_CLASS_NAME = CameraBinServicePlugin
|
|
load(qt_plugin)
|
|
|
|
include(../common.pri)
|
|
|
|
INCLUDEPATH += $$PWD \
|
|
$${SOURCE_DIR}/src/multimedia
|
|
|
|
INCLUDEPATH += camerabin
|
|
|
|
|
|
HEADERS += \
|
|
$$PWD/camerabinserviceplugin.h \
|
|
$$PWD/camerabinservice.h \
|
|
$$PWD/camerabinsession.h \
|
|
$$PWD/camerabincontrol.h \
|
|
$$PWD/camerabinaudioencoder.h \
|
|
$$PWD/camerabinimageencoder.h \
|
|
$$PWD/camerabinrecorder.h \
|
|
$$PWD/camerabincontainer.h \
|
|
$$PWD/camerabinimagecapture.h \
|
|
$$PWD/camerabinimageprocessing.h \
|
|
$$PWD/camerabinmetadata.h \
|
|
$$PWD/camerabinvideoencoder.h \
|
|
$$PWD/camerabinresourcepolicy.h \
|
|
$$PWD/camerabincapturedestination.h \
|
|
$$PWD/camerabincapturebufferformat.h \
|
|
$$PWD/camerabinviewfindersettings.h \
|
|
$$PWD/camerabininfocontrol.h
|
|
|
|
SOURCES += \
|
|
$$PWD/camerabinserviceplugin.cpp \
|
|
$$PWD/camerabinservice.cpp \
|
|
$$PWD/camerabinsession.cpp \
|
|
$$PWD/camerabincontrol.cpp \
|
|
$$PWD/camerabinaudioencoder.cpp \
|
|
$$PWD/camerabincontainer.cpp \
|
|
$$PWD/camerabinimagecapture.cpp \
|
|
$$PWD/camerabinimageencoder.cpp \
|
|
$$PWD/camerabinimageprocessing.cpp \
|
|
$$PWD/camerabinmetadata.cpp \
|
|
$$PWD/camerabinrecorder.cpp \
|
|
$$PWD/camerabinvideoencoder.cpp \
|
|
$$PWD/camerabinresourcepolicy.cpp \
|
|
$$PWD/camerabincapturedestination.cpp \
|
|
$$PWD/camerabinviewfindersettings.cpp \
|
|
$$PWD/camerabincapturebufferformat.cpp \
|
|
$$PWD/camerabininfocontrol.cpp
|
|
|
|
maemo6 {
|
|
HEADERS += \
|
|
$$PWD/camerabuttonlistener_meego.h
|
|
|
|
SOURCES += \
|
|
$$PWD/camerabuttonlistener_meego.cpp
|
|
|
|
CONFIG += have_gst_photography
|
|
}
|
|
|
|
config_gstreamer_photography {
|
|
DEFINES += HAVE_GST_PHOTOGRAPHY
|
|
|
|
HEADERS += \
|
|
$$PWD/camerabinfocus.h \
|
|
$$PWD/camerabinexposure.h \
|
|
$$PWD/camerabinflash.h \
|
|
$$PWD/camerabinlocks.h \
|
|
$$PWD/camerabinzoom.h
|
|
|
|
SOURCES += \
|
|
$$PWD/camerabinexposure.cpp \
|
|
$$PWD/camerabinflash.cpp \
|
|
$$PWD/camerabinfocus.cpp \
|
|
$$PWD/camerabinlocks.cpp \
|
|
$$PWD/camerabinzoom.cpp
|
|
|
|
LIBS += -lgstphotography-0.10
|
|
DEFINES += GST_USE_UNSTABLE_API #prevents warnings because of unstable photography API
|
|
}
|
|
|
|
OTHER_FILES += \
|
|
camerabin.json
|
|
|