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/src/multimedia/audio/qaudio_symbian_p.h

    r769 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation ([email protected])
     
    8282    ,   ActiveState
    8383    ,   IdleState
    84     ,   SuspendedState
     84    // QAudio is suspended; DevSound is paused
     85    ,   SuspendedPausedState
     86    // QAudio is suspended; DevSound is stopped
     87    ,   SuspendedStoppedState
    8588};
    8689
     
    118121    bool setFormat(const QAudioFormat &format);
    119122    bool start();
    120     void pause();
     123
     124    // If DevSound implementation supports pause, calls pause and returns true.
     125    // Otherwise calls stop and returns false.  In this case, all DevSound buffers
     126    // currently held by the backend must be discarded.
     127    bool pause();
     128
     129    void resume();
     130
    121131    void stop();
    122132    void bufferProcessed();
     
    141151    void getSupportedCodecs();
    142152    void populateCapabilities();
     153
    143154
    144155private:
Note: See TracChangeset for help on using the changeset viewer.