[Development] Qt 5.0.2 RC -- Release Testing

2013-03-27 Thread Salovaara Akseli
Hi,

Qt 5.0.2 RC release testing has been started. We would like to kindly ask the 
Qt Community for help by testing the new packages.

  1.  Installer packages are available here: 
http://releases.qt-project.org/qt5/5.0.2-rc1/
  2.  Known issues are available here: 
http://qt-project.org/wiki/Qt502KnownIssues
  3.  Qt bug reports should be reported in JIRA: 
https://bugreports.qt-project.org/
  4.  Please report your testing effort via 
http://testresults.qt-project.org/forms/release-testing/  ?
There is about 600 improvements in Qt 5.0.2 compared to Qt 5.0.1. We believe it 
will address many of the issues that have hindered the users of Qt 5.0.0 and Qt 
5.0.1. Naturally there is always more bugs to fix and we plan to provide more 
fixes  new features in Qt 5.1.0. So please check carefully Qt 5.0.2 release 
candidate so that Qt 5.0.2 final release carries us there.
Br,
Akseli

Akseli Salovaara
Digia, Qt
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Compiling with GCC 4.8

2013-03-27 Thread Stephen Kelly
On Monday, March 25, 2013 16:24:01 Thiago Macieira wrote:
 On segunda-feira, 25 de março de 2013 22.46.36, Stephen Kelly wrote:
  On Monday, February 25, 2013 17:12:02 Stephen Kelly wrote:
   On Monday, February 25, 2013 08:07:48 Thiago Macieira wrote:
It was a matter of timing. Since GCC 4.8 is not released yet, I can't
make
the  case for it being a P1.
  
   I fully disagree with that :). I think compile fixes for compilers that
   are
   not released yet qualify.
  
   But what's done is done, and you can disagree with what I think too.
 
  The 'not released' compiler became 'the released compiler', by the way.
 
  So unless d9ff510f02bba63dabe7a081a68296056a89ae4c is cherry-picked to the
  release branch, 5.0.2 will not build with GCC 4.8, right?

 Backport and add one Ossi and/or Sergio to the reviewers list. If there's
 still time for the release, it will be applied.

Sorry, I don't have GCC 4.8 to test the result of backporting the patch with.

My mail wasn't an attempt to get the fix in, but was to draw attention to the
fact that compile fixes even for unreleased compilers should always go in the
release branch if applicable there.

What happens this time with 5.0.2 and GCC 4.8.0 doesn't matter as much as the
'community understanding' of where to put things like this.

I still think that the patch should have been rejected on stable until it was
in release instead. Even if 5.0.2 was released before GCC 4.8.0, that would
still mean that they would be incompatible. That's a good reason it should
have been in the release branch in the first place.

Have you changed your mind on that?

Why does the release of 4.8.0 change anything? No matter which project was
released first, they would always be incompatible as a result of the patch
going into stable instead of release.

Thanks,

--
Stephen Kelly stephen.ke...@kdab.com | Software Engineer
KDAB (Deutschland) GmbH  Co.KG, a KDAB Group Company
www.kdab.com || Germany +49-30-521325470 || Sweden (HQ) +46-563-540090
KDAB - Qt Experts - Platform-Independent Software Solutions

signature.asc
Description: This is a digitally signed message part.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] [GSTREAMER/QML] How to pass custom options from qml to gst

2013-03-27 Thread Matteo Brichese
Hi everyone, I don't know if this is the right place to ask this question, but 
I cannot find better ML than this, so, if you know a better ML to ask, please 
tell me and sorry.

I've a gstreamer 0.10.36 installation on my board and it's hw accelerated, now 
I'm trying to make some test with QtMultimedia5 and the Video element inside 
QML.
The video element with my video test don't work out of the box, so I'm asking 
you if there is some particular method to pass some extra parameter to the 
gstreamer for playing the video.
I've some particular command for the gst pipeline like nv_omx_videosink and 
other nvidia related things that the default video element can't know.

So, how can I play a video embedded in a qml file thru gst?

Thank you.
---
Matteo Brichese
Software Engineer
mbrich...@came.it
Came Cancelli Automatici S.p.A.
www.came.com
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Compiling with GCC 4.8

2013-03-27 Thread Thiago Macieira
On quarta-feira, 27 de março de 2013 14.17.58, Stephen Kelly wrote:
 Have you changed your mind on that?

 Why does the release of 4.8.0 change anything?

I think of two reasons:

1) I don't want fixes to issues that don't make it to the release of that
compiler. If you can find in the standard saying the new behaviour is correct,
then fine. But otherwise, it might be a compiler bug that gets fixed before the
release. We don't need the churn in our code.

2) even if it's a real issue, depending on how far away that compiler's
release is, it does not qualify as release-critical.

--
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center


signature.asc
Description: This is a digitally signed message part.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Compiling with GCC 4.8

2013-03-27 Thread David Narvaez
On Wed, Mar 27, 2013 at 9:51 AM, Thiago Macieira
thiago.macie...@intel.com wrote:
 1) I don't want fixes to issues that don't make it to the release of that
 compiler. If you can find in the standard saying the new behaviour is
 correct,
 then fine. But otherwise, it might be a compiler bug that gets fixed
 before the
 release. We don't need the churn in our code.

In this particular case, the situation was a semantic problem with our
code that GCC 4.8 would no longer allow, so it was clearly not a
compiler bug. In those situations, maybe we can agree to make sure the
patch goes to the release branch too.

David E. Narvaez
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] [GSTREAMER/QML] How to pass custom options from qml to gst

2013-03-27 Thread David Narvaez
On Wed, Mar 27, 2013 at 8:27 AM, Matteo Brichese mbrich...@came.it wrote:
 Hi everyone, I don't know if this is the right place to ask this question, 
 but I cannot find better ML than this, so, if you know a better ML to ask, 
 please tell me and sorry.

 I've a gstreamer 0.10.36 installation on my board and it's hw accelerated, 
 now I'm trying to make some test with QtMultimedia5 and the Video element 
 inside QML.
 The video element with my video test don't work out of the box, so I'm asking 
 you if there is some particular method to pass some extra parameter to the 
 gstreamer for playing the video.
 I've some particular command for the gst pipeline like nv_omx_videosink and 
 other nvidia related things that the default video element can't know.

 So, how can I play a video embedded in a qml file thru gst?

You're better off asking this question in the gstreamer-devel[0] list.

David E. Narvaez

[0] http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] R: [GSTREAMER/QML] How to pass custom options from qml to gst

2013-03-27 Thread Matteo Brichese


On Wed, Mar 27, 2013 at 8:27 AM, Matteo Brichese mbrich...@came.it wrote:
 Hi everyone, I don't know if this is the right place to ask this question, 
 but I cannot find better ML than this, so, if you know a better ML to ask, 
 please tell me and sorry.

 I've a gstreamer 0.10.36 installation on my board and it's hw accelerated, 
 now I'm trying to make some test with QtMultimedia5 and the Video element 
 inside QML.
 The video element with my video test don't work out of the box, so I'm 
 asking you if there is some particular method to pass some extra parameter 
 to the gstreamer for playing the video.
 I've some particular command for the gst pipeline like nv_omx_videosink and 
 other nvidia related things that the default video element can't know.

 So, how can I play a video embedded in a qml file thru gst?

You're better off asking this question in the gstreamer-devel[0] list.

David E. Narvaez

In the gstreamer list they don't know anything about qt/qml, I know how to play 
video with gstreamer, but I don't know how to play video in qml using gstreamer.

There is a ML on QtMultimedia?

---
Matteo Brichese
Software Engineer
mbrich...@came.it
Came Cancelli Automatici S.p.A.
www.came.com
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Compiling with GCC 4.8

2013-03-27 Thread Olivier Goffart
On Wednesday 27 March 2013 11:20:21 David Narvaez wrote:
 On Wed, Mar 27, 2013 at 9:51 AM, Thiago Macieira
 
 thiago.macie...@intel.com wrote:
  1) I don't want fixes to issues that don't make it to the release of that
  compiler. If you can find in the standard saying the new behaviour is
  correct,
  then fine. But otherwise, it might be a compiler bug that gets fixed
  before the
  release. We don't need the churn in our code.
 
 In this particular case, the situation was a semantic problem with our
 code that GCC 4.8 would no longer allow, so it was clearly not a
 compiler bug. In those situations, maybe we can agree to make sure the
 patch goes to the release branch too.

I don't think the problem was in our code.
I beleive GCC 4.8 Is wrong.

The C++11 standard § 7.5.1 1  says:
  [ Note: An explicit specialization can differ from the template declaration  
 with respect to the constexpr specifier. — end note ] 

Which I read that this explicitly allows code like this:

templatetypename T constexpr int foo(T) { return 0; };
template int foo(int) { return 1; }

So the bug should be reported to GCC if it still do not compile with the 4.8 
release.


(Note:  this does not mean it was a bad idea to work around the bug)

-- 
Olivier 

Woboq - Qt services and support - http://woboq.com - http://code.woboq.org
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] Bumping Qt 5 version in 'dev' branch to 5.2.0

2013-03-27 Thread Ahumada Sergio
Hi,

The first change is https://codereview.qt-project.org/52505
Empty change log files will come after this change is merged.

Cheers,
--
Sergio Ahumada
Release Engineer - Digia, Qt
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] R: [GSTREAMER/QML] How to pass custom options from qml to gst

2013-03-27 Thread Thiago Macieira
On quarta-feira, 27 de março de 2013 16.42.08, Matteo Brichese wrote:
 In the gstreamer list they don't know anything about qt/qml, I know how to
 play video with gstreamer, but I don't know how to play video in qml using
 gstreamer.

Do you know how to do it with the GStreamer API?

Besides, I think you should ask in the GStreamer MLs how to make your non-
standard options the default, so that each application and library doesn't
have to be modified to know about it.

--
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center


signature.asc
Description: This is a digitally signed message part.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] R: [GSTREAMER/QML] How to pass custom options from qml to gst

2013-03-27 Thread Tomasz Olszak
Hi,
As far as i know Qt uses in QtMultimedia  fakesink and xvideosink for
gstreamer pipeline. If you want to use custom videosink you should create
your own Qml plugin. There are some examples on the web:
http://imxcv.blogspot.com/2012/03/video-to-texture-streaming-part-2-imx6.html

This above creates fakesink to catch frame from custom videosink. You can
create such pipeline in your own custom QML element (Video) and draw each
frame received from gstreamer in paintEvent. Look at sources of
QtMultimedia to see how it is implemented. Simply changing xvideosink to
your HW accelerated videosink should resolve your problem.
-- 
Regards,
Tomasz Olszak

2013/3/27 Matteo Brichese mbrich...@came.it



 On Wed, Mar 27, 2013 at 8:27 AM, Matteo Brichese mbrich...@came.it
 wrote:
  Hi everyone, I don't know if this is the right place to ask this
 question, but I cannot find better ML than this, so, if you know a better
 ML to ask, please tell me and sorry.
 
  I've a gstreamer 0.10.36 installation on my board and it's hw
 accelerated, now I'm trying to make some test with QtMultimedia5 and the
 Video element inside QML.
  The video element with my video test don't work out of the box, so I'm
 asking you if there is some particular method to pass some extra parameter
 to the gstreamer for playing the video.
  I've some particular command for the gst pipeline like nv_omx_videosink
 and other nvidia related things that the default video element can't know.
 
  So, how can I play a video embedded in a qml file thru gst?

 You're better off asking this question in the gstreamer-devel[0] list.

 David E. Narvaez

 In the gstreamer list they don't know anything about qt/qml, I know how to
 play video with gstreamer, but I don't know how to play video in qml using
 gstreamer.

 There is a ML on QtMultimedia?

 ---
 Matteo Brichese
 Software Engineer
 mbrich...@came.it
 Came Cancelli Automatici S.p.A.
 www.came.com
 ___
 Development mailing list
 Development@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/development

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] R: [GSTREAMER/QML] How to pass custom options from qml to gst

2013-03-27 Thread Johan Thelin
I believe that Rob Clark did something like this for the OMAP a while
ago using shaders. Could be interesting to look into.

Cheers,

Johan Thelin

Recommended on-line reading:
http://www.thelins.se | http://www.qtcentre.org
Recommended off-line reading:
The Foundations of Qt Development (ISBN: 1-59059-831-8)



