Changeset 846 for trunk/src/multimedia/audio/qaudiodeviceinfo.cpp
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/multimedia/audio/qaudiodeviceinfo.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 107 107 The values supported by the the device for each of these 108 108 parameters can be fetched with 109 supportedByteOrders(), supportedChannel s(), supportedCodecs(),110 supported Frequencies(), supportedSampleSizes(), and109 supportedByteOrders(), supportedChannelCounts(), supportedCodecs(), 110 supportedSampleRates(), supportedSampleSizes(), and 111 111 supportedSampleTypes(). The combinations supported are dependent on the platform, 112 112 audio plugins installed and the audio device capabilities. If you need a specific format, you can check if … … 320 320 321 321 /*! 322 Returns a list of supported frequencies. 322 Returns a list of supported sample rates. 323 324 \since 4.7 325 */ 326 327 QList<int> QAudioDeviceInfo::supportedSampleRates() const 328 { 329 return supportedFrequencies(); 330 } 331 332 /*! 333 \obsolete 334 335 Use supportedSampleRates() instead. 323 336 */ 324 337 … … 329 342 330 343 /*! 331 Returns a list of supported channels. 344 Returns a list of supported channel counts. 345 346 \since 4.7 347 */ 348 349 QList<int> QAudioDeviceInfo::supportedChannelCounts() const 350 { 351 return supportedChannels(); 352 } 353 354 /*! 355 \obsolete 356 357 Use supportedChannelCount() instead. 332 358 */ 333 359
Note:
See TracChangeset
for help on using the changeset viewer.