/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the QtMultimedia module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions ** contained in the either Technology Preview License Agreement or the ** Beta Release License Agreement. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of other Qt classes. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include "qaudiodeviceinfo_win32_p.h" // For mingw toolchain mmsystem.h only defines half the defines, so add if needed. #ifndef WAVE_FORMAT_44M08 #define WAVE_FORMAT_44M08 0x00000100 #define WAVE_FORMAT_44S08 0x00000200 #define WAVE_FORMAT_44M16 0x00000400 #define WAVE_FORMAT_44S16 0x00000800 #define WAVE_FORMAT_48M08 0x00001000 #define WAVE_FORMAT_48S08 0x00002000 #define WAVE_FORMAT_48M16 0x00004000 #define WAVE_FORMAT_48S16 0x00008000 #define WAVE_FORMAT_96M08 0x00010000 #define WAVE_FORMAT_96S08 0x00020000 #define WAVE_FORMAT_96M16 0x00040000 #define WAVE_FORMAT_96S16 0x00080000 #endif QAudioDeviceInfoPrivate::QAudioDeviceInfoPrivate(QByteArray dev, QAudio::Mode mode) { device = QLatin1String(dev); this->mode = mode; } QAudioDeviceInfoPrivate::~QAudioDeviceInfoPrivate() { close(); } bool QAudioDeviceInfoPrivate::isFormatSupported(const QAudioFormat& format) const { return testSettings(format); } QAudioFormat QAudioDeviceInfoPrivate::preferredFormat() const { QAudioFormat nearest; if(mode == QAudio::AudioOutput) { nearest.setFrequency(44100); nearest.setChannels(2); nearest.setByteOrder(QAudioFormat::LittleEndian); nearest.setSampleType(QAudioFormat::SignedInt); nearest.setSampleSize(16); nearest.setCodec(tr("audio/pcm")); } else { nearest.setFrequency(11025); nearest.setChannels(1); nearest.setSampleType(QAudioFormat::SignedInt); nearest.setSampleSize(8); nearest.setCodec(tr("audio/pcm")); } return nearest; } QAudioFormat QAudioDeviceInfoPrivate::nearestFormat(const QAudioFormat& format) const { if(testSettings(format)) return format; else return preferredFormat(); } QString QAudioDeviceInfoPrivate::deviceName() const { return device; } QStringList QAudioDeviceInfoPrivate::codecList() { updateLists(); return codecz; } QList QAudioDeviceInfoPrivate::frequencyList() { updateLists(); return freqz; } QList QAudioDeviceInfoPrivate::channelsList() { updateLists(); return channelz; } QList QAudioDeviceInfoPrivate::sampleSizeList() { updateLists(); return sizez; } QList QAudioDeviceInfoPrivate::byteOrderList() { updateLists(); return byteOrderz; } QList QAudioDeviceInfoPrivate::sampleTypeList() { updateLists(); return typez; } bool QAudioDeviceInfoPrivate::open() { return true; } void QAudioDeviceInfoPrivate::close() { } bool QAudioDeviceInfoPrivate::testSettings(const QAudioFormat& format) const { // Set nearest to closest settings that do work. // See if what is in settings will work (return value). bool testChannel = false; bool testCodec = false; bool testFreq = false; int err = 0; // For now, just accept only audio/pcm codec if(!format.codec().startsWith(tr("audio/pcm"))) { err=-1; } else testCodec = true; if(err>=0 && format.channels() != -1) { testChannel = true; } if(err>=0 && format.frequency() != -1) { testFreq = true; } if(err == 0) { // settings work return true; } return false; } void QAudioDeviceInfoPrivate::updateLists() { // redo all lists based on current settings bool base = false; bool match = false; DWORD fmt = NULL; QString tmp; if(device.compare(tr("default")) == 0) base = true; if(mode == QAudio::AudioOutput) { WAVEOUTCAPS woc; unsigned long iNumDevs,i; iNumDevs = waveOutGetNumDevs(); for(i=0;i QAudioDeviceInfoPrivate::deviceList(QAudio::Mode mode) { Q_UNUSED(mode) QList devices; devices.append("default"); if(mode == QAudio::AudioOutput) { WAVEOUTCAPS woc; unsigned long iNumDevs,i; iNumDevs = waveOutGetNumDevs(); for(i=0;i