On Wed, Mar 27, 2013 at 6:55 PM, Tomasz Olszak olszak.tom...@gmail.com wrote:
 Hi,
 As far as i know Qt uses in QtMultimedia  fakesink and xvideosink for
 gstreamer pipeline. If you want to use custom videosink you should create
 your own Qml plugin. There are some examples on the web:
 http://imxcv.blogspot.com/2012/03/video-to-texture-streaming-part-2-imx6.html

 This above creates fakesink to catch frame from custom videosink. You can
 create such pipeline in your own custom QML element (Video) and draw each
 frame received from gstreamer in paintEvent. Look at sources of QtMultimedia
 to see how it is implemented. Simply changing xvideosink to your HW
 accelerated videosink should resolve your problem.
 --
 Regards,
 Tomasz Olszak

 2013/3/27 Matteo Brichese mbrich...@came.it



 On Wed, Mar 27, 2013 at 8:27 AM, Matteo Brichese mbrich...@came.it
 wrote:
  Hi everyone, I don't know if this is the right place to ask this
  question, but I cannot find better ML than this, so, if you know a better 
  ML
  to ask, please tell me and sorry.
 
  I've a gstreamer 0.10.36 installation on my board and it's hw
  accelerated, now I'm trying to make some test with QtMultimedia5 and the
  Video element inside QML.
  The video element with my video test don't work out of the box, so I'm
  asking you if there is some particular method to pass some extra parameter
  to the gstreamer for playing the video.
  I've some particular command for the gst pipeline like nv_omx_videosink
  and other nvidia related things that the default video element can't know.
 
  So, how can I play a video embedded in a qml file thru gst?

 You're better off asking this question in the gstreamer-devel[0] list.

 David E. Narvaez

 In the gstreamer list they don't know anything about qt/qml, I know how to
 play video with gstreamer, but I don't know how to play video in qml using
 gstreamer.

 There is a ML on QtMultimedia?

 ---
 Matteo Brichese
 Software Engineer
 mbrich...@came.it
 Came Cancelli Automatici S.p.A.
 www.came.com
 ___
 Development mailing list
 Development@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/development






 ___
 Development mailing list
 Development@qt-project.org
 http://lists.qt-project.org/mailman/listinfo/development

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] [GSTREAMER/QML] How to pass custom options from qml to gst

2013-03-27 Thread Ing. Rayner Pupo Gomez
You can create your own video surface using gstreamer, add whatever you want 
(support for gstreamer parameters) to it. It should be not the best practice 
but it should work any way. There is some examples from Qt5 docs that 
demostrate how to create custom video surfaces.
http://www.uci.cu
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] Fwd: [GSoC Mentors Announce] Re: Now Accepting Applications for Mentoring Organizations for GSoC 2013

2013-03-27 Thread Thiago Macieira
If there's any interest, a prospective admin must move NOW.

I will not volunteer as admin.

--  Forwarded message  --

Subject: [GSoC Mentors Announce] Re: Now Accepting Applications for Mentoring
Organizations for GSoC 2013
Date: quarta-feira, 27 de março de 2013, 11.33.37
From: Carol Smith car...@google.com
Para: gsoc-mentors-announce gsoc-mentors-annou...@googlegroups.com

Hi there,

This is just a friendly reminder that there are just about 48 hours left
until the application deadline for the mentoring organization applications
for this year. Please submit soon, we will not accept late applications for
any reason!

Thanks,
Carol


On Mon, Mar 18, 2013 at 12:00 PM, Carol Smith car...@google.com wrote:

 Hi all,

 We're pleased to announce that applications for mentoring organizations
 for Google Summer of Code 2013 are now being accepted [1]. If you'd like to
 apply to be a mentoring organization you can do so via Melange [2]. If you
 have questions about how to use Melange, please see our User's Guide [3].

 Please note that the application period [4] closes on 29 March at 19:00
 UTC [5]. We will not accept any late applications for any reason.

 [1] -
 http://google-opensource.blogspot.com/2013/03/mentoring-organization-applications-now.html
 [2] - http://www.google-melange.com
 [3] - http://en.flossmanuals.net/melange/
 [4] - http://www.google-melange.com/gsoc/events/google/gsoc2013
 [5] - http://goo.gl/xmQMJ

 Cheers,
 Carol


--
You received this message because you are subscribed to the Google Groups
Google Summer of Code Mentors Announce List group.
To unsubscribe from this group and stop receiving emails from it, send an
email to gsoc-mentors-announce+unsubscr...@googlegroups.com.
Visit this group at 
http://groups.google.com/group/gsoc-mentors-announce?hl=en-US.
For more options, visit https://groups.google.com/groups/opt_out.


