Re: [Interest] Android not using my QtActivity subclass.

2016-08-12 Thread Jason H
> Sent: Friday, August 12, 2016 at 3:54 PM > From: "Jason H" > To: "interestqt-project.org" > Subject: [Interest] Android not using my QtActivity subclass. > > I had to refactor my application package name, which was com.company.app, to >

[Interest] Android not using my QtActivity subclass.

2016-08-12 Thread Jason H
I had to refactor my application package name, which was com.company.app, to com.company.app.a When I did this, Qt/Android no longer used my MyActivity which derived from QtActivity, and now calls it org.qtproject.example.app. I have updated my Android manifest to match, but it didn't change.

Re: [Interest] Interest Digest, Vol 59, Issue 14

2016-08-12 Thread TORRES ROJAS, Asiel (BI-Caribe)
0, 48000, 88200, 96000, 192000) (8, 16, 24, 32, 48, 64) bb -- next part -- An HTML attachment was scrubbed... URL: <http://lists.qt-project.org/pipermail/interest/attachments/20160812/6dacd7b2/attachment-0001.html> -- Messag

Re: [Interest] Crash in QXcbScreen::updateRefreshRate

2016-08-12 Thread Thiago Macieira
On sexta-feira, 12 de agosto de 2016 17:41:05 PDT Scott Aron Bloom wrote: > One of my customers is having a problem with our tool since we moved to > Qt5.5.1. We are not able to move to Qt5.6 > > They are running their system via exceed turboX > > However, when the tool starts up, it is

[Interest] Crash in QXcbScreen::updateRefreshRate

2016-08-12 Thread Scott Aron Bloom
One of my customers is having a problem with our tool since we moved to Qt5.5.1. We are not able to move to Qt5.6 They are running their system via exceed turboX However, when the tool starts up, it is crashing immediately with the following call stack. Any ideas for a work around? Program

Re: [Interest] Only buzzing sound while playing wav file through QAudioOutput

2016-08-12 Thread Anisha Kaul
Much thankful for your polite response. My problem is that I first tried this program with an mp3 file. It didn't work, then I tried the wav file. Which file format should directly work with it? Is there there something hardware specific that I need to figure out to make this work? I am on

Re: [Interest] Only buzzing sound while playing wav file through QAudioOutput

2016-08-12 Thread Maurice Kalinowski
Hi, Please note that a wav file is a _container_ format, meaning it starts with a header describing the audio format and then continues with chunks of data. For more details have a look here: https://de.wikipedia.org/wiki/RIFF_WAVE This means that you will need to parse the header and provide

[Interest] Only buzzing sound while playing wav file through QAudioOutput

2016-08-12 Thread Anisha Kaul
Hi, This time I tried playing a wav file, but I cannot hear anything else than a buzzing sound. Platform is windows if that matters. This time the code is in main.cpp. Please guide. *** #include

Re: [Interest] Receiving audio through USB frame grabber and playing it

2016-08-12 Thread Nuno Santos
SampleType defines how each sample is represented, the min and max value. For instance, in my audio applications, I use floating point sample type because I wan’t to generate samples between -1 and 1. Working with a normalised value is a very convenient way of making calculations, but on some

Re: [Interest] Receiving audio through USB frame grabber and playing it

2016-08-12 Thread Anisha Kaul
Thanks for the response and apologies for my error. This morning I discovered that I was able to hear on 24 bit samples but not on 16 bit sample because I hadn't raised volume to its maximum. Now, with 16 bit samples I am able to hear the "buzzing sound". Nothing more than that. Now the