Commit 7ab948c7 authored by Liang Qi's avatar Liang Qi
Browse files

Merge remote-tracking branch 'origin/5.8.0' into 5.8

Conflicts:
	src/multimedia/configure.json

Change-Id: Ide124447e1667f0b6557b6ab1ba7188ae76772c5
Showing with 101 additions and 10 deletions
......@@ -5,4 +5,5 @@ Multimedia options:
-no-gstreamer ........ Disable support for GStreamer
-gstreamer [version] . Enable GStreamer support [auto]
With no parameter, 1.0 is tried first, then 0.10.
-wmf-backend ......... Enable WMF support [no] (Windows only)
-mediaplayer-backend <name> ... Select media player backend (Windows only)
Supported backends: directshow (default), wmf
Qt 5.8 introduces many new features and improvements as well as bugfixes
over the 5.7.x series. For more details, refer to the online documentation
included in this distribution. The documentation is also available online:
http://doc.qt.io/qt-5/index.html
The Qt version 5.8 series is binary compatible with the 5.7.x series.
Applications compiled for 5.7 will continue to run with 5.8.
Some of the changes listed in this file include issue tracking numbers
corresponding to tasks in the Qt Bug Tracker:
https://bugreports.qt.io/
Each of these identifiers can be entered in the bug tracker to obtain more
information about a particular change.
****************************************************************************
* Library *
****************************************************************************
QtMultimedia
------------
- Added QAudio::convertVolume() function.
- QtMultimedia global object (QML):
* Added convertVolume() function.
- VideoOutput (QML):
* Can now render frames having the YUV 4:2:2 8-bit (UYVY/YUYV) pixel
format.
****************************************************************************
* Platform Specific Changes *
****************************************************************************
Android
-------
- Audio volumes passed to a media player are now correctly interpreted
as a linear factor.
Linux
-----
- Metadata containing a date information is now correctly returned as a
QDate or QDateTime.
- Added support for QMediaMetaData::CoverArtImage metadata key.
- QVideoProbe is now supported when used with a QCamera.
OS X
----
- Cameras can now support the YUV 4:2:2 8-bit (UYVY/YUYV) pixel format.
Windows
-------
- DirectShow:
* Audio volumes passed to a media player are now correctly interpreted
as a linear factor.
WinRT
-----
- Cameras can now support the YUV 4:2:2 8-bit (UYVY/YUYV) pixel format.
- [QTBUG-48539] Fixed Camera (QML) focus mode and focus point mode not
being synced with the actual value.
- [QTBUG-48541] Camera flash is now supported.
......@@ -10,7 +10,8 @@
"alsa": "boolean",
"gstreamer": { "type": "optionalString", "values": [ "no", "yes", "0.10", "1.0" ] },
"pulseaudio": "boolean",
"wmf-backend": "boolean"
"mediaplayer-backend": { "type": "string", "values": [ "directshow", "wmf" ] },
"wmf-backend": { "type": "void", "name": "mediaplayer-backend", "value": "wmf" }
}
},
......@@ -192,6 +193,13 @@
"condition": "config.win32 && libs.directshow",
"output": [ "feature", "privateFeature" ]
},
"directshow-player": {
"label": "DirectShow",
"enable": "input.mediaplayer-backend == 'directshow'",
"disable": "input.mediaplayer-backend == 'wmf'",
"condition": "features.directshow && !features.wmf-player",
"output": [ "privateFeature" ]
},
"evr": {
"label": "evr.h",
"condition": "config.win32 && tests.evr",
......@@ -281,11 +289,16 @@
"condition": "config.win32 && features.directshow && tests.wshellitem",
"output": [ "feature", "privateFeature" ]
},
"wmf-backend": {
"wmf": {
"label": "Windows Media Foundation",
"condition": "config.win32 && libs.wmf",
"output": [ "privateFeature" ]
},
"wmf-player": {
"label": "Windows Media Foundation",
"emitIf": "config.win32",
"autoDetect": false,
"condition": "libraries.wmf",
"enable": "input.mediaplayer-backend == 'wmf'",
"disable": "input.mediaplayer-backend != 'wmf'",
"condition": "features.wmf",
"output": [ "privateFeature" ]
}
},
......@@ -307,7 +320,14 @@
"mmrenderer",
"avfoundation",
"directshow",
"wmf-backend"
"wmf",
{
"message": "Media player backend",
"type": "firstAvailableFeature",
"args": "directshow-player wmf-player",
"condition": "config.win32"
}
]
}
]
......
......@@ -13,7 +13,7 @@ SOURCES += dsserviceplugin.cpp
mingw: DEFINES += NO_DSHOW_STRSAFE
include(helpers/helpers.pri)
!qtConfig(wmf-backend): include(player/player.pri)
qtConfig(directshow-player): include(player/player.pri)
include(camera/camera.pri)
OTHER_FILES += \
......
......@@ -35,7 +35,7 @@ win32:!winrt {
windowsaudio
qtConfig(directshow): SUBDIRS += directshow
qtConfig(wmf-backend): SUBDIRS += wmf
qtConfig(wmf): SUBDIRS += wmf
}
......
......@@ -17,7 +17,7 @@ SOURCES += \
mfstream.cpp \
sourceresolver.cpp
contains(QT_CONFIG, wmf-backend): include (player/player.pri)
qtConfig(wmf-player): include (player/player.pri)
include (decoder/decoder.pri)
OTHER_FILES += \
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment