~mmach/netext73/webkit2gtk

« back to all changes in this revision

Viewing changes to Source/WebKit/GPUProcess/media/RemoteVideoTrackProxy.h

  • 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
#pragma once
 
28
 
 
29
#if ENABLE(GPU_PROCESS)
 
30
 
 
31
#include "TrackPrivateRemoteIdentifier.h"
 
32
#include <WebCore/TrackBase.h>
 
33
#include <WebCore/VideoTrackPrivate.h>
 
34
 
 
35
namespace WebKit {
 
36
 
 
37
struct TrackPrivateRemoteConfiguration;
 
38
 
 
39
class RemoteVideoTrackProxy final
 
40
    : public ThreadSafeRefCounted<TrackPrivateBase, WTF::DestructionThread::Main>
 
41
    , private WebCore::VideoTrackPrivateClient {
 
42
public:
 
43
    static Ref<RemoteVideoTrackProxy> create(RemoteMediaPlayerProxy& player, TrackPrivateRemoteIdentifier id, Ref<IPC::Connection>&& connection, VideoTrackPrivate& trackPrivate)
 
44
    {
 
45
        return adoptRef(*new RemoteVideoTrackProxy(player, id, WTFMove(connection), trackPrivate));
 
46
    }
 
47
 
 
48
    TrackPrivateRemoteIdentifier identifier() const { return m_identifier; };
 
49
 
 
50
    void setSelected(bool selected) { m_trackPrivate->setSelected(selected); }
 
51
 
 
52
private:
 
53
    RemoteVideoTrackProxy(RemoteMediaPlayerProxy&, TrackPrivateRemoteIdentifier, Ref<IPC::Connection>&&, VideoTrackPrivate&);
 
54
    ~RemoteVideoTrackProxy() = default;
 
55
 
 
56
    // VideoTrackPrivateClient
 
57
    void selectedChanged(bool) final;
 
58
 
 
59
    // TrackPrivateBaseClient
 
60
    void idChanged(const AtomString&) final;
 
61
    void labelChanged(const AtomString&) final;
 
62
    void languageChanged(const AtomString&) final;
 
63
    void willRemove() final;
 
64
 
 
65
    TrackPrivateRemoteConfiguration& configuration();
 
66
    void configurationChanged();
 
67
 
 
68
    RemoteMediaPlayerProxy& m_player;
 
69
    TrackPrivateRemoteIdentifier m_identifier;
 
70
    Ref<IPC::Connection> m_webProcessConnection;
 
71
    Ref<VideoTrackPrivate> m_trackPrivate;
 
72
};
 
73
 
 
74
} // namespace WebKit
 
75
 
 
76
#endif // ENABLE(GPU_PROCESS)