1
/*  This file is part of the KDE project.
2
3
Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4
5
This library is free software: you can redistribute it and/or modify
6
it under the terms of the GNU Lesser General Public License as published by
7
the Free Software Foundation, either version 2.1 or 3 of the License.
8
9
This library is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY; without even the implied warranty of
11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
GNU Lesser General Public License for more details.
13
14
You should have received a copy of the GNU Lesser General Public License
15
along with this library.  If not, see <http://www.gnu.org/licenses/>.
16
17
*/
18
19
#include <e32debug.h>
20
21
#include <QCoreApplication>
22
23
#include "audiooutput.h"
24
#include "defs.h"
25
#include "mediaobject.h"
26
#include "utils.h"
27
28
QT_BEGIN_NAMESPACE
29
30
using namespace Phonon;
31
using namespace Phonon::MMF;
32
33
/*! \class MMF::AudioOutput
34
  \internal
35
*/
36
37
//-----------------------------------------------------------------------------
38
// Constructor / destructor
39
//-----------------------------------------------------------------------------
40
41
MMF::AudioOutput::AudioOutput(Backend *, QObject *parent) : MediaNode(parent)
42
        , m_volume(InitialVolume)
43
{
44
45
}
46
47
48
//-----------------------------------------------------------------------------
49
// Public API
50
//-----------------------------------------------------------------------------
51
52
qreal MMF::AudioOutput::volume() const
53
{
54
    return m_volume;
55
}
56
57
void MMF::AudioOutput::setVolume(qreal volume)
58
{
59
    TRACE_CONTEXT(AudioOutput::setVolume, EAudioApi);
60
    TRACE_ENTRY("volume %f", volume);
61
62
    if (volume != m_volume) {
63
64
        m_volume = volume;
65
        TRACE("emit volumeChanged(%f)", volume)
66
        emit volumeChanged(volume);
67
    }
68
69
    TRACE_EXIT_0();
70
}
71
72
int MMF::AudioOutput::outputDevice() const
73
{
74
    return AudioOutputDeviceID;
75
}
76
77
bool MMF::AudioOutput::setOutputDevice(int index)
78
{
79
    Q_ASSERT_X(index == AudioOutputDeviceID, Q_FUNC_INFO,
80
               "We only support one output device, with id 0");
81
#ifdef QT_NO_DEBUG
82
    Q_UNUSED(index)
83
#endif
84
    return true;
85
}
86
87
void MMF::AudioOutput::connectMediaObject(MediaObject *mediaObject)
88
{
89
    // Ensure that the MediaObject has the correct initial volume
90
    mediaObject->volumeChanged(m_volume);
91
    // Connect MediaObject to receive future volume changes
92
    connect(this, SIGNAL(volumeChanged(qreal)), mediaObject, SLOT(volumeChanged(qreal)));
93
}
94
95
void MMF::AudioOutput::disconnectMediaObject(MediaObject *mediaObject)
96
{
97
    // Disconnect all signal-slot connections
98
    disconnect(this, 0, mediaObject, 0);
99
}
100
101
QHash<QByteArray, QVariant> MMF::AudioOutput::audioOutputDescription(int index)
102
{
103
    QHash<QByteArray, QVariant> retval;
104
105
    if (index == AudioOutputDeviceID) {
106
        retval.insert("name", QCoreApplication::translate("Phonon::MMF", "Audio Output"));
107
        retval.insert("description", QCoreApplication::translate("Phonon::MMF", "The audio output device"));
108
        retval.insert("available", true);
109
    }
110
111
    return retval;
112
}
113
114
QT_END_NAMESPACE