Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/doc/src/classes/phonon-api.qdoc

    r769 r846  
    22    This file is part of the KDE project
    33    Copyright (C) 2005-2007 Matthias Kretz <kretz@kde.org>
    4     Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     4    Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
    55    Contact: Nokia Corporation (qt-info@nokia.com)
    66
     
    15781578    \brief The MediaObject class provides an interface for media playback.
    15791579
    1580 
    15811580    The media object manages a \l{Phonon::}{MediaSource}, which
    15821581    supplies the media object with multimedia content, e.g., from a
     
    16521651    different one. A user readable error message is given by
    16531652    errorString().
    1654     \section1 Symbian Platform Security Requirements
    1655 
    1656     On Symbian, processes which access media via the network must
    1657     have the \c NetworkServices platform security capability. If the client
    1658     process lacks this capability, operations will result in errors.
    1659     This failure is indicated by a state() of Phonon::ErrorState.
    1660 
    1661     Platform security capabilities are added via the
    1662     \l{qmake-variable-reference.html#target-capability}{TARGET.CAPABILITY}
    1663     qmake variable.
    1664 
     1653
     1654    \sa {Symbian Platform Security Requirements}
    16651655    \sa Phonon::MediaSource, Phonon::AudioOutput, VideoWidget,
    16661656    {Music Player Example}, {Phonon Overview}, Phonon::VideoPlayer,
     
    41254115
    41264116/*!
     4117    \fn Phonon::VideoWidget::snapshot() const
     4118    \since 4.7
     4119
     4120    Returns a snapshot of the current frame shown in the widget.
     4121*/
     4122
     4123/*!
    41274124    \enum Phonon::VideoWidget::ScaleMode
    41284125
     
    43164313
    43174314/*!
     4315    \class Phonon::VideoWidgetInterface44
     4316    \inmodule Phonon
     4317    \since 4.7
     4318*/
     4319
     4320/*!
     4321    \fn Phonon::VideoWidgetInterface44::snapshot() const
     4322*/
     4323
     4324/*!
     4325    \typedef Phonon::VideoWidgetInterfaceLatest
     4326    \inmodule Phonon
     4327    \since 4.7
     4328*/
     4329
     4330/*!
    43184331    \class Phonon::PlatformPlugin
    43194332    \inmodule Phonon
     
    50325045*/
    50335046
     5047/*!
     5048    \class Phonon::PulseSupport
     5049    \inmodule Phonon
     5050    \since 4.7
     5051    \internal
     5052*/
     5053
     5054/*!
     5055    \class Phonon::AudioDataOutput
     5056    \inmodule Phonon
     5057    \since 4.7
     5058
     5059    \brief The AudioDataOutput class provides access to audio data.
     5060
     5061    This class is used to obtain audio data, typically for the purpose of
     5062    visualizing it.
     5063
     5064    Although it is not designed for realtime performance, the latencies
     5065    associated with accessing the data should be low enough for applications
     5066    that provide visualizations of the data. This class can also be used to
     5067    save the audio data for further processing.
     5068*/
     5069
     5070/*!
     5071    \enum Phonon::AudioDataOutput::Channel
     5072
     5073    This enum describes the channel audio data belongs to.
     5074
     5075    \value LeftChannel
     5076    \value RightChannel
     5077    \value CenterChannel
     5078    \value LeftSurroundChannel
     5079    \value RightSurroundChannel
     5080    \value SubwooferChannel
     5081*/
     5082
     5083/*!
     5084    \property Phonon::AudioDataOutput::dataSize
     5085    \brief the number of samples passed via the dataReady() signal.
     5086*/
     5087
     5088/*!
     5089    \fn int Phonon::AudioDataOutput::sampleRate() const
     5090
     5091    Returns the sample rate measured in Hertz, as reported by the backend.
     5092    If the backend is unavailable -1 is returned.
     5093*/
     5094
     5095/*!
     5096    \fn void Phonon::AudioDataOutput::endOfMedia(int remainingSamples)
     5097
     5098    This signal is emitted before the final dataReady() signal is emitted for
     5099    a media. The \a remainingSamples value sent by the signal contains the
     5100    number of samples that will be sent in the final dataReady() signal for
     5101    the media.
     5102*/
     5103
     5104/*!
     5105    \fn Phonon::AudioDataOutput::dataReady(const QMap<Phonon::AudioDataOutput::Channel, QVector<qint16> > &data)
     5106
     5107    This signal is emitted whenever there is data available to read. The
     5108    \a data sent by the signal is supplied in the form of a map that holds the
     5109    data for different output channels.
     5110*/
     5111
     5112/*!
     5113    \fn Phonon::AudioDataOutputPrivate::AudioDataOutputPrivate()
     5114    \internal
     5115*/
     5116
     5117/*!
     5118    \fn Phonon::AudioDataOutputInterface::~AudioDataOutputInterface()
     5119
     5120    Destroys the data interface.
     5121*/
     5122
     5123/*!
     5124    \fn Phonon::AudioDataOutputInterface::frontendObject() const
     5125    \internal
     5126*/
     5127
     5128/*!
     5129    \fn Phonon::AudioDataOutputInterface::setFrontendObject(AudioDataOutput *)
     5130    \internal
     5131*/
     5132
     5133/*!
     5134    \fn Phonon::GlobalConfigPrivate::GlobalConfigPrivate()
     5135    \internal
     5136*/
     5137
     5138/*!
     5139    \fn Phonon::GlobalConfigPrivate::~GlobalConfigPrivate()
     5140    \internal
     5141*/
     5142
     5143/*!
     5144    \fn Phonon::SwiftSlider::~SwiftSlider()
     5145    \internal
     5146*/
Note: See TracChangeset for help on using the changeset viewer.