-
--
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center


signature.asc
Description: This is a digitally signed message part.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Bumping Qt 5 version in 'dev' branch to 5.2.0

2013-03-27 Thread Laszlo Papp
On Wed, Mar 27, 2013 at 5:52 PM, Ahumada Sergio sergio.ahum...@digia.comwrote:

 Hi,

 The first change is https://codereview.qt-project.org/52505
 Empty change log files will come after this change is merged.


I am not sure what actions you expect from us. Should we update the
.qmake.conf in the dev branch of our submodules or we should not touch that
yet? Could you please clarify?

Laszlo
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Bumping Qt 5 version in 'dev' branch to 5.2.0

2013-03-27 Thread Ahumada Sergio
 I am not sure what actions you expect from us. Should we update the 
 .qmake.conf in the dev branch of our 
 submodules or we should not touch that yet? Could you please clarify?
 
 Laszlo

Hi,

I don't expect anything from anybody. This is a pure informational email that 
was sort of requested some time ago [1]

About .qmake.conf .. we will take care of it for modules part of the releases 
(and maybe some others).

Cheers,
[1]: http://lists.qt-project.org/pipermail/development/2012-December/008327.html
--
Sergio Ahumada
Release Engineer - Digia, Qt
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Fwd: [GSoC Mentors Announce] Re: Now Accepting Applications for Mentoring Organizations for GSoC 2013

2013-03-27 Thread Alexander Rössler
Hello,

It would be great if someone could apply as mentor. I'm actually interested 
as student working on Qt-specific thema. Even if I do not get the place, an 
extra volunteer during the summer days would not be bad for the Qt-
Project.

Best Regards
Alexander Rössler

On Wednesday 27 March 2013 11:41:46 Thiago Macieira wrote:
 If there's any interest, a prospective admin must move NOW.
 
 I will not volunteer as admin.
 
 --  Forwarded message  --
 
 Subject: [GSoC Mentors Announce] Re: Now Accepting Applications for
 Mentoring Organizations for GSoC 2013
 Date: quarta-feira, 27 de março de 2013, 11.33.37
 From: Carol Smith car...@google.com
 Para: gsoc-mentors-announce gsoc-mentors-
annou...@googlegroups.com
 
 Hi there,
 
 This is just a friendly reminder that there are just about 48 hours left
 until the application deadline for the mentoring organization applications
 for this year. Please submit soon, we will not accept late applications for
 any reason!
 
 Thanks,
 Carol
 
 On Mon, Mar 18, 2013 at 12:00 PM, Carol Smith car...@google.com 
wrote:
  Hi all,
  
  We're pleased to announce that applications for mentoring 
organizations
  for Google Summer of Code 2013 are now being accepted [1]. If you'd 
like
  to
  apply to be a mentoring organization you can do so via Melange [2]. If 
you
  have questions about how to use Melange, please see our User's 
Guide [3].
  
  Please note that the application period [4] closes on 29 March at 
19:00
  UTC [5]. We will not accept any late applications for any reason.
  
  [1] -
  http://google-opensource.blogspot.com/2013/03/mentoring-organization-appli
  cations-now.html [2] - http://www.google-melange.com
  [3] - http://en.flossmanuals.net/melange/
  [4] - http://www.google-melange.com/gsoc/events/google/gsoc2013
  [5] - http://goo.gl/xmQMJ
  
  Cheers,
  Carol
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Status of QTimeZone

2013-03-27 Thread John Layt
On 26 March 2013 18:15, Thiago Macieira thiago.macie...@intel.com wrote:
 On terça-feira, 26 de março de 2013 14.07.56, Sergio Ahumada wrote:
 As far as I understand, the CI is all in Finland, so GMT +2.

 In other words, the tests are effectively disabled.

Yeap, and on all platforms too.  I assume changing the CI machines to
CET is out of the question.  I'd say to run the tests with TZ set to
the right region, but on Windows that fails as while the C library
respects the setting the Win32 api doesn't so it just breaks the tests
in other interesting ways.  So I guess we're left with modifying the
tests to Finnish time, even though it just perpetuates the problem.

All work up a patch once I've fixed the bug in Windows.

John.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development