~mmach/netext73/webkit2gtk

« back to all changes in this revision

Viewing changes to Source/WebKit/WebProcess/GPU/media/AudioTrackPrivateRemote.cpp

  • Committer: mmach
  • Date: 2023-06-16 17:21:37 UTC
  • Revision ID: netbit73@gmail.com-20230616172137-2rqx6yr96ga9g3kp
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* Copyright (C) 2020 Apple Inc. All rights reserved.
 
3
*
 
4
* Redistribution and use in source and binary forms, with or without
 
5
* modification, are permitted provided that the following conditions
 
6
* are met:
 
7
*
 
8
* 1. Redistributions of source code must retain the above copyright
 
9
*    notice, this list of conditions and the following disclaimer.
 
10
* 2. Redistributions in binary form must reproduce the above copyright
 
11
*    notice, this list of conditions and the following disclaimer in the
 
12
*    documentation and/or other materials provided with the distribution.
 
13
*
 
14
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
 
15
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
16
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
17
* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
 
18
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
19
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
20
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
21
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
22
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
23
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
24
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
25
*/
 
26
 
 
27
#include "config.h"
 
28
#include "AudioTrackPrivateRemote.h"
 
29
 
 
30
#if ENABLE(GPU_PROCESS)
 
31
 
 
32
#include "MediaPlayerPrivateRemote.h"
 
33
#include "RemoteMediaPlayerProxyMessages.h"
 
34
#include "TrackPrivateRemoteConfiguration.h"
 
35
 
 
36
namespace WebKit {
 
37
 
 
38
AudioTrackPrivateRemote::AudioTrackPrivateRemote(MediaPlayerPrivateRemote& player, TrackPrivateRemoteIdentifier idendifier, TrackPrivateRemoteConfiguration&& configuration)
 
39
    : m_player(player)
 
40
    , m_idendifier(idendifier)
 
41
{
 
42
    updateConfiguration(WTFMove(configuration));
 
43
}
 
44
 
 
45
void AudioTrackPrivateRemote::setEnabled(bool enabled)
 
46
{
 
47
    if (enabled != this->enabled())
 
48
        m_player.connection().send(Messages::RemoteMediaPlayerProxy::AudioTrackSetEnabled(m_idendifier, enabled), m_player.itentifier());
 
49
 
 
50
    AudioTrackPrivate::setEnabled(enabled);
 
51
}
 
52
 
 
53
void AudioTrackPrivateRemote::updateConfiguration(TrackPrivateRemoteConfiguration&& configuration)
 
54
{
 
55
    if (configuration.id != m_id) {
 
56
        auto changed = !m_id.isEmpty();
 
57
        m_id = configuration.id;
 
58
        if (changed && client())
 
59
            client()->idChanged(m_id);
 
60
    }
 
61
 
 
62
    if (configuration.label != m_label) {
 
63
        auto changed = !m_label.isEmpty();
 
64
        m_label = configuration.label;
 
65
        if (changed && client())
 
66
            client()->labelChanged(m_label);
 
67
    }
 
68
 
 
69
    if (configuration.language != m_language) {
 
70
        auto changed = !m_language.isEmpty();
 
71
        m_language = configuration.language;
 
72
        if (changed && client())
 
73
            client()->languageChanged(m_language);
 
74
    }
 
75
 
 
76
    m_trackIndex = configuration.trackIndex;
 
77
    m_startTimeVariance = configuration.startTimeVariance;
 
78
    m_kind = configuration.audioKind;
 
79
    setEnabled(configuration.enabled);
 
80
}
 
81
 
 
82
} // namespace WebKit
 
83
 
 
84
#endif // ENABLE(GPU_PROCESS)