summaryrefslogtreecommitdiffstats
path: root/src/multimedia/audio/qaudioformat.cpp
diff options
context:
space:
mode:
authorCasper van Donderen <casper.vandonderen@nokia.com>2012-03-01 18:50:38 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-02 04:02:43 +0100
commitd1b6bf5fac54a39d911079ba792ca95424c5c70c (patch)
treeeccc1344c41fe509fa5f22a972d5b4decad10f85 /src/multimedia/audio/qaudioformat.cpp
parent3d0a14efceea7b4faabc73f52a1c0e74230d24d2 (diff)
Remove the usage of deprecated qdoc macros.
QDoc now has support for Doxygen style commands for italics, bold and list items. This change applies that change in QDoc to the actual documentation. Task-number: QTBUG-24578 Change-Id: Iec1c616e0d9a915a31a661916805916e19495dc9 Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
Diffstat (limited to 'src/multimedia/audio/qaudioformat.cpp')
-rw-r--r--src/multimedia/audio/qaudioformat.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/multimedia/audio/qaudioformat.cpp b/src/multimedia/audio/qaudioformat.cpp
index 73165d70b..a1ece4fcd 100644
--- a/src/multimedia/audio/qaudioformat.cpp
+++ b/src/multimedia/audio/qaudioformat.cpp
@@ -122,26 +122,26 @@ public:
\table
\header
- \o Parameter
- \o Description
+ \li Parameter
+ \li Description
\row
- \o Sample Rate
- \o Samples per second of audio data in Hertz.
+ \li Sample Rate
+ \li Samples per second of audio data in Hertz.
\row
- \o Number of channels
- \o The number of audio channels (typically one for mono
+ \li Number of channels
+ \li The number of audio channels (typically one for mono
or two for stereo)
\row
- \o Sample size
- \o How much data is stored in each sample (typically 8
+ \li Sample size
+ \li How much data is stored in each sample (typically 8
or 16 bits)
\row
- \o Sample type
- \o Numerical representation of sample (typically signed integer,
+ \li Sample type
+ \li Numerical representation of sample (typically signed integer,
unsigned integer or float)
\row
- \o Byte order
- \o Byte ordering of sample (typically little endian, big endian)
+ \li Byte order
+ \li Byte ordering of sample (typically little endian, big endian)
\endtable
This class is typically used in conjunction with QAudioInput or
@@ -161,11 +161,11 @@ public:
Values are initialized as follows:
\list
- \o sampleRate() = -1
- \o channelCount() = -1
- \o sampleSize() = -1
- \o byteOrder() = QAudioFormat::Endian(QSysInfo::ByteOrder)
- \o sampleType() = QAudioFormat::Unknown
+ \li sampleRate() = -1
+ \li channelCount() = -1
+ \li sampleSize() = -1
+ \li byteOrder() = QAudioFormat::Endian(QSysInfo::ByteOrder)
+ \li sampleType() = QAudioFormat::Unknown
\c codec() = ""
\endlist
*/