summaryrefslogtreecommitdiffstats
path: root/src/multimedia
diff options
context:
space:
mode:
authorDavid Boddie <dboddie@trolltech.com>2009-12-18 13:41:15 (GMT)
committerDavid Boddie <dboddie@trolltech.com>2009-12-18 13:41:15 (GMT)
commit2c4f51cec3aaa219ff0b14afdeafd726cbf8a4db (patch)
treeb2fef4d58f88980e4cd667612d543a687a7e0500 /src/multimedia
parentf763f0089e0acb114524a6276c2ed7ff823d1d05 (diff)
downloadQt-2c4f51cec3aaa219ff0b14afdeafd726cbf8a4db.zip
Qt-2c4f51cec3aaa219ff0b14afdeafd726cbf8a4db.tar.gz
Qt-2c4f51cec3aaa219ff0b14afdeafd726cbf8a4db.tar.bz2
Doc: Made corrections to documentation style and clarified some points.
Reviewed-by: Trust Me
Diffstat (limited to 'src/multimedia')
-rw-r--r--src/multimedia/audio/qaudioformat.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/multimedia/audio/qaudioformat.cpp b/src/multimedia/audio/qaudioformat.cpp
index b2bbe14..eb5dde3 100644
--- a/src/multimedia/audio/qaudioformat.cpp
+++ b/src/multimedia/audio/qaudioformat.cpp
@@ -120,7 +120,7 @@ public:
\row
\o Sample size
\o How much data is stored in each sample (typically 8
- or 16)
+ or 16 bits)
\row
\o Sample type
\o Numerical representation of sample (typically signed integer,
@@ -224,7 +224,7 @@ bool QAudioFormat::isValid() const
}
/*!
- Sets the frequency to \a frequency.
+ Sets the frequency (sample rate) to \a frequency.
*/
void QAudioFormat::setFrequency(int frequency)
@@ -233,7 +233,7 @@ void QAudioFormat::setFrequency(int frequency)
}
/*!
- Returns the current frequency value.
+ Returns the current frequency (sample rate) value.
*/
int QAudioFormat::frequency() const
@@ -242,7 +242,7 @@ int QAudioFormat::frequency() const
}
/*!
- Sets the channels to \a channels.
+ Sets the number of channels to the \a channels value specified.
*/
void QAudioFormat::setChannels(int channels)
@@ -251,7 +251,7 @@ void QAudioFormat::setChannels(int channels)
}
/*!
- Returns the current channel value.
+ Returns the current number of channels.
*/
int QAudioFormat::channels() const
@@ -260,7 +260,7 @@ int QAudioFormat::channels() const
}
/*!
- Sets the sampleSize to \a sampleSize.
+ Sets the sample size to the \a sampleSize specified.
*/
void QAudioFormat::setSampleSize(int sampleSize)
@@ -269,7 +269,7 @@ void QAudioFormat::setSampleSize(int sampleSize)
}
/*!
- Returns the current sampleSize value.
+ Returns the current sample size value.
*/
int QAudioFormat::sampleSize() const