Re: [Development] Move assignment without move constructors

2016-05-25 Thread Marc Mutz
On Monday 23 May 2016 22:45:28 Thiago Macieira wrote: > Em segunda-feira, 23 de maio de 2016, às 20:40:36 PDT, Giuseppe D'Angelo > > escreveu: > > Any takers for the task? > > I've already added it for QDateTime: > https://codereview.qt-project.org/159085 > > It's part of the short date

[Development] D-Bus minimum version for Qt 5.6

2016-05-25 Thread Romain Pokrzywka
Hi, I'm writing this both as a question to the QtDBus maintainers and as a PSA for people using QtDBus and possibly experiencing instability after upgrading to Qt 5.6. I'm afraid some important piece of information may have been left out for users who are not building their own dbus libraries or

[Development] Supported platforms for Qt 5.8

2016-05-25 Thread Jake Petroules
Hi all, Might be a bit premature, but is anyone opposed to dropping OS X 10.9 and iOS 7.x in Qt 5.8? This would follow dropping one OS X and iOS release per Qt release for the past 3 releases, but after that I think we should slow to dropping one release for each release we add (so, once

Re: [Development] [QtMultimedia] How to make to use a HW codecs by QML media player on Linux?

2016-05-25 Thread Denis Shienkov
Now, I have added this output: {code} qDebug() << "*** TEST Best sink name" << elementName << ", m_videoSink:" << m_videoSink; {code} to the ctor of QGStreamerVideoOverlay in file /src/gsttools/qgstreamervideooverlay.cpp, and now I see this output: {quote} root@apalis-t30:~/Downloads#

Re: [Development] QtWebkit to vcxproj

2016-05-25 Thread Kai Koehne
> -Original Message- > From: Development [mailto:development-bounces+kai.koehne=qt.io@qt- > project.org] On Behalf Of raven-worx Software > Sent: Wednesday, May 25, 2016 4:11 PM > To: development@qt-project.org > Subject: [Development] QtWebkit to vcxproj > > Hi, > > i am trying to

[Development] QtWebkit to vcxproj

2016-05-25 Thread raven-worx Software
Hi, i am trying to create a vcxproj-Project of the QtWebKit module. For that i call "qmake -tp vc -r" This results in error "Project ERROR: Strict subdir dependencies can only be used with subdirs template" (https://bugreports.qt.io/browse/QTBUG-50099) I can get rid of this error by

Re: [Development] [QtMultimedia] How to make to use a HW codecs by QML media player on Linux?

2016-05-25 Thread Denis Shienkov
The solution from: https://devtalk.nvidia.com/default/topic/894891/jetson-tk1/gstreamer-1-0-and-qt5-video-playback/ with adding the: {code} qDebug() << "Setting videosink to " << videoSinkString; qputenv("QT_GSTREAMER_WINDOW_VIDEOSINK", videoSinkString.toUtf8()); {code} to the

Re: [Development] [QtMultimedia] How to make to use a HW codecs by QML media player on Linux?

2016-05-25 Thread Denis Shienkov
Now, I have recompiled the QtMM plugin (with default gstreamer 0.10), but with adding of debug macro DEBUG_PLAYBIN. Then I got following log: https://paste.kde.org/p6ztesnsq Where I do not see any mentions about the selected gst sinks.. I see only this: {quote} Set video output:

Re: [Development] [QtMultimedia] How to make to use a HW codecs by QML media player on Linux?

2016-05-25 Thread Denis Shienkov
> BTW: As I remember, I saw some environment variable which allows to setup custom video sink... I need to see sources of QtMM... if I'm not mistaked.. maybe it will help... I have found this env variables: * QT_GSTREAMER_WIDGET_VIDEOSINK * QT_GSTREAMER_WINDOW_VIDEOSINK and try to use it: