summaryrefslogtreecommitdiffstats
path: root/src/multimedia/playback/qmediaresource.cpp
diff options
context:
space:
mode:
authorMichael Goddard <michael.goddard@nokia.com>2012-01-16 15:19:20 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-16 07:32:24 +0100
commita6268601c907c56555ae42668e983a447c0da2eb (patch)
tree8e702efd10ec2eae5688d2afa6d660930c89399f /src/multimedia/playback/qmediaresource.cpp
parentb228ff95d763fc954ffe34b2fdbc73d88ed25758 (diff)
Remove antiquated \since lines in docs.
They aren't useful in the case of QtMultimedia{Kit} Change-Id: If1b0b6625763c85907fb05beb9c440046472ddef Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
Diffstat (limited to 'src/multimedia/playback/qmediaresource.cpp')
-rw-r--r--src/multimedia/playback/qmediaresource.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/multimedia/playback/qmediaresource.cpp b/src/multimedia/playback/qmediaresource.cpp
index 5f5499fd6..b6676b052 100644
--- a/src/multimedia/playback/qmediaresource.cpp
+++ b/src/multimedia/playback/qmediaresource.cpp
@@ -66,7 +66,6 @@ namespace
\brief The QMediaResource class provides a description of a media resource.
\inmodule QtMultimedia
\ingroup multimedia
- \since 1.0
A media resource is composed of a \l {url()}{URL} containing the
location of the resource and a set of properties that describe the
@@ -104,7 +103,6 @@ QMediaResource::QMediaResource()
/*!
Constructs a media resource with the given \a mimeType from a \a url.
- \since 1.0
*/
QMediaResource::QMediaResource(const QUrl &url, const QString &mimeType)
{
@@ -114,7 +112,6 @@ QMediaResource::QMediaResource(const QUrl &url, const QString &mimeType)
/*!
Constructs a media resource with the given \a mimeType from a network \a request.
- \since 1.0
*/
QMediaResource::QMediaResource(const QNetworkRequest &request, const QString &mimeType)
{
@@ -125,7 +122,6 @@ QMediaResource::QMediaResource(const QNetworkRequest &request, const QString &mi
/*!
Constructs a copy of a media resource \a other.
- \since 1.0
*/
QMediaResource::QMediaResource(const QMediaResource &other)
: values(other.values)
@@ -134,7 +130,6 @@ QMediaResource::QMediaResource(const QMediaResource &other)
/*!
Assigns the value of \a other to a media resource.
- \since 1.0
*/
QMediaResource &QMediaResource::operator =(const QMediaResource &other)
{
@@ -155,7 +150,6 @@ QMediaResource::~QMediaResource()
Compares a media resource to \a other.
Returns true if the resources are identical, and false otherwise.
- \since 1.0
*/
bool QMediaResource::operator ==(const QMediaResource &other) const
{
@@ -178,7 +172,6 @@ bool QMediaResource::operator ==(const QMediaResource &other) const
Compares a media resource to \a other.
Returns true if they are different, and false otherwise.
- \since 1.0
*/
bool QMediaResource::operator !=(const QMediaResource &other) const
{
@@ -189,7 +182,6 @@ bool QMediaResource::operator !=(const QMediaResource &other) const
Identifies if a media resource is null.
Returns true if the resource is null, and false otherwise.
- \since 1.0
*/
bool QMediaResource::isNull() const
{
@@ -198,7 +190,6 @@ bool QMediaResource::isNull() const
/*!
Returns the URL of a media resource.
- \since 1.0
*/
QUrl QMediaResource::url() const
{
@@ -207,7 +198,6 @@ QUrl QMediaResource::url() const
/*!
Returns the network request associated with this media resource.
- \since 1.0
*/
QNetworkRequest QMediaResource::request() const
{
@@ -221,7 +211,6 @@ QNetworkRequest QMediaResource::request() const
Returns the MIME type of a media resource.
This may be null if the MIME type is unknown.
- \since 1.0
*/
QString QMediaResource::mimeType() const
{
@@ -232,7 +221,6 @@ QString QMediaResource::mimeType() const
Returns the language of a media resource as an ISO 639-2 code.
This may be null if the language is unknown.
- \since 1.0
*/
QString QMediaResource::language() const
{
@@ -241,7 +229,6 @@ QString QMediaResource::language() const
/*!
Sets the \a language of a media resource.
- \since 1.0
*/
void QMediaResource::setLanguage(const QString &language)
{
@@ -256,7 +243,6 @@ void QMediaResource::setLanguage(const QString &language)
This may be null if the media resource does not contain an audio stream, or the codec is
unknown.
- \since 1.0
*/
QString QMediaResource::audioCodec() const
{
@@ -265,7 +251,6 @@ QString QMediaResource::audioCodec() const
/*!
Sets the audio \a codec of a media resource.
- \since 1.0
*/
void QMediaResource::setAudioCodec(const QString &codec)
{
@@ -280,7 +265,6 @@ void QMediaResource::setAudioCodec(const QString &codec)
This may be null if the media resource does not contain a video stream, or the codec is
unknonwn.
- \since 1.0
*/
QString QMediaResource::videoCodec() const
{
@@ -289,7 +273,6 @@ QString QMediaResource::videoCodec() const
/*!
Sets the video \a codec of media resource.
- \since 1.0
*/
void QMediaResource::setVideoCodec(const QString &codec)
{
@@ -303,7 +286,6 @@ void QMediaResource::setVideoCodec(const QString &codec)
Returns the size in bytes of a media resource.
This may be zero if the size is unknown.
- \since 1.0
*/
qint64 QMediaResource::dataSize() const
{
@@ -312,7 +294,6 @@ qint64 QMediaResource::dataSize() const
/*!
Sets the \a size in bytes of a media resource.
- \since 1.0
*/
void QMediaResource::setDataSize(const qint64 size)
{
@@ -326,7 +307,6 @@ void QMediaResource::setDataSize(const qint64 size)
Returns the bit rate in bits per second of a media resource's audio stream.
This may be zero if the bit rate is unknown, or the resource contains no audio stream.
- \since 1.0
*/
int QMediaResource::audioBitRate() const
{
@@ -335,7 +315,6 @@ int QMediaResource::audioBitRate() const
/*!
Sets the bit \a rate in bits per second of a media resource's video stream.
- \since 1.0
*/
void QMediaResource::setAudioBitRate(int rate)
{
@@ -349,7 +328,6 @@ void QMediaResource::setAudioBitRate(int rate)
Returns the audio sample rate of a media resource.
This may be zero if the sample size is unknown, or the resource contains no audio stream.
- \since 1.0
*/
int QMediaResource::sampleRate() const
{
@@ -358,7 +336,6 @@ int QMediaResource::sampleRate() const
/*!
Sets the audio \a sampleRate of a media resource.
- \since 1.0
*/
void QMediaResource::setSampleRate(int sampleRate)
{
@@ -372,7 +349,6 @@ void QMediaResource::setSampleRate(int sampleRate)
Returns the number of audio channels in a media resource.
This may be zero if the sample size is unknown, or the resource contains no audio stream.
- \since 1.0
*/
int QMediaResource::channelCount() const
{
@@ -381,7 +357,6 @@ int QMediaResource::channelCount() const
/*!
Sets the number of audio \a channels in a media resource.
- \since 1.0
*/
void QMediaResource::setChannelCount(int channels)
{
@@ -395,7 +370,6 @@ void QMediaResource::setChannelCount(int channels)
Returns the bit rate in bits per second of a media resource's video stream.
This may be zero if the bit rate is unknown, or the resource contains no video stream.
- \since 1.0
*/
int QMediaResource::videoBitRate() const
{
@@ -404,7 +378,6 @@ int QMediaResource::videoBitRate() const
/*!
Sets the bit \a rate in bits per second of a media resource's video stream.
- \since 1.0
*/
void QMediaResource::setVideoBitRate(int rate)
{
@@ -419,7 +392,6 @@ void QMediaResource::setVideoBitRate(int rate)
This may be null is the resolution is unknown, or the resource contains no pixel data (i.e. the
resource is an audio stream.
- \since 1.0
*/
QSize QMediaResource::resolution() const
{
@@ -428,7 +400,6 @@ QSize QMediaResource::resolution() const
/*!
Sets the \a resolution in pixels of a media resource.
- \since 1.0
*/
void QMediaResource::setResolution(const QSize &resolution)
{
@@ -440,7 +411,6 @@ void QMediaResource::setResolution(const QSize &resolution)
/*!
Sets the \a width and \a height in pixels of a media resource.
- \since 1.0
*/
void QMediaResource::setResolution(int width, int height)